:root {
  color-scheme: light;
  --content-width: 1366px;
}

html {
  font-family: "Noto Sans JP", "Roboto", serif, Arial, Helvetica, sans-serif;
}

.youtube {
  position: relative;
  width: 100%;
  /* padding-top: 56.25%; */
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  height: 74px;
  top: 0;
  left: 0;
  border-bottom: 4px double #53df60;
  background-color: #000;
  color: #53df60;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
}

.header .container>div {
  width: 20%;
}

.header .container>nav{
  width: 60%;
}

.header .account ul {
  display: flex;
  column-gap: 24px;
  justify-content: flex-end;
}

.header .account .btn-nav {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 14px;
}

.navbar {
  display: flex;
  height: 100%;
  align-items: center;
}


.navbar .dropdown-menu,
.navbar .sp-account {
  display: none;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  top: 72px;
  left: 0;
  z-index: 5;
  background-color: #000;
  padding: 12px 8px;
  min-width: 240px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.header .logo .brand img {
  height: 50px;
  /* margin: 0 auto; */
  padding-left: 0;
}

.header .menu {
  padding-right: 0;
}

.header .navbar .nav-container {
  margin: 0 auto;
}

.header .navbar .nav-container>ul {
  display: flex;
  justify-content: center;
  column-gap: 32px;
}

.header .navbar .nav-container ul li a {
  display: flex;
  padding: 25px 0;
  column-gap: 8px;
  align-items: center;
  color: #000;
}

.nav-menu a {
  color: #53df60 !important;
}

.header .navbar .nav-container ul.dropdown-menu a {
  padding: 8px 0;
}

@media screen and (max-width: 767px) {
  .header .container {
    flex-wrap: wrap;
    padding: 12px 0 8px;
  }

  .header .menu {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column-reverse;
  }

  .header .navbar ul {
    flex-direction: column;
  }

  .header .account {
    display: none;
  }

  .header .navbar {
    display: none;
    transition: all 0.25s linear;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: none;
  }

  .header .dropdown a.dropdown-toggle {
    border-bottom: 1px solid #53df60;
  }

  .header .dropdown-menu {
    display: none;
    height: 0;
    width: 100%;
  }

  .header.open .navbar{
    display: block;
    width: 100%;
  }

  .header.open .dropdown-menu.open {
    display: block;
    height: auto;
    position: unset;
    box-shadow: none;
    padding: 0;
  }

  .navbar .sp-account {
    display: block;
  }

  .navbar .sp-account ul {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
  }

  .navbar .sp-account ul li {
    border: 0 !important;
    width: 100%;
  }

  .navbar .sp-account ul li a {
    display: flex;
    align-items: center;
    column-gap: 8px;
    justify-content: center;
    border: 1px solid #53df60;
    background-color: #53df60;
    color: #000;
    padding: 8px 0;
  }

  .header .container .logo {
    position: relative;
    width: 100%;
  }

  .header .logo .brand img {
    padding-left: 24px;
  }

  .header .container .btn-sp-menu {
    position: absolute;
    top: 4px;
    right: 24px;
    width: 44px;
    height: 44px;
    padding: 4px;
    padding-top: 8px;
  }

  .header .container .btn-sp-menu .line {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #53df60;
    margin: 8px 0;
    transition: all 0.25s linear;
  }

  .header.open .container .btn-sp-menu .line-1 {
    position: absolute;
    transform-origin: center;
    transform: rotate(-45deg);
    top: 12px;
  }
  
  .header.open .container .btn-sp-menu .line-2 {
    position: absolute;
    transform-origin: center;
    transform: rotate(45deg);
    top: 12px;
  }

  .header .nav-container,
  .header .account {
    padding: 24px;
    background-color: #000;
  }

  .header .nav-container ul.nav-menu {
    width: 100%;
    margin-top: 24px;
  }

  .header .nav-container ul.nav-menu li {
    background-color: #000;
    border-bottom: 1px solid #53df60;
    color: #53df60;
  }

  .header .nav-container ul.nav-menu li a {
    display: flex;
    padding: 12px;
    justify-content: space-between;
  }

  .header .nav-container ul.nav-menu li.dropdown {
    border: 0;
  }

  .navbar .dropdown:hover .dropdown-menu li {
    padding: 0 12px;
  }

  .header .navbar .nav-container ul.dropdown-menu a {
    padding: 12px;
  }

  .header .dropdown-toggle.open span {
    transform: rotate(180deg);
  }
}

/* Common */
.main {
  margin-top: 74px;
  padding-top: 80px;
  background-color: #000;
  color: #53df60;
}

.main.top-page{
  padding-top: 0;
}

.btn {
  padding: 8px 32px;
  background-color: #53df60;
  border: 1px solid #53df60;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.btn:hover {
  background-color: #37d147;
  border: 1px solid #53df60;
}

.error-msg {
  display: none;
  font-size: 14px;
  color: #53df60;
}

.text-danger {
  display: block;
  font-size: 14px;
  color: #53df60;
  font-weight: 500;
}

.text-required {
  position: relative;
  font-size: 12px;
  background-color: #53df60;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 1px 4px;
  margin-left: 4px;
  top: -1px;
}

/* Hero */

.hero {
  height: calc(100vh - 74px);
}

.hero-container {
  display: flex;
  height: calc(100vh - 74px);
}

.hero-container>div {
  width: 100%;
}

.hero-container .hero-left {
  background: #000;
  display: flex;
  align-items: center;
  display: none;
}

.hero-container .hero-content {
  position: relative;
  background: #000;
  width: 100%;
  height: 70%;
  right: -80px;
  z-index: 3;
  display: flex;
}

.hero-container .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 40px;
  padding: 50px;
}

.hero-container .hero-content .logo {
  width: 140px;
}

.hero-container .hero-content .catch {
  width: 140px;
  line-height: 2em;
  width: 100%;
}

.hero-container .hero-content .btn-regist {
  padding: 12px 96px;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.hero-container .hero-right {
  position: relative;
  /* background-image: url("/assets/images/new/top/hero_tate_img.jpg"); */
  background-image: url("/assets/images/new/top/hero_image4.jpg");
  background-repeat: no-repeat;
  background-position: top -100px center;
  background-size: cover;
}

/* .hero-container .hero-right:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.2);
  z-index: 2;
} */

@media screen and (max-width: 767px) {
  .hero {
    height: auto;
  }

  .hero-container {
    flex-direction: column-reverse;
    height: auto;
  }

  .hero-container>div {
    width: 100%;
  }
  .hero-container .hero-content {
    left: 0;
    right: 0;
    transform: unset;
    height: auto;
  }

  .hero-container .hero-left {
    position: unset;
    height: auto;
  }
  
  .hero-container .hero-right {
    position: unset;
    height: 620px;
    /* background-position: top -410px left -270px; */
    background-position: top 0 left -480px;
  }

  
}

/* Section News */
.section-news {
  padding: 80px 0;
}

.section-news .container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-news .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-news .section-title .title {
  font-size: 44px;
}

.section-news .section-title .sub-title {
  font-size: 14px;
}

.section-news .section-content {
  width: 768px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-news .section-content ul li {
  padding: 12px;
  border-bottom: 1px solid #cccc;
}

.section-news .section-content ul li .post-date {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 8px;
  min-width: 100px;
}


.section-news .section-content ul li .post-title {
  margin-bottom: 8px;
}

.section-news .section-content ul li .post-category {
  font-size: 12px;
  display: inline-block;
  padding: 2px 8px;
  background-color: #000;
}

.section-contents .section-content {
  padding: 0 24px;
}

.section-contents .section-content ul {
  display: flex;
  width: 100%;
  align-items: center;
}

.section-contents .section-content ul li {
  width: calc( calc( 100% - 48px ) / 3);
  height: 280px;
  background-color: #000;
}

.section-contents .section-content ul li iframe,
.section-contents .section-content ul li video {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .section-contents .section-content ul li {
    width: 100%;
    height: 240px;
  }

  .section-contents .section-content .content-wrapper {
    padding: 0 24px;
  }

  .section-contents .section-content ul li iframe,
  .section-contents .section-content ul li video {
    width: 100%;
    height: 240px;
  }
}

.viewall {
  text-align: center;
}

.section-news .btn-viewall {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #53df60;
  background-color: #53df60;
  margin: 20px auto 0;
  font-size: 14px;
  width: 140px;
  color: #000;
}

.section-news .btn-viewall:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .section-news .section-content {
    width: 100%;
  }

  .section-news .section-title .title {
    font-size: 32px;
  }
  
  .section-news .section-title .sub-title {
    font-size: 14px;
  }

  .section-contents .section-content {
    padding: 0;
  }
}

/* Section Content */

.section-contents {
  padding: 50px 0;
}

.section-contents .container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-contents .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-contents .section-title .title {
  font-size: 44px;
}

.section-contents .section-title .sub-title {
  font-size: 14px;
}

.section-contents ul {
  display: flex;
  gap: 32px 24px;
}

.section-contents ul li {
  width: 100%;
}

@media screen and (max-width: 787px) {
  .section-contents .container {
    padding: 0 24px;
  }
  .section-contents ul {
    flex-direction: column;
  }
}

/* Section Banner */
.section-banner {
  padding: 80px 24px;
}

.section-banner .container {
  max-width: var(--content-width);
  margin: 0 auto;
}
.section-banner .swiper {
  width: 100%;
}

.section-banner .swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.section-banner .swiper .swiper-pagination-bullet-active {
  background-color: #53df60;
}

@media screen and (max-width: 767px) {
  .section-banner {
    padding: 0 0 80px;
  }

  .section-banner .container {
    width: 100%;
    padding: 0 24px;
  }

  
}

/* footer */
.footer {
  padding: 80px 0 0;
  background-color: #53df60;
  
  color: #000;
}
.footer .footer-container {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  padding: 0 24px;
}

.footer .footer-container .section {
  width: 100%;
}

.footer .footer-container .section span {
  display: inline-block;
  padding: 8px 0;
  font-weight: 600;
}

.footer .footer-container .section ul {
  border-top: 1px solid #000;
  padding-top: 4px;
  width: 100%;
}

.footer .footer-container .section ul li {
  padding: 4px 0;
}


.footer .section.footer-4 ul {
  display: flex;
  column-gap: 12px;
}

.footer .section.footer-4 span.group {
  margin-top: 40px;
}

.footer .section.footer-4 .group-logo svg {
  width: 120px;
  fill: #000;
  padding: 20px;
}

.footer .section.footer-4 .group-logo li a {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.footer .section.footer-4 svg {
  fill: #000;
  width: 24px;
}

.footer .section.footer-4 img {
  height: 20px;
  margin-top: 2px;
}


.footer .copyright {
  background-color: #53df60;
  margin-top: 80px;
  padding: 8px 0;
  font-size: 14px;
  padding: 0 24px;
}

.footer .copyright .copyright-container {
  max-width: var(--content-width);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer .footer-container {
    flex-direction: column;
    padding: 0 24px;
    row-gap: 32px;
  }

  .footer .copyright .copyright-container {
    padding: 0 24px;
  }
}

.page-container{
  max-width: var(--content-width);
  padding: 0 100px;
  margin: 0 auto;
}

.page-title-container {
  margin-bottom: 32px;
}

.page-title {
  font-size: 50px;
}

.page-subtitle {
  display: block;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }

  .page-container{
    width: 100%;
    padding: 0 24px;
  }
}

/* Membership Page */

.mcard-page .page-title-container {
  text-align: center;
}

.mcard-page .mcard {
  margin-bottom: 120px;
}

.mcard-page .membership-card {
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.mcard-page .membership-card .membership-info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 0 0 12px 12px;
}

.mcard-page .membership-card img {
  width: 100%;
  border-radius: 12px;
}

.mcard-page .membership-card .membership-info ul li span:first-child {
  display: inline-block;
  width: 140px;
}

@media screen and (max-width: 767px) {
  .mcard-page .membership-card .membership-info {
    font-size: 12px;
  }

  .mcard-page .membership-card .membership-info ul li span:first-child {
    width: 120px;
  }
}

/* Profile Page */
.profile-page .profile {
  display: flex;
  column-gap: 32px;
  padding-bottom: 80px;
}

.profile-page .profile .picture img{
  width: 100%;
}

.profile-page .profile section {
  width: 100%;
}

.profile-page .profile-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.profile-page .profile-content table {
  margin-bottom: 40px;
}

.profile-page .profile-content table td {
  padding: 4px 0;
  vertical-align: top;
}

.profile-page .profile-content table td:nth-child(1) {
  width: 60px;
}

.profile-page .profile-content table.drama td:nth-child(2) {
  width: 60px;
}

@media screen and (max-width: 767px) {
  .profile-page .profile {
    flex-direction: column;
    row-gap: 32px;
  }

  .profile-page .profile-content table td {
    vertical-align: top;
  }
}

/* Aboutus Page */

.aboutus {
  padding-bottom: 80px;
}

.aboutus h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.aboutus h4 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.aboutus ul,
.aboutus p {
  line-height: 1.8em;
}

.aboutus ul li {
  display: flex;
  padding: 4px 0;
}

@media screen and (max-width: 767px) {
  .aboutus h3 {
    font-size: 20px;
  }

  .aboutus h4 {
    font-size: 16px;
  }
}

/* Privacy Page */
.privacy {
  padding-bottom: 80px;
}

.privacy h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.privacy h4 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy ul,
.privacy p {
  line-height: 1.8em;
}

.privacy ul li {
  display: flex;
  padding: 4px 0;
}

@media screen and (max-width: 767px) {
  .privacy h3 {
    font-size: 20px;
  }

  .privacy h4 {
    font-size: 16px;
  }
}

/* Privacy Page */
.law {
  padding-bottom: 80px;
}

.law h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.law h4 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.law ul,
.law p {
  line-height: 1.8em;
}

.law ul li {
  display: flex;
  padding: 4px 0;
}

@media screen and (max-width: 767px) {
  .law h3 {
    font-size: 20px;
  }

  .law h4 {
    font-size: 16px;
  }
}

/* Agree Page */
.agree {
  padding-bottom: 80px;
}

.agree h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.agree h4 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.agree ul,
.agree p {
  line-height: 1.8em;
}

.agree ul li {
  display: flex;
  padding: 4px 0;
}

@media screen and (max-width: 767px) {
  .agree h3 {
    font-size: 20px;
  }

  .agree h4 {
    font-size: 16px;
  }
}

/* Agree1 Page */

.agree1-page {
  background-color: #000;
}

.agree1 {
  padding-bottom: 80px;
}

.agree1-page .page-title-container {
  text-align: center;
}

.agree1-page .page-title-container .page-title {
  font-size: 32px;
}

.agree1 h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.agree1 h4 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.agree1 ul,
.agree1 p {
  line-height: 1.8em;
}

.agree1 ul li {
  display: flex;
  padding: 4px 0;
}

.agree1 .agree1-content {
  padding: 50px 100px;
  max-width: 768px;
  /* background-color: #fff; */
  border: 1px solid #53df60;
  margin: 0 auto;
  border-radius: 8px;
}

.agree1 .agree1-content .agree-law {
  text-align: center;
  margin: 20px 0;
}

.agree1 .agree1-content .agree-law a {
  color: #53df60;
}

.agree1 .agree1-content .agree-law a:hover {
  text-decoration: underline;
}

.agree1 .agree1-content .to-next-page {
  text-align: center;
}

.agree1 .agree1-content .to-next-page .message {
  margin-bottom: 24px;
}


@media screen and (max-width: 767px) {
  .agree1 h3 {
    font-size: 20px;
  }

  .agree1 h4 {
    font-size: 16px;
  }

  .agree1 .agree1-content {
    padding: 50px 24px;
  }
}

/* FAQ Page */
.faq {
  padding-bottom: 80px;
}

.faq .faq-content ul li {
  margin-bottom: 32px;
}

.faq .faq-content ul li h3 {
  margin-bottom: 8px;
}

/* 新規登録フォーム */

.regi-form-page {
  background-color: #000;
}

.regi-form-page .page-title-container {
  text-align: center;
}

.regi-form-page .page-title-container .page-title {
  font-size: 32px;
}

.regi-form {
  padding-bottom: 80px;
}

.regi-form .module {
  padding: 50px 100px;
  max-width: 768px;
  background-color: #000;
  border: 1px solid #53df60;
  margin: 0 auto;
  border-radius: 8px;
}

.regi-form h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 24px;
}

.regi-form input {
  padding: 8px 4px;
  outline: none;
  border: 1px solid #ccc;
}

.regi-form input[type="text"],
.regi-form input[type="password"]
 {
  width: 100%;
  margin-bottom: 8px;
}

.regi-form select {
  padding: 8px;
  min-width: 180px;
  border: 1px solid #ccc;
  outline: none;
}

.regi-form input[type="submit"] {
  display: block;
  margin-top: 20px;
  padding: 8px 24px;
  border: 1px solid #53df60;
  color: #000;
  background-color: #53df60;
}

.regi-form .input-birthday {
  display: flex;
  justify-content: space-between;
}

.regi-form .table-confirm th,
.regi-form .table-confirm td {
  padding: 12px 8px;
}

.regi-form .table-confirm th {
  text-align: left;
}

.regi-form .btn-list {
  display: flex;
  column-gap: 12px;
}

span.danger {
  color: #53df60;
  font-weight: 500;
  font-size: 14px;
}

.regi-form-page .text-complete a {
  color: #53df60;
}

.regi-form-page .text-complete a:hover {
  text-decoration: underline;
}

.regi-form-page .text-complete {
  line-height: 1.8em;
}

.regi-form-complete h2 {
  font-size: 20px;
  line-height: 1.8em;
  margin-bottom: 24px;
}

.regi-form-complete p {
  line-height: 1.8em;
}

@media screen and (max-width: 767px) {
  .regi-form-page .page-title-container .page-title {
    font-size: 28px;
    text-align: left;
  }

  .regi-form-page .page-title-container .page-subtitle {
    text-align: left;
  }

  .regi-form .module {
    padding: 50px 24px;
  }

  .regi-form .input-birthday select {
    width: 32%;
    min-width: 0;
  } 
  .regi-form .table-confirm th,
  .regi-form .table-confirm td {
    display: block;
  }

  .regi-form .table-confirm th {
    padding-bottom: 4px;
  }
  .regi-form .table-confirm td {
    padding-top: 4px;
  }

}

/* Login Page */
.login {
  padding-bottom: 80px;
}

.login-page {
  /* background-color: #efefef; */
}

.login-page .page-title-container {
  text-align: center;
}

.login .page-title-container .page-title {
  font-size: 32px;
}

.login .module {
  padding: 50px;
  max-width: 768px;
  /* background-color: #fff; */
  margin: 0 auto;
  border-radius: 8px;
}

.login>.module {
border: 1px solid #53df60;
}

.login .table {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.login .table th {
  text-align: left;
}

.login .table th,
.login .table td {
  width: 50%;
  padding: 24px 12px;
}

.login .table td button {
  min-width: 200px;
  text-align: center;
}

.login .table td button.btn-combini {
  margin-top: 4px;
}

.login h2.login-title {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.login .login-form {
  margin: 0 auto;
  padding: 0 140px;
}

.login .login-form input {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 4px;
  outline: none;
  border: 1px solid #ccc;
}


.login .login-form .btn-login-group button {
  width: 100%;
  text-align: center;
  padding: 8px 0;
}

.login .login-form .btn-login-group a {
  display: block;
  font-size: 14px; 
  margin-top: 32px;
}

.login .login-form .btn-login-group a:hover {
  color: #53df60;
}

.login .register-group {
  margin-top: 24px;
  padding: 50px 190px;
}

.login .register-group button {
  width: 100%;
  text-align: center;
  padding: 8px 0;
}

.login .register-group a {
  display: block;
  font-size: 14px; 
  margin-top: 32px;
}

.login .register-group a:hover {
  color: #53df60;
}

.login .table td .btn { 
  margin-bottom: 8px;
}

.login .table td .btn:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 767px) {
  .login .login-form {
    padding: 0;
  }

  .login .module {
    padding: 50px 15px;
  }

  .login h2.login-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .login .table th,
  .login .table td {
    width: 100%;
    display: block;
  }

  .login .table th {
    padding-bottom: 12px;
  }
  .login .table td {
    padding-top: 12px;
  }

  .login .table td button {
    width: 100%;
    min-width: 0;
    padding: 8px 0;
  }
}

/* Members Only Page */
.members-only {
  padding-bottom: 80px;
}

.members-only-page {
  background-color: #000;
}

.members-only .module {
  padding: 50px;
  max-width: 768px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 8px;
  text-align: center;
}

.members-only-page .page-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 1em;
}

.members-only-page button {
  margin-top: 24px;
}

/* News Page */
.news-content {
  background-color: #000;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 24px;
}

.news-content h3 {
  margin-bottom: 24px;
}

.news-content-content {
  font-size: 16px;
  line-height: 1.8em;
}

.news-content-content img {
  margin-bottom: 24px;
}

.news-content-content a {
  color: #53df60;
}
.news-content-content a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .news-content {
    padding: 24px;
  }

  .news-content .post-date {
    font-size: 14px;
  }

  .news-content h3 {
    margin-bottom: 20px;
  }
}

.payment-page {
  background-color: #000; 
}

.payment-form .module {
  padding: 50px 100px;
  max-width: 768px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 80px;
}

.payment-info {
  margin-bottom: 40px;
}

.payment-info p {
  margin-bottom: 12px;
}

.payment-info img {
  margin: 4px auto;
}

.member-info-01 {
  padding: 20px;
  border: 1px solid #000;
}

.news-page .section-news ul li {
  display: flex;
  font-size: 16px;
  gap: 4px 12px;
}

.news-page .section-news ul li .post-date,
.news-page .section-news ul li .post-title {
  margin: 0;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .news-page .section-content {
    padding: 0;
  }
  .news-page .section-news ul li {
    flex-direction: column;
  }
}

.post-list-01 {
  display: flex;
  gap: 32px 24px;
  flex-wrap: wrap;
}

.post-list-01 .post {
  width: calc(calc(100% - 48px) / 3);
}

.post-list-01 .post .post-thumbnail {
  border: 1px solid #53df60;
  aspect-ratio: 3/2;
}

.post-list-01 .post .thumbnail-image {
  height: 100%;
  object-fit: cover;
}

.post-list-01 .post .post-info {
  margin-top: 12px;
}

.post-list-01 .post .post-info .post-publish-date {
  color: #3a3a3a;
  font-size: 14px;
}

.section-top-banner {
  position: relative;
  z-index: 10;
  bottom: 0;
  background-color: #000;
}

.section-top-banner .container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px 0;
}

.top-swiper img {
  width: 100%;
}

.section-top-banner {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  .section-top-banner .container {
    padding: 26px 12px;
  }

  .post-list-01 .post {
    width: 100%;
  }

  .section-contents .container {
    padding: 0;
  }
}