@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #b2b2b2;
  color: #2c2c2c;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.font-heading {
  font-family: 'Playfair Display', serif;
}

.font-numbers {
  font-family: 'Oswald', sans-serif;
}

/* ===== AURORA BACKGROUND ===== */
.aurora-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(144, 195, 30, 0.3), transparent),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(144, 195, 30, 0.2), transparent),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(226, 226, 226, 0.1), transparent),
    linear-gradient(135deg, #b2b2b2 0%, #b2b2b2 100%);
  animation: aurora 20s ease-in-out infinite;
}

.aurora-bg-alt {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(144, 195, 30, 0.3), transparent),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(144, 195, 30, 0.2), transparent),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(226, 226, 226, 0.1), transparent),
    linear-gradient(135deg, #b2b2b2 0%, #b2b2b2 100%);
  animation: aurora 20s ease-in-out infinite;
}

@keyframes aurora {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.9;
  }
}

@keyframes aurora-alt {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.05) rotate(-3deg);
    opacity: 0.95;
  }
}

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(144, 195, 30, 0.5);
  box-shadow:
    0 16px 48px 0 rgba(144, 195, 30, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.glass-nav {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.3);
}

/* ===== ACCENT COLORS ===== */
.bg-accent {
  background-color: #90c31e;
}

.text-accent {
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 4px;
}

.text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: url('marker_underline.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  clip-path: inset(0 100% 0 0);
  animation: markerReveal 1.2s ease-out forwards;
  animation-delay: 0.6s;
  z-index: -1;
}

@keyframes markerReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}


.border-accent {
  border-color: #90c31e;
}

.bg-accent\/90 {
  background-color: rgba(144, 195, 30, 0.9);
}

.bg-accent\/20 {
  background-color: rgba(144, 195, 30, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hover\:scale-102:hover {
  transform: scale(1.02);
}


/* ===== FLOATING CTA FOR MOBILE ===== */
.floating-cta {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: linear-gradient(135deg, #90c31e 0%, #7aa819 100%);
  color: black;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(144, 195, 30, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: none;
  max-width: calc(100vw - 32px);
  backdrop-filter: blur(10px);
}

.floating-cta-visible {
  bottom: 50px;
}

.floating-cta:active {
  transform: translateX(-50%) scale(0.95);
}

.floating-cta-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(100, 100, 100, 0.7);
  color: black;
  border: 2px solid white;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  transition: all 0.3s ease;
}

.floating-cta-close:hover {
  background: rgba(60, 60, 60, 0.9);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    align-items: center;
  }
}




























































::-webkit-scrollbar-track {
  background: #d0d0d0;
}

::-webkit-scrollbar-thumb {
  background: #90c31e;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7aa819;
}

/* ===== UTILITY CLASSES ===== */
.opacity-0 {
  opacity: 0;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .hidden.md\:flex {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hidden.md\:flex {
    display: flex !important;
  }
}

.hero-section {
  padding-top: 80px;
  /* Header only */
}

/* ===== NAVIGATION ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-sm {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Navigation */
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 18px 0;
  background: rgba(160, 160, 160, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

#navigation.scrolled {
  padding: 18px 0;
  background: rgba(160, 160, 160, 0.95);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: black;
  transform: scale(1.05);
}

/* Buttons */
.btn {
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background-color: #90c31e;
  color: black;
}

.btn-primary:hover {
  background-color: rgba(144, 195, 30, 0.9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: black;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border: 2px solid #90c31e;
  color: #90c31e;
  background: transparent;
}

.btn-outline:hover {
  background: #90c31e;
  color: black;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://placehold.co/1920x1080/1a1a1a/90c31e?text=Hero+Background+Image');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: black;
  margin-bottom: 24px;
  line-height: 1.1;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif;
}

.hero-title .italic {
  font-style: italic;
}

.hero-description {
  font-size: clamp(18px, 2vw, 24px);
  color: black;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 96px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  padding: 24px 40px;
  text-align: center;
  min-width: 240px;
  max-width: 100%;
}

.stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  color: black;
  font-size: 12px;
  line-height: 1.3;
}

@media (min-width: 769px) {
  .stat-card {
    padding: 20px 48px;
    min-width: 260px;
  }

  .stat-number {
    font-size: 24px;
    line-height: 1.3;
  }

  .stat-label {
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1600px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 12px;
  background: #90c31e;
  border-radius: 2px;
}

/* Sections */
.concept-section,
.menu-section,
.reasons-section,
.trainers-section,
.cta-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: black;
  margin-bottom: 24px;
}

.section-divider {
  width: 96px;
  height: 4px;
  background: #90c31e;
  margin: 0 auto 32px;
}

.section-description {
  font-size: clamp(18px, 2vw, 24px);
  color: black;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.font-bold {
  font-weight: 700;
}

/* Method Grid */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.method-card {
  padding: 32px;
  transition: all 0.5s ease;
}

.method-card:hover {
  transform: scale(1.05);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.method-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
}

.method-desc {
  color: black;
  line-height: 1.6;
}

/* Recommend Card */
.recommend-card {
  margin-top: 64px;
  padding: 48px;
  text-align: center;
}

.recommend-title {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 24px;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  text-align: left;
  max-width: 1024px;
  margin: 0 auto;
}

.recommend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recommend-bullet {
  width: 8px;
  height: 8px;
  background: #90c31e;
  border-radius: 50%;
  flex-shrink: 0;
}

.recommend-item span {
  color: black;
}

.insta_btn {
  display: inline-block;
  text-align: center;
  /*中央揃え*/
  color: #2e6ca5;
  /*文字色*/
  font-size: 20px;
  /*文字サイズ*/
  text-decoration: none;
  /*下線消す*/
}

.insta_btn:hover {
  /*ホバー時*/
  color: #668ad8;
  /*文字色*/
  transition: .5s;
  /*ゆっくり変化*/
}

.insta_btn .insta {
  /*アイコンの背景*/
  position: relative;
  /*相対配置*/
  display: inline-block;
  width: 50px;
  /*幅*/
  height: 50px;
  /*高さ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  border-radius: 13px;
  /*角丸に*/

}

.insta_btn .insta:before {
  /*グラデーションを重ねるため*/
  content: '';
  position: absolute;
  /*絶対配置*/
  top: 23px;
  /*ずらす*/
  left: -18px;
  /*ずらす*/
  width: 60px;
  /*グラデーションカバーの幅*/
  height: 60px;
  /*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.insta_btn .fa-instagram {
  /*アイコン*/
  color: #FFF;
  /*白に*/
  position: relative;
  /*z-indexを使うため*/
  z-index: 2;
  /*グラデーションより前に*/
  font-size: 35px;
  /*アイコンサイズ*/
  line-height: 50px;
  /*高さと合わせる*/
}

/* Tab Switcher */
.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-button {
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: black;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tab-button.active {
  background: #90c31e;
  color: black;
  transform: scale(1.05);
}

/* Plan Grid */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.plan-card {
  padding: 32px;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-name {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}

.plan-subtitle {
  font-size: 16px;
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.plan-option {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.plan-option:hover {
  transform: scale(1.05);
}

.plan-option-popular {
  background: rgba(144, 195, 30, 0.2);
  border: 2px solid #90c31e;
}

.plan-popular-badge {
  color: #90c31e;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-option-info {
  flex: 1;
}

.plan-option-sessions {
  color: black;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.plan-option-per {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.plan-option-price {
  font-size: 32px;
  font-weight: 700;
}

.plan-note {
  text-align: center;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Reasons List */
.reasons-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.reasons-list::-webkit-scrollbar {
  height: 8px;
}

.reasons-list::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.3);
  border-radius: 4px;
}

.reasons-list::-webkit-scrollbar-thumb {
  background: #90c31e;
  border-radius: 4px;
}

.reason-card {
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}

.reason-card:hover {
  transform: scale(1.02);
}

.reason-number {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-number-bg {
  position: absolute;
  inset: 0;
  background: rgba(144, 195, 30, 0.2);
  border-radius: 16px;
}

.reason-number span {
  position: relative;
  font-size: 32px;
  font-weight: 700;
}

.reason-content {
  flex: 1;
}

.reason-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}

.reason-desc {
  color: black;
}

.reason-badge {
  color: #90c31e;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid #90c31e;
  padding: 8px 24px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Trainers Grid */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

/* Mobile: Horizontal Scroll */
@media (max-width: 768px) {
  .trainers-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .trainers-grid::-webkit-scrollbar {
    height: 8px;
  }

  .trainers-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .trainers-grid::-webkit-scrollbar-thumb {
    background: #90c31e;
    border-radius: 4px;
  }
}

.trainer-card {
  padding: 32px;
  text-align: center;
}

/* Mobile: Card Layout */
@media (max-width: 768px) {
  .trainer-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 24px;
    margin: 0;
  }
}

.trainer-avatar {
  width: 200px;
  height: 200px;
  background: rgba(144, 195, 30, 0.2);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  border: 4px solid rgba(144, 195, 30, 0.3);
  overflow: hidden;
}

.trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .trainer-avatar {
    width: 120px;
    height: 120px;
    font-size: 60px;
    margin-bottom: 16px;
  }
}

.trainer-name {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .trainer-name {
    font-size: 24px;
  }
}

.trainer-role {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .trainer-role {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.trainer-details {
  text-align: left;
  width: 100%;
}

.trainer-section {
  margin-bottom: 24px;
}

.trainer-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #90c31e;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(144, 195, 30, 0.3);
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  .trainer-section-title {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
}

.trainer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trainer-list li {
  color: black;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trainer-list li {
    font-size: 13px;
    padding: 4px 0 4px 18px;
    line-height: 1.5;
  }
}

.trainer-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #90c31e;
}

.trainer-description {
  color: black;
  line-height: 1.8;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .trainer-description {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
    padding-top: 12px;
  }
}

.trainer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

@media (max-width: 768px) {
  .trainer-section {
    margin-bottom: 16px;
  }
}

.credential-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: black;
}

/* CTA Section */
.cta-card {
  padding: 64px;
  text-align: center;
}

.cta-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: black;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 20px;
  color: black;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-highlight {
  color: #90c31e;
  font-weight: 700;
  font-size: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-info {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  text-align: left;
}

.cta-info-title {
  color: black;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}

.cta-info-text {
  color: black;
  margin-bottom: 4px;
}

/* Footer */
.footer {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(83, 83, 83, 0.95);
  margin-bottom: 70px;
  /* Space for campaign banner */
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: #90c31e;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* Floating CTA Content */
.floating-cta-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.floating-cta-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.floating-cta-text {
  flex: 1;
  text-align: left;
}

.floating-cta-label {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.floating-cta-price {
  font-size: 14px;
  font-weight: 700;
}

.floating-cta-arrow {
  font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .method-grid,
  .plan-grid,
  .trainers-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    flex-direction: column;
    text-align: center;
  }

  .reason-badge {
    width: 100%;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== FACILITY SECTION ===== */
.facility-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.facility-card {
  padding: 0;
  overflow: hidden;
}

.facility-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
  transform: scale(1.1);
}

.facility-content {
  padding: 32px;
}

.facility-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.facility-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
}

.facility-desc {
  color: black;
  line-height: 1.6;
}

.facility-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.facility-note-icon {
  font-size: 24px;
}

.facility-note p {
  color: black;
  margin: 0;
}

/* ===== NEWS SECTION ===== */
.news-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.news-card {
  padding: 32px;
  display: flex;
  gap: 32px;
  transition: all 0.5s ease;
}

.news-card:hover {
  transform: translateX(8px);
}

.news-date {
  flex-shrink: 0;
  text-align: center;
  padding: 16px;
  background: rgba(144, 195, 30, 0.1);
  border-radius: 12px;
  min-width: 80px;
}

.news-year {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #90c31e;
  margin-bottom: 4px;
}

.news-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: black;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}

.news-desc {
  color: black;
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-link {
  color: #90c31e;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.news-link:hover {
  gap: 8px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  color: black;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(144, 195, 30, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #90c31e;
  font-size: 18px;
}

.faq-q-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

.faq-toggle {
  flex-shrink: 0;
  font-size: 24px;
  color: #90c31e;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 32px;
  display: flex;
  gap: 16px;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 24px 32px;
}

.faq-a-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(226, 226, 226, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.faq-answer p {
  flex: 1;
  color: black;
  line-height: 1.8;
  margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.about-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(144, 195, 30, 0.1);
  border-radius: 12px;
}

.about-content {
  flex: 1;
}

.about-label {
  font-size: 14px;
  font-weight: 700;
  color: #90c31e;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-value {
  font-size: 16px;
  color: black;
  line-height: 1.8;
  margin: 0;
}

.about-note {
  background: rgba(144, 195, 30, 0.05);
  border: 1px solid rgba(144, 195, 30, 0.2);
  border-radius: 16px;
  padding: 32px;
}

.about-note-content h4 {
  color: #90c31e;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-note-content p {
  color: black;
  line-height: 1.8;
  margin: 0;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex-direction: column;
    gap: 16px;
  }

  .news-date {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(100, 100, 100, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  z-index: 1001;
  max-width: 500px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: black;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
}

.modal-description {
  color: black;
  margin-bottom: 32px;
}

.modal-qr {
  background: white;
  padding: 20px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 24px;
}

.modal-qr img {
  width: 250px;
  height: 250px;
  display: block;
}

.modal-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ===== MAP CONTAINER ===== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== PILATES INFO ===== */
.pilates-info {
  padding: 40px;
  margin-top: 48px;
  border: 2px solid rgba(144, 195, 30, 0.3);
}

.pilates-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.pilates-icon {
  flex-shrink: 0;
}

.pilates-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #90c31e;
}

.pilates-title {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin: 0;
}

.pilates-description {
  font-size: 18px;
  color: black;
  margin-bottom: 20px;
  line-height: 1.8;
}

.pilates-feature {
  color: black;
  line-height: 1.8;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 12px;
  border-left: 4px solid #90c31e;
}

.pilates-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pilates-detail-item {
  display: flex;
  gap: 12px;
  color: black;
}

.pilates-label {
  font-weight: 700;
  color: #90c31e;
  min-width: 80px;
}

.pilates-value {
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pilates-header {
    flex-direction: column;
    text-align: center;
  }

  .pilates-detail-item {
    flex-direction: column;
    gap: 4px;
  }

  .pilates-label {
    min-width: auto;
  }

  .map-container {
    height: 300px;
  }

  .campaign-banner {
    top: 70px;
    padding: 12px 16px;
  }

  .campaign-text {
    font-size: 14px;
  }

  .campaign-highlight {
    font-size: 16px;
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(144, 195, 30, 0.3);
  box-shadow: 0 16px 48px rgba(144, 195, 30, 0.2);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: rgba(144, 195, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-image-placeholder {
  font-size: 48px;
  color: rgba(144, 195, 30, 0.5);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: #90c31e;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 14px;
  color: black;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(144, 195, 30, 0.2);
  border-top-color: #90c31e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.blog-link {
  text-align: center;
}

.blog-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* Pilates button */
.pilates-btn {
  margin-top: 24px;
  width: 100%;
  display: inline-block;
  text-align: center;
}

/* Footer adjustments */
.footer {
  margin-bottom: 70px;
  /* Space for campaign banner */
}

.footer-line-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.footer-line-btn:hover {
  color: #90c31e;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .campaign-banner {
    padding: 8px 12px;
    z-index: 90;
  }

  .campaign-content {
    gap: 6px;
  }

  .campaign-icon {
    font-size: 16px;
  }

  .campaign-text {
    font-size: 11px;
  }

  .campaign-highlight {
    font-size: 12px;
    padding: 2px 10px;
  }

  .footer {
    margin-bottom: 50px;
    /* キャンペーンバナー分の余白を小さく */
  }

  /* Floating CTAをキャンペーンバナーの上に表示 */
  .floating-cta {
    bottom: 50px;
    /* キャンペーンバナーの上 */
  }
}

/* ===== PER VISIT PLANS ===== */
.per-visit-plans {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 2px solid rgba(144, 195, 30, 0.3);
}

.per-visit-title {
  font-size: 32px;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 32px;
}

.per-visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.per-visit-card {
  padding: 24px;
}

.per-visit-category {
  font-size: 20px;
  font-weight: 700;
  color: #90c31e;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(144, 195, 30, 0.3);
}

.per-visit-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.per-visit-option:last-of-type {
  border-bottom: none;
}

.per-visit-time {
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.per-visit-price {
  font-size: 24px;
  font-weight: 700;
  color: black;
}

.per-visit-price span {
  font-size: 14px;
  color: black;
}

.per-visit-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  text-align: center;
}

/* ===== OTHER SERVICES ===== */
.other-services {
  margin-top: 48px;
}

.other-services-title {
  font-size: 32px;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 32px;
}

.other-services-card {
  padding: 40px;
}

.other-services-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.other-services-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.other-services-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #90c31e;
  margin-bottom: 16px;
}

.other-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.other-services-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: black;
  line-height: 1.6;
}

.other-services-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #90c31e;
  font-weight: bold;
}

.other-services-text {
  color: black;
  line-height: 1.8;
  margin: 0 0 8px 0;
}

.other-services-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 0 0;
}

.other-services-highlight {
  background: linear-gradient(135deg, rgba(144, 195, 30, 0.1) 0%, rgba(144, 195, 30, 0.05) 100%);
  border: 2px solid rgba(144, 195, 30, 0.3);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
}

.highlight-icon {
  font-size: 24px;
  color: #90c31e;
  flex-shrink: 0;
}

.other-services-highlight p {
  color: black;
  line-height: 1.8;
  margin: 0;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .per-visit-grid {
    grid-template-columns: 1fr;
  }

  .other-services-card {
    padding: 24px;
  }

  .other-services-highlight {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll Hint for Mobile */
.scroll-hint {
  display: none;
  font-size: 14px;
  color: #90c31e;
  margin-top: 12px;
  font-weight: 600;
  animation: scrollHintPulse 2s ease-in-out infinite;
}

@keyframes scrollHintPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .scroll-hint {
    display: block;
  }
}

/* Credential tags mobile adjustment */
@media (max-width: 768px) {
  .credential-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Floating CTA Content - Horizontal Layout */
.floating-cta-content {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.floating-cta-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.floating-cta-text {
  flex: 1;
  text-align: left;
}

.floating-cta-label {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1.2;
}

.floating-cta-price {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.floating-cta-arrow {
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 50px !important;
  }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(83, 83, 83, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    display: flex;
    max-height: 600px;
  }

  .nav-menu .nav-link {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== COMPANY PAGE ===== */
.company-section {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 80px;
  overflow: hidden;
}

.company-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}

.company-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-table th,
.company-table td {
  padding: 24px;
  text-align: left;
}

.company-table th {
  width: 200px;
  font-weight: 700;
  color: #90c31e;
  font-size: 16px;
}

.company-table td {
  color: black;
  font-size: 16px;
  line-height: 1.8;
}

.company-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.company-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.company-back {
  text-align: center;
}

@media (max-width: 768px) {
  .company-section {
    padding: 140px 0 60px;
  }

  .company-card {
    padding: 24px;
  }

  .company-table th,
  .company-table td {
    padding: 16px 12px;
    font-size: 14px;
  }

  .company-table th {
    width: 100px;
  }

  .company-map {
    height: 300px;
  }
}

/* ===== COMPACT NEWS SECTION ===== */
.news-compact {
  padding: 60px 0 40px;
}

.section-header-compact {
  text-align: center;
  margin-bottom: 32px;
}

.section-title-small {
  font-size: 24px;
  font-weight: 700;
  color: black;
  letter-spacing: 0.1em;
}

.news-list-compact {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item-compact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.news-item-compact:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(144, 195, 30, 0.2);
}

.news-date-compact {
  flex-shrink: 0;
  font-size: 13px;
  color: #90c31e;
  font-weight: 600;
  min-width: 80px;
}

.news-title-compact {
  flex: 1;
  font-size: 14px;
  color: black;
}

.news-link-compact {
  flex-shrink: 0;
  font-size: 12px;
  color: #90c31e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-link-compact:hover {
  opacity: 0.8;
}

/* ===== COMPANY LINK CARD ===== */
.company-link-card {
  margin-top: 32px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(144, 195, 30, 0.2);
}

.company-link-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.company-link-icon {
  font-size: 32px;
}

.company-link-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin: 0;
}

.company-link-description {
  color: black;
  margin-bottom: 20px;
}

.company-link-btn {
  margin-top: 16px;
}

/* ===== CONCEPT MOBILE SCROLL ===== */
@media (max-width: 768px) {
  .news-item-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(83, 83, 83, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    display: flex;
    max-height: 600px;
  }

  min-width: auto;
}


.concept-section .scroll-hint {
  display: block;
}

.method-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.method-grid::-webkit-scrollbar {
  height: 8px;
}

.method-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.method-grid::-webkit-scrollbar-thumb {
  background: #90c31e;
  border-radius: 4px;
}

.method-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: center;
}
}

/* Remove campaign banner styles for mobile */
@media (max-width: 768px) {
  .footer {
    margin-bottom: 0;
  }
}

/* ===== BLOG STATIC ===== */
.blog-static {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.blog-message {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 32px;
}

.blog-message-text {
  font-size: 18px;
  color: black;
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .blog-message {
    padding: 32px 24px;
  }

  .blog-message-text {
    font-size: 16px;
  }
}

/* ===== BLOG COMPACT STYLE (Same as News) ===== */
.blog-compact {
  padding: 60px 0 40px;
}

.blog-list-compact {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-item-compact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-item-compact:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(144, 195, 30, 0.2);
  transform: translateX(4px);
}

.blog-date-compact {
  flex-shrink: 0;
  font-size: 13px;
  color: #90c31e;
  font-weight: 600;
  min-width: 80px;
}

.blog-title-compact {
  flex: 1;
  font-size: 14px;
  color: black;
}

.blog-link-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: #90c31e;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-item-compact:hover .blog-link-icon {
  opacity: 1;
}

.blog-loading-compact {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.loading-spinner-small {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(144, 195, 30, 0.2);
  border-top-color: #90c31e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 12px;
}

.blog-error-compact {
  text-align: center;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.blog-link-compact {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .blog-item-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-date-compact {
    min-width: auto;
  }

  .blog-link-icon {
    display: none;
  }
}

/* ===== PLAN POPULAR BADGE TOP ===== */
.plan-popular-badge-top {
  background: linear-gradient(135deg, #90c31e 0%, #7aa819 100%);
  color: black;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px 0;
  box-shadow: 0 4px 12px rgba(144, 195, 30, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(144, 195, 30, 0.3);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(144, 195, 30, 0.4);
  }
}

/* Hide old badge inside plan-option */
.plan-option .plan-popular-badge {
  display: none;
}

@media (max-width: 768px) {
  .plan-popular-badge-top {
    font-size: 13px;
    padding: 6px 12px;
    margin: 0 0 16px 0;
  }
}

/* ===== PLAN POPULAR BADGE INLINE (Between Options) ===== */
.plan-popular-badge-inline {
  background: linear-gradient(135deg, #90c31e 0%, #7aa819 100%);
  color: black;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0;
  box-shadow: 0 4px 12px rgba(144, 195, 30, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .plan-popular-badge-inline {
    font-size: 12px;
    padding: 6px 12px;
    margin: 10px 0;
  }
}

/* ===== METHOD CARD WITH IMAGE (Vertical Card) ===== */
.method-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.method-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(144, 195, 30, 0.1);
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.method-card:hover .method-image img {
  transform: scale(1.1);
}

.method-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.method-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: black;
}

.method-desc {
  font-size: 14px;
  line-height: 1.6;
  color: black;
  margin: 0;
}

/* Remove old icon styles */
.method-icon {
  display: none;
}

/* ===== ABOUT ICON IMAGE ===== */
.about-icon-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide old about-icon */
.about-icon {
  display: none;
}

@media (max-width: 768px) {
  .method-image {
    height: 160px;
  }

  .method-content {
    padding: 20px;
  }

  .method-title {
    font-size: 18px;
  }

  .method-desc {
    font-size: 13px;
  }

  .about-icon-image {
    width: 50px;
    height: 50px;
  }
}

/* ===== RECOMMEND DESCRIPTION ===== */
.recommend-description {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid rgba(144, 195, 30, 0.2);
}

.recommend-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
  color: black;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.instagram-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .recommend-description {
    margin-top: 24px;
    padding-top: 24px;
  }

  .recommend-description p {
    font-size: 14px;
  }

  .instagram-link {
    padding: 14px 20px;
    font-size: 15px;
  }

  .instagram-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===== LIGHT THEME COLOR ADJUSTMENTS ===== */
.section-title,
.hero-title,
.plan-name,
.facility-title,
.method-title,
.about-label,
.trainer-name {
  color: #2c2c2c !important;
}

.section-description,
.hero-description,
.plan-subtitle,
.facility-desc,
.method-desc,
.about-value,
.trainer-role {
  color: #4a4a4a !important;
}

.nav-link {
  color: #2c2c2c !important;
}

.nav-link:hover {
  color: #90c31e !important;
}

.footer-tagline {
  color: #6a6a6a !important;
}

.footer-copyright {
  color: #8a8a8a !important;
}

/* Navigation on light background */
#navigation {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

#navigation.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
}

/* ===== COMPREHENSIVE LIGHT THEME FIXES ===== */

/* Override all white text to dark */
.hero-section,
.concept-section,
.menu-section,
.reason-section,
.facility-section,
.trainers-section,
.blog-section,
.faq-section,
.about-section,
.contact-section,
.pilates-section {
  color: #2c2c2c !important;
}

/* All white text elements */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div {
  color: inherit;
}

/* Specific elements that should be dark text */
.stat-number,
.stat-label,
.plan-option-sessions,
.plan-option-per,
.plan-option-price,
.btn,
.credential-tag,
.faq-question,
.faq-answer,
.blog-title,
.blog-date,
.blog-excerpt,
.news-date,
.news-title,
.recommend-item span {
  color: #2c2c2c !important;
}

/* Button text */
.btn-primary,
.btn-outline {
  color: white !important;
}

.btn-outline {
  border-color: #90c31e !important;
}

.btn-outline:hover {
  background: #90c31e !important;
  color: white !important;
}

/* Footer stays slightly lighter */
.footer {
  background: #e8e8e8 !important;
  color: #2c2c2c !important;
}

.footer-social-link,
.footer-line-btn {
  color: #2c2c2c !important;
  border-color: rgba(44, 44, 44, 0.2) !important;
}

.footer-social-link:hover,
.footer-line-btn:hover {
  background: #90c31e !important;
  color: white !important;
  border-color: #90c31e !important;
}

/* Navigation text */
.nav-link {
  color: #2c2c2c !important;
}

/* Hero section specific */
.hero-title {
  color: #2c2c2c !important;
}

.hero-description {
  color: #4a4a4a !important;
}

/* Remove or lighten dark backgrounds */
.aurora-bg {
  opacity: 0.3 !important;
}

.grain-overlay {
  opacity: 0.05 !important;
}

/* Card text colors */
.glass-card {
  color: #2c2c2c !important;
}

/* Plan cards */
.plan-card {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Ensure visibility */
.text-accent {
  color: black !important;
  position: relative;
  display: inline-block;
  padding: 0 4px;
}

.text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: url('marker_underline.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  clip-path: inset(0 100% 0 0);
  animation: markerReveal 1.2s ease-out forwards;
  animation-delay: 0.6s;
  z-index: -1;
}

/* Black backgrounds to dark gray */
section {
  background-color: transparent !important;
}

/* Modal */
.modal-content {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #2c2c2c !important;
}

.modal-title {
  color: #2c2c2c !important;
}

.modal-description,
.modal-note {
  color: #4a4a4a !important;
}

/* Floating CTA */
.floating-cta {
  background: #90c31e !important;
  color: white !important;
}

/* ===== OVERRIDE ALL WHITE TEXT TO BLACK ===== */
* {
  --text-primary: black;
  --text-secondary: #2c2c2c;
}

/* Force all white colors to black */
[style*="color: white"],
[style*="color: #fff"],
[style*="color: #ffffff"],
[style*="color: rgba(255, 255, 255"] {
  color: black !important;
}

/* Global text color override */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: black !important;
}

p,
span,
div,
a,
li,
td,
th,
label,
input,
textarea,
select {
  color: black !important;
}

/* Exceptions for buttons and specific elements */
.btn-primary,
.btn-primary *,
.floating-cta,
.floating-cta * {
  color: white !important;
}

.footer-social-link:hover,
.footer-line-btn:hover,
.btn-outline:hover {
  color: white !important;
}

/* All sections background */
section {
  background-color: #b2b2b2 !important;
}

.hero-section,
.concept-section,
.menu-section,
.reason-section,
.facility-section,
.trainers-section,
.blog-section,
.faq-section,
.about-section,
.contact-section,
.pilates-section {
  background-color: #b2b2b2 !important;
}

/* Footer background */
.footer {
  background: #a0a0a0 !important;
}

/* Navigation background */
#navigation {
  background: rgba(160, 160, 160, 0.95) !important;
}

#navigation.scrolled {
  background: rgba(160, 160, 160, 0.98) !important;
}

/* Stat card text */
.stat-number,
.stat-label {
  color: black !important;
}

/* Plan card text */
.plan-name,
.plan-subtitle,
.plan-option-sessions,
.plan-option-per,
.plan-option-price {
  color: black !important;
}

/* FAQ text */
.faq-question,
.faq-answer {
  color: black !important;
}

/* Blog text */
.blog-title,
.blog-date,
.blog-excerpt {
  color: black !important;
}

/* Trainer text */
.trainer-name,
.trainer-role,
.trainer-desc {
  color: black !important;
}

/* Modal text */
.modal-title,
.modal-description,
.modal-note {
  color: black !important;
}

/* ===== RESTORE WHITE FOR BUTTONS ===== */
.btn-primary,
.btn-primary span,
.btn-primary div,
.floating-cta,
.floating-cta span {
  color: white !important;
}

.btn-outline:hover,
.btn-outline:hover span {
  color: white !important;
}

.footer-social-link:hover,
.footer-line-btn:hover {
  color: white !important;
}

.instagram-link,
.instagram-link span {
  color: white !important;
}

.floating-cta-close {
  color: white !important;
}

/* ===== REASON IMAGE ===== */
.reason-image {
  width: 100%;
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden;
}

.reason-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .reason-image {
    margin: 12px 0;
  }
}

/* ===== REASON IMAGE WITH NUMBER OVERLAY ===== */
.reason-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reason-card:hover .reason-image img {
  transform: scale(1.1);
}

.reason-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.reason-number-bg {
  position: absolute;
  inset: 0;
  background: rgba(144, 195, 30, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(144, 195, 30, 0.5);
}

.reason-number span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 28px;
  font-weight: 700;
}

.reason-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reason-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: black;
  line-height: 1.4;
}

.reason-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

.reason-badge {
  background: linear-gradient(135deg, #90c31e 0%, #7aa819 100%);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0 28px 28px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(144, 195, 30, 0.3);
}

@media (max-width: 768px) {
  .reason-card {
    min-width: 300px;
    max-width: 300px;
  }

  .reason-image {
    height: 180px;
  }

  .reason-number {
    width: 55px;
    height: 55px;
    top: 12px;
    right: 12px;
  }

  .reason-number span {
    font-size: 22px;
  }

  .reason-content {
    padding: 22px;
  }

  .reason-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .reason-desc {
    font-size: 14px;
  }

  .reason-badge {
    margin: 0 22px 22px 22px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ===== PILATES CONTENT WITH IMAGE ===== */
.pilates-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0;
}

.pilates-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pilates-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pilates-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pilates-image-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .pilates-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pilates-image-wrapper {
    height: 200px;
  }
}

/* ===== TEXT ACCENT OUTLINE (薄めの縁取り) ===== */
.text-accent-outline {
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.15),
    1px -1px 0 rgba(0, 0, 0, 0.15),
    -1px 1px 0 rgba(0, 0, 0, 0.15),
    1px 1px 0 rgba(0, 0, 0, 0.15),
    0 0 2px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

/* ===== TABLET LAYOUT FOR STAT CARDS ===== */
@media (min-width: 641px) and (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .hero-stats {
    gap: 32px;
  }
}

/* ===== LARGE SCREEN LAYOUT ===== */
@media (min-width: 1200px) {
  .hero-stats {
    gap: 48px;
    max-width: 1800px;
  }

  .stat-card {
    padding: 24px 56px;
  }
}

@media (min-width: 1400px) {
  .hero-stats {
    gap: 56px;
  }
}