@charset "UTF-8";
.body {
  position: relative;
  min-height: 100svh;
  z-index: 1;
}
.main {
  position: relative;
  min-height: 100vh;
  margin-inline: auto;
  background-color: #fff;
  overflow: clip;
  max-width: 500px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.fixed-bg {
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  min-height: 1000px;
  background: url(../img/monitor-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  width: min(100%, 532px);
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background-color: #000;
  }
  &::after {
    right: 0;
    left: auto;
  }
}
.general-section {
  position: relative;
  z-index: 1;
}
.scroll-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  p {
    font-size: 1.4rem;
    color: #fff;
  }
  span {
    display: block;
    height: 70px;
    width: 1px;
    background-color: #010101;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      translate: -50% 0;
      width: 1px;
      height: 100%;
      background-color: #fff;
      animation: scroll 2s infinite;
    }
  }
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.kv {
  position: relative;
  figure {
    clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  }
}
.kv img:nth-of-type(2) {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.kv.is-act img:nth-of-type(2) {
  opacity: 1;
}
.kv-inner {
  position: absolute;
  bottom: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kv-copy {
  display: flex;
  font-size: 2rem;
  background-color: #fff;
  width: fit-content;
  scale: 0 1;
  transition: all 0.5s ease;
  transition-delay: 5s;
  transform-origin: bottom left;
  .emphasis {
    color: #4089e0;
  }
}
.animated.kv-copy {
  scale: 1 1;
}
.kv-copy-inner {
  transition: all 0.5s ease;
  transition-delay: 6s;
  padding: 0.75em;
  translate: 0 1em;
  opacity: 0;
}
.animated .kv-copy-inner {
  translate: 0 0;
  opacity: 1;
}
.intro-heading {
  font-size: 3.8rem;
  margin-bottom: 28px;
  line-height: 1.5;
  font-weight: 900;
}
.intro {
  .inner {
    padding-inline: 32px;
  }
}
.intro-banner {
  position: relative;
  margin-block-end: 70px;
}

/* ========== コンセプトセクション ========== */
.intro-concept {
  background-color: #111;
  color: #fff;
}
.intro-concept-title {
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.intro-concept-lead {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: #c4bba6;
  margin-bottom: 28px;
}
.intro-concept-body {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}
.intro-concept-closing {
  .note {
    color: rgba(255, 255, 255, 0.85);
  }
}
@media screen and (max-width: 767px) {
  .intro-concept-title {
    font-size: 2.6rem;
  }
  .intro-concept-lead {
    font-size: 1.3rem;
  }
}
.intro-banner-en {
  position: absolute;
  z-index: 1;
  rotate: 90deg;
  top: -64px;
  right: 0;
  translate: 100% 0;
  color: #000;
  font-size: 1.4rem;
  transform-origin: top left;
  span {
    color: #fff;
  }
}
.bg-white {
  background-color: #fff;
}
.border-bg {
  border-bottom: 1px solid #f0f0f0;
  background-image: linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 25% 132px;
  background-repeat: repeat;
  background-position: center top;
}
.concept-item-image {
  position: relative;
  margin-bottom: 30px;
  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000003c;
  }
}
.concept-item-lead {
  position: absolute;
  left: 10px;
  top: 20px;
}
.concept-item-heading {
  position: absolute;
  left: 10px;
  bottom: 20px;
  font-size: 2.4rem;
  color: #fff;
  > span {
    padding: 0.3em 0.5em 0.45em;
    display: inline-block;
    position: relative;
    z-index: 1;
    &::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background-color: #000;
      transition: all 0.5s ease;
    }
    > span {
      display: inline-block;
      opacity: 0;
      translate: 0 10px;
      transition: all 0.5s ease 0.8s;
    }
  }
  > span:nth-of-type(2) {
    &::before {
      transition: all 0.5s ease 0.2s;
    }
    > span {
      transition: all 0.5s ease 1s;
    }
  }
  .emphasis {
    font-size: 3.2rem;
    font-style: normal;
    color: #d1c6b4;
  }
  &.animated {
    > span {
      &::before {
        width: 100%;
      }
      > span {
        opacity: 1;
        translate: 0 0;
      }
    }
  }
}
.concept-item-lead {
  color: #fff;
  .num {
    font-size: 4rem;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.1em;
    span {
      font-size: 2rem;
      margin-left: 10px;
      padding-left: 10px;
      display: inline-block;
      position: relative;
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        translate: 0 -50%;
        background: repeating-linear-gradient(
          0deg,
          #fff 0px,
          #fff 1px,
          transparent 1px,
          transparent 4px
        );
        width: 1px;
        height: 60%;
      }
    }
  }
  .en {
    font-size: 1.4rem;
  }
}
.concept-list {
  display: grid;
  gap: 80px;
}
.concept-item {
  display: grid;
  img {
    margin-block-end: 20px;
  }
  .note {
    span {
      font-size: 120%;
    }
  }
}
.monitor {
  background-color: #000;
  .inner {
    color: #fff;
  }
}
.faq {
  .inner {
    padding-inline: 16px;
  }
}
.faq-heading {
  .en {
    font-size: 2.8rem;
    margin-bottom: 0.1em;
    line-height: 1.5;
  }
  .ja {
    font-size: 1rem;
  }
}
.faq-list {
  margin-top: 60px;
  font-size: 1.6rem;
  display: grid;
  gap: 48px;
}
.faq-item {
  cursor: pointer;
  overflow: hidden;
}
.q-item {
  position: relative;
  padding-left: 40px;
  padding-right: 63px;
  line-height: 1.5;
  padding-block: 0.1em;
  &::before {
    content: "Q";
    font-size: 2.8rem;
    position: absolute;
    top: 0;
    left: 0;
    translate: 0 -12px;
  }
}
.a-item {
  position: relative;
  padding-left: 40px;
  margin-top: 18px;
  padding-right: 63px;
  line-height: 1.5;
  max-height: 0vh;
  transition: max-height 0.3s ease;
  &::before {
    content: "A";
    font-size: 2.8rem;
    position: absolute;
    top: 0;
    left: 0;
    translate: 0 -11px;
  }
}
.is-open {
  .a-item {
    max-height: 100vh;
    transition: max-height 1s ease;
  }
}
.accordion-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  margin-left: auto;
  width: 20px;
  height: 20px;
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    height: 1px;
    background-color: #e9e9e9;
    transition: max-height 0.3s ease;
  }
  &::after {
    transform: rotate(90deg);
  }
}
.is-open {
  .accordion-btn {
    &::after {
      transform: rotate(0deg);
    }
  }
}
.contact {
  color: #fff;
}
.contact-en {
  margin-top: 76px;
}
/* header */
.header {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  max-width: 500px;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 67px;
  z-index: 100;
  background-color: #fff;
}
.logo {
  width: 85px;
  height: 36px;
  display: flex;
  position: relative;
  img {
    object-fit: contain;
  }
}
.header-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  li {
    a {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 36px;
      width: 120px;
      border-radius: 100vmax;
      transition: all 0.3s ease;
      font-size: 1.4rem;
    }
  }
  .paln {
    a {
      background-color: #cdccce;
      color: #fff;
      border: 1px solid #cdccce;
      &:hover {
        background-color: #fff;
        color: #cdccce;
      }
    }
  }
  .trial {
    a {
      background-color: #000;
      color: #fff;
      border: 1px solid #000;
      &:hover {
        background-color: #fff;
        color: #000;
      }
    }
  }
}
.hamburger-btn {
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
  /* display: grid; */
  place-items: center;
  z-index: 101;
  &::before,
  &::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    transition: all 0.3s ease;
  }
  &::before {
    top: 0;
  }
  &::after {
    bottom: 0;
  }
  .is-active & {
    &::before {
      rotate: -25deg;
      top: 50%;
      translate: 0 -50%;
    }
    &::after {
      rotate: 25deg;
      bottom: 47%;
      translate: 0 -50%;
    }
  }
  span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    display: block;
    transition: all 0.3s ease;
    .is-active & {
      opacity: 0;
    }
  }
}
.side-nav-logo {
  width: min(100%, 297px);
}
.side-nav-menu {
  margin-top: 126px;
  font-size: 3.7rem;
}
.side-nav-menu-list {
  display: grid;
  gap: 30px;
}
.side-nav-menu-link {
  color: #fff;
  position: relative;
  font-size: 3rem;
  font-weight: 300;
  span {
    font-size: 2.3rem;
    border-left: 1px solid #fff;
    padding-inline-start: 18px;
    margin-inline-start: 18px;
  }

  &::before {
    content: "";
    position: absolute;
    bottom: -0.1em;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  &:hover {
    &::before {
      width: 100%;
    }
  }
}
.pc-bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000!important;
  z-index: -1;
  padding: 70px 40px;
  display: flex;
  justify-content: space-between;
}
.side-btn {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  margin-bottom: 100px;
  .btn {
    margin-top: 0;
  }
}
.pc-bg-border {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #000;
}
.loop-en {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  padding-block: 33px;
  display: flex;
  white-space: nowrap;
  gap: 20px;
}
.loop-en-text {
  font-size: 2.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  &.-item01 {
    animation: loop 20s linear infinite;
  }
  &.-item02 {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    animation: loop 20s -10s linear infinite;
  }
  span {
    font-size: 1.6rem;
    color: #c4bba6;
    border: 1px solid #c4bba6;
    border-radius: 100vmax;
    padding: 0.2em 2em 0.3em;
  }
}
.header-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  z-index: -100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 16px;
  transition: all 0.3s ease;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    z-index: -1;
  }
  .is-active & {
    opacity: 1;
    z-index: 99;
    pointer-events: all;
  }
}
.header-nav-link {
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .side-nav-logo {
    width: 20vw;
  }
}
@media screen and (max-width: 1024px) {
  .side-nav-menu-list {
    gap: 0;
  }
  .side-nav-menu-link {
    font-size: 2vw;
  }
  .side-nav-logo {
    width: 180px;
  }
}
@media screen and (max-width: 1023px) {
  .side-nav,
  .side-btn {
    display: none;
  }
  .hamburger-btn {
    display: grid;
  }
  .header-nav {
    display: block;
  }
  .header {
    position: fixed;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    margin-top: 30px;
  }
  .contact-en {
    margin-top: 50px;
  }
  .contact {
    padding-bottom: 60px;
  }
  .loop-en {
    padding: 0;
    height: 60px;
  }
  .intro-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .concept-item-heading {
    font-size: 1.5rem;
    .emphasis {
      font-size: 2rem;
    }
  }
  .faq-item {
    font-size: 1.4rem;
  }
  .faq-list {
    gap: 30px;
  }
  .q-item,
  .a-item {
    padding-right: 32px;
  }
  .loop-en {
    position: fixed;
    z-index: 90;
    bottom: 0;
    left: 0;
    right: 0;
    padding-block: 33px;
    display: flex;
    white-space: nowrap;
    gap: 10px;
    background-color: #000;
  }
  .loop-en-text {
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 5px;
    &.-item01 {
      animation: loop 10s linear infinite;
    }
    &.-item02 {
      position: absolute;
      top: 50%;
      left: 0;
      translate: 0 -50%;
      animation: loop 10s -5s linear infinite;
    }
    span {
      font-size: 1.2rem;
      color: #c4bba6;
      border: 1px solid #c4bba6;
      border-radius: 100vmax;
      padding: 0.2em 2em 0.3em;
    }
  }
  .faq {
    padding-block-end: 40px;
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadein {
  translate: 0 10px;
  opacity: 0;
  transition: all 1s ease 0.2s;
}
.fadein.animated {
  translate: 0 0;
  opacity: 1;
}

/* ========== KV コンテンツ ========== */
.kv-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 96px;
  z-index: 2;
  color: #fff;
}
.kv-main-copy {
  font-size: 5rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.kv-sub-tag {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0;
  line-height: 1.5;
}
.kv-target-text {
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  color: #c4bba6;
  font-weight: 500;
  &::before { content: "— "; }
  &::after  { content: " —"; }
}
.kv-cta-btn {
  margin-top: 0;
  a {
    margin-inline: 0;
    width: min(100%, 270px);
    height: 48px;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    &:hover {
      background: rgba(255, 255, 255, 0.9);
      color: #000;
    }
  }
}

/* ========== 共通セクション見出し ========== */
.section-heading {
  margin-bottom: 40px;
}
.section-heading-en {
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.section-heading-ja {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

/* ========== 共通セクション内 CTA ========== */
.section-cta {
  margin-top: 48px;
  text-align: center;
  a {
    display: inline-grid;
    place-content: center;
    position: relative;
    font-size: 1.5rem;
    width: min(100%, 320px);
    height: 54px;
    color: #fff;
    border: 1px solid #fff;
    transition: 0.3s ease;
    margin-inline: auto;
    &::before {
      content: "";
      position: absolute;
      width: 7.5px;
      aspect-ratio: 1/1;
      top: 50%;
      right: 14px;
      transform-origin: top right;
      rotate: 45deg;
      transform: skew(15deg, 15deg);
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
    }
    &:hover {
      background: rgba(255,255,255,0.1);
    }
  }
  &.-dark {
    a {
      color: #000;
      border-color: #000;
      &:hover {
        background: rgba(0,0,0,0.08);
      }
    }
  }
}

/* ========== ターゲット共感セクション ========== */
.concerns {
  background-color: #111;
  color: #fff;
  .section-heading-ja {
    opacity: 0.6;
  }
}
.concerns-list {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}
.concerns-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
}
.concerns-icon {
  font-size: 1rem;
  color: #c4bba6;
  flex-shrink: 0;
  margin-top: 0.4em;
}
.concerns-resolve-text {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.06em;
  color: #c4bba6;
  border: 1px solid #c4bba6;
  padding: 1em 1.5em;
  line-height: 1.7;
}

/* ========== トレーナー紹介セクション ========== */
.trainer {
  background-color: #fff;
}
.trainer-card {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.trainer-photo-placeholder {
  flex-shrink: 0;
  width: 110px;
  height: 140px;
  background-color: #e8e6e0;
  display: grid;
  place-content: center;
  font-size: 1.1rem;
  color: #888;
  text-align: center;
  letter-spacing: 0.04em;
}
.trainer-photo {
  flex-shrink: 0;
  width: 110px;
  height: 140px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.trainer-info {
  flex: 1;
}
.trainer-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.trainer-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.trainer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.badge {
  font-size: 1.1rem;
  border: 1px solid #333;
  padding: 0.2em 0.8em;
  letter-spacing: 0.04em;
}
.trainer-bio {
  font-size: 1.35rem !important;
  line-height: 1.9 !important;
}
.trainer-story {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}
.trainer-story-title {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  color: #333;
}

/* ========== 競合比較表セクション ========== */
.comparison {
  background-color: #0a0a0a;
  color: #fff;
  .section-heading-ja {
    opacity: 0.6;
  }
}
.comparison-table-wrap {
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  th, td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.5;
  }
  th {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  th:first-child,
  td:first-child {
    text-align: left;
    padding-left: 0;
  }
  .bet-col {
    color: #c4bba6;
    font-weight: 700;
  }
  .check { font-size: 1.8rem; color: #c4bba6; }
  .cross  { font-size: 1.8rem; color: #666; }
  .triangle { font-size: 1.6rem; color: #888; }
  tr:hover td {
    background: rgba(255, 255, 255, 0.03);
  }
}

/* ========== 実績数値バナー ========== */
.stats {
  background-color: #000;
  color: #fff;
}
.stats-list {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  margin-bottom: 32px;
}
.stats-item {
  text-align: center;
}
.stats-num {
  font-size: 3rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: #c4bba6;
  margin-bottom: 6px;
  span {
    font-size: 1.6rem;
  }
}
.stats-label {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
  line-height: 1.5;
}
.google-review-area {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 24px 16px;
  text-align: center;
}
.google-review-placeholder {
  font-size: 1.3rem;
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ========== お客様の声セクション ========== */
.voice {
  background-color: #fff;
}
.voice-list {
  display: grid;
  gap: 24px;
}
.voice-item {
  border: 1px solid #e0e0e0;
  padding: 24px 20px;
  position: relative;
  &::before {
    content: "\201C";
    font-family: "Arimo", sans-serif;
    font-size: 5rem;
    color: #e0e0e0;
    position: absolute;
    top: 8px;
    left: 14px;
    line-height: 1;
  }
}
.voice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.voice-stars {
  font-size: 1.2rem;
  color: #c4bba6;
  letter-spacing: 2px;
}
.voice-profile {
  font-size: 1.25rem;
  color: #666;
  letter-spacing: 0.04em;
}
.voice-text {
  font-size: 1.45rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #333;
}

/* ========== ビフォーアフターセクション ========== */
.before-after {
  background-color: #111;
  color: #fff;
  .section-heading-ja {
    opacity: 0.6;
  }
}
.ba-list {
  display: grid;
  gap: 40px;
}
.ba-item {}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.ba-image-wrap {
  position: relative;
}
.ba-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.ba-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #2a2a2a;
  display: grid;
  place-content: center;
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.06em;
  &.-after {
    background-color: #1e2a1e;
    color: #667;
  }
}
.ba-label {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 6px;
  color: #999;
  font-family: "Arimo", sans-serif;
  font-style: italic;
  &.-after {
    color: #c4bba6;
  }
}
.ba-caption {
  font-size: 1.25rem !important;
  text-align: center;
  color: #888;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* ========== 料金ページ追加スタイル ========== */
.plan-table-fee {
  li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 6px 30px;
    .plan-per-session {
      grid-column: 2 / -1;
      font-size: 1.15rem;
      color: #c4bba6;
      margin-top: -4px;
    }
  }
}
.plan-value-note {
  margin-top: 24px;
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}
.plan-payment-note {
  margin-top: 10px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

/* TRIALセクション 大型CTA */
.trial-cta-area {
  margin-top: 28px;
  text-align: center;
}
.trial-cta-btn {
  display: block;
  width: 100%;
  padding: 18px 16px;
  background-color: #fff;
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.4;
  border: none;
  transition: 0.3s ease;
  position: relative;
  &::after {
    content: "›";
    position: absolute;
    right: 20px;
    top: 50%;
    translate: 0 -50%;
    font-size: 2rem;
  }
  &:hover {
    background-color: #e8e6e0;
  }
}
.trial-cta-sub {
  margin-top: 10px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* LINE誘導エリア */
.line-cta-area {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
  text-align: center;
}
.line-cta-label {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background-color: #fff;
  color: #000;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: 0.3s ease;
  &:hover {
    background-color: #e8e6e0;
  }
}
.line-note {
  margin-top: 12px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ========== 体験の流れセクション ========== */
.flow {
  background-color: #111;
  color: #fff;
}
.flow-desc {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 48px;
}
.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 22px;
    width: 1px;
    background: rgba(255,255,255,0.12);
  }
}
.flow-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  &:last-child {
    border-bottom: none;
  }
}
.flow-num {
  flex-shrink: 0;
  width: 44px;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 700;
  color: #c4bba6;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.flow-body {
  flex: 1;
  padding-top: 2px;
}
.flow-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: #fff;
}
.flow-text {
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}
.flow-notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  margin-bottom: 0;
  li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
  }
}
.flow-note-icon {
  color: #c4bba6;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== アクセス・ギャラリーセクション ========== */
.access {
  background-color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #e8e6e0;
  display: grid;
  place-content: center;
  font-size: 1.1rem;
  color: #999;
  letter-spacing: 0.08em;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.access-info {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
}
.access-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1.4rem;
  line-height: 1.6;
  dt {
    font-weight: 700;
    color: #333;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  dd {
    color: #555;
  }
}
.map-wrap {
  width: 100%;
  overflow: hidden;
  iframe {
    display: block;
  }
}

/* ========== SNS誘導セクション ========== */
.sns {
  background-color: #0a0a0a;
  color: #fff;
  .section-heading-ja {
    opacity: 0.6;
  }
}
.sns-desc {
  margin-bottom: 24px;
  font-size: 1.35rem !important;
  opacity: 0.75;
}
.sns-feed {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  &::-webkit-scrollbar {
    display: none;
  }
  .instagram-media {
    flex: 0 0 78% !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 78% !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }
}
.sns-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.sns-link {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  transition: 0.3s ease;
  &:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}
.sns-link-icon {
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: "Arimo", sans-serif;
}
.sns-link-label {
  font-family: "Arimo", sans-serif;
  font-style: italic;
}

/* ========== LINE誘導バナー（FAQセクション末尾）========== */
.line-banner {
  margin-top: 48px;
  background-color: #111;
  padding: 28px 20px;
  text-align: center;
}
.line-banner-text {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  opacity: 0.85;
}

/* ========== レスポンシブ対応（新規追加セクション）========== */
@media screen and (max-width: 767px) {
  .kv-content {
    padding: 24px 18px 96px;
  }
  .kv-main-copy {
    font-size: 4.2rem;
  }
  .kv-sub-tag {
    font-size: 1.15rem;
    padding: 5px 12px;
  }
  .kv-sub-copy {
    font-size: 1.15rem;
  }
  .kv-cta-btn a {
    font-size: 1.3rem;
    height: 44px;
  }
  .section-heading-en {
    font-size: 2.2rem;
  }
  .trainer-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .trainer-photo-placeholder {
    width: 110px;
    height: 140px;
  }
  .trainer-photo {
    width: 110px;
    height: 140px;
  }
  .stats-list {
    gap: 8px;
  }
  .stats-num {
    font-size: 2.4rem;
    span { font-size: 1.3rem; }
  }
  .stats-label {
    font-size: 1rem;
  }
  .trial-cta-btn {
    font-size: 1.5rem;
    padding: 16px 12px;
  }
  .line-btn {
    font-size: 1.4rem;
  }
  .gallery-grid {
    gap: 6px;
  }
  .access-row {
    grid-template-columns: 68px 1fr;
    font-size: 1.3rem;
  }
  .comparison-table {
    font-size: 1.25rem;
    th, td { padding: 10px 6px; }
  }
  .voice-item {
    padding: 20px 16px;
  }
}
.plan {
  background-color: #000;
  color: #fff;
}
.plan-table {
  position: relative;
  padding: 32px 16px;
  border: 1px solid #fff;
}
.plan-title {
  position: absolute;
  top: 0;
  left: 1em;
  translate: 0 -50%;
  background-color: #000;
  padding-inline: 1em;
  font-size: 2.2rem;
  font-weight: 300;
}
.plan-table-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
}
.plan-table-note {
  line-height: 2;
}
.plan-table-fee {
  margin-block-start: 20px;
  font-size: 1.4rem;
  display: grid;
  gap: 12px;
  li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 40px;
  }
}
.plan-table-inner {
  margin-block-start: 50px;
}
.u-mt20 {
  margin-block-start: 20px;
}
.plan-table + .plan-table {
  margin-block-start: 50px;
}
