@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.8;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  border: 2px solid transparent;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.btn--accent {
  background-color: #c9a84c;
  color: #0d0d0d;
  border-color: #c9a84c;
}
@media (hover: hover) {
  .btn--accent:hover {
    background-color: #a8893c;
    border-color: #a8893c;
    opacity: 1;
  }
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
@media (hover: hover) {
  .btn--outline:hover {
    background-color: #ffffff;
    color: #0d0d0d;
    opacity: 1;
  }
}
.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .btn--lg {
    padding: 15px 28px;
    font-size: 0.9rem;
  }
}
.btn--full {
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-header {
    margin-bottom: 40px;
  }
}
.section-header__en {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #c9a84c;
  margin-bottom: 8px;
}
.section-header__ja {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .section-header__ja {
    font-size: 1.5rem;
  }
}
.section-header__line {
  width: 48px;
  height: 2px;
  background-color: #c9a84c;
  margin: 16px auto 0;
}

.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.js-fade.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.header.is-scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .header__inner {
    padding: 0 20px;
  }
}
.header__logo a {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.header__logo a span {
  color: #c9a84c;
}
@media screen and (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #1a1a1a;
    padding: 100px 32px 40px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 99;
  }
  .header__nav.is-open {
    right: 0;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.header__nav-list li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cccccc;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .header__nav-list li a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid #2a2a2a;
  }
}
@media (hover: hover) {
  .header__nav-list li a:hover {
    color: #c9a84c;
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  .header__cta {
    display: none;
  }
}
.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 101;
}
@media screen and (max-width: 1023px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 98;
}
.nav-overlay.is-active {
  display: block;
}

.mv {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.mv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}

/* picture / img で全面を覆う */
.mv__slide picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mv__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 暗めのグラデーションオーバーレイ（テキスト可読性を確保） */
.mv__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.82) 0%, rgba(13, 13, 13, 0.55) 50%, rgba(13, 13, 13, 0.82) 100%);
}

.mv__slide.is-active {
  opacity: 1;
}

.mv__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(13, 13, 13, 0.3);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.mv__arrow svg {
  width: 22px;
  height: 22px;
}
@media (hover: hover) {
  .mv__arrow:hover {
    border-color: #c9a84c;
    background-color: rgba(201, 168, 76, 0.25);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .mv__arrow {
    width: 36px;
    height: 36px;
  }
  .mv__arrow svg {
    width: 18px;
    height: 18px;
  }
}
.mv__arrow--prev {
  left: 32px;
}
@media screen and (max-width: 767px) {
  .mv__arrow--prev {
    left: 12px;
  }
}
.mv__arrow--next {
  right: 32px;
}
@media screen and (max-width: 767px) {
  .mv__arrow--next {
    right: 12px;
  }
}
.mv__dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .mv__dots {
    bottom: 32px;
  }
}
.mv__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: background-color 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, width 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
}
.mv__dot.is-active {
  background-color: #c9a84c;
  width: 24px;
  border-radius: 4px;
}
@media (hover: hover) {
  .mv__dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 1;
  }
}
.mv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding: 100px 16px 60px;
  }
}
.mv__content {
  max-width: 680px;
}
.mv__catch {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  padding: 6px 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .mv__catch {
    font-size: 0.75rem;
  }
}
.mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 24px;
}
.mv__title span {
  color: #c9a84c;
}
.mv__text {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 0.9rem;
  }
}
.mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mv__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.mv__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .mv__stats {
    gap: 24px;
  }
}
.mv__stat {
  text-align: center;
}
.mv__stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.mv__stat-num em {
  font-style: normal;
  font-size: 1.2rem;
  color: #c9a84c;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .mv__stat-num {
    font-size: 1.8rem;
  }
}
.mv__stat-label {
  font-size: 0.75rem;
  color: #999999;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.mv__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    display: none;
  }
}
.mv__scroll span {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #999999;
}
.mv__scroll-line {
  width: 1px;
  height: 48px;
  background: -webkit-gradient(linear, left top, left bottom, from(#999999), to(transparent));
  background: linear-gradient(to bottom, #999999, transparent);
  -webkit-animation: scrollLine 1.8s ease-in-out infinite;
          animation: scrollLine 1.8s ease-in-out infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
.worries {
  padding: 80px 0;
  background-color: #111111;
}
@media screen and (max-width: 767px) {
  .worries {
    padding: 60px 0;
  }
}
.worries__lead {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .worries__lead {
    font-size: 1.1rem;
  }
}
.worries__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1023px) {
  .worries__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .worries__list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.worries__item {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
}
.worries__item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #cccccc;
}
.worries__num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 12px;
  opacity: 0.6;
}
.worries__solution {
  text-align: center;
  padding: 32px;
  border: 2px solid #c9a84c;
  border-radius: 8px;
}
.worries__solution p {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .worries__solution p {
    font-size: 1.1rem;
  }
}
.worries__solution p strong {
  color: #c9a84c;
}

.about {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 70px 0;
  }
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about__image {
  position: relative;
}
.about__image img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  background-color: #1a1a1a;
}
.about__image-label {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background-color: #c9a84c;
  color: #0d0d0d;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .about__image-label {
    bottom: -12px;
    right: -8px;
  }
}
@media screen and (max-width: 1023px) {
  .about__content {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.about__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 1.4rem;
  }
}
.about__title span {
  color: #c9a84c;
}
.about p {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 16px;
}
.about .btn {
  margin-top: 16px;
}

.features {
  padding: 100px 0;
  background-color: #111111;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 70px 0;
  }
}
.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .features__list {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}
.features__item {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (hover: hover) {
  .features__item:hover {
    border-color: #c9a84c;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .features__item {
    padding: 32px 24px;
  }
}
.features__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 16px;
}
.features__item p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.8;
}
.features__icon {
  width: 56px;
  height: 56px;
  background-color: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
}
.features__icon svg {
  width: 28px;
  height: 28px;
  color: #c9a84c;
}
.features__num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #c9a84c;
  margin-bottom: 12px;
}

.program {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .program {
    padding: 70px 0;
  }
}
.program__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .program__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.program__item {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .program__item:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    border-color: #c9a84c;
    opacity: 1;
  }
}
.program__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #0d0d0d;
}
.program__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.program__item:hover .program__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.program__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #c9a84c;
  color: #0d0d0d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}
.program__body {
  padding: 28px;
}
@media screen and (max-width: 767px) {
  .program__body {
    padding: 20px;
  }
}
.program__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.program__body p {
  font-size: 0.875rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 16px;
}
.program__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.program__points li {
  font-size: 0.8rem;
  color: #999999;
  padding-left: 16px;
  position: relative;
}
.program__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a84c;
}

.trainer {
  padding: 100px 0;
  background-color: #111111;
}
@media screen and (max-width: 767px) {
  .trainer {
    padding: 70px 0;
  }
}
.trainer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .trainer__list {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 32px;
  }
}
.trainer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .trainer__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}
.trainer__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 140px;
}
@media screen and (max-width: 767px) {
  .trainer__image {
    width: 100px;
  }
}
.trainer__image img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  background-color: #0d0d0d;
}
.trainer__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.trainer__name {
  margin-bottom: 4px;
}
.trainer__name h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  display: inline;
}
.trainer__name span {
  display: block;
  font-size: 0.75rem;
  color: #999999;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.trainer__role {
  font-size: 0.8rem;
  color: #c9a84c;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: inline-block;
  border-radius: 4px;
}
.trainer__text {
  font-size: 0.875rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 16px;
}
.trainer__certs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.trainer__certs li {
  font-size: 0.8rem;
  color: #999999;
  padding-left: 14px;
  position: relative;
}
.trainer__certs li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-size: 0.7rem;
}

.results {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .results {
    padding: 70px 0;
  }
}
.results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .results__list {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
.results__item {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 28px;
}
.results__achievement {
  font-size: 0.85rem;
  color: #999999;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}
.results__achievement strong {
  font-size: 1.1rem;
  color: #c9a84c;
  font-family: "Oswald", sans-serif;
}
.results__profile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.results__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #0d0d0d;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.results__name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}
.results__meta {
  font-size: 0.75rem;
  color: #999999;
  margin-top: 2px;
}
.results__stars {
  color: #c9a84c;
  font-size: 0.8rem;
  margin-top: 4px;
  letter-spacing: 2px;
}
.results__voice {
  font-size: 0.875rem;
  color: #cccccc;
  line-height: 1.85;
  font-style: italic;
}

.price {
  padding: 100px 0;
  background-color: #111111;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 70px 0;
  }
}
.price__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023px) {
  .price__list {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 32px;
  }
}
.price__item {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.price__item--recommend {
  border-color: #c9a84c;
  background-color: rgba(201, 168, 76, 0.05);
}
.price__item--recommend .price__plan-name {
  color: #c9a84c;
}
.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #c9a84c;
  color: #0d0d0d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.price__head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #2a2a2a;
}
.price__plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: #cccccc;
  margin-bottom: 4px;
}
.price__sessions {
  font-size: 0.8rem;
  color: #999999;
  margin-bottom: 16px;
}
.price__amount {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.price__yen {
  font-size: 1.4rem;
  vertical-align: top;
  padding-top: 6px;
  display: inline-block;
}
.price__unit {
  font-size: 0.8rem;
  color: #999999;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 6px;
}
.price__features {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 28px;
}
.price__features li {
  font-size: 0.875rem;
  color: #cccccc;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
}
.price__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a84c;
}
.price__features li:first-child {
  border-top: none;
  padding-top: 0;
}
.price__note {
  text-align: center;
  font-size: 0.8rem;
  color: #999999;
  line-height: 2;
}

.flow {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 70px 0;
  }
}
.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .flow__item {
    gap: 20px;
    padding-bottom: 32px;
  }
}
.flow__item:last-child {
  padding-bottom: 0;
}
.flow__item:last-child::after {
  display: none;
}
.flow__item::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c9a84c), to(transparent));
  background: linear-gradient(to bottom, #c9a84c, transparent);
}
@media screen and (max-width: 767px) {
  .flow__item::after {
    left: 22px;
    top: 44px;
  }
}
.flow__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #c9a84c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c9a84c;
  position: relative;
  z-index: 1;
  background-color: #0d0d0d;
}
@media screen and (max-width: 767px) {
  .flow__num {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}
.flow__body {
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .flow__body {
    padding-top: 8px;
  }
}
.flow__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.flow__body p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.8;
}

.faq {
  padding: 100px 0;
  background-color: #111111;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 70px 0;
  }
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid #2a2a2a;
}
.faq__item:first-child {
  border-top: 1px solid #2a2a2a;
}
.faq__question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 18px 0;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .faq__question:hover {
    color: #c9a84c;
    opacity: 1;
  }
}
.faq__question span:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq__q-mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #c9a84c;
  color: #0d0d0d;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background-color: #c9a84c;
  border-radius: 2px;
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__item.is-open .faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  display: none;
  padding: 0 0 24px 48px;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding-left: 0;
  }
}
.faq__item.is-open .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__a-mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #c9a84c;
  color: #c9a84c;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .faq__a-mark {
    display: none;
  }
}
.faq p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.85;
}

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1500, #2a1f00, #1a1500);
}
@media screen and (max-width: 767px) {
  .cta-banner {
    padding: 60px 0;
  }
}
.cta-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner__sub {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #c9a84c;
  margin-bottom: 12px;
}
.cta-banner__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cta-banner__title {
    font-size: 1.5rem;
  }
}
.cta-banner__text {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.9;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .cta-banner__text {
    font-size: 0.85rem;
  }
}

.contact {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 70px 0;
  }
}
.contact__lead {
  text-align: center;
  font-size: 0.95rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.9;
}
.contact__form {
  max-width: 760px;
  margin: 0 auto;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contact__form-group {
  margin-bottom: 24px;
}
.contact__form-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cccccc;
  margin-bottom: 8px;
}
.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__form-group input::-webkit-input-placeholder, .contact__form-group select::-webkit-input-placeholder, .contact__form-group textarea::-webkit-input-placeholder {
  color: #999999;
}
.contact__form-group input::-moz-placeholder, .contact__form-group select::-moz-placeholder, .contact__form-group textarea::-moz-placeholder {
  color: #999999;
}
.contact__form-group input:-ms-input-placeholder, .contact__form-group select:-ms-input-placeholder, .contact__form-group textarea:-ms-input-placeholder {
  color: #999999;
}
.contact__form-group input::-ms-input-placeholder, .contact__form-group select::-ms-input-placeholder, .contact__form-group textarea::-ms-input-placeholder {
  color: #999999;
}
.contact__form-group input::placeholder,
.contact__form-group select::placeholder,
.contact__form-group textarea::placeholder {
  color: #999999;
}
.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
  outline: none;
  border-color: #c9a84c;
}
.contact__form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}
.contact__form-group select option {
  background-color: #1a1a1a;
}
.contact__form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__form-submit {
  text-align: center;
  margin-top: 8px;
}
.contact__form-message {
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 500;
}
.contact__form-message.is-success {
  color: #4caf50;
}
.contact__form-message.is-error {
  color: #f44336;
}

.required {
  font-size: 0.7rem;
  background-color: #c62828;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 3px;
}

.footer {
  padding: 60px 0 0;
  background-color: #080808;
  border-top: 1px solid #2a2a2a;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1023px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer__logo-block {
  max-width: 340px;
}
@media screen and (max-width: 1023px) {
  .footer__logo-block {
    max-width: none;
  }
}
.footer__logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer__logo span {
  color: #c9a84c;
}
.footer__tagline {
  font-size: 0.75rem;
  color: #999999;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer__info-text {
  font-size: 0.8rem;
  color: #999999;
  line-height: 2;
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
@media screen and (max-width: 767px) {
  .footer__nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
  }
}
.footer__nav ul li a {
  font-size: 0.8rem;
  color: #999999;
  display: block;
  padding: 6px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer__nav ul li a:hover {
    color: #c9a84c;
    opacity: 1;
  }
}
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: #999999;
  letter-spacing: 0.05em;
}

.pagetop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: #c9a84c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) {
  .pagetop:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    opacity: 0.85 !important;
  }
}
.pagetop svg {
  width: 22px;
  height: 22px;
  color: #0d0d0d;
}