@charset "utf-8";

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

/* 変数定義 */
:root {
    /* カラーパレット */
    --tiffany-blue: #4ECDC4;
    --tiffany-blue-light: #7FE0DA;
    --tiffany-blue-dark: #3BA99F;
    --white: #FFFFFF;
    --light-gray: #eaf9f6;
    --gray: #E9ECEF;
    --text-dark: #000000;
    --text-gray: #131414;
    --coral: #FF6B6B;
    --coral-light: #FF8787;
    --gold: #FFD93D;
    
    /* スペーシング */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 80px;
    --spacing-section: 120px;
    
    /* その他 */
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}



/* ベーススタイル */
body {
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ユーティリティ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

/* ---- Logo with text ---- */
.logo{
  display:flex;
  align-items:center;
  gap:var(--spacing-xs);
}
.logo img{
  height:48px;
  width:auto;
}
.logo-text{
  font-family:'Outfit','Noto Sans JP',sans-serif;
  font-size:1.25rem;
  font-weight:700;
  letter-spacing:.05em;
  color:var(--text-dark);
}
.logo-accent{
  color:var(--tiffany-blue);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm); /* spacing-lg から spacing-sm に縮小 */
    align-items: center;
}

.nav-list a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px; /* spacing-xs より小さく */
    padding: var(--spacing-xs) var(--spacing-sm); /* 左右の余白を縮小 */
    font-weight: 500;
    font-size: 0.9rem; /* フォントサイズを少し小さく */
    color: var(--text-dark);
    transition: var(--transition);
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(78, 205, 196, 0.1);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--tiffany-blue);
}

.nav-list a:hover::after,
.nav-list a:focus::after {
    opacity: 1;
    transform: scale(1.05);
}

/* アイコンコンテナ */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px; /* 20px から 16px に縮小 */
    height: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    filter: opacity(0.8);
}

/* ホバー時のアイコンエフェクト */
.nav-list a:hover .nav-icon img,
.nav-list a:focus .nav-icon img {
    filter: opacity(1);
    transform: scale(1.1);
}

/* さらにコンパクトにしたい場合 */
@media (max-width: 1300px) {
    .nav-list {
        gap: 12px; /* さらに狭く */
    }
    
    .nav-list a {
        padding: 6px 12px;
        font-size: 0.85rem;
        gap: 3px;
    }
    
    .nav-icon {
        width: 14px;
        height: 14px;
    }
}

/* 極限までコンパクト（必要に応じて） */
@media (max-width: 1200px) {
    .nav-list {
        gap: 8px;
    }
    
    .nav-list a {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .nav-icon {
        width: 12px;
        height: 12px;
    }
}

/* モバイルメニュー対応 */
@media (max-width: 768px) {
    #menu-toggle:checked ~ .container .header-inner .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        padding: var(--spacing-xl) var(--spacing-lg);
        overflow-y: auto;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.12);
        z-index: 1050;
        animation: slideIn 0.3s ease-out forwards;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-list a {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
        justify-content: flex-start;
        gap: var(--spacing-xs);
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
    }
}

/* モバイルでのアニメーション */
@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.header-cta {
    margin-left: var(--spacing-lg);
}

.cta-button{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 28px;
  background:linear-gradient(135deg, #00C300, #00B900);
  color:var(--white);
  font-weight:700;
  font-size:1rem;
  border-radius:50px;
  box-shadow:0 6px 16px rgba(107, 255, 144, 0.35);
  transition:transform .3s ease,box-shadow .3s ease;
  border: 5px solid #FFFFFF;
}

.cta-button:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 24px rgba(119, 255, 107, 0.4);
}
.cta-button:hover::after{
  transform:translateX(4px);
}
@media (max-width:768px){
  /* デフォルト: 非表示 */
  .nav{ display:none; }



}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ヒーローセクション */
/* ヒーローセクション - 再設計版 */
.hero {
    position: relative;
    min-height: 85vh; /* スクロール領域を確保 */
    display: flex; /* コンテンツを中央寄せするために維持 */
    align-items: center; /* コンテンツを中央寄せするために維持 */
    overflow: hidden; /* はみ出す背景画像を隠す */
    background: url("images/hero.jpg") center center / cover no-repeat fixed;
}









/* コンテンツ部分 */
.hero-content {
    position: relative;
    z-index: 2; /* 背景より手前に */
    width: 100%;
    padding: var(--spacing-xl) 0; /* 上下の余白は維持 */

}

.hero-text-img {
    display: block;
    margin: 0 auto var(--spacing-xl);
    max-width: 100%;
    height: auto;
}

.hero-text {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.hero-title {
    font-size: clamp(2.8rem, 5.8vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.title-line {
    display: block;
    line-height: 1.2;
}

.title-accent {
    display: block;
    color: var(--tiffany-blue);
    font-size: 1.1em;
    margin-top: var(--spacing-sm);
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* 実績数値 - コンパクトに */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(var(--spacing-lg), 5vw, var(--spacing-xxl));
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--tiffany-blue);
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.stat-unit {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--tiffany-blue);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: rgba(255, 255, 255, 0.7);
}

/* CTA */
.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #00C300, #00B900);
    color: var(--white);
    box-shadow: 
        0 4px 15px rgba(0, 195, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 8px solid #ffffff;

    border-radius: 50px;

    position: relative;
    overflow: hidden;
}

.hero-cta.primary:hover {
    background: linear-gradient(135deg, #00D400, #00C300);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 195, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 8px solid #ffffff;

        border-radius: 50px;
}

.hero-cta.primary:active {
    transform: translateY(-1px);
    box-shadow: 
        0 2px 10px rgba(0, 195, 0, 0.4),
        0 1px 5px rgba(0, 0, 0, 0.2);
    border: 5px solid #ffffff;
    outline: 3px solid #00B900;
    outline-offset: 1px;
        border-radius: 50px;
}

/* ボタン内のテキストスタイリング */
.hero-cta span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-cta em {
    font-style: normal;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hero-cta:hover em {
    transform: translateX(4px);
}
/* スクロールインジケーター */
.scroll-indicator {
    display: none;
}


/* モバイル対応 */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh; /* ヘッダー分を考慮 */
        background-attachment: scroll; /* モバイルではfixed解除 */
        padding-top: 80px; /* ヘッダー高さ分の余白 */
    }
    

    
    .hero-content {
        padding: var(--spacing-lg) 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 80px);
    }
    .hero-text-img {
        margin-bottom: var(--spacing-lg);
        max-width: 90%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--spacing-md);
        margin-top: auto;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}



/* ===================================================
   体験フロー - Timeline デザイン
=================================================== */
.trial-flow-section {
  background: var(--light-gray);
  padding: var(--spacing-xxl) 0;
}

/* ---------- Header ---------- */
.trial-flow-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.flow-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tiffany-blue);
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-xs);
}

.flow-title {
  font-size: clamp(2.8rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.flow-title .accent {
  color: var(--tiffany-blue);
}

.flow-desc {
  font-size: 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ---------- Timeline ---------- */
.trial-flow-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  padding-left: 40px;           /* 余白：縦ライン分 */
}

/* タイムラインの縦線 */
.trial-flow-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tiffany-blue);
  border-radius: 2px;
}

/* ---------- 各ステップ ---------- */
.trial-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}

.trial-step:nth-child(1) { animation-delay: 0.2s; }
.trial-step:nth-child(2) { animation-delay: 0.4s; }
.trial-step:nth-child(3) { animation-delay: 0.6s; }
.trial-step:nth-child(4) { animation-delay: 0.8s; }

/* ステップ番号バッジ */
.step-circle {
  position: absolute;
  left: -40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tiffany-blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像 */
.step-img {
  width: 160px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease;
}
.step-img img { width: 100%; height: 100%; object-fit: cover; }

/* 画像ホバー拡大 */
.trial-step:hover .step-img { transform: scale(1.05); }

/* タイトル & テキスト */
.step-info { flex: 1; }

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.step-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ---------- デスクトップ横並び ---------- */
@media (min-width: 992px) {
  .trial-flow-timeline {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding-left: 0;
  }
  /* 横方向ライン */
  .trial-flow-timeline::before {
    left: 0;
    top: calc(50% - 2px);
    width: 100%;
    height: 4px;
  }
  /* ステップ内を縦→横に */
  .trial-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 220px;
    transform: translateY(40px);
  }
  .step-circle {
    position: static;
    margin-bottom: var(--spacing-sm);
  }
  /* 画像サイズ調整 */
  .step-img {
    width: 200px;
    height: 140px;
    margin-bottom: var(--spacing-sm);
  }
}

/* ---------- モバイル微調整 ---------- */
@media (max-width: 576px) {
  .step-img {
    width: 120px;
    height: 90px;
  }
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: -32px;
  }
}

/* ---------- フェードイン Keyframes ---------- */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* サービス */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: var(--spacing-xs);
    right: var(--spacing-xs);
    background: var(--gold);
    color: var(--black);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-content {
    padding: var(--spacing-lg);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--tiffany-blue);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-gray);
}

.service-features li::before {
    content: '\02714';
    position: absolute;
    left: 0;
    color: var(--tiffany-blue);
    font-weight: 900;
}

.service-trainer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray);
}

.trainer-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-trainer a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-md) var(--spacing-xs) var(--spacing-sm);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    transition: var(--transition);
    background: var(--light-gray);
}

.service-trainer a span {
    position: relative;
    z-index: 2;
}

/* 右側のインジケーター */
.service-trainer a::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--tiffany-blue);
    border-radius: 50%;
    margin-left: var(--spacing-xs);
    transition: var(--transition);
    opacity: 0.7;
}

.service-trainer a:hover {
    background: var(--white);
    border-color: var(--tiffany-blue-light);
    color: var(--tiffany-blue-dark);
    box-shadow: var(--shadow-sm);
}

.service-trainer a:hover::after {
    background: var(--coral);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}


.trainer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* =========================================================
   Services Combo - 強調版
   ========================================================= */
.services-combo {
    position: relative;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-xxl);
    background: linear-gradient(135deg, var(--tiffany-blue) 0%, var(--tiffany-blue-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(78, 205, 196, 0.35);
    overflow: hidden;
    isolation: isolate;
    animation: containerPulse 3s ease-in-out infinite;
}

/* 背景パルスエフェクト */
.services-combo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        transparent 70%
    );
    animation: backgroundPulse 4s ease-in-out infinite;
    z-index: -1;
}

/* きらめきエフェクト */
.services-combo::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 
        0 0 6px var(--white),
        20px -10px 0 -1px var(--white),
        40px 10px 0 -2px rgba(255, 255, 255, 0.8),
        -30px 20px 0 -1px rgba(255, 255, 255, 0.6);
    animation: sparkle 2s ease-in-out infinite;
    z-index: 1;
}

.combo-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    margin-bottom: var(--spacing-md);
    position: relative;
    animation: badgeBounce 3s ease-in-out infinite;
}

.services-combo p {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.services-combo .highlight {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: highlightGlow 2s ease-in-out infinite alternate;
    display: inline-block;
}

/* アニメーション定義 */
@keyframes containerPulse {
    0%, 100% {
        box-shadow: 0 12px 32px rgba(78, 205, 196, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 16px 40px rgba(78, 205, 196, 0.5);
        transform: scale(1.02);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
}

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

@keyframes highlightGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 211, 61, 0.6);
        transform: scale(1.05);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .services-combo {
        padding: var(--spacing-lg) var(--spacing-xl);
        animation: none; /* モバイルではアニメーションを控えめに */
    }
    
    .services-combo::before {
        animation-duration: 6s; /* モバイルでは少し遅く */
    }
    
    .services-combo p {
        font-size: 1.25rem;
    }
    
    .services-combo .highlight {
        font-size: 1.5rem;
    }
}

/* パフォーマンス最適化 */
@media (prefers-reduced-motion: reduce) {
    .services-combo,
    .services-combo::before,
    .services-combo::after,
    .combo-badge,
    .services-combo .highlight {
        animation: none;
    }
}

/* トレーニングの流れ（縦型動画） */
.training-flow {
    background: var(--light-gray);
}

.flow-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.flow-video-item {
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    background: var(--gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    text-align: left;
}

.video-time {
    display: inline-block;
    background: var(--tiffany-blue);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.video-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-gray);
}



/* ───────── FAQ - base ───────── */
.faq { 
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* 背景パターン装飾 */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.02) 0%, transparent 50%);
    z-index: 1;
}

/* 装飾的なドット要素 */
.faq::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(78, 205, 196, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: floatPattern 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatPattern {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.6;
    }
}

/* セクション内のコンテンツを装飾より前面に */
.faq .container {
    position: relative;
    z-index: 2;
}

.faq-container{ 
    max-width:800px; 
    margin:0 auto; 
    position: relative;
    z-index: 2;
}

.faq-item{
    border-radius:var(--radius-md);
    overflow:hidden;
    margin-bottom:var(--spacing-sm);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    position: relative;
    background: var(--white);
}

/* FAQアイテムに微細な装飾を追加 */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--tiffany-blue) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.faq-item:hover::before {
    opacity: 0.6;
}

.faq-item.active{ 
    box-shadow:var(--shadow-md);
    border-left: 4px solid var(--tiffany-blue);
}

.faq-item.active::before {
    opacity: 1;
}

/* ─ Question button ─ */
.faq-question{
    width:100%; 
    display:flex; 
    justify-content:space-between; 
    align-items:center;
    padding:var(--spacing-md);
    background:var(--light-gray);
    font-size:1.125rem; 
    font-weight:600; 
    text-align:left;
    transition:var(--transition);
    position: relative;
    z-index: 2;
}

.faq-question:hover{ 
    background:rgba(78,205,196,0.1);
    color: var(--text-dark);
}

/* + / - アイコン */
.icon{
    position:relative; 
    width:20px; 
    height:20px;
    flex-shrink: 0;
}

.icon::before,
.icon::after{
    content:''; 
    position:absolute; 
    inset:0;
    margin:auto; 
    background:var(--tiffany-blue); 
    transition:var(--transition);
}

.icon::before{ 
    width:100%; 
    height:3px; 
    border-radius: 2px;
}         

.icon::after { 
    width:3px; 
    height:100%; 
    border-radius: 2px;
}          

.faq-item.active .icon::after{ 
    transform:scaleY(0); 
} 

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

/* ─ Answer ─ */
.faq-answer{
    max-height:0;
    overflow:hidden;
    background:var(--white);
    transition:max-height .4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.faq-item.active .faq-answer{ 
    max-height:350px; 
} 

.faq-answer p{
    padding:var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    color:var(--text-gray); 
    line-height:1.8;
    animation:fadeSlide .4s ease forwards;
    position: relative;
    z-index: 2;
}

/* ─ Small keyframe for answer text ─ */
@keyframes fadeSlide{
    from{ opacity:0; transform:translateY(-8px); }
    to  { opacity:1; transform:translateY(0);   }
}

/* ヘッダー部分の装飾強化 */
.faq .strengths-header {
    position: relative;
    z-index: 2;
}

.faq .strengths-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle,
        rgba(78, 205, 196, 0.05) 0%,
        transparent 70%
    );
    z-index: -1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* モバイルでは装飾を控えめに */
    .faq::after {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 2%;
        background-size: 15px 15px;
    }
    
    .faq::before {
        background-image: 
            radial-gradient(circle at 15% 85%, rgba(78, 205, 196, 0.02) 0%, transparent 40%),
            radial-gradient(circle at 85% 15%, rgba(78, 205, 196, 0.03) 0%, transparent 40%);
    }
    
    .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: var(--spacing-xs) var(--spacing-md) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .faq::after {
        display: none; /* 極小画面では非表示 */
    }
    
    .faq-item {
        margin-bottom: var(--spacing-xs);
    }
    
    .icon {
        width: 18px;
        height: 18px;
    }
}

/* アニメーション無効化設定 */
@media (prefers-reduced-motion: reduce) {
    .faq::after {
        animation: none;
    }
    
    .faq-answer p {
        animation: none;
    }
}

/* ダークモード対応（将来的な拡張用） */
@media (prefers-color-scheme: dark) {
    .faq::before {
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.06) 0%, transparent 50%);
    }
}
/* ================================
   メディア掲載セクション専用パララックス
   ================================ */
.media.kigu2-parallax{
    background-image:linear-gradient(
                       180deg,
                       rgba(0,0,0,.45) 0%,
                       rgba(0,0,0,.55) 50%,
                       rgba(0,0,0,.75) 100%),
                     url(images/kigu2.webp);
    background-position:center;
    background-size:cover;
    background-attachment:fixed;
}

@media(max-width:768px){
    /* モバイルはパララックスをオフに */
    .media.kigu2-parallax{ 
        background-attachment:scroll; 
    }
}

/* ─ メディア掲載セクションの見出しを白系へ ─ */
.media.kigu2-parallax .section-label,
.media.kigu2-parallax .strengths-title,
.media.kigu2-parallax .strengths-subtitle,
.media.kigu2-parallax .title-main{
    color:#fff;
}
.media.kigu2-parallax .title-accent{
    color:var(--tiffany-blue);
}
.media.kigu2-parallax .title-accent::after{
    background:var(--tiffany-blue);
}
/* メディア掲載 */
.media {
    background: var(--light-gray);
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.media-logo {
    width: 150px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.media-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}


        .media-articles {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: var(--spacing-xl);
            background: white;
            border-radius: var(--radius-md);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .media-article {
            border-bottom: 1px solid var(--gray);
            transition: all 0.3s ease;
        }

        .media-article:last-child {
            border-bottom: none;
        }

        .media-article.active {
            background-color: var(--light-gray);
        }

        /* パララックス背景時のメディア記事スタイル調整 */
        .media.kigu2-parallax .media-article {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .article-header {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            padding: var(--spacing-md);
            transition: background-color 0.3s ease;
        }
        .article-header:not(.noBody) {
            cursor: pointer;
		}
        .article-header:not(.noBody):hover {
            background-color: var(--hover-bg);
        }

        .article-date {
            background: var(--tiffany-blue);
            color: var(--white);
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .article-title {
            color: var(--text-gray);
            margin: 0;
            flex: 1;
            transition: color 0.3s ease;
            line-height: 1.2;
        }

        .article-header:not(.noBody) .article-title:hover {
            color: var(--tiffany-blue);
        }

        .article-time {
            font-size: 0.9em;
            opacity: 0.8;
        }

        .expand-icon {
            font-size: 1.2em;
            color: var(--tiffany-blue);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

		.article-header.noBody .expand-icon {
			display:none;
		}

        .media-article.active .expand-icon {
            transform: rotate(180deg);
        }

        .article-content {
            max-height: 0;
			width:100% !important;
            padding:0 var(--spacing-md) !important;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }

        .media-article.active .article-content {
            max-height: 1000px;
			padding-bottom: var(--spacing-lg);
        }

        .article-widget {
			display:flex;
			justify-content:center;
            padding-top: var(--spacing-md);
		}
        .article-body {
			display:flex;
        }
        .article-text {
			flex-grow:1;
		}

        .article-image {
            width: 30%;
            height: auto;
            border-radius: var(--radius-md);
            margin: var(--spacing-md) 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .article-text {
            color: var(--text-gray);
            line-height: 1.8;
            margin: var(--spacing-md) 0;
        }

        .close-button {
            display: inline-block;
            background: var(--tiffany-blue);
            color: var(--white);
            padding: var(--spacing-xs) var(--spacing-md);
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 0.875rem;
            margin-top: var(--spacing-md);
            transition: background-color 0.3s ease;
        }

        .close-button:not(.noBody):hover {
            background: #3DBDB6;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .article-header {
            	position:relative;
                gap: 1em;
                padding-left: 16px;
                padding-right: 40px;
            }
            
            .article-date {
                padding:0 var(--spacing-xs);
            }

            .expand-icon {
                position: absolute;
                right: var(--spacing-sm);
                top: 50%;
                transform:translateY(-50%);
            }
            .media-article.active .expand-icon {
                transform:translateY(-50%) rotate(180deg);
			}

	        .article-body {
				flex-direction: column-reverse;
			}
			.article-image {
				width: 80%;
				margin:0 auto;
			}

            .sp {
                display: block;
            }
        }

        @media (min-width: 769px) {
            .sp {
                display: none;
            }
        }



/* SNSウィジェット 2カラムレイアウト */
.sns-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--tiffany-blue);
}

.sns-widget-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sns-widget-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.sns-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tiffany-blue);
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--tiffany-blue-light);
}

.tiktok-widget,
.instagram-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* TikTok埋め込みスタイル調整 */
.tiktok-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sns-widgets {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding-top: var(--spacing-lg);
    }
    
    .sns-widget-item {
        padding: var(--spacing-md);
    }
    
    .tiktok-widget,
    .instagram-widget {
        min-height: 300px;
    }
}

/* パララックス背景時の記事タイトルを白に */
.media.kigu2-parallax .article-title {
    color: var(--white);
}

.access{    background-color: var(--white);}

/* アクセス */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);

}

.access-info h3 {
    font-size: 1.5rem;
    color: var(--tiffany-blue);
    margin-bottom: var(--spacing-lg);
}

.access-details {
    display: grid;
    gap: var(--spacing-md);
}

.access-details dt {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.access-details dd {
    color: var(--text-gray);
    line-height: 1.8;
}

.access-details a {
    color: var(--tiffany-blue);
    text-decoration: underline;
}

.access-parking {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--radius-md);
}

.access-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: 0 !important;
    outline: none !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}



/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .access-map {
        height: 350px;
        order: -1; /* マップを上に表示 */
    }
}

@media (max-width: 768px) {
    .access-content {
        gap: var(--spacing-md);
    }
    
    .access-map {
        height: 300px;
        border-radius: var(--radius-md);
    }
    
    .access-info h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }
    
    .access-details {
        gap: var(--spacing-sm);
    }
    
    .access-parking {
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .access-map {
        height: 280px;
        border-radius: var(--radius-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .access-info h3 {
        font-size: 1.125rem;
    }
    
    .access-details dt {
        font-size: 0.95rem;
    }
    
    .access-details dd {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* 非常に小さな画面（360px以下）での対応 */
@media (max-width: 360px) {
    .access-map {
        height: 250px;
    }
}



/* ブログ */
.blog {
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--tiffany-blue);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-date {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.25rem;
    margin: var(--spacing-xs) 0 var(--spacing-sm);
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);

	overflow:hidden;
	display:-webkit-box;
	text-overflow:ellipsis;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
	max-height:calc(1em * 1.8 * 3);
}

.blog-link {
    color: var(--tiffany-blue);
    font-weight: 600;
}

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

.more-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--tiffany-blue);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--tiffany-blue);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.more-link:hover {
    background: var(--tiffany-blue);
    color: var(--white);
}
/* ========================================
   LINE友達登録CTAセクション - アイコン版
   ======================================== */
.line-cta-section {
    background: linear-gradient(135deg, #00C300, #00B900);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* 背景装飾 */
.line-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 40%,
        transparent 70%
    );
    animation: ctaFloat 8s ease-in-out infinite;
    z-index: 1;
}

.line-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* メインLINEアイコン */
.line-icon-wrapper {
    margin-bottom: var(--spacing-lg);
}

.line-main-icon {
    width: 120px;
    height: 120px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.cta-text {
    margin-bottom: var(--spacing-xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-highlight {
    display: block;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-main {
    display: block;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-subtitle strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 特典リスト */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.2rem;
}

/* CTAアクション */
.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

/* CTAボタン */
.line-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--white);
    color: #00C300;
    padding: var(--spacing-lg) var(--spacing-xxl);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    max-width: 100%;

}

.line-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.line-cta-button:hover::before {
    left: 100%;
}

.line-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 6px 16px rgba(0, 0, 0, 0.15);
    color: #00B900;
}

/* ボタン内のLINEアイコン */
.line-button-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(0, 195, 0, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
    max-width: 400px;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes ctaFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(15deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    75% {
        transform: translateY(-4px) rotate(-2deg);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 211, 61, 0.4);
    }
}

/* ========================================
   LINE友達登録CTAセクション - アイコン版
   ======================================== */
.line-cta-section {
    background: linear-gradient(135deg, #00C300, #00B900);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* 背景装飾 */
.line-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 40%,
        transparent 70%
    );
    animation: ctaFloat 8s ease-in-out infinite;
    z-index: 1;
}

.line-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* メインLINEアイコン */
.line-icon-wrapper {
    margin-bottom: var(--spacing-lg);

}

.line-main-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: var(--spacing-sm);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.8);

    object-fit: contain;
}

.cta-text {
    margin-bottom: var(--spacing-xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-highlight {
    display: block;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-main {
    display: block;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-subtitle strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 特典リスト */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.2rem;
}

/* CTAアクション */
.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

/* CTAボタン */
.line-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--white);
    color: #00C300;
    padding: var(--spacing-lg) var(--spacing-xxl);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    max-width: 100%;
		border: 7px solid #00B900;


}

.line-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.line-cta-button:hover::before {
    left: 100%;
}

.line-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 6px 16px rgba(0, 0, 0, 0.15);
    color: #00B900;
}

/* ボタン内のLINEアイコン */
.line-button-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(0, 195, 0, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
    max-width: 400px;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes ctaFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(15deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    75% {
        transform: translateY(-4px) rotate(-2deg);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 211, 61, 0.4);
    }
}

/* ========================================
   レスポンシブ対応（モバイル最優先・アイコン重視）
   ======================================== */
@media (max-width: 992px) {
    .line-cta-content {
        max-width: 700px;
        gap: var(--spacing-lg);
    }
    
    .line-main-icon {
        width: 100px;
        height: 100px;
        padding: var(--spacing-xs);
        border-radius: 22px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-highlight {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .line-cta-section {
        padding: var(--spacing-xxl) 0;
    }
    
    .line-cta-content {
        max-width: 600px;
        gap: var(--spacing-xl);
    }
    
    .line-icon-wrapper {
        margin-bottom: var(--spacing-xl);
    }
    
    .line-main-icon {
        width: 110px;
        height: 110px;
        padding: var(--spacing-sm);
        border-radius: 24px;
        border-width: 4px;
    }
    
    .cta-text {
        margin-bottom: var(--spacing-xxl);
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-highlight {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .cta-main {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-xxl);
        align-items: center;
    }
    
    .benefit-item {
        font-size: 1.1rem;
        padding: var(--spacing-md) var(--spacing-lg);
        width: 100%;
        max-width: 320px;
        justify-content: center;
        min-height: 48px;
        border-radius: 24px;
    }
    
    .line-cta-button {
        font-size: 1.2rem;
        padding: var(--spacing-lg) var(--spacing-xxl);
        gap: var(--spacing-md);
        text-align: center;
        white-space: normal;
        line-height: 1.3;
        min-height: 60px;
        border-radius: 30px;
        max-width: 350px;
    }
    
    .line-button-icon {
        width: 36px;
        height: 36px;
        padding: 4px;
        border-radius: 10px;
    }
    
    .cta-note {
        font-size: 0.95rem;
        padding: 0 var(--spacing-lg);
        max-width: 350px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .line-cta-section {
        padding: var(--spacing-xl) 0;
    }
    
    .line-cta-content {
        max-width: 400px;
        gap: var(--spacing-lg);
    }
    
    .line-icon-wrapper {
        margin-bottom: var(--spacing-lg);
    }
    
    .line-main-icon {
        width: 95px;
        height: 95px;
        padding: 6px;
        border-radius: 20px;
        border-width: 3px;
    }
    
    .cta-text {
        margin-bottom: var(--spacing-xl);
    }
    
    .cta-title {
        font-size: 1.7rem;
        margin-bottom: var(--spacing-md);
    }
    
    .cta-highlight {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .cta-main {
        font-size: 1.7rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-benefits {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-xl);
    }
    
    .benefit-item {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
        max-width: 280px;
        min-height: 44px;
        border-radius: 22px;
    }
    
    .line-cta-button {
        font-size: 1.1rem;
        padding: var(--spacing-md) var(--spacing-lg);
        gap: var(--spacing-sm);
        min-height: 56px;
        border-radius: 28px;
        max-width: 320px;
    }
    
    .line-button-icon {
        width: 32px;
        height: 32px;
        padding: 3px;
        border-radius: 8px;
    }
    
    .cta-note {
        font-size: 0.9rem;
        padding: 0 var(--spacing-md);
        max-width: 300px;
    }
}

/* 超小画面対応（360px以下） */
@media (max-width: 360px) {
    .line-cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .line-main-icon {
        width: 85px;
        height: 85px;
        padding: 4px;
        border-radius: 18px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-highlight {
        font-size: 1.2rem;
    }
    
    .cta-main {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
        max-width: 260px;
        min-height: 42px;
    }
    
    .line-cta-button {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
        min-height: 52px;
        max-width: 280px;
    }
    
    .line-button-icon {
        width: 28px;
        height: 28px;
    }
    
    .cta-note {
        font-size: 0.85rem;
        max-width: 270px;
    }
}

/* ========================================
   パフォーマンス最適化
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .line-cta-section::before,
    .cta-main,
    .line-cta-button::before,
    .line-main-icon {
        animation: none;
    }
}
/* ========================================
   シンプルフッター
   ======================================== */
.simple-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    text-align: center;
}

.footer-main {
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

.footer-sns {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-sns a:hover {
    background: var(--tiffany-blue);
    transform: translateY(-2px);
}

/* フッターリンク */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--tiffany-blue);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes ctaFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(15deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 211, 61, 0.4);
    }
}

/* ========================================
   レスポンシブ対応（モバイル最優先）
   ======================================== */
@media (max-width: 768px) {
    .line-cta-section {
        padding: var(--spacing-xl) 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-highlight {
        font-size: 1.4rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-xl);
        align-items: center;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .line-cta-button {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .cta-note {
        font-size: 0.8rem;
        padding: 0 var(--spacing-md);
    }
    
    .simple-footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-tagline {
        margin-bottom: var(--spacing-lg);
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .line-cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-highlight {
        font-size: 1.2rem;
    }
    
    .line-cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    .footer-sns a {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   パフォーマンス最適化
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .line-cta-section::before,
    .cta-main,
    .line-cta-button::before {
        animation: none;
    }
}
/* 固定CTAグループ */
.fixed-cta-group {
    position: fixed;
    right: var(--spacing-lg);
    bottom: var(--spacing-lg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 上に戻るボタン */
.scroll-top-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--tiffany-blue);
    border-radius: 50%;
    color: var(--tiffany-blue);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    align-self: flex-end;
    margin-bottom: var(--spacing-xs);
}

.scroll-top-btn:hover {
    background: var(--tiffany-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.scroll-top-btn svg {
    transition: var(--transition);
}

.scroll-top-btn:hover svg {
    transform: translateY(-2px);
}

/* メイン無料体験ボタン */
.fixed-cta-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background:  linear-gradient(135deg, #00C300, #00B900);
    color: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        0 8px 24px rgba(107, 255, 119, 0.3),
        0 0 0 0 rgba(110, 255, 107, 0.4);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 4s ease-in-out infinite;
    min-width: 200px;
}

/* パルスアニメーション */
@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 24px rgba(107, 255, 110, 0.3),
            0 0 0 0 rgba(107, 255, 110, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 12px 32px rgba(107, 255, 110, 0.4),
            0 0 0 8px rgba(107, 255, 110, 0.1);
    }
}

/* ボタン内の光エフェクト */
.fixed-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transition: var(--transition);
    transform: translateX(-100%);
}

.fixed-cta-button:hover::before {
    animation: shimmer 0.8s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* アイコン部分 */
.cta-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.fixed-cta-button:hover .cta-icon {
    background:  linear-gradient(135deg, #00C300, #00B900 ,0.3);
    transform: scale(1.1) rotate(360deg);
}

/* テキスト部分 */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.cta-main {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.cta-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1;
}

/* 矢印部分 */
.cta-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
    flex-shrink: 0;
}

.fixed-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* ホバーエフェクト */
.fixed-cta-button:hover {
    background:  linear-gradient(135deg, #00C300, #00B900);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(110, 255, 107, 0.4),
        0 0 0 4px rgba(112, 255, 107, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-cta-group {
        right: var(--spacing-md);
        bottom: var(--spacing-md);
        gap: var(--spacing-xs);
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
    }
    
    .fixed-cta-button {
        padding: var(--spacing-sm) var(--spacing-md);
        min-width: 180px;
    }
    
    .cta-icon {
        width: 35px;
        height: 35px;
    }
    
    .cta-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-main {
        font-size: 1rem;
    }
    
    .cta-sub {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fixed-cta-group {
        right: var(--spacing-sm);
        bottom: var(--spacing-sm);
    }
    
    .fixed-cta-button {
        min-width: 160px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .cta-main {
        font-size: 0.95rem;
    }
    
    .cta-sub {
        font-size: 0.75rem;
    }
}

/* 高度な視覚効果（オプション） */
@media (hover: hover) and (pointer: fine) {
    .fixed-cta-button {
        position: relative;
    }
    
    .fixed-cta-button::after {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, var(--coral), var(--coral-light), var(--coral));
        border-radius: inherit;
        z-index: -1;
        opacity: 0;
        transition: var(--transition);
    }
    
    .fixed-cta-button:hover::after {
        opacity: 0.3;
        animation: rotate 3s linear infinite;
    }
    
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
    .fixed-cta-button,
    .scroll-top-btn {
        animation: none;
    }
    
    .fixed-cta-button::before {
        display: none;
    }
    
    .fixed-cta-group {
        animation: none;
    }
}

/* フォーカス対応 */
.fixed-cta-button:focus,
.scroll-top-btn:focus {
    outline: 3px solid rgba(78, 205, 196, 0.5);
    outline-offset: 2px;
}

/* モーダル */
.modal {
    display: none;

}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal h2 {
    font-size: 1.75rem;
    color: var(--tiffany-blue);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.required {
    color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: none;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--tiffany-blue);
}

.submit-button {
    padding: var(--spacing-md);
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--coral-light);
}

/* レスポンシブ */
@media (max-width: 768px) {
    /* hide nav only when header is NOT open */

    





    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-bg {
        opacity: 0.05;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .flow-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flow-number {
        margin: 0 auto;
    }
    
    .flow-image {
        width: 100%;
        height: 200px;
    }
    
    .services-grid,
    .flow-videos,
    .voice-grid,
    .pricing-tables,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .line-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .line-qr {
            display: block;
    margin-left: auto;
    margin-right: auto;
        order: -1;
    }
      img.footer-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-sns {
        justify-content: center;
    }
    
    .fixed-cta {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .combo-examples {
        flex-direction: column;
    }
}

/* スクロールアニメーション */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------------
   トレーナー紹介 全体
------------------------------------------------------------------- */
.section.team {
  background-color: #FFFFFF;
  padding: 100px 0;
}

.section.team .section-title {
  font-family: 'Outfit', 'Noto Sans JP';
  font-size: 2.8rem;
  font-weight: 700;
  color: #2D3436;
  text-align: center;
  margin-bottom: 8px;
}

.section.team .section-subtitle {
  font-family: 'Inter', 'Noto Sans JP';
  font-size: 1.8rem;
  font-weight: 400;
  color: #2D3436;
  text-align: center;
  margin-bottom: 40px;
}

/* -------------------------------------------------------------------
   トレーナーグリッド
------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* タブレット以上：2カラム */
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* デスクトップ以上：3カラム */
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -------------------------------------------------------------------
   トレーナーカード（PC・モバイル共通）
------------------------------------------------------------------- */
.team-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

/* 写真部分（PC・モバイル共通でオーバーレイ表示） */
.team-photo {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.team-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-photo img:hover {
  transform: scale(1.1);
}

/* オーバーレイ背景 */
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  z-index: 1;
}

/* オーバーレイコンテンツ */
.team-photo-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-photo-overlay .overlay-name {
  font-family: 'Outfit', 'Noto Sans JP';
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.team-photo-overlay .overlay-title {
  font-family: 'Inter', 'Noto Sans JP';
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
  line-height: 1.2;
  color: #4ECDC4;
}

/* オーバーレイ内のSNSアイコン */
.team-photo-overlay .overlay-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.team-photo-overlay .overlay-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  padding: 6px;
  box-sizing: border-box;
}

.team-photo-overlay .overlay-social a:hover {
  background-color: rgba(78, 205, 196, 0.9);
  transform: scale(1.1);
}

.team-photo-overlay .overlay-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 情報部分 */
.team-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 自己紹介文 */
.team-bio {
  font-family: 'Inter', 'Noto Sans JP';
  font-size: 1rem;
  font-weight: 400;
  color: #2D3436;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* コメントタイトル用 */
.team-info .comment {
  display: inline-block;
  font-family: 'Outfit', 'Noto Sans JP';
  font-size: 1rem;
  font-weight: 600;
  color: #4ECDC4;
  margin-bottom: 4px;
}

/* 実績リスト */
.team-achievements {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.team-achievements li {
  font-family: 'Inter', 'Noto Sans JP';
  font-size: 0.9rem;
  font-weight: 400;
  color: #2D3436;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}

.team-achievements .achievement-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4ECDC4;
  margin-right: 6px;
}

/* -------------------------------------------------------------------
   モバイル向け調整
------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section.team {
    padding: 60px 0;
  }
  
  .team-grid {
    gap: 16px;
    padding: 0 16px;
  }
  
  .team-card {
    border-radius: 12px;
  }
  
  /* モバイルでのオーバーレイ調整 */
  .team-photo-overlay .overlay-name {
    font-size: 1rem;
  }
  
  .team-photo-overlay .overlay-title {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  
  .team-photo-overlay .overlay-social {
    gap: 6px;
  }
  
  .team-photo-overlay .overlay-social a {
    width: 24px;
    height: 24px;
    padding: 5px;
  }
  
  /* 情報部分の調整 */
  .team-info {
    padding: 16px;
  }
  
  .team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .team-info .comment {
    font-size: 0.9rem;
  }
  
  .team-achievements li {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  
  .team-achievements .achievement-number {
    font-size: 0.9rem;
  }
}

/* 極小画面での追加調整 */
@media (max-width: 480px) {
  .team-info {
    padding: 12px;
  }
  
  .team-bio {
    font-size: 0.85rem;
  }
  
  .team-photo-overlay .overlay-name {
    font-size: 0.9rem;
  }
  
  .team-photo-overlay .overlay-title {
    font-size: 0.75rem;
  }
}




/* 料金プラン */
/* 料金プラン - 追加分のみ */
.pricing {
    background: var(--light-gray);
}

/* 共通特典 */
.common-benefits {
    background: var(--white);  /* 変更: light-gray から white へ */
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    box-shadow: var(--shadow-sm);  /* 追加: 影を追加 */
}

.benefits-title {
    font-size: 1.5rem;
    color: var(--tiffany-blue);
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: flex;
    justify-content:space-evenly;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.benefit-item img {
    animation: float 3s ease-in-out infinite;
}

.benefit-item:nth-child(2) img { animation-delay: 0.5s; }
.benefit-item:nth-child(3) img { animation-delay: 1s; }
.benefit-item:nth-child(4) img { animation-delay: 1.5s; }

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

.benefit-item p {
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-note {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

/* 初回体験 */
.trial-section {
    position: relative;
    margin-bottom: var(--spacing-xxl);
}

.trial-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
}

.trial-card {
    background: var(--white);  /* 変更: グラデーションから白へ */
    border: 2px solid var(--tiffany-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.15);  /* 追加: ティファニーブルーの影 */
}

.trial-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.trial-duration {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.trial-includes {
    list-style: none;
}

.trial-includes li {
    padding: var(--spacing-xs) 0;
    position: relative;
    color: var(--text-gray);
}

.trial-includes li::before {
    content: '\02714';
    color: var(--tiffany-blue);
    font-weight: 700;
}

.trial-price {
    text-align: center;
    min-width: 150px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.special-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    font-family: 'Poppins', sans-serif;
}

/* プランセクション */
.pricing-section {
    margin-bottom: var(--spacing-xxl);
}

.pricing-section-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.pricing-section-desc {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

/* ボディメイクプラン */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: var(--transition);
}

.pricing-card.special {
    border-color: var(--tiffany-blue);
    box-shadow: var(--shadow-md);
}

.pricing-card.recommended {
    transform: scale(1.05);
    border-width: 3px;
}

.recommended-badge {
    position: absolute;
    top: -6px;
    right: 20px;
    background: var(--gold);
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.875rem;
}

.plan-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.plan-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.plan-sessions {
    color: var(--text-gray);
}

.plan-price {
    background: var(--white);  /* 変更: light-gray から white へ */
    border: 1px solid var(--gray);  /* 追加: 薄い枠線 */
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.price-option:not(:last-child) {
    border-bottom: 1px solid var(--gray);
    margin-bottom: var(--spacing-xs);
    padding-bottom: var(--spacing-sm);
}

.option-label {
    font-weight: 600;
    color: var(--text-dark);
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tiffany-blue);
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-gray);
}

.plan-features li::before {
    content: '\02714';
    position: absolute;
    left: 0;
    color: var(--tiffany-blue);
    font-weight: 700;
}

/* 回数券 */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.ticket-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.ticket-card:hover {
    border-color: var(--tiffany-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ticket-card.popular {
    border-color: var(--tiffany-blue);
    background: rgba(78, 205, 196, 0.02);
}

.ticket-badge,
.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--coral);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ticket-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.ticket-price {
    margin-bottom: var(--spacing-sm);
}

.total-price {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--tiffany-blue);
    margin-bottom: var(--spacing-xs);
}

.per-session {
    display: block;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.ticket-note {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

/* その他のプラン */
.other-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.other-plan-card {
    background: var(--white);  /* 変更: light-gray から white へ */
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);  /* 追加: 影を追加 */
}

.other-plan-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.other-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--spacing-sm);
    align-items: center;
    padding: var(--spacing-sm);
    background: var(--light-gray);  /* 変更: white から light-gray へ（コントラストを保つため）*/
    border-radius: var(--radius-sm);
}

.option-name {
    font-weight: 600;
    color: var(--text-dark);
}

.option-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tiffany-blue);
}

.option-per {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.option-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

/* 追加情報 */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--white);  /* 変更: light-gray から white へ */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);  /* 追加: 影を追加 */
}

.info-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* 追加: 垂直方向の中央寄せ */
    align-items: center;      /* 追加: 水平方向の中央寄せ */
}

.info-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.info-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tiffany-blue);
}

.info-item.highlight {
    background: linear-gradient(135deg, var(--coral-light), var(--coral));
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.info-item.highlight h4,
.info-item.highlight p {
    color: var(--white);
}

.info-note {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: var(--spacing-xs);
}

/* フッター */
.pricing-footer {
    text-align: center;
    color: var(--text-gray);
    padding-top: var(--spacing-xl);
}

.pricing-footer p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.pricing-note {
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

/* レスポンシブ - 料金プラン部分のみ */
@media (max-width: 768px) {
    /* 料金プラン モバイル対応 */
    .benefits-grid {
        flex-wrap:wrap;
    }
    .benefit-item {
        width:45%;
    }
    .trial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .trial-price {
        padding-top: var(--spacing-lg);
        border-top: 1px solid var(--gray);
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .other-plans {
        grid-template-columns: 1fr;
    }
    
    .option {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xs);
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
}


/* ONEFITの強みセクション - ハブアンドスポークデザイン */
.strengths-section {
    padding: var(--spacing-xxl) 0;
    background-image:linear-gradient(rgba(0, 0, 0, .6),  rgba(0, 0, 0, .6)),url(images/kigu1.jpg);
    position: relative;
    overflow: hidden;
}

.strengths-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-label {
    display: inline-block;
    color: var(--tiffany-blue);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.strengths-title {
    font-size: clamp(2.8rem, 4.8vw, 3.8rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.title-main {
    display: inline;
    color: var(--text-dark);
}

.title-accent {
    display: inline;
    color: var(--tiffany-blue);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--tiffany-blue);
}

.strengths-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
}

/* ONEFITの強み - ハブアンドスポークレイアウト */
.strengths-hub {
    position: relative;
    max-width: var(--max-width); /* 変数を使用 */
    margin: 0 auto;
    min-height: 850px;
    /* PCでのみposition: absoluteのアイテムを配置するため、高さを確保 */
}

/* 中央のロゴ */
.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg); /* 変数を使用 */
    z-index: 2;
}

.hub-logo {
    width: 120px;
    height: auto;
}

/* 接続線SVG */
.hub-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 強みアイテム */
.strength-item {
    position: absolute; /* デスクトップでの配置用 */
    width: 350px; /* デスクトップでの幅 */
    /* モバイルでのpositionと幅はメディアクエリで上書き */
}

.strength-item.top-left { top: 0; left: 0; }
.strength-item.top-right { top: 0; right: 0; }
.strength-item.bottom-left { bottom: 0; left: 0; }
.strength-item.bottom-right { bottom: 0; right: 0; }

/* カード内の要素のスタイルは共通 */
.strength-content {
    background: var(--white); /* 変数を使用 */
    border-radius: var(--radius-lg); /* 変数を使用 */
    padding: 0 0 var(--spacing-lg); /* 変数を使用 */
    box-shadow: var(--shadow-sm); /* 変数を使用 */
    transition: var(--transition); /* 変数を使用 */
    display: flex; /* モバイルでのレイアウト調整のためFlexboxを適用 */
    flex-direction: column; /* 要素を縦に並べる */
    height: 100%; /* 親要素(strength-item)の高さに合わせる */
}

.strength-item::before { /* 番号バッジ */
    content: attr(data-number);
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--tiffany-blue); /* 変数を使用 */
    color: var(--white); /* 変数を使用 */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 3;
    /* モバイルでの位置調整はメディアクエリで */
}

/* --- Strengths : large image card style --- */
.strength-image {
    position: relative;
    width: 100%; /* カード幅いっぱいに */
    height: 220px; /* 画像の高さ */
    border-radius: var(--radius-lg); /* 変数を使用 */
    overflow: hidden;
    margin-bottom: var(--spacing-lg); /* 変数を使用 */
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.strength-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.strength-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,rgba(0,0,0,.1) 0%,rgba(78,205,196,.3) 100%);
    mix-blend-mode: multiply;
    transition: opacity .5s ease;
}
.strength-content:hover .strength-image img   { transform:scale(1.08); }
.strength-content:hover .strength-overlay     { opacity:.05; }

/* カード全体の浮き上がり */
.strength-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg); /* 変数を使用 */
}

/* テキスト中央寄せに */
.strength-text {
    padding: 0 var(--spacing-lg); /* 変数を使用 */
    text-align: center;
    flex-grow: 1; /* 残りのスペースを埋める */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 上揃え */
}


.strength-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark); /* 変数を使用 */
    margin-bottom: var(--spacing-sm); /* 変数を使用 */
    line-height: 1.4;
}

.strength-text p {
    color: var(--text-gray); /* 変数を使用 */
    line-height: 1.6;
    font-size: 0.875rem;
    /* flex-grow: 1; */ /* 段落の高さに影響されるためgrowはテキストコンテナ(.strength-text)に移動 */
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .strengths-hub {
        min-height: auto; /* 高さを自動に */
        display: grid; /* グリッドレイアウトに */
        grid-template-columns: 1fr 1fr; /* 2カラム */
        gap: var(--spacing-lg); /* 変数を使用 */
        position: static; /* position: absolute 解除 */
        padding: 0 var(--spacing-md); /* 左右に余白を追加 */
    }

    .hub-center { display: none; } /* 中央ロゴ非表示 */
    .hub-lines { display: none; } /* 接続線非表示 */

    .strength-item {
        position: static; /* position: absolute 解除 */
        width: 100%; /* 親要素の幅いっぱいに */
        /* モバイル用のFlexboxスタイルは768px以下のメディアクエリへ移動 */
    }

    .strength-item::before {
        top: 10px; /* 番号バッジ位置調整 */
        left: 10px; /* 左端からの位置調整 */
    }

    /* タブレットでのカード内の画像とテキストの配置調整 */
    .strength-content {
         /* flex-direction: column; flexの設定はモバイルメディアクエリへ移動 */
        padding: var(--spacing-md); /* タブレットでのpadding */
    }

     .strength-image {
        height: 180px; /* タブレットでの画像高さ調整 */
        margin-bottom: var(--spacing-md); /* 変数を使用 */
     }

     .strength-text {
         padding: 0; /* paddingをリセット */
         text-align: left; /* 左寄せに戻す */
         /* flex-grow: 0; */ /* growはテキストコンテナに設定済み */
     }

     .strength-text h3 {
        font-size: 1rem; /* タブレットでのタイトルサイズ調整 */
     }

     .strength-text p {
        font-size: 0.875rem; /* タブレットでのテキストサイズ調整 */
     }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .strengths-hub {
        grid-template-columns: 1fr; /* 1カラムに */
        gap: var(--spacing-md); /* モバイルでのギャップ */
        padding: 0 var(--spacing-md); /* 左右余白はタブレットと同じか調整 */
    }

    .strength-item {
        width: 100%; /* 1カラムなので幅いっぱい */
    }

    .strength-item::before {
        display: none;
    }

    /* モバイルでのカード内のレイアウト（横並び）*/
    .strength-content {
        display: flex; /* Flexbox */
        flex-direction: row; /* 横並び */
        align-items: flex-start; /* 上揃え */
        gap: var(--spacing-md); /* 変数を使用 */
        padding: var(--spacing-md); /* モバイルでのpadding */
    }

    /* 画像のサイズと余白調整 */
    .strength-image {
        width: 120px; /* ★モバイルでの画像幅を少し小さく調整★ */
        height: 120px; /* ★モバイルでの画像高さを少し小さく調整★ */
        border-radius: var(--radius-md); /* 変数を使用 */
        margin-bottom: 0; /* 下余白をリセット */
        flex-shrink: 0; /* 縮小させない */
    }

    /* テキスト部分の調整 */
    .strength-text {
        padding: 0; /* paddingリセット */
        text-align: left; /* 左寄せ */
        flex-grow: 1; /* 残りのスペースを埋める */
    }

     .strength-text h3 {
        font-size: 1rem; /* モバイルでのタイトルサイズ調整 */
        margin-bottom: var(--spacing-xs); /* 変数を使用 */
     }

     .strength-text p {
        font-size: 0.875rem; /* モバイルでのテキストサイズ調整 */
     }
}


/* ================================
   kigu-parallax 専用の上書き
   ================================ */
.strengths-section.kigu-parallax{
  /* 上にグラデ、下に画像 → テキストは影響を受けない */
  background-image: linear-gradient(
                     180deg,
                     rgba(0,0,0,.45) 0%,
                     rgba(0,0,0,.55) 50%,
                     rgba(0,0,0,.75) 100%),
                   url(images/kigu1.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 768px){
  /* モバイルはパララックスを無効化 */
  .strengths-section.kigu-parallax{
    background-attachment: scroll;
  }
}


/* ───────── 見出しを白系へ ───────── */
.strengths-section.kigu-parallax .section-label,
.strengths-section.kigu-parallax .strengths-title,
.strengths-section.kigu-parallax .strengths-subtitle,
.strengths-section.kigu-parallax .title-main{
  color:#fff;
}
.strengths-section.kigu-parallax .title-accent{
  color:var(--tiffany-blue);
}
.strengths-section.kigu-parallax .title-accent::after{
  background:var(--tiffany-blue);
}

/* ───────── 点線 SVG を太く・濃く ───────── */
.strengths-section.kigu-parallax .hub-lines line{
  stroke:#4ECDC4;
  stroke-width:2;
  stroke-dasharray:4 4;
  opacity:.55;
}


/* 選ばれる理由セクション */
.reasons-section {
    padding: var(--spacing-xxl) 0;
    background: var(--light-gray);
}

.reasons-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.reasons-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
}

.title-highlight {
    display: block;
    color: var(--tiffany-blue);
    margin-top: var(--spacing-xs);
}

/* 理由グリッド */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.reason-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.reason-card:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.reason-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tiffany-blue);
    opacity: 0.2;
}

.reason-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.reason-content p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.reason-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

/* CTA部分 */
.reasons-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.cta-text .highlight {
    color: var(--coral);
    font-weight: 700;
    font-size: 1.5em;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: var(--transition);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    gap: var(--spacing-md);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reason-number {
        margin: 0 auto;
    }
    
    .reason-image {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }
}


/* =====================================
   セクション全体
   ===================================== */
.reasons-section {
  background-color: var(--light-gray);
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
}

/* =====================================
   ヘッダー部分
   ===================================== */
.reasons-header {
  text-align: center;
  margin-bottom: 48px;
}

.reasons-header .label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tiffany-blue);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.reasons-header .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.reasons-header .title .highlight {
  color: var(--tiffany-blue);
}

.reasons-header .lead {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* =====================================
   カードレイアウト
   ===================================== */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 16px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 画像部分 */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* カード内テキスト */
.card-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.card-content ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: auto;
}

.card-content ul li {
  font-size: 0. nine 0. nine rem;
  color: var(--dark-gray);
  line-height: 1.5;
  margin-bottom: 8px;
}

/* レスポンシブ：タブレット以下で２列 */
@media screen and (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* レスポンシブ：モバイル（1列） */
@media screen and (max-width: 600px) {
  .cards {
    flex-direction: column;
  }
  .card {
    flex: 1 1 100%;
  }
}

/* =====================================
   CTA部分
   ===================================== */
.reasons-cta {
  text-align: center;
  margin-top: 48px;
}

.reasons-cta .cta-text {
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.6;
}

.reasons-cta .cta-button {
  display: inline-block;
  background-color: var(--coral);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.reasons-cta .cta-button:hover {
  background-color: darken(var(--coral), 10%);
}


/* ===================================================
   SUCCESS STORIES - お客様の声（New Design）
=================================================== */
.voice {
  background: var(--white);
}

/* ---------- ヘッダー ---------- */
.voice-header-block {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}
.voice-header-block .title-accent { color: var(--tiffany-blue); }

/* ============ ① Before / After ============ */
.ba-grid {
  /* == ここを改修 == */
  /* 複数カードのグリッドから、単一カードの中央配置または幅指定に変更 */
  display: block; /* ブロック要素に */
  max-width: 800px; /* コンテンツの最大幅を設定（任意） */
  margin: 0 auto var(--spacing-xxl); /* 中央配置と下部余白 */
  /* grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); は不要 */
  gap: 0; /* gapは不要に */
  /* == 改修ここまで == */
}
.ba-card {
  /* == ここを改修 == */
  /* カード自体をFlexコンテナにし、画像とテキストを左右に並べる */
  display: flex;
  flex-direction: row; /* デスクトップでは横並び */
  align-items: center; /* 垂直方向中央寄せ */
  gap: var(--spacing-xl); /* 画像とテキストの間の余白 */

  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.ba-card:hover {
  box-shadow: var(--shadow-md);
  /* transform: translateY(-6px); は削除、カード全体の浮き上がりは親の hover に移譲 */
  transform: none; /* 親hoverで対応しない場合は transform: none; または削除 */
}
.ba-imgs {
  /* == ここを改修 == */
  /* 左右2カラムの画像コンテナ */
  display: grid; /* 内部のBefore/After画像を横並びに */
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm); /* Before/After画像間の余白 */
  width: 50%; /* 親（.ba-card）の幅の半分を使用 */
  flex-shrink: 0; /* 画像が縮小されないように */
  /* margin-bottom: var(--spacing-md); は不要 */
  margin-bottom: 0;
  /* == 改修ここまで == */
}
.ba-img {
  position: relative;
  height: 450px; /* 画像の高さを維持 */
  width: 100%; /* 親（.ba-imgs）の幅いっぱい */
  object-fit: cover;
}
.ba-img:nth-child(1)::after,
.ba-img:nth-child(2)::after {
  content: attr(data-label);          /* HTML 側で data-label を指定 */
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}
.ba-card .ba-title,
.ba-card .ba-desc,
.ba-card .ba-tags {
  /* ba-card内で右側のFlexアイテムとして扱うためのスタイル */
  /* 必要に応じて flex-grow: 1; などを追加 */
}

/* テキスト部分全体のFlexアイテムとしての設定 */
.ba-card > *:not(.ba-imgs) { /* 画像要素以外の直下の子要素 */
    flex: 1; /* 残りのスペースを埋める */
}
.ba-title {
  font-size: 1.25rem; font-weight: 700; color: var(--tiffany-blue);
  margin-bottom: var(--spacing-xs);
    position: relative;
}
/* bullet を消す */
.ba-tags {       /* pillタグを横並びに */
  display:flex; gap:8px; flex-wrap:wrap; list-style:none;
}
.ba-tags li {
  display:inline-block;
  background:var(--white);
  border:1px solid var(--tiffany-blue);
  padding:4px 12px;
  border-radius:var(--radius-full);
  font-size:0.8rem; font-weight:600; color:var(--tiffany-blue);
  box-shadow:0 1px 3px rgba(0,0,0,.05);
}


.ba-title {
  font-size: 1.25rem; font-weight: 700; color: var(--tiffany-blue);
  margin-bottom: var(--spacing-xs);
  /* == ここを改修 == */
  position: relative;
  /* == 改修ここまで == */
}
/* タイトル下ライン */
.ba-title::after {
  content:''; position:absolute; left:0; bottom:-4px;
  width:40px; height:3px; background:var(--tiffany-blue); border-radius:2px;
}
.ba-desc {
  /* == ここを改修 == */
  /* 説明カード風の背景と枠線を削除 */
  background: none; /* または transparent */
  padding: 0; /* または var(--spacing-xs) など */
  border-radius: 0;
  box-shadow: none;
  /* == 改修ここまで == */
  line-height:1.7;
  margin-bottom:var(--spacing-md);
}
/* == ここを改修 == */
/* 説明カード風の縦線を削除 */
/* .ba-desc::before { display: none; } */
/* == 改修ここまで == */

.ba-tags {       /* pillタグを横並びに */
  display:flex; gap:8px; flex-wrap:wrap; list-style:none;
}
.ba-tags li {
  display:inline-block;
  background:var(--white);
  border:1px solid var(--tiffany-blue);
  padding:4px 12px;
  border-radius:var(--radius-full);
  font-size:0.8rem; font-weight:600; color:var(--tiffany-blue);
  box-shadow:0 1px 3px rgba(0,0,0,.05);
}

@media (max-width: 768px) {
  .ba-grid {
    /* モバイルでの調整があればここに記述 */
    margin-bottom: var(--spacing-xl); /* モバイルでの下部余白を調整 */
  }
  .ba-card {
    /* == ここを改修 == */
    /* モバイルでは縦積みに */
    flex-direction: column;
    align-items: flex-start; /* 左寄せに */
    gap: var(--spacing-md); /* 縦方向の余白 */
    padding: var(--spacing-md); /* モバイルでのpadding */
    /* == 改修ここまで == */
  }
  .ba-imgs {
    /* == ここを改修 == */
    /* モバイルでは幅を調整 */
    width: 100%; /* 親（.ba-card）の幅いっぱいに */
    /* == 改修ここまで == */
  }
    .ba-img {
        height: 250px; /* モバイルでの画像高さを調整（任意） */
    }
   .ba-title::after {
      left: auto; /* 左端固定を解除 */
      right: 0; /* 右端に寄せるか、中央寄せの場合は text-align と合わせて調整 */
      /* あるいは left: 50%; transform: translateX(-50%); で中央 */
   }
}






/* ===================================================
   WORKOUT FLOW - 新レイアウト
=================================================== */
.training-flow { background: var(--light-gray); }

/* ---------- レイアウト ---------- */
.training-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* 動画は既存 video-wrapper を再利用（高さを少し伸ばす） */
.training-flex .video-wrapper {
  padding-bottom: 150%;         /* 9:16 より縦長に */
  box-shadow: var(--shadow-lg);
}

/* ---------- テキストフロー ---------- */
.flow-steps {
  list-style: none;
  position: relative;
  counter-reset: flowStep;
  padding-left: 60px;           /* タイムライン余白 */
}

.flow-steps::before {           /* 縦ライン */
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tiffany-blue);
  border-radius: 2px;
}

.step-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
  padding-left: var(--spacing-lg);
}

.step-item:last-child { margin-bottom: 0; }

.step-item::before {            /* 丸バッジ（番号） */
  counter-increment: flowStep;
  content: counter(flowStep);
  position: absolute;
  left: -1px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tiffany-blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 時間ラベル */
.step-time {
  display: inline-block;
  background: var(--tiffany-blue);
  color: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

/* タイトル & 説明 */
.step-title  { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.step-desc   { color: var(--text-gray); line-height: 1.6; }

/* ---------- アニメーション ---------- */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px); transition: 0.6s ease;
}
.from-left  { transform: translateX(-40px); }
.from-right { transform: translateX(40px);  }

.animate-on-scroll.visible {
  opacity: 1; transform: translateX(0) translateY(0);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 992px) {
  .training-flex { grid-template-columns: 1fr; }
  .training-flex .video-wrapper { max-width: 400px; margin: 0 auto; }
  .flow-steps { margin-top: var(--spacing-xl); padding-left: 32px; }
}







@media (max-width: 768px) {
  .nav-list{
    flex-direction:column;
    gap:var(--spacing-lg);
    align-items:flex-start;
  }
}






/* ===== Google レビュー - スライダー（改良版）===== */
.g-reviews{
    /* セクション全体の背景色とアニメーション */
    padding:clamp(60px, 8vw, 100px) 0;
    border-radius:var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
}

/* 背景アニメーション */
.g-reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 70%,
        rgba(78, 205, 196, 0.03) 0%,
        transparent 40%
    ),
    radial-gradient(
        circle at 70% 30%,
        rgba(78, 205, 196, 0.05) 0%,
        transparent 60%
    );
    animation: backgroundFloat 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: rotate(240deg) scale(0.9);
        opacity: 0.6;
    }
}

.g-reviews .container {
    position: relative;
    z-index: 2;
}

.g-reviews-inner {
    display: block;
    width: 100%;
}

.g-reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.g-reviews-header .g-title{
    font-size:clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight:700;
    line-height:1.3;
    margin-bottom:var(--spacing-sm);
    color: var(--text-dark);
}

.g-reviews-header .g-desc{
    font-size:clamp(1rem, 1.5vw, 1.125rem);
    line-height:1.7;
    color: var(--text-gray);
}

/* 右カラム：レビューカードスライダーコンテナ */
.g-slider-column {
    position: relative;
    /* 上下のパディングを増やして見切れを防ぐ */
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* スライダー（レビューカードを横一列に並べる部分） */
.review-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    
    /* スクロールバーを非表示にする */
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    
    /* 上下のパディングを追加してカードの影が見切れないように */
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.review-slider::-webkit-scrollbar {
    display: none;
}

/* レビューカード共通スタイル */
.g-card{
    flex: 0 0 400px;
    width: 400px;
    height: 300px;
    background:#fff;
    border-radius:var(--radius-md);
    padding:var(--spacing-md);
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    scroll-snap-align: start;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* マージンを調整してカード間のスペースを確保 */
    margin-right: calc(var(--spacing-lg) / 2);
    margin-left: calc(var(--spacing-lg) / 2);
}

.g-card:hover {
    box-shadow:0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-4px);
}

/* 星のスタイル */
.g-stars{
    font-size:1.2rem;
    color:var(--tiffany-blue);
    margin-bottom:var(--spacing-sm);
}

.g-text{
    font-size:0.95rem;
    color:var(--text-gray);
    line-height:1.6;
    flex:1;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--tiffany-blue) var(--light-gray);
}

.g-text::-webkit-scrollbar { width: 8px; }
.g-text::-webkit-scrollbar-track { background: var(--light-gray); }
.g-text::-webkit-scrollbar-thumb { background-color: var(--tiffany-blue); border-radius: 4px; }

.g-foot{
    font-size:.85rem;
    font-weight:600;
    color:var(--text-gray);
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.g-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

/* スライダーナビゲーションボタン */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
    color: var(--tiffany-blue);
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.slider-btn:hover {
    background: var(--tiffany-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
    left: calc(var(--spacing-md) / 2);
}

.slider-btn.next {
    right: calc(var(--spacing-md) / 2);
}

/* レスポンシブ：タブレット対応 */
@media (max-width: 1024px) {
    .g-reviews-inner {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .g-card{
        flex: 0 0 320px;
        width: 320px;
        height: 250px;
    }
    
    .review-slider {
        padding-left: 0;
        padding-right: 0;
    }
    
    .g-slider-column {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }
    
    .slider-btn.prev { left: calc(var(--spacing-md) / 2); }
    .slider-btn.next { right: calc(var(--spacing-md) / 2); }
}

/* レスポンシブ：モバイル対応 */
@media(max-width:768px){
    .g-reviews{
        padding:var(--spacing-xl) 0;
        border-radius: 0;
    }
    
    .g-reviews .container {
        padding: 0 var(--spacing-md);
    }

    .g-reviews-inner{
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .g-slider-column {
        padding-bottom: var(--spacing-xl);
        flex: none;
        min-width: auto;
        /* スマホでの左右パディングを増やして1枚目の見切れを防ぐ */
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
        padding-top: var(--spacing-lg);
    }
    
    .review-slider {
        padding: 0;
        gap: var(--spacing-md);
        /* 上下のパディングを維持 */
        padding-top: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
    }
    
    .g-card{
        /* スマホでのカード幅を調整し、左側の見切れを防ぐ */
        flex: 0 0 85%;
        width: 85%;
        max-width: 320px;
        height: 280px;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-sm);
        
        /* 最初のカードの左マージンを調整 */
        margin-right: var(--spacing-sm);
        margin-left: var(--spacing-sm);
    }
    
    /* 最初のカードの左マージンを特別に調整 */
    .g-card:first-child {
        margin-left: var(--spacing-md);
    }
    
    /* 最後のカードの右マージンを調整 */
    .g-card:last-child {
        margin-right: var(--spacing-md);
    }


}

/* 極小画面での調整 */
@media (max-width: 480px) {
    .g-slider-column {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .g-card {
        flex: 0 0 90%;
        width: 90%;
        max-width: 280px;
    }
}

/* アニメーション無効化設定 */
@media (prefers-reduced-motion: reduce) {
    .g-reviews::before {
        animation: none;
    }
}

/* ========== 新規追加: CSSハック用スタイル群 ========== */

/* 隠しチェックボックス: 画面に表示せず、クリックも受け付けない */
.hidden-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: -1; /* 他の要素の邪魔にならないように */
}

/* モーダルオーバーレイ用のラベル: モーダルが開いていないときは隠す */
.modal-overlay {
    display: none; /* デフォルト非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8999; /* モーダルコンテンツ(z-index:9000)より下、他の要素より上 */
    cursor: pointer;
}

/* チェックボックスがチェックされたら、対応する要素を表示 */

/* --- メニュー表示 --- */
#menu-toggle:checked ~ .container .header-inner .nav {
    /* PCでは非表示（デフォルト）、モバイルで表示 */
    /* display: flex; はモバイルメディアクエリで設定 */

    position: fixed; /* 画面に固定 */
    top: 0; /* ヘッダー高さに合わせて調整が必要な場合あり */
    right: 0;
    width: 80%; /* モバイルメニューの幅 */
    max-width: 400px; /* 最大幅を設定（任意） */
    height: 100vh; /* 画面いっぱいの高さ */
    background: rgba(255, 255, 255, 0.95); /* 白色で透過度95% */
    padding: var(--spacing-xl) var(--spacing-lg); /* 内側の余白 */
    overflow-y: auto; /* 縦に長い場合にスクロール可能に */
    box-shadow: -2px 0 8px rgba(0, 0, 0, .12); /* 影 */
    z-index: 1050; /* ヘッダーより手前に */
    animation: slideIn .3s ease-out forwards; /* アニメーション */
    /* align-items: flex-start; */ /* モバイルメディアクエリで設定 */
    /* gap: var(--spacing-lg); */ /* モバイルメディアクエリで設定 */
}

/* --- メニューアニメーション（スライドイン） --- */
@keyframes slideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

/* --- メニューアイコンのアニメーション --- */
#menu-toggle:checked ~ .container .header-inner .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px,6px);
}
#menu-toggle:checked ~ .container .header-inner .menu-toggle span:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked ~ .container .header-inner .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}


/* --- モーダル表示 --- */
#modal-toggle:checked ~ .modal {
    display: flex; /* JS制御時のdisplay: flex をそのまま利用 */
    position: fixed; /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    z-index: 9000; /* 他の要素より最前面に */
    align-items: center; /* 子要素を垂直方向中央に */
    justify-content: center; /* 子要素を水平方向中央に */
}

/* --- モーダルコンテンツアニメーション --- */
.modal-content {
    animation: modalIn 0.3s ease;
    /* ... 既存スタイル維持 ... */
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* --- モーダル外側（オーバーレイ）のクリック領域表示 --- */
#modal-toggle:checked ~ .modal .modal-overlay {
    display: block; /* 非表示から表示に */
}

/* ========== ラベル要素をボタンのように見せるためのスタイル調整 ========== */
.cta-button,
.fixed-cta-button,
.menu-toggle,
.modal-close,
.modal-overlay {
    cursor: pointer; /* カーソルを指マークに */
}

/* --- 新規追加: メニュー内の閉じるボタン（.menu-close）スタイル --- */
.menu-close {
    display: none; /* デフォルト非表示 */
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--text-gray);
    transition: var(--transition);
    z-index: 1060;
    cursor: pointer;
}

#menu-toggle:checked ~ .container .header-inner .nav .menu-close {
     display: block; /* 非表示から表示に */
}

.menu-close:hover {
    color: var(--text-dark); /* ホバーエフェクト */
}

/* --- 新規追加: メニュー内のSNSリンクコンテナ スタイル --- */
.nav-sns {
    /* PCでは非表示 */
    display: none; /* デフォルトで非表示 */

    /* モバイルメディアクエリで表示に切り替え */
    /* display: flex; はモバイルメディアクエリで設定 */
    gap: var(--spacing-sm);
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray);
}

.nav-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4em;
    height: 2.4em;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-dark);
}

.nav-sns a:hover {
    background: var(--tiffany-blue);
    color: var(--white);
}

/* --- モバイルメニューのレイアウト調整（CSSハック用） --- */
@media (max-width: 768px) {
    /* #menu-toggle がチェックされたとき、兄弟要素以降にある .nav を表示 */
    #menu-toggle:checked ~ .container .header-inner .nav {
        display: flex; /* メニューを開いたときにflexコンテナにする */
        flex-direction: column; /* 縦並び */
        align-items: flex-start; /* 項目を左寄せに */
        gap: var(--spacing-lg); /* 項目間の余白 */
    }

    /* メニュー内のSNSリンクをモバイルでのみ表示 */
    .nav-sns {
        display: flex; /* モバイルでのみ表示 */
    }

     /* モバイルでのカード高さを調整 */
    .g-card{
       height: 280px; /* ★モバイルでの高さを調整（例: 280px）★ */
    }
}

/* ========== /新規追加: CSSハック用スタイル群 ========== */

/* Google レビューより のフォントサイズ修正 */
.g-foot{
  font-size:0.85rem; /* 以前の記述の重複修正。最終的にこのサイズに */
}

/* Googleアイコンの位置調整 */
.g-icon {
    /* 必要に応じてマージンやpaddingを調整 */
    margin-right: 4px; /* テキストとの隙間を調整 */
}

/* ---------- Google レビュー本文がカード高さを超えた場合のスクロール ---------- */
/* .g-text スタイル内に overflow-y: auto; を追加済み */




/* ========== 新規追加: CSSハック用スタイル群 ========== */

/* 隠しチェックボックス: 画面に表示せず、クリックも受け付けない */
.hidden-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: -1; /* 他の要素の邪魔にならないように */
}

/* モーダルオーバーレイ用のラベル: モーダルが開いていないときは隠す */
.modal-overlay {
    display: none; /* デフォルト非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8999; /* モーダルコンテンツ(z-index:9000)より下、他の要素より上 */
    cursor: pointer;
}

/* チェックボックスがチェックされたら、対応する要素を表示 */

/* --- メニュー表示 --- */
#menu-toggle:checked ~ .container .header-inner .nav {
    /* PCでは非表示（デフォルト）、モバイルで表示 */
    /* display: flex; はモバイルメディアクエリで設定 */

    position: fixed; /* 画面に固定 */
    top: 0; /* ヘッダー高さに合わせて調整が必要な場合あり */
    right: 0;
    width: 80%; /* モバイルメニューの幅 */
    max-width: 400px; /* 最大幅を設定（任意） */
    height: 100vh; /* 画面いっぱいの高さ */
    background: rgba(255, 255, 255, 0.95); /* 白色で透過度95% */
    padding: var(--spacing-xl) var(--spacing-lg); /* 内側の余白 */
    overflow-y: auto; /* 縦に長い場合にスクロール可能に */
    box-shadow: -2px 0 8px rgba(0, 0, 0, .12); /* 影 */
    z-index: 1050; /* ヘッダーより手前に */
    animation: slideIn .3s ease-out forwards; /* アニメーション */
    /* align-items: flex-start; */ /* モバイルメディアクエリで設定 */
    /* gap: var(--spacing-lg); */ /* モバイルメディアクエリで設定 */
}

/* --- メニューアニメーション（スライドイン） --- */
@keyframes slideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

/* --- メニューアイコンのアニメーション --- */
#menu-toggle:checked ~ .container .header-inner .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px,6px);
}
#menu-toggle:checked ~ .container .header-inner .menu-toggle span:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked ~ .container .header-inner .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}


/* --- モーダル表示 --- */
#modal-toggle:checked ~ .modal {
    display: flex; /* JS制御時のdisplay: flex をそのまま利用 */
    position: fixed; /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    z-index: 9000; /* 他の要素より最前面に */
    align-items: center; /* 子要素を垂直方向中央に */
    justify-content: center; /* 子要素を水平方向中央に */
}

/* --- モーダルコンテンツアニメーション --- */
.modal-content {
    animation: modalIn 0.3s ease;
    /* ... 既存スタイル維持 ... */
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* --- モーダル外側（オーバーレイ）のクリック領域表示 --- */
#modal-toggle:checked ~ .modal .modal-overlay {
    display: block; /* 非表示から表示に */
}

/* ========== ラベル要素をボタンのように見せるためのスタイル調整 ========== */
.cta-button,
.fixed-cta-button,
.menu-toggle,
.modal-close,
.modal-overlay {
    cursor: pointer; /* カーソルを指マークに */
}

/* --- 新規追加: メニュー内の閉じるボタン（.menu-close）スタイル --- */
.menu-close {
    display: none; /* デフォルト非表示 */
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--text-gray);
    transition: var(--transition);
    z-index: 1060;
    cursor: pointer;
}

#menu-toggle:checked ~ .container .header-inner .nav .menu-close {
     display: block; /* 非表示から表示に */
}

.menu-close:hover {
    color: var(--text-dark); /* ホバーエフェクト */
}

/* --- 新規追加: メニュー内のSNSリンクコンテナ スタイル --- */
.nav-sns {
    /* PCでは非表示 */
    display: none; /* ★デフォルトで非表示★ */

    /* モバイルメディアクエリで表示に切り替え */
    /* display: flex; はモバイルメディアクエリで設定 */
    gap: var(--spacing-sm);
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray);
}

.nav-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4em;
    height: 2.4em;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-dark);
}

.nav-sns a:hover {
    background: var(--tiffany-blue);
    color: var(--white);
}

/* --- モバイルメニューのレイアウト調整（CSSハック用） --- */
@media (max-width: 768px) {
    /* #menu-toggle がチェックされたとき、兄弟要素以降にある .nav を表示 */
    #menu-toggle:checked ~ .container .header-inner .nav {
        display: flex; /* ★メニューを開いたときにflexコンテナにする★ */
        flex-direction: column; /* 縦並び */
        align-items: flex-start; /* 項目を左寄せに */
        gap: var(--spacing-lg); /* 項目間の余白 */
    }

    /* メニュー内のSNSリンクをモバイルでのみ表示 */
    .nav-sns {
        display: flex; /* ★モバイルでのみ表示★ */
    }
}

/* ========== /新規追加: CSSハック用スタイル群 ========== */



.instaImages {
	padding:1.25em 0;
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	flex-wrap:wrap;
}
.instaImages > div {
	width:calc(100% / 2);
	padding:3px;
}
.instaImages > div:nth-child(n + 10) {
	display:none;
}
.instaImages > div > a {
	position:relative;
	display:block;
}
.instaImages > div > a > * {
	width:100%;
	aspect-ratio:1/1;
	object-fit:cover;
}
.instaImages > div.video > a:after {
	content:"";
	position:absolute;
	top:0;
	right:0;
	display:block;
	width:25%;
	aspect-ratio:1/1;
	background:url(images/icon/instagram_reel_w.png) 50% 50% no-repeat;
	background-size:contain;
	filter:drop-shadow(0 0 3px #666);
	z-index:10;
}
.instaImages > div > a > span {
	display:none;
}
.instaImages > div.noData {
	width:100%;
	text-align:center;
	padding:3em 0;
	font-size:90%;
	color:#666;
}





/* プライバシーポリシー スタイル */
        .privacy-content h1 {
            color: var(--tiffany-blue);
            font-size: 2rem;
            margin-bottom: var(--spacing-lg);
            text-align: center;
            border-bottom: 2px solid var(--tiffany-blue-light);
            padding-bottom: var(--spacing-md);
        }

        .privacy-content h2 {
            color: var(--tiffany-blue-dark);
            font-size: 1.4rem;
            margin-top: var(--spacing-xl);
            margin-bottom: var(--spacing-md);
            padding-left: var(--spacing-sm);
            border-left: 4px solid var(--tiffany-blue);
        }

        .privacy-content h3 {
            color: var(--text-dark);
            font-size: 1.2rem;
            margin-top: var(--spacing-lg);
            margin-bottom: var(--spacing-sm);
        }

        .privacy-content p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: var(--spacing-md);
        }

        .privacy-content ol, .privacy-content ul {
            margin-left: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
        }

        .privacy-content li {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: var(--spacing-xs);
        }

        .privacy-content strong {
            color: var(--text-dark);
            font-weight: 700;
        }

        .contact-info {
            background: #f7fafc;
            border: 1px solid var(--tiffany-blue-light);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg);
            margin: var(--spacing-lg) 0;
        }

        .contact-info p {
            margin-bottom: var(--spacing-xs);
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .modal-container {
                width: 95%;
                max-height: 90vh;
            }

            .modal-header {
                padding: var(--spacing-md) var(--spacing-lg);
            }

            .modal-title {
                font-size: 1.3rem;
            }

            .modal-body {
                padding: var(--spacing-lg);
                max-height: calc(90vh - 70px);
            }

            .privacy-content h1 {
                font-size: 1.6rem;
            }

            .privacy-content h2 {
                font-size: 1.2rem;
            }

            .privacy-content h3 {
                font-size: 1.1rem;
            }

            .privacy-content ol, .privacy-content ul {
                margin-left: var(--spacing-md);
            }
        }



/* ========================================
   コンパクト LINE友達登録CTAセクション
   ======================================== */
.line-cta-section-compact {
    background: transparent;
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* 背景装飾削除 */
.line-cta-section-compact::before {
    display: none;
}

.line-cta-content-compact {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* 左側：アイコンとメインテキスト */
.cta-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.line-icon-wrapper-compact {
    flex-shrink: 0;
}

.line-main-icon-compact {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 6px rgba(0, 195, 0, 0.3));

}

.cta-text-compact {
    flex: 1;
}

.cta-title-compact {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.cta-highlight-compact {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.cta-main-compact {
    display: block;
    color: #00C300;
    font-size: 1.4rem;
    font-weight: 800;
    animation: textPulse 3s ease-in-out infinite;
}

.cta-subtitle-compact {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.cta-subtitle-compact strong {
    color: #00C300;
    font-weight: 700;
}

/* 中央：特典リスト */
.cta-benefits-compact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: 0 var(--spacing-md);
}

.benefit-item-compact {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 195, 0, 0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.benefit-item-compact:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-item-compact:nth-child(2) {
    animation-delay: 0.4s;
}

.benefit-item-compact:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-item-compact::before {
    content: '\02714';
    color: #00C300;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: var(--spacing-xs);
}

.benefit-item-compact:hover {
    background: rgba(0, 195, 0, 0.15);
    transform: translateX(5px) scale(1.02);
}

/* 右側：CTAボタン */
.cta-action-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.line-cta-button-compact {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: #00C300;
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    animation: buttonPulse 4s ease-in-out infinite;
        border: 7px solid #ffffff;

}

.line-cta-button-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
    
}

.line-cta-button-compact:hover::before {
    left: 100%;
}

.line-cta-button-compact:hover {
    background: #00B900;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 195, 0, 0.4);
}

.line-button-icon-compact {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-note-compact {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

/* ========================================
   アニメーション
   ======================================== */


@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 195, 0, 0);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 10px rgba(0, 195, 0, 0.3);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 195, 0, 0.5);
        transform: scale(1.02);
    }
}

/* ========================================
   レスポンシブ対応
   ======================================== */
@media (max-width: 992px) {
    .line-cta-content-compact {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .cta-left {
        justify-content: center;
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-benefits-compact {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .benefit-item-compact {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .line-cta-section-compact {
        padding: var(--spacing-lg) 0;
        margin: var(--spacing-lg) 0;
    }
    
    .line-main-icon-compact {
        width: 40px;
        height: 40px;
    }
    
    .cta-title-compact {
        font-size: 1.2rem;
    }
    
    .cta-main-compact {
        font-size: 1.2rem;
    }
    
    .cta-benefits-compact {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item-compact {
        font-size: 0.8rem;
        max-width: 250px;
        justify-content: center;
    }
    
    .line-cta-button-compact {
        font-size: 0.85rem;
        padding: var(--spacing-sm) var(--spacing-md);
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .line-cta-button-compact span {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cta-left {
        gap: var(--spacing-xs);
    }
    
    .line-main-icon-compact {
        width: 35px;
        height: 35px;
    }
    
    .cta-title-compact {
        font-size: 1.1rem;
    }
    
    .cta-main-compact {
        font-size: 1.1rem;
    }
    
    .line-cta-button-compact {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .line-button-icon-compact {
        width: 18px;
        height: 18px;
    }
    
    .cta-note-compact {
        font-size: 0.65rem;
    }
}

/* ========================================
   パフォーマンス最適化
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .line-main-icon-compact,
    .cta-main-compact,
    .benefit-item-compact,
    .line-cta-button-compact,
    .line-cta-button-compact::before {
        animation: none;
    }
    
    .benefit-item-compact {
        opacity: 1;
        transform: translateX(0);
    }
}




 /* ========================================
           ギャラリーセクション
           ======================================== */
        .gallery {
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        /* セクションヘッダー */
        .gallery-header {
            text-align: center;
            margin-bottom: var(--spacing-xxl);
        }

        .section-label {
            display: inline-block;
            background: var(--tiffany-blue);
            color: var(--white);
            padding: var(--spacing-xs) var(--spacing-md);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            margin-bottom: var(--spacing-md);
            text-transform: uppercase;
        }

        .gallery-title {
            font-size: clamp(1.8rem, 3.8vw, 2.8rem);
            margin-bottom: var(--spacing-sm);
            color: var(--text-dark);
        }

        .title-main {
            color: var(--text-dark);
        }

        .title-accent {
            color: var(--tiffany-blue);
        }

        .gallery-subtitle {
            font-size: 1.125rem;
            color: var(--text-gray);
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ギャラリーグリッド */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }

        /* ギャラリーアイテム */
        .gallery-item {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .gallery-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
        }

        /* 画像部分 */
        .gallery-image {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            background: var(--gray);
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-image img {
            transform: scale(1.05);
        }

        /* 日付バッジ */
        .gallery-date {
            position: absolute;
            top: var(--spacing-md);
            left: var(--spacing-md);
            background: rgba(0, 0, 0, 0.8);
            color: var(--white);
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        /* カテゴリーバッジ */
        .gallery-category {
            position: absolute;
            top: var(--spacing-md);
            right: var(--spacing-md);
            background: var(--tiffany-blue);
            color: var(--white);
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* 特別ゲストの場合のスタイル */
        .gallery-category.special-guest {
            background: var(--gold);
            color: var(--text-dark);
        }

        .gallery-category.media {
            background: var(--coral);
        }

        .gallery-category.event {
            background: var(--tiffany-blue-dark);
        }

        /* コンテンツ部分 */
        .gallery-content {
            padding: var(--spacing-lg);
        }

        .gallery-content h3 {
            font-size: 1.25rem;
            margin-bottom: var(--spacing-sm);
            color: var(--text-dark);
            line-height: 1.3;
        }

        .gallery-description {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: var(--spacing-md);
        }

        /* メタ情報 */
        .gallery-meta {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            font-size: 0.8rem;
            color: var(--text-gray);
            opacity: 0.8;
        }

        .gallery-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .gallery-meta .meta-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--tiffany-blue);
            border-radius: 50%;
        }

        /* 「もっと見る」ボタン */
        .gallery-more {
            text-align: center;
            margin-top: var(--spacing-xl);
        }

        .gallery-more-btn {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-sm);
            background: var(--white);
            color: var(--tiffany-blue);
            border: 2px solid var(--tiffany-blue);
            padding: var(--spacing-md) var(--spacing-xl);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .gallery-more-btn:hover {
            background: var(--tiffany-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .gallery-more-btn::after {
            content: '→';
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .gallery-more-btn:hover::after {
            transform: translateX(4px);
        }

        /* ========================================
           レスポンシブ対応
           ======================================== */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            
            .gallery-content {
                padding: var(--spacing-md);
            }
            
            .gallery-content h3 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--spacing-xxl) 0;
            }
            
            .gallery-header {
                margin-bottom: var(--spacing-xl);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-sm);
            }
            
            .gallery-date,
            .gallery-category {
                font-size: 0.75rem;
                padding: 4px var(--spacing-xs);
            }
            
            .gallery-content {
                padding: var(--spacing-md);
            }
            
            .gallery-content h3 {
                font-size: 1rem;
                margin-bottom: var(--spacing-xs);
            }
            
            .gallery-description {
                font-size: 0.85rem;
                margin-bottom: var(--spacing-sm);
            }
            
            .gallery-meta {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                gap: var(--spacing-xs);
            }
            
            .gallery-date,
            .gallery-category {
                top: var(--spacing-sm);
                left: var(--spacing-sm);
                right: var(--spacing-sm);
            }
            
            .gallery-content {
                padding: var(--spacing-sm);
            }
            
            .gallery-content h3 {
                font-size: 0.95rem;
            }
            
            .gallery-description {
                font-size: 0.8rem;
            }
            
            .gallery-more-btn {
                padding: var(--spacing-sm) var(--spacing-lg);
                font-size: 0.9rem;
            }
        }


/* ========================================
   ギャラリーセクション
   ======================================== */
.gallery {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* セクションヘッダー */
.gallery-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-label {
    display: inline-block;
    background: var(--tiffany-blue);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.gallery-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.title-main {
    color: var(--text-dark);
}

.title-accent {
    color: var(--tiffany-blue);
}

.gallery-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* スライダーギャラリー */
.gallery-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
/*
    padding: var(--spacing-md) 0;
*/
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

/* スライドアイテム */
.gallery-slide {
	padding:var(--spacing-lg) 0;
}
.gallery-slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
/*
    cursor: pointer;
*/
    transition: var(--transition);
}
/*
.gallery-slide:hover {
    transform: translateY(-5px);
}
*/

/* 画像コンテナ */
.gallery-image-container {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gray);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
/*
.gallery-slide:hover .gallery-image-container {
    box-shadow: var(--shadow-lg);
}
*/

/* 画像 */
.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
/*
.gallery-slide:hover .gallery-image-container img {
    transform: scale(1.02);
}
*/

/* オーバーレイ - 常時表示 */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-lg);
    transform: translateY(0);
    transition: var(--transition);
}

/* オーバーレイタイトル */
.gallery-title-overlay {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 1),
        0 0 15px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    hyphens: auto;
}

/* 日付バッジ */
.gallery-date {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* カテゴリーバッジ */
.gallery-category {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--tiffany-blue);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 特別ゲストの場合のスタイル */
.gallery-category.special-guest {
    background: var(--gold);
    color: var(--text-dark);
}

.gallery-category.media {
    background: var(--coral);
}

.gallery-category.event {
    background: var(--tiffany-blue-dark);
}

/* コンテンツ部分 */
.gallery-content {
    padding: var(--spacing-lg);
}

.gallery-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.3;
}

.gallery-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

/* メタ情報 */
.gallery-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.gallery-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-meta .meta-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--tiffany-blue);
    border-radius: 50%;
}

/* 「もっと見る」ボタン */
.gallery-more {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    color: var(--tiffany-blue);
    border: 2px solid var(--tiffany-blue);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-more-btn:hover {
    background: var(--tiffany-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-more-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: var(--transition);
}

.gallery-more-btn:hover::after {
    transform: translateX(4px);
}

/* ========================================
   レスポンシブ対応
   ======================================== */
@media (max-width: 992px) {
    .gallery-slider {
        gap: var(--spacing-lg);
    }
    
    .gallery-image-container {
        width: 260px;
    }
    
    .gallery-title-overlay {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .gallery-slider {
        gap: var(--spacing-md);
        padding: var(--spacing-sm) 0;
    }
    
    .gallery-image-container {
        width: 240px;
    }
    
    .gallery-overlay {
        padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-md);
    }
    
    .gallery-title-overlay {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        gap: var(--spacing-sm);
    }
    
    .gallery-image-container {
        width: 220px;
        border-radius: var(--radius-md);
    }
    
    .gallery-overlay {
        padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-sm);
        background: linear-gradient(
            transparent 0%,
            rgba(0, 0, 0, 0.2) 10%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
    
    .gallery-title-overlay {
        font-size: 0.9rem;
        line-height: 1.2;
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 1),
            0 0 20px rgba(0, 0, 0, 0.9);
    }
    
    .gallery-more-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .gallery-image-container {
        width: 200px;
    }
    
    .gallery-title-overlay {
        font-size: 0.85rem;
    }
}

/* すべてのデバイスで常時表示 */