@charset "UTF-8";

/* =====================
  RESET / BASE
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.7;
  padding-top: 64px; /* fixed header 対策 */
  padding-bottom: 60px; /* 固定CTA分 */
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* =====================
  SECTION 共通
===================== */
.section {
  padding: 70px 16px;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 40px;
}

/* =====================
  HEADER
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, height 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(0px);
}

.header.scrolled-mid {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  height: 60px;
}

.header.scrolled {
  background: #fff;
  height: 56px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: height 0.35s ease;
}

.header.scrolled .header-inner {
  height: 56px;
}

.header.scrolled-mid .header-inner {
  height: 60px;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 36px;
  width: auto;
  transition: transform 0.35s ease, height 0.35s ease;
}

.header.scrolled-mid .logo img {
  height: 34px;
}

.header.scrolled .logo img {
  height: 30px;
  transform: translateY(-1px);
}

/* 中央テキスト */
.header-center {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #1d2035;
  text-shadow: 2.5px 2.5px 0 #1e90ff;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.35s ease;
  opacity: 0.65;
}

.header.scrolled-mid .header-center {
  opacity: 0.9;
  transform: translate(-50%, -1px);
}

.header.scrolled .header-center {
  opacity: 1;
  transform: translate(-50%, -2px);
}

@media (min-width: 768px) {
  .header-center {
    font-size: 2.4rem;
    text-shadow: 2px 2px 0 #1e90ff;
  }
}

@media (max-width: 767px) {
  .header-center {
    font-size: 1.6rem;
  }
  .logo img {
    height: 32px;
  }
}

/* NAV */
.nav {
  position: fixed;
  top: 64px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 64px);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  z-index: 999;
}

.nav.active {
  right: 0;
}

.nav a {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
  .nav {
    width: 320px;
  }
}

/* =====================
  HERO (Swiper)
===================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-swiper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* 画像アニメーション */
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 32s linear infinite;
  transform-origin: right center;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.1) translateX(0);
  }
  to {
    transform: scale(1.22) translateX(-2.5%);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* --- ヒーロー内のレイアウト調整 --- */
.hero-inner {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  width: 100%;

  /* ふわっと表示アニメーション */
  opacity: 0;
  animation: heroIntro 1.2s ease-out forwards;
}

/* 1. 上部の英語 (PERSONAL TRAINING GYM) */
.hero-caps {
  color: #ff7a00; /* オレンジ */
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 英語の下の短い線 */
.hero-caps::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ff7a00;
  margin: 8px auto 0; /* 中央寄せ */
}

/* 2. メインタイトル (理想の自分に) */
.hero-main-title {
  color: #fff; /* 白 */
  font-size: 4rem; /* かなり大きく */
  font-weight: 900; /* 極太 */
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* 少し影をつけて読みやすく */
}

/* 3. サブタイトル (完全個別指導 × ...) */
.hero-sub-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ×マーク */
.hero-sub-text .cross {
  color: #1e90ff;
  margin: 0 4px;
  font-size: 1.2rem;
}

/* CTAボタン */
.cta {
  display: inline-block;
  background: #ff7a00;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: bold;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
  transition: transform 0.2s;
}

.cta:hover {
  transform: translateY(-3px);
}

/* --- スマホ対応 --- */
@media (max-width: 767px) {
  .hero-main-title {
    font-size: 2.4rem; /* スマホではサイズを抑える */
  }
  .hero-sub-text {
    font-size: 0.85rem;
    white-space: nowrap; /* 改行させない */
  }
  .hero-caps {
    font-size: 0.75rem;
  }
  /* スマホでの位置調整 */
  .hero-inner {
    top: 40%;
  }
}

/* 動くロゴ */
.hero-logo {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: heroLogoIntro 1.2s ease-out forwards;
  animation-delay: 0.25s;
}

.hero-logo img {
  height: 200px;
  width: auto;
  opacity: 0.95;
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@media (max-width: 767px) {
  .hero-logo img {
    height: 150px;
  }
}

@keyframes heroIntro {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes heroLogoIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* =====================
  FEATURE
===================== */
#feature .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

#feature .section-title .title-highlight {
  color: #1e90ff;
}

#feature .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ff7a00;
  border-radius: 2px;
}

.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feature-card.card-01 {
  background-image: url("../img/feature1.AVIF");
}
.feature-card.card-02 {
  background-image: url("../img/feature2.AVIF");
}
.feature-card.card-03 {
  background-image: url("../img/feature3.AVIF");
}

.feature-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.feature-number {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  font-family: Arial, sans-serif;
  color: #1e90ff;
  opacity: 0.6;
  z-index: 1;
}

.feature-card h4 {
  position: relative;
  margin: 0 0 16px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  padding-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.feature-card h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ff7a00;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  z-index: 2;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-card {
    height: 260px;
  }
  .feature-number {
    font-size: 5rem;
  }
}

/* =====================
  PROCESS
===================== */
.process-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.process-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.process-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: 0.2s;
}

.process-btn.primary {
  background: #ff7a00;
  color: #fff;
}

.process-btn.ghost {
  background: #fff;
  color: #1e90ff;
  border: 1px solid #1e90ff;
}

.process-btn:hover {
  transform: translateY(-2px);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.process-step {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 144, 255, 0.12);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #1e90ff, #4facfe);
}

.step-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #1e90ff;
  background: rgba(30, 144, 255, 0.14);
  border: 1px solid rgba(30, 144, 255, 0.18);
  margin-left: 6px;
}

.step-body h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #222;
}

.step-body p {
  margin: 0;
  color: #555;
  line-height: 1.75;
  font-size: 0.95rem;
}

.process-photo {
  background: #f2f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 144, 255, 0.12);
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .process-wrap {
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
  }
  .process-photo {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .process-photo {
    aspect-ratio: 16 / 10;
  }
}

/* ====================================
   PRICE SECTION (WIDE 2-COL + 1-COL)
==================================== */
.price-section {
  background-color: #f7f9fc;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.price-section .container {
  max-width: 1280px; /* ワイド */
  margin: 0 auto;
  padding: 0 32px;
}

.section-sub {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 50px;
  color: #ff7a00;
  font-weight: bold;
  font-size: 1.1rem;
  background: #fff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* スマホ対応 */
@media (max-width: 900px) {
  .price-section .container {
    padding: 0;
  }
  .section-sub {
    font-size: 1rem;
  }
}

.price-grid-mixed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 0 0 24px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.price-head {
  background: #f4f7fa;
  padding: 20px 0;
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 16px 16px 0 0;
  color: #333;
  border-bottom: 1px solid #eee;
}

.card-sub-text {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin: 15px 0 20px;
}

/* 入会金 */
.card-join {
  background: #1a1a1a;
  color: #fff;
  border: none;
  overflow: visible;
}

.card-join .price-head {
  background: transparent;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-join .card-sub-text {
  color: #ccc;
}

.ribbon-top-left {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  pointer-events: none;
}

.ribbon-top-left span {
  position: absolute;
  display: block;
  width: 150px;
  padding: 8px 0;
  background-color: #ff3333;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  right: -15px;
  top: 25px;
  transform: rotate(-45deg);
}

.price-body {
  padding: 0 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-strike-box {
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  margin: 0 auto 5px;
}

.strike-label {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: #aaa;
}

.arrow-down {
  font-size: 0.7rem;
  color: #ff7a00;
  line-height: 1;
}

.price-big-area {
  font-size: 5rem;
  font-weight: 900;
  color: #ff7a00;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 122, 0, 0.4);
  letter-spacing: -3px;
  margin: 10px 0;
}

.currency {
  font-size: 2rem;
  color: #fff;
  margin-right: 5px;
  vertical-align: top;
  margin-top: 15px;
  display: inline-block;
}

.price-desc {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.marker {
  background: linear-gradient(transparent 60%, #ff3333 60%);
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
}

/* 都度払い */
.visitor-stack {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  justify-content: center;
}

.v-ticket {
  display: flex;
  flex-direction: column;
  border: 2px solid #1e90ff;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.v-ticket-left {
  background: #1e90ff;
  color: #fff;
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.v-min {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.v-unit {
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0.9;
}

.v-ticket-right {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background: #fff;
}

.v-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e90ff;
  line-height: 1;
  letter-spacing: -1px;
}

.v-yen {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  margin-left: 4px;
}

.v-note {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
  font-size: 0.75rem;
  color: #aaa;
}

/* 回数券（1カラム） */
.card-ticket-full {
  grid-column: 1 / -1;
  padding-bottom: 0;
}

.ticket-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 30px 40px;
}

.t-card-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.t-card-head {
  padding: 15px;
  border-bottom: 1px dashed #eee;
  background: #fcfcfc;
  border-radius: 12px 12px 0 0;
}

.t-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #333;
}

.t-calc {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

.t-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.t-label-mini {
  font-size: 0.7rem;
  background: #eee;
  color: #555;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.t-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #333;
  line-height: 1;
  margin-bottom: 8px;
}

.t-price-val .yen {
  font-size: 0.8rem;
}

.t-per-row {
  font-size: 0.85rem;
  font-weight: bold;
  color: #1e90ff;
  background: #f0f8ff;
  padding: 4px;
  border-radius: 4px;
}

.t-per-row .num {
  font-size: 1.1rem;
}

.t-desc-note {
  font-size: 0.7rem;
  color: #999;
  margin-top: 8px;
}

.text-orange {
  color: #ff7a00;
}

.t-badge-top {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  background: #ff7a00;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-weight: bold;
  white-space: nowrap;
}

/* 人気No.1 */
.item-best {
  border: 2px solid #ff7a00;
  background: #fffbf0;
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.1);
  z-index: 1;
}

.item-best .t-card-head {
  background: rgba(255, 122, 0, 0.05);
}

.crown-badge {
  position: absolute;
  /* 位置を左上の角に合わせる */
  top: -8px;
  left: -15px;

  /* 斜めにする（-30度回転） */
  transform: rotate(-30deg);

  background: #ff7a00;
  color: #fff;
  padding: 4px 18px; /* 横幅を少し広げてバランス調整 */
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;

  /* 影を少し強めにして浮いている感を出す */
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);

  white-space: nowrap;
  z-index: 10; /* 他の要素より手前に */
}

.t-badge-gold {
  color: #ff7a00;
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 122, 0, 0.3);
}

.t-name-best {
  font-size: 1.3rem;
  font-weight: 800;
}

.t-calc-best {
  font-size: 0.75rem;
  color: #666;
}

.t-price-best {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
  line-height: 1;
  margin: 10px 0;
}

.t-price-best .yen {
  font-size: 0.9rem;
}

.t-per-best {
  background: #ff7a00;
  color: #fff;
  padding: 6px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
}

.t-per-best .num {
  font-size: 1.3rem;
  margin: 0 2px;
}

.t-desc-best {
  font-size: 0.75rem;
  color: #ff7a00;
  font-weight: bold;
  margin-top: 8px;
}

/* フッターメッセージ */
.ticket-footer-msg {
  background: #f7f9fc;
  margin-top: auto;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #eee;
  border-radius: 0 0 16px 16px;
}

.ticket-footer-msg p {
  font-size: 0.8rem;
  color: #555;
  font-weight: bold;
  margin: 2px 0;
}

/* CTA */
.price-cta-area {
  margin-top: 50px;
  text-align: center;
}

.price-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #ff7a00, #ff5500);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 18px 50px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.price-cta-btn:hover {
  transform: translateY(-3px);
}

.shine {
  position: relative;
  z-index: 2;
}

.price-cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* スマホ対応 */
@media (max-width: 900px) {
  .price-grid-mixed {
    grid-template-columns: 1fr;
  }
  .card-ticket-full {
    grid-column: auto;
  }
  .ticket-grid-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px 30px;
  }
  .item-best {
    transform: scale(1.02);
    margin: 10px 0;
  }
  .price-big-area {
    font-size: 4.5rem;
  }
}

/* =====================
  FAQ
===================== */
.faq {
  width: 100%;
  background: #f2f5f9;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 16px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
}

.faq-icon {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.faq-a {
  display: none;
  padding: 20px;
  background: #e9eef4;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-a {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* =====================
  TRAINER
===================== */
.trainer-section {
  background-color: #f7f9fc;
}

.trainer-card-dark {
  display: flex;
  background-color: #0f172a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.trainer-img-col {
  width: 45%;
  position: relative;
}

.trainer-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trainer-text-col {
  width: 55%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trainer-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.trainer-name-en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.05em;
}

.trainer-role-en {
  color: #ff7a00;
  font-weight: bold;
  font-size: 1rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.05em;
}

.trainer-line {
  width: 60px;
  height: 4px;
  background-color: #1e90ff;
  margin-bottom: 30px;
}

.trainer-quote {
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #fff;
}

.trainer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.trainer-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.t-tag {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s;
}

.t-tag:hover {
  background-color: #1e90ff;
  border-color: #1e90ff;
}

/* スマホ対応（トレーナー） */
@media (max-width: 767px) {
  .trainer-card-dark {
    flex-direction: column; /* 縦並び */
    max-width: 100%;
  }

  .trainer-img-col {
    width: 100%;
    height: 300px; /* スマホでの画像の高さ固定 */
  }

  .trainer-text-col {
    width: 100%;
    padding: 40px 24px;
  }

  .trainer-name-en {
    font-size: 2.2rem;
  }
}

/* =====================
  CONTACT
===================== */
.contact {
  width: 100%;
  background: #eef2f6;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 16px;
}

.contact-lead {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d6dce5;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #eef2f6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #607d8b;
  box-shadow: 0 0 0 3px rgba(96, 125, 139, 0.18);
}

.btn-submit {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #ff7a00;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background: #e86d00;
  transform: translateY(-2px);
}

.form-type {
  margin-bottom: 28px;
}

.req {
  color: #ff7a00;
  font-size: 0.85rem;
  margin-left: 4px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.type-select {
  grid-template-columns: 1fr 1fr;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f5f9;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
  flex-direction: row;
}

.radio input[type="radio"] {
  width: 12px;
  height: 12px;
  accent-color: #1e90ff;
}

.radio span {
  line-height: 1.4;
  padding-left: 15px;
}

.radio:hover {
  background: #e6ecf3;
}

.radio input:checked + span {
  color: #1e90ff;
}

@media (max-width: 767px) {
  .radio-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    padding: 80px 0px;
  }
}

.thanks-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 2000;
}

.thanks-overlay.active {
  opacity: 1;
  visibility: visible;
}

.thanks-box {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.thanks-overlay.active .thanks-box {
  transform: translateY(0);
}

.thanks-close {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #455a64;
  color: #fff;
  cursor: pointer;
}

/* =====================
  ACCESS
===================== */
.access {
  width: 100%;
  background: #fff;
}

.access-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 16px;
}

.access-card {
  background: #f2f5f9;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 22px;
}

.access-name {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #222;
  font-weight: 800;
}

.access-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.access-list > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
}

.access-list dt {
  font-weight: 800;
  color: #2f3b4a;
}

.access-list dd {
  color: #333;
  line-height: 1.7;
}

.access-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.access-btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  background: #455a64;
  color: #fff;
  font-weight: 800;
  transition: 0.2s;
}

.access-btn:hover {
  background: #37474f;
  transform: translateY(-2px);
}

.access-btn.ghost {
  background: #fff;
  color: #455a64;
  border: 1px solid #c9d4df;
}

.access-btn.ghost:hover {
  background: #eef2f6;
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #e9eef4;
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .access-card {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    padding: 32px;
  }
}

/* =====================
  FOOTER & CTA
===================== */
.footer {
  background: #111;
  color: #fff;
  padding: 30px 16px;
  text-align: center;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 999;
}

.cta-btn {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  font-weight: bold;
  color: #fff;
}

.cta-btn.phone {
  background: #ff7a00;
}

.cta-btn.line {
  background: #1e88e5;
}

@media (min-width: 768px) {
  .fixed-cta {
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
}

/* =====================
  ハンバーガーメニュー修正版
===================== */

/* 1. ボタンの外枠を固定する */
.hamburger {
  display: block; /* 表示する */
  position: relative; /* 中の線の基準位置 */
  width: 50px; /* ★幅を50pxに固定（これで巨大化を防ぎます） */
  height: 50px; /* ★高さを50pxに固定 */
  background: transparent; /* 背景なし */
  border: none; /* 枠線なし */
  cursor: pointer; /* クリックできる指マーク */
  z-index: 2000; /* メニューより手前に表示 */
  padding: 0;
  margin-left: auto; /* ヘッダー内で右寄せ */
}


/* 2. 3本線の共通設定 */
.hamburger span {
  display: block;
  position: absolute; /* ボタンの中で自由に配置 */
  left: 50%; /* 左右中央に */
  transform: translateX(-50%); /* 完全に真ん中へ補正 */
  width: 26px; /* ★線の長さを26pxに制限 */
  height: 2px; /* 線の太さ */
  background-color: #333; /* 線の色 */
  border-radius: 2px;
  transition: all 0.3s ease-in-out; /* アニメーション */
}

/* 3. 通常時（三本線）の位置 */
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 24px;
}
.hamburger span:nth-child(3) {
  top: 33px;
}

/* 4. クリック後（activeクラスがついた時）の変化 */
/* 1本目を45度回転 */
.hamburger.active span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

/* 2本目を透明に */
.hamburger.active span:nth-child(2) {
  opacity: 0;
}

/* 3本目を-45度回転 */
.hamburger.active span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =====================
   ポリシー系ページ (Law/Privacy) 共通デザイン
===================== */

/* ボディの背景色を変更するためのクラス */
body.policy-body {
  background-color: #f7f9fc;
  color: #444;
}

/* コンテンツ全体を包む白い箱 */
.policy-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 60px 40px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ページタイトル */
.policy-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
  position: relative;
  letter-spacing: 0.05em;
  color: #222;
}

.policy-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #ff7a00; /* アクセントカラー */
}

/* --- 特定商取引法用のリストデザイン (DL/DT/DD) --- */
.policy-dl {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
}

.policy-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.policy-dt {
  width: 30%;
  background-color: #fafafa;
  padding: 20px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center; /* 縦位置中央 */
}

.policy-dd {
  width: 70%;
  padding: 20px;
  color: #555;
  line-height: 1.8;
}

/* --- プライバシーポリシー用のセクションデザイン --- */
.policy-section {
  margin-bottom: 40px;
}

.policy-h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 5px solid #1e90ff; /* 青アクセント */
  color: #222;
  line-height: 1.4;
}

.policy-p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.policy-list {
  background-color: #f9f9f9;
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
  list-style-type: disc;
  color: #555;
}

.policy-list li {
  margin-bottom: 8px;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

/* スマホ対応 (レスポンシブ) */
@media (max-width: 768px) {
  .policy-container {
    margin: 20px;
    padding: 30px 20px;
  }

  /* 特定商取引法リストを縦並びに */
  .policy-row {
    flex-direction: column;
  }
  .policy-dt {
    width: 100%;
    background-color: transparent;
    padding: 15px 0 5px 0;
    color: #1e90ff; /* スマホでは見出しを青文字にして区別 */
    font-size: 0.9rem;
  }
  .policy-dd {
    width: 100%;
    padding: 0 0 20px 0;
  }

  .policy-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}