@charset "UTF-8";

/* =========================================
   Variables & Reset
   ========================================= */
:root {
  --font-base: "Noto Sans JP", sans-serif;

  /* Colors */
  --color-text: #1e293b;
  /* Dark Navy for text */
  --color-navy: #1e293b;
  --color-green: #16a34a;
  --color-green-light: #22c55e;
  --color-yellow: #fbbf24;
  /* Warm Yellow/Gold */
  --color-gray-bg: #f8fafc;
  --color-white: #ffffff;
  --color-border: #e2e8f0;

  --width-max: 1040px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

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

.container-sm {
  max-width: 800px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-white {
  color: #fff !important;
}

.bg-light {
  background-color: var(--color-gray-bg);
}

.bg-light-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  /* White to Light Green */
}

.bg-navy {
  background-color: var(--color-navy);
  color: #fff;
}

/* New: Utility for accent color text/bg if needed */
.text-accent {
  color: var(--color-yellow);
}

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.p-5 {
  padding: 3rem 1rem;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-desc {
  text-align: center;
  margin-bottom: 40px;
  color: #64748b;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 4px;
  /* Sharp corners for premium feel */
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 48px;
  /* Mobile clickable size */
}

.btn-green {
  background-color: var(--color-green);
  color: #fff;
}

.btn-green:hover {
  background-color: var(--color-green-light);
  transform: translateY(-1px);
}

.btn-line {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: var(--color-navy);
}

.btn-line-white {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-lg {
  min-width: 300px;
  font-size: 1.1rem;
  padding: 18px 30px;
}

.btn-xl {
  min-width: 280px;
  font-size: 1.2rem;
  padding: 20px;
}

.btn-full {
  width: 100%;
  margin-top: 20px;
}

/* =========================================
   Header
   ========================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

/* Logo Text Style */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  color: var(--color-navy);
  text-decoration: none;
}

.logo-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 0;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Mobile Logo Adjustment */
@media (max-width: 768px) {
  .logo-sub {
    font-size: 0.7rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

#nav-menu ul {
  display: flex;
  gap: 24px;
}

#nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy);
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
  height: 44px;
}

.hamburger {
  display: none;
}

/* =========================================
   Hero (Split Layout)
   ========================================= */
.hero {
  position: relative;
  padding-top: var(--header-height);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-bg);
  /* Wide Hero Background */
  background-image: url('assets/img/hero_bg_wide.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-overlay {
  display: none;
  /* Removed for split layout */
}

/* New Split Container */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--width-max);
  padding: 0 20px;
  gap: 40px;
}

.hero-text-side {
  flex: 1;
  text-align: left;
  /* Explicit Left Align */
  z-index: 2;
  margin-top: 5vh;
}

.hero-img-side {
  flex: 1;
  height: 500px;
  background: transparent;
}

/* USP Badges (Restored Forcefully) */
/* USP Badges (Horizontal Scroll) */
.usp-badges {
  display: flex;
  flex-wrap: nowrap;
  /* No wrapping */
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  /* Horizontal scroll if needed */
  -webkit-overflow-scrolling: touch;
  padding: 0 8px;
}

/* Hide scrollbar */
.usp-badges::-webkit-scrollbar {
  display: none;
}

.usp-badges .badge {
  flex: 0 0 auto;
  /* Prevent shrinking */
  display: inline-block;
  background: #F4B400;
  /* Yellow */
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

@media (min-width: 769px) {
  .usp-badges {
    justify-content: flex-start;
  }
}

.hero-title {
  font-size: clamp(1rem, 5.5vw, 3rem);
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
  text-align: left;
  white-space: nowrap;
}

.hero-sub {
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  justify-content: flex-start;
  /* Left align buttons */
}

/* =========================================
   Campaign
   ========================================= */
.campaign-box {
  background: #fff;
  border: 3px solid var(--color-yellow);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  overflow: hidden;
}

.campaign-cta .btn {
  display: block;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .campaign-box {
    padding: 30px 12px;
    overflow: visible;
  }

  .campaign-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: clamp(18px, 5.5vw, 28px);
    letter-spacing: 0;
    max-width: 100%;
    padding-bottom: 14px;
    /* Ensure space for absolute underline */
  }

  .campaign-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
  }

  .campaign-title .emoji {
    position: static;
    transform: none;
    margin: 0;
    line-height: 1;
  }

  .campaign-cta .btn {
    width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.campaign-title {
  font-size: 2rem;
  color: var(--color-navy);
  font-weight: 900;
  margin-bottom: 30px;
  /* Space for underline */
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.campaign-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: var(--color-yellow);
  margin: 10px auto 0;
}

.campaign-date {
  display: none;
  /* Hide date as requested */
}

.campaign-note {
  font-weight: bold;
  color: #ef4444;
  margin-top: 20px;
}

/* =========================================
   Strengths
   ========================================= */
.strength-card {
  background: #fff;
  border-left: 6px solid var(--color-yellow);
  padding: 30px;
  border-radius: 4px;
  /* Slight radius */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.strength-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-navy);
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 10px;
}

.strength-card p {
  color: #475569;
  line-height: 1.8;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-item {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--color-yellow);
  padding: 20px;
  border-radius: 4px;
}

.benefit-label {
  display: inline-block;
  background: var(--color-yellow);
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.highlight {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.4rem;
  margin-left: 5px;
}

/* =========================================
   Recommend
   ========================================= */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recommend-card {
  text-align: center;
  padding: 30px 15px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.recommend-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.recommend-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* =========================================
   Strengths (Light bg)
   ========================================= */
.concept-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.concept-text {
  flex: 1;
  text-align: left;
  /* Ensure Left Align */
}

.concept-image {
  flex: 1;
  height: 400px;
}

.pattern-box {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  /* Darker dots for light bg */
  background-size: 20px 20px;
  opacity: 0.3;
  border: 4px solid rgba(0, 0, 0, 0.05);
}

/* Override center titles for this section if needed, 
   but .section-title is normally centered. 
   We will utilize utility classes in HTML or specific overrides here. */
.section-title.text-start {
  text-align: left;
}

.section-title.text-start::after {
  margin: 10px 0 0 0;
  /* Align underline to left if it exists (it doesn't in previous CSS but good to be safe) */
}

/* =========================================
   Service
   ========================================= */
.service-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.service-block {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.service-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--color-green);
  display: inline-block;
  padding-bottom: 5px;
}

/* =========================================
   Pricing (Complex)
   ========================================= */
.pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.price-section-head {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-navy);
  border-left: 6px solid var(--color-yellow);
  padding-left: 15px;
  width: 100%;
  text-align: left;
}

.pricing-note {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  color: var(--color-navy);
  margin-bottom: 20px;
  width: 100%;
}

/* Plan Cards Grid based on content */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.plan-card {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.plan-card.featured {
  border: 2px solid var(--color-navy);
  transform: none;
  /* Reset distinct transform for grid align */
  background: #fff;
}

.badge-rec {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-navy);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: bold;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-gray-bg);
  padding-bottom: 10px;
}

/* Pricing Display Typography */
.price-display {
  margin-bottom: 10px;
  /* Reduced from 20 to fit */
}

.price-main {
  font-size: 2.6rem;
  /* Larger for Tax-Ex */
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
  display: block;
  /* Stack */
}

.price-unit {
  font-size: 1rem;
  font-weight: normal;
  color: #64748b;
  margin-left: 0;
}

.price-sub {
  font-size: 0.85rem;
  color: #64748b;
  /* Gray text for small Tax-Inc */
  margin-top: 8px;
  display: block;
}

/* Discount Box */
.price-discount {
  background: #fefce8;
  /* Light yellow bg */
  border: 1px solid var(--color-yellow);
  border-radius: 4px;
  padding: 10px;
  margin-top: 15px;
  color: var(--color-navy);
}

.discount-label {
  font-size: 0.8rem;
  font-weight: bold;
  display: block;
  color: #d97706;
  /* Darker yellow/orange */
  margin-bottom: 2px;
}

.discount-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ef4444;
  /* Red for discount */
}

/* Ticket List */
.ticket-list {
  width: 100%;
}

.ticket-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-gray-bg);
}

.ticket-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.ticket-price-group {
  text-align: right;
}

.ticket-main-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-navy);
  display: block;
}

.ticket-sub-price {
  font-size: 0.8rem;
  color: #94a3b8;
  display: block;
  margin-top: 2px;
}


/* =========================================
   Flow
   ========================================= */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--color-green);
  color: #fff;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* =========================================
   FAQ (Accordion)
   ========================================= */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle {
  font-size: 1.5rem;
  color: var(--color-green);
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #475569;
  padding: 0 10px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

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

/* =========================================
   Access & Footer
   ========================================= */
.access-split {
  display: flex;
  gap: 40px;
}

.access-info {
  flex: 1;
}

.access-map {
  flex: 1;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.access-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-navy);
  font-weight: 900;
  border-bottom: 2px solid var(--color-gray-bg);
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
}

/* Access Table */
.access-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.access-table th {
  text-align: left;
  vertical-align: top;
  padding: 12px 10px 12px 0;
  width: 90px;
  color: #64748b;
  font-weight: bold;
  font-size: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
}

.access-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 0;
  color: var(--color-navy);
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.6;
}

.access-table tr:last-child th,
.access-table tr:last-child td {
  border-bottom: none;
}

/* Access Actions */
.access-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-map {
  flex: 1;
  min-width: 200px;
}

.btn-tel {
  flex: 1;
  min-width: 160px;
}

footer {
  background: #f1f5f9;
  padding: 60px 0;
  font-size: 0.9rem;
  color: #64748b;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
  color: var(--color-navy);
  font-weight: bold;
}

/* =========================================
   PULSE-Style Pricing (Global)
   ========================================= */
/* Campaign Banner (Prominent) */
/* =========================================
   PULSE-Style Pricing (Global)
   ========================================= */
/* Campaign Banner (Prominent) */
.campaign-banner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  /* Removed border/box style for text emphasis only */
}

.campaign-label {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.campaign-text-large {
  font-size: 2rem;
  font-weight: 900;
  color: #ef4444;
  /* Red */
  text-shadow: 1px 1px 0 #fff;
  /* Or use gold if requested, but red is standard for discount */
}

/* Strengths Section (Card Style) */
.strengths-wrapper-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.strength-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns on PC */
  gap: 30px;
}

.strength-item-card {
  background: #f8fafc;
  /* Very light gray bg for cards */
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s;
}

.strength-item-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-yellow);
}

.strength-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.strength-item-card h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 10px;
  font-weight: bold;
}

.strength-item-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .strength-cards-grid {
    grid-template-columns: 1fr;
  }

  .strengths-wrapper-card {
    padding: 20px;
  }
}

/* 1番人気 Badge (Yellow/Center) */
.badge-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFC83D;
  /* Bright Yellow */
  color: #1e293b;
  /* Dark Navy/Black text */
  font-weight: 900;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 0 0 8px 8px;
  /* Rounded bottom corners for hanging tag look, or just all rounded if preferred. User said "rounded rectangle" so let's do soft round all or just bottom. Let's do 0 0 10px 10px for a 'hanging' look which is standard for center badges, OR just straight rectangle with radius. Let's try rounded rectangle floating slightly or attached. Attached is safer with overflow hidden. */
  /* User said "rounded rectangle". Let's do border-radius: 0 0 6px 6px to attach to top, or border-radius: 20px if floating?
     If top:0, it touches the border. 
     Let's try border-radius: 0 0 10px 10px; matches the card aesthetic.
     Actually, "rounded rectangle" implies all corners. But top corners usually square if touching top.
     Let's assume the user wants it to look like a badge placed ON the card.
     I'll use border-radius: 0 0 8px 8px for now, as it looks best attached to top.
     Wait, user said "角丸の長方形" (Rounded Rectangle).
     If I do `top: 10px`, it overlaps content? 
     Let's stick to `top: 0` and `border-radius: 0 0 8px 8px`.
  */
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  letter-spacing: 0.05em;
  width: auto;
  white-space: nowrap;
}

.nowrap {
  white-space: nowrap;
}

/* Pricing Card Styles (Existing + Updates) */
.plan-card-pulse {
  background: #fff;
  padding: 40px 20px 30px;
  /* Increased top padding */
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.plan-card-pulse:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* 10% OFF Badge */
.badge-off {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  /* Red */
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 6px 15px;
  border-bottom-left-radius: 12px;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.plan-pulse-head {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-navy);
  margin-bottom: 20px;
  margin-top: 10px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
}

.price-pulse-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.price-pulse-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.price-old {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: normal;
}

.price-arrow {
  color: #94a3b8;
  font-size: 1rem;
}

.price-new {
  font-size: 1.8rem;
  color: #ef4444;
  /* Red emphasis */
  font-weight: 900;
}

.unlimited-note-pulse {
  font-size: 0.8rem;
  color: var(--color-navy);
  font-weight: bold;
  margin: 2px 0;
}

.unit-price-pulse {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

/* Mobile Adjustments for Pricing Grid */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Pair Training Block
   ========================================= */
.pair-training-sub {
  font-size: 0.95rem;
  color: #64748b;
  text-align: left;
  margin-bottom: 20px;
  width: 100%;
}

.pair-training-card {
  background: #fff;
  border: 1px solid #d8c7a6;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 40px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 40px;
}

.pair-plan-item {
  padding: 20px 0;
  text-align: center;
}

.pair-plan-main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pair-plan-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-navy);
}

.pair-plan-freq {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
}

.pair-plan-per {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 6px;
  text-align: center;
}

.pair-plan-divider {
  height: 1px;
  background: #e8dcc8;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .pair-training-card {
    padding: 20px 20px;
  }

  .pair-plan-price {
    font-size: 1.5rem;
  }

  .pair-plan-freq {
    font-size: 1rem;
  }

  .pair-plan-per {
    font-size: 0.85rem;
  }

  .pair-plan-divider {
    margin: 0 10px;
  }
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  /* Header */
  .header-cta {
    display: none;
  }

  .hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-navy);
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 9px;
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
  }



  #nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #fff;
    padding: 40px;
    transition: 0.3s;
    text-align: center;
  }

  #nav-menu.active {
    right: 0;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 30px;
  }

  /* Hero Mobile Adjustments */
  .hero {
    min-height: 600px;
    padding-bottom: 60px;
    background-image: none;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/img/hero_bg_wide.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    z-index: 1;
  }

  /* Hero Split */
  .hero-split {
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .hero-text-side {
    text-align: center;
    padding: 0;
    /* Reset padding, handle in children */
  }

  .hero-top-group {
    padding-top: 10px;
    /* Pulled up to avoid face overlap */
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
  }

  .hero-sub {
    margin-top: 20px;
    /* Default spacing for Desktop/General if overridden */
    text-align: center;
    color: #f1f5f9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Specific mobile positioning for chest area */
  .hero-sub-chest {
    margin-top: 160px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.3;
    /* Tighten line height for compact 2 lines */
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }

  .hero-sub {
    text-align: center;
    color: #f1f5f9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-img-side {
    display: none;
  }

  /* Grids */
  .recommend-grid,
  .plan-grid,
  .plan-group,
  .flow-grid,
  .access-split,
  .footer-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-links a {
    margin-left: 0;
  }

  .recommend-card {
    border: 1px solid #e2e8f0;
  }

  .concept-split {
    flex-direction: column;
  }

  .hidden-sp {
    display: none;
  }

  .pricing-wrapper {
    width: 100%;
  }

  .plan-card.featured {
    transform: none;
  }

  .contact-buttons-center {
    flex-direction: column;
    align-items: center;
  }

  .btn-xl {
    width: 100%;
  }
}

/* Trainer Section */
.trainer-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.trainer-photo {
  width: 40%;
  text-align: center;
}

.trainer-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 3/4;
}

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

.trainer-text h2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--color-navy);
  line-height: 1.6;
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 15px;
  display: inline-block;
}

.trainer-text p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: #4a5568;
}

/* Mobile Responsive - Trainer */
@media (max-width: 768px) {
  .trainer-wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .trainer-photo,
  .trainer-text {
    width: 100%;
  }

  .trainer-photo {
    max-width: 280px;
  }

  .trainer-text h2 {
    font-size: 1.3rem;
  }

  /* =========================================
   Linkx-Style Trainer Section
   ========================================= */
  .trainer-profile-area {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centered alignment for aesthetics */
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
  }

  .trainer-img-col {
    width: 40%;
    text-align: center;
  }

  .trainer-photo {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .trainer-info-col {
    width: 55%;
    text-align: left;
  }

  .trainer-role-name {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: normal;
  }

  .name-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
    border-bottom: 3px solid var(--color-green);
  }

  .trainer-catch {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 500;
  }

  .trainer-career-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-navy);
  }

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

  .career-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
  }

  .career-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
  }

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

  .trainer-message-body {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
    line-height: 1.9;
    font-size: 1rem;
    color: #334155;
  }

  .trainer-message-body p {
    margin-bottom: 1.5em;
  }

  /* Reasons Block */
  .trainer-reasons-area {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
  }

  .reasons-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-navy);
    margin-bottom: 30px;
  }

  .reasons-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .reason-item {
    flex: 1;
    text-align: center;
    background: #f1f5f9;
    padding: 20px 15px;
    border-radius: 8px;
  }

  .reason-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-family: sans-serif;
  }

  .reason-item p {
    font-size: 0.95rem;
    color: var(--color-navy);
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
  }

  /* Mobile Responsive - Linkx Style */
  @media (max-width: 768px) {
    .trainer-profile-area {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    .trainer-img-col,
    .trainer-info-col {
      width: 100%;
    }

    .trainer-info-col {
      text-align: left;
    }

    .reasons-grid {
      flex-direction: column;
    }

    /* =========================================
   Pricing & Trainer Side-by-Side Layout
   ========================================= */
    .pricing-trainer-layout {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-col {
      width: 60%;
      text-align: center;
    }

    .trainer-col {
      width: 35%;
      /* Keeping it slightly less than 40% for gap safety */
      margin-top: 20px;
      /* Sticky option if desired: position: sticky; top: 100px; */
    }

    /* Simplified Trainer Card */
    .section-title-sub {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--color-navy);
      margin-bottom: 25px;
      display: inline-block;
      border-bottom: 2px solid var(--color-green);
      padding-bottom: 10px;
    }

    .trainer-card-simple {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .trainer-img-simple img {
      width: 100%;
      max-width: 200px;
      border-radius: 12px;
      aspect-ratio: 3/4;
      object-fit: cover;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .trainer-name-simple {
      font-size: 1.25rem;
      color: var(--color-navy);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .trainer-role-xs {
      font-size: 0.9rem;
      font-weight: normal;
      color: #64748b;
      margin-left: 5px;
    }

    .trainer-text-simple {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.8;
      text-align: justify;
    }

    /* Update Pricing Grid for Column Usage */
    /* Since the pricing-col is smaller now, we might need adjustments */
    .pricing-col .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
      /* Stay 2 cols inside the 60% if possible */
      gap: 15px;
    }

    /* Mobile Responsive - Stacked Layout */
    @media (max-width: 1024px) {
      .pricing-trainer-layout {
        flex-direction: column;
        align-items: center;
      }

      .pricing-col {
        width: 100%;
        margin-bottom: 50px;
      }

      .trainer-col {
        width: 100%;
        max-width: 500px;
        /* Limit width on mobile for better look */
      }

      /* When stacked, pricing grid might need to go 1 col again if screen is very small, 
     but standard rules usually handle that. */
    }

    .trainer-reasons-area {
      padding: 30px 20px;
    }
  }
}

/* Qualifications Accordion */
.trainer-qualification.accordion {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  margin-top: 20px;
}

.accordion-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-navy);
  transition: background 0.3s;
}

.accordion-title:hover {
  background: #f1f5f9;
}

.accordion-icon {
  font-weight: bold;
  color: var(--color-green);
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.accordion-content.open {
  max-height: 300px;
  opacity: 1;
}

.qualification-list {
  list-style: none;
  padding: 15px 20px;
  margin: 0;
  text-align: left;
}

.qualification-list li {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 8px;
  padding-left: 1rem;
  position: relative;
}

.qualification-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-green);
}



/* Full Width Trainer Layout */
.trainer-card-simple.full-width-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.wide-text-block {
  max-width: 980px;
  margin: 20px auto 40px !important;
  text-align: left;
  line-height: 1.75;
}

.wide-text-block p {
  margin-bottom: 20px;
}

.wide-text-block p.last-msg {
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 30px;
}

.wide-accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Fix Pricing Grid when in full width container */
.pricing-col[style*="100%"] .pricing-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .pricing-col[style*="100%"] .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trainer-card-simple.full-width-layout {
    padding: 20px 15px;
  }

  .wide-text-block {
    text-align: left;
    /* Keep left align on mobile */
  }
}

/* Mobile Logo Adjustment */

/* =========================================
   Service Image
   ========================================= */
.service-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* =========================================
   Utility: Emoji
   ========================================= */
.emoji {
  display: inline-block;
  margin-left: 0.4em;
  transform: translateY(-2px);
  /* Fine-tune alignment */
}

/* ===== Fix: Open Campaign to 1 column on mobile ===== */
@media (max-width: 768px) {

  /* Hero section layout: force single column */
  #hero .hero-split,
  .hero .hero-split,
  .hero-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    /* 既存の雰囲気を壊さない範囲 */
  }

  /* Any 2-column children: force full width */
  #hero .hero-split>*,
  .hero .hero-split>*,
  .hero-split>* {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100% !important;
  }
}

/* ===============================
   Fix: Hero Campaign Mobile Layout
   =============================== */
@media (max-width: 768px) {

  /* 親：必ず縦並び */
  #hero .hero-split {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }

  /* 子：2列指定を完全に潰す */
  #hero .hero-text-side,
  #hero .hero-img-side {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

}