@charset "utf-8";

/**
 * Theme Name: Modern Business Base
 * Description: 紺・グレーを基調としたモダンなビジネスサイト用ベースCSS
 */
.btn-line-big-wrap{
text-align:center;
margin-top:20px;
}
h3.youbou{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.page-id-80 .um-form{
    max-width: 800px;
    margin: 0 auto;
}
.page-id-80 .um-account-side {
    float: none;
width:100%;
margin:0 auto 50px;
padding:0 2%;
}
.page-id-80 .um-account-main{
float: none;
width:100%;
margin:0 auto 50px;
padding:0 2%;
}
.page-id-80 .container{

}
/* .uimob340-hide 内のリストの3番目の項目を非表示 */
.uimob340-hide ul li:nth-child(3) {
    display: none !important;
}
.page-id-80 #um_field_0_last_name{
display:none;
}
.page-id-80 .um-account-meta.radius-1{
display:none;
}
.page-id-58 .um-half, .page-id-64 .um-half{
    width: 100%;
}

.page-id-58 .um-right, .page-id-64 .um-right{
display:none!important;
}
.page-id-58 .gorize-final-cta, .page-id-64 .gorize-final-cta, .page-id-53 .gorize-final-cta, .page-id-81 .gorize-final-cta, .page-id-80 .gorize-final-cta, .page-id-75 .gorize-final-cta, .page-id-53 .gorize-final-cta{
display:none;
}
.page-id-58 .sp-floating-cta, .page-id-64 .sp-floating-cta, .page-id-53 .sp-floating-cta, .page-id-81 .sp-floating-cta, .page-id-80 .sp-floating-cta, .page-id-75 .sp-floating-cta, .page-id-53 .sp-floating-cta{
display:none!important;
}

:root {
            --gold-primary: #D4AF37;
            --gold-light: #FFD700;
            --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 50%, #fbf5b7 100%);
            --black-bg: #050505;
            --card-bg: #111111;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --font-en: 'Montserrat', sans-serif;
            --font-jp: 'Noto Sans JP', sans-serif;
        }

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

        body {
            background-color: var(--black-bg);
            color: var(--text-white);
            font-family: var(--font-jp);
            line-height: 1.8;
            overflow-x: hidden; /* 横スクロール防止 */
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- 2. Typography & Utility --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-padding { padding: 100px 0; }
        
        .gold-text {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .en-title {
            font-family: var(--font-en);
            font-weight: 900;
            font-size: 4rem;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 20px;
            color: #888;
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            opacity: 0.3;
            white-space: nowrap;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-header h2 {
            font-size: 2rem;
            font-weight: 900;
            position: relative;
            z-index: 1;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gold-primary);
            margin: 15px auto 0;
        }

        /* --- 3. Buttons --- */
        .btn-gold {
            display: inline-block;
            padding: 18px 50px;
            background: var(--gold-gradient);
            color: #000;
            font-family: var(--font-en);
            font-weight: 800;
            font-size: 1rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0%; height: 100%;
            background: #fff;
            opacity: 0.2;
            transition: 0.4s;
            z-index: -1;
        }

        .btn-gold:hover::before { width: 100%; }
        .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5); }

        /* --- 4. Header & Nav --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
			padding:8px 0;
			z-index:1100;
            transition: 0.4s;
            background: rgba(5, 5, 5, 0.8); /* 初期状態から少し背景を入れる */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        /* Desktop Nav */
        .desktop-nav {
            display: none;
        }
        
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
                gap: 30px;
                align-items: center;
            }
            .nav-link {
                font-size: 0.9rem;
                font-weight: 700;
                letter-spacing: 0.05em;
                position: relative;
            }
            .nav-link::after {
                content: '';
                position: absolute;
                bottom: -5px; left: 0; width: 0%; height: 2px;
                background: var(--gold-primary);
                transition: 0.3s;
            }
            .nav-link:hover::after { width: 100%; }
            
            .nav-btn {
                padding: 10px 25px;
                border: 1px solid var(--gold-primary);
                color: var(--gold-primary);
                border-radius: 4px;
                font-weight: bold;
            }
            .nav-btn:hover {
                background: var(--gold-primary);
                color: #000;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            width: 30px;
    height: 20px; /* 高さを少しコンパクトに調整 */
    position: relative;
    cursor: pointer;
    z-index: 1200; /* 最前面を確保 */
    display: block;
        }
        
        @media (min-width: 768px) { .hamburger { display: none; } }

        .bar {
            position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff; /* 通常時は白 */
    border-radius: 2px;
    transition: all 0.4s ease-in-out;

        }
.bar:nth-child(1) { top: 0; }
.bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.bar:nth-child(3) { bottom: 0; }

/* --- クリック時（activeクラス付与時）の×印アニメーション --- */

/* 1本目：真ん中に移動して45度回転 */
.hamburger.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--gold-primary); /* 開いたときはゴールドにする */
}

/* 2本目：透明にして消す */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
/* 3本目：真ん中に移動して-45度回転 */
.hamburger.active .bar:nth-child(3) {
    bottom: 50%; /* bottomの位置指定を解除してtop基準に合わせる、またはtop:50%で上書き */
    top: 50%;    /* 重要：1本目と同じ位置に持ってくる */
    transform: translateY(-50%) rotate(-45deg);
    background: var(--gold-primary); /* 開いたときはゴールドにする */
}
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0; right: -100%;
            width: 100%; height: 100vh;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
			z-index:1098;
            transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        .mobile-menu.active { right: 0; }
        
        .mobile-menu ul { text-align: center; }
        .mobile-menu li { margin: 20px 0; opacity: 0; transform: translateY(20px); transition: 0.4s; }
        .mobile-menu.active li { opacity: 1; transform: translateY(0); }
        .mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-menu a {
               font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
        }

        /* --- 5. Hero Section --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: #000; /* フォールバック */
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://gorize-gym.com/wp-content/uploads/2026/02/A7V011122.jpg') no-repeat center center/cover;
            filter: brightness(0.9);
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            letter-spacing: 0.1em;
        }

        .hero-title {
            font-family: var(--font-en);
            font-size: clamp(2.5rem, 6vw, 5rem); /* レスポンシブフォントサイズ */
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 40px;
        }

        .price-display {
            display: inline-flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 40px;
            font-family: var(--font-en);
        }

        .price-display .amount {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--gold-primary);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .price-display .unit {
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* --- 6. Pain Points Section --- */
        .pain-section {
            background: #0a0a0a;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pain-card {
           background: var(--card-bg);
        padding: 30px;
        border-radius: 8px;
        border: 1px solid #222;
        transition: 0.3s;
        display: flex;
        align-items: flex-start; /* 上揃え（中央ならcenter） */
        gap: 15px; /* アイコンと文字の間隔 */
        }

        .pain-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
        }

        .check-icon {
           color: var(--gold-primary); /* ここでゴールドを指定 */
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.5; /* 文字の高さと合わせる */
        flex-shrink: 0; /* アイコンが潰れないように固定 */
        }

        .pain-text {
font-size: 1rem;
        font-weight: 500;
        line-height: 1.6;
        color: #fff;
        margin: 0; /* 余計な余白をカット */
        }
.pain-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 50px;
    }
        /* --- 7. Features & Price --- */
        .features-section {
            background: #111;
        }
        
        .price-card-wrapper {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333;
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            font-size: 1.2rem;
        }
        
        .price-row:last-child { border-bottom: none; }
        
        .price-highlight {
            color: var(--gold-primary);
            font-family: var(--font-en);
            font-weight: 900;
            font-size: 1.8rem;
        }

        /* --- 8. Trainer Section --- */
        .trainer-section {
            background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=2070&auto=format&fit=crop') no-repeat center/cover;
            position: relative;
        }
        
        .trainer-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
        }

        .trainer-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 60px;
        }

        .trainer-image {
            flex: 1;
            min-width: 300px;
        }
        
        .trainer-image img {
            border-radius: 10px;
            box-shadow: -20px 20px 0 var(--gold-primary);
            filter: grayscale(20%) contrast(1.1);
        }

        .trainer-info {
            flex: 1.2;
        }

        .trainer-name {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 5px;
            line-height: 1;
        }

        .trainer-title {
            color: var(--gold-primary);
            font-family: var(--font-en);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom:20px;
            display: block;
        }

        .awards-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-weight: 500;
        }

        .awards-list li::before {
            content: '🏆';
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1rem;
        }

        /* --- 9. Footer --- */
        footer {
            background: #000;
            padding: 80px 0 20px;
            border-top: 1px solid #222;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 25px;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col a {
            color: #888;
            font-size: 0.95rem;
        }
        
        .footer-col a:hover { color: var(--gold-primary); }

        .copyright {
            text-align: center;
            color: #444;
            font-size: 0.8rem;
            padding-top: 20px;
            border-top: 1px solid #111;
        }

        /* --- Animation Classes --- */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .section-header h2 { font-size:21px; }
            .en-title {font-size: 2.3rem; top: -10px; }
            .hero-content { padding-top: 60px; }
            .trainer-name { font-size:32px; }
            .trainer-image img { box-shadow: -10px 10px 0 var(--gold-primary); }
        }



.container { width: 90%; max-width: 1000px; margin: 0 auto; position: relative; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo{
			width:200px;
}

        /* --- ★ここが重要：下層ページ専用ページヘッダー --- */
        .page-header {
height:350px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        /* 背景画像 (パララックス用) */
        .page-header-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 120%; /* スクロール分余分に */
            background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=2075&auto=format&fit=crop') no-repeat center center/cover;
            opacity: 0.4;
            transform: translateY(0);
            will-change: transform;
            z-index: 0;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
			padding-top: 65px;
        }

        /* 背景の巨大文字 */
        .page-title-back {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-en);
            font-size: 15vw; /* 画面幅に応じて巨大化 */
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
            white-space: nowrap;
            z-index: -1;
            pointer-events: none;
        }

        /* 手前のメインタイトル */
        .page-title-main {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .page-title-sub {
            font-family: var(--font-en);
            color: var(--gold-primary);
            font-weight: 900;
            letter-spacing: 0.2em;
            font-size: 1.2rem;
            display: block;
        }
        
        /* タイトル下のゴールドライン */
        .title-line {
            width: 60px; height: 3px;
            background: var(--gold-gradient);
            margin: 20px auto 0;
        }

        /* --- タイムライン（ご利用の流れ） --- */
        .flow-section { padding: 80px 0; }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 真ん中の線 */
        .timeline::before {
            content: '';
            position: absolute;
            top: 0; left: 30px;
            width: 2px; height: 100%;
            background: rgba(255, 215, 0, 0.3);
            z-index: 0;
        }

        @media (min-width: 768px) {
            .timeline::before { left: 50%; transform: translateX(-50%); }
        }

        .step-item {
            position: relative;
            margin-bottom: 60px;
            z-index: 1;
        }
        
        /* PCレイアウト: 左右交互配置 */
        @media (min-width: 768px) {
            .step-item { display: flex; justify-content: space-between; align-items: center; }
            .step-item:nth-child(even) { flex-direction: row-reverse; }
            .step-content { width: 45%; }
            .step-empty { width: 45%; } /* レイアウト調整用の空要素 */
        }

        /* ステップ番号バッジ */
        .step-num {
            position: absolute;
            left: 0; top: 0;
            width: 60px; height: 60px;
            background: var(--gold-gradient);
            color: #000;
            font-family: var(--font-en);
            font-weight: 900;
            font-size: 1.5rem;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        @media (min-width: 768px) {
            .step-num { left: 50%; transform: translateX(-50%); }
        }

        /* ステップの中身 */
        .step-content {
            background: var(--card-bg);
            border: 1px solid #333;
            padding: 30px;
            margin-left: 80px; /* スマホ用余白 */
            border-radius: 8px;
            position: relative;
        }

        @media (min-width: 768px) {
            .step-content { margin-left: 0; }
            /* 吹き出しの矢印 */
            .step-item:nth-child(odd) .step-content::before {
                content: ''; position: absolute; top: 20px; right: -10px;
                border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 10px solid #333;
            }
            .step-item:nth-child(even) .step-content::before {
                content: ''; position: absolute; top: 20px; left: -10px;
                border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-right: 10px solid #333;
            }
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--gold-primary);
        }

        .step-text { font-size: 0.95rem; color: #ccc; margin-bottom: 15px; }

        .step-highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 3px solid var(--gold-primary);
            padding: 10px 15px;
            font-size: 0.9rem;
            color: #fff;
        }

        .step-note {
            font-size: 0.85rem;
            color: #888;
            margin-top: 10px;
        }

        /* --- ★LINE CTAボタン (鼓動アニメーション) --- */
        .line-cta-wrap { margin-top: 20px; text-align: center; }

        .btn-line-pulse {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--line-green);
            color: #fff;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1rem;
            box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7);
            animation: pulse-green 2s infinite;
            transition: 0.3s;
        }

        .btn-line-pulse:hover {
            transform: scale(1.05);
            background: #05b54b;
        }

        @keyframes pulse-green {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(6, 199, 85, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
        }

        /* --- コンタクトセクション --- */
        .contact-banner {
            background: #111;
            padding: 80px 0;
            text-align: center;
            border-top: 1px solid #333;
        }
        
        .contact-title { font-size: 2rem; font-weight: 900; margin-bottom: 30px; }
        
        .btn-line-big {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: var(--line-green);
            color: #fff;
            width: 100%;
            max-width: 400px;
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 900;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
            position: relative;
            overflow: hidden;
            animation: pulse-green 2s infinite; /* ここも動かす */
        }
        
        /* 光が走るエフェクト */
        .btn-line-big::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg);
            animation: shine 3s infinite;
        }

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

        /* --- Footer (共通) --- */
        footer { background: #000; padding: 50px 0; border-top: 1px solid #222; text-align: center; font-size: 0.8rem; color: #555; }

.l-inner{
max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
padding:3px 2%;
box-sizing:border-box;
}
/* 2. VARIABLES（変数管理）
   ================================================================= */
:root {


    /* --- フォント指定 --- */
    --font-jp-sans: "Noto Sans JP", sans-serif;
    --font-jp-min: "Noto Serif JP", serif;
    
    /* ベースフォント（全体はゴシック体） */
    --font-base: var(--font-jp-sans);

    /* --- レイアウト --- */
    --header-height: 80px;
    --inner-width: 1100px;    /* 現代的なややタイトな幅 */
    --space-section: 100px;   /* モダンな広い余白 */
}

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

html { 
    font-size: 16px; 
    scroll-behavior: smooth; 
}



a { color: inherit; text-decoration: none; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
a:hover { opacity: 0.7; }

img, video, iframe { max-width: 100%; height: auto; vertical-align: bottom; }

/* 4. TYPOGRAPHY
   ================================================================= */
h1, h2, h3, h4 { 
    color: var(--c-primary); 
    line-height: 1.4; 
    margin-bottom: 0.8em;
}

/* 見出しに明朝体を使用する場合のクラス */
.font-serif {
    font-family: var(--font-jp-min);
    font-weight: 700;
}

p { margin-bottom: 1.6em; }

/* 5. LAYOUT COMPONENTS
   ================================================================= */
.inner { 
    max-width: var(--inner-width); 
    margin: 0 auto; 
    padding: 0 24px; 
}

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

/* モダンなセクションタイトル */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-jp-min); /* タイトルは上品に明朝体 */
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--c-accent);
}

/* 6. BUTTONS
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    border-radius: 4px; /* モダンな角丸控えめデザイン */
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: 0.3s;
    cursor: pointer;
    background: var(--c-primary);
    color: #fff;
    border: none;
}

.btn:hover {
    background: var(--c-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* --- FLOW Section --- */
.flow-section {
    background-color: #050505;
}

.flow-list {
    max-width: 700px; /* 縦一列にするため幅を絞る */
    margin: 0 auto;
    position: relative;
}

.flow-item {
    display: flex;
    gap: 30px;
    position: relative;
}

/* 垂直ライン */
.flow-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.flow-num {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

/* 線を引く（最後のアイテム以外） */
.flow-num-wrap::after {
    content: '';
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin: 10px 0;
}

.flow-item:last-child .flow-num-wrap::after {
    display: none;
}

.flow-content {
    padding-bottom: 50px; /* ステップ間の間隔 */
}

.flow-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.flow-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

/* LINEボタン（小） */
.btn-line-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
}

.btn-line-small:hover {
    background: #05b54b;
    transform: translateY(-2px);
}

/* 公式LINEボタン（大） */
.btn-line-big {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #06C755;
    color: #fff;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

/* スマホ調整 */
@media (max-width: 500px) {
    .flow-item { gap: 15px; }
    .flow-num { width: 40px; height: 40px; font-size: 1rem; }
}
/* --- Facility Section --- */
.facility-section {
    background-color: #000; /* より深い黒でセクションを区切る */
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.facility-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 4px; /* 甘くなりすぎないよう角丸は控えめ */
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.facility-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #222;
}

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

.facility-card:hover .facility-img img {
    transform: scale(1.05); /* ホバー時に画像を少しズーム */
}

.facility-body {
    padding: 20px;
}

.facility-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 12px;
}

.facility-text {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr; /* 1列にして写真を大きく見せる */
    }
}

/* --- Personal CTA Section --- */
.fa-seedling {
  color: #3cb371;
  margin-right: 6px;
}
.personal-cta-area {
padding:50px 0 50px;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* 大型リンクボタン */
.btn-personal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #000;
    padding: 35px 20px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border: none;
    text-decoration: none;
}

/* ボタン内の英文サブタイトル */
.btn-sub {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    opacity: 0.7;
}

/* ボタン内のメインテキスト */
.btn-main {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .btn-main { font-size: 1.1rem; }
    .btn-personal { padding: 25px 15px; }
}

/* ホバー時の挙動 */
.btn-personal:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-personal i {
    margin-left: 10px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-personal:hover i {
    transform: translateX(8px);
}

/* ボタン下のテキスト */
.cta-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.05em;
}

/* 光の走るエフェクト（定期的にキラッとさせる） */
.btn-personal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    pointer-events: none;
    animation: btn-shine 4s infinite;
}

@keyframes btn-shine {
    0% { left: -60%; }
    15% { left: 120%; }
    100% { left: 120%; }
}
/* --- Campaign Banner --- */
.campaign-banner {
    text-align: center;
    padding-top: 80px; /* セクション間の余白 */
    margin-bottom: -40px; /* 下のボタンとの距離を調整 */
}

/* 小さな英語バッジ */
.campaign-badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #000;
    background: var(--gold-primary);
    padding: 2px 12px;
    border-radius: 2px;
    margin-bottom: 15px;
    vertical-align: middle;
}

/* キャンペーンテキスト */
.campaign-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.6; /* 行間を少し広げて読みやすく */
}

/* スマホ用のサイズ調整 */
@media (max-width: 768px) {
    .campaign-text {
        font-size: 1.1rem;
		letter-spacing: 1px;
    }
    .campaign-banner {
        padding-top: 60px;
    }
}
/* --- Final Impact CTA --- */
.gorize-final-cta {
    position: relative;
    padding: 120px 0;
    background-color: #050505; /* ベースの背景 */
    overflow: hidden;
    text-align: center;
}

/* 背景にゴールドの光を漏らす（目立たせるための演出） */
.cta-overlay-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.gorize-cta-inner {
    position: relative;
    z-index: 1;
}

/* バッジデザイン */
.cta-badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 5px 20px;
    margin-bottom: 30px;
}

.cta-main-title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.title-highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    max-width: 650px;
    margin: 0 auto 50px;
}

.cta-description p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

/* ボタンコンテナ：心臓のような鼓動アニメーション */
.cta-line-container {
    margin-bottom: 30px;
}

.cta-line-btn {
    display: inline-flex;
    align-items: center;
    background: #06C755;
    color: #fff;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(6, 199, 85, 0.4);
    animation: cta-pulse 2.5s infinite;
}

.cta-line-icon {
    font-size: 2.8rem;
    margin-right: 20px;
}

.cta-line-text {
    text-align: left;
}

.cta-line-text small {
    display: block;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

.cta-line-text {
    font-size: 1.4rem;
    font-weight: 900;
}

.cta-sub-note {
    font-size: 0.85rem;
    color: #666;
}

/* --- アニメーション --- */
@keyframes cta-pulse {
    0% { transform: scale(1); box-shadow: 0 10px 40px rgba(6, 199, 85, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 60px rgba(6, 199, 85, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 40px rgba(6, 199, 85, 0.4); }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .gorize-final-cta { padding:60px 0 60px; }
    .cta-line-btn { padding: 15px 30px; width: 90%; justify-content: center; }
    .cta-line-icon { font-size: 2.2rem; }
    .cta-line-text { font-size: 1rem; }
    .cta-description p { font-size: 1rem; }
}
/* --- Terms Section Styles --- */
.terms-tab-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.terms-tab-btn {
    padding: 18px 40px;
    background: #111;
    color: #666;
    border: 1px solid #222;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex: 1;
    max-width: 320px;
    position: relative;
    overflow: hidden;
text-align:center;
}

.terms-tab-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.terms-content {
    display: none;
}

.terms-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.terms-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 50px;
    text-align: left;
    border-radius: 4px;
}

/* スクロールバーのカスタマイズ（Chrome系） */
.terms-box::-webkit-scrollbar {
    width: 6px;
}
.terms-box::-webkit-scrollbar-track {
    background: #050505;
}
.terms-box::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.terms-box h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 2px solid var(--gold-primary);
}

.terms-box h3:first-child { margin-top: 0; }

.terms-box p, .terms-box li {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.9;
    margin-bottom: 12px;
}

.terms-box strong {
    color: #fff;
    font-weight: 700;
}

.terms-box ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: none;
}

.terms-box ul li::before {
    content: "■";
    color: var(--gold-primary);
    font-size: 0.7rem;
    margin-right: 12px;
    vertical-align: middle;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .terms-tab-wrapper { flex-direction: column; align-items: center; gap: 10px; }
    .terms-tab-btn { width: 100%; max-width: none; }
    .terms-box { padding: 30px 20px; }
}
/* --- Tokusho Table Styles --- */
.tokusho-table-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 20px;
}

.tokusho-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.tokusho-table th {
    width: 30%;
    background: #1a1a1a;
    color: var(--gold-primary);
    padding: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
    vertical-align: middle;
}

.tokusho-table td {
    padding: 20px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    border-bottom: 1px solid #222;
}

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

/* モバイル対応：表を縦並びにする */
@media (max-width: 768px) {
    .tokusho-table-wrapper {
        padding: 0;
        border: none;
    }
    .tokusho-table th, 
    .tokusho-table td {
        display: block;
        width: 100%;
    }
    .tokusho-table th {
        background: #111;
        padding: 15px 20px;
        border-bottom: 1px solid #222;
    }
    .tokusho-table td {
        padding: 20px;
        border-bottom: 1px solid #333;
        margin-bottom: 10px;
    }
}
/* --- Privacy Policy Section --- */
.privacy-section {
    background-color: #050505;
}

.privacy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-box {
    background: #111;
    border: 1px solid #222;
    padding: 60px;
    border-radius: 4px;
    position: relative;
}

/* ゴールドのアクセントライン */
.privacy-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold-gradient);
}

.privacy-box h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.privacy-box h3:first-child { margin-top: 0; }

/* 見出しの装飾（ゴールドの四角） */
.privacy-box h3::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--gold-primary);
    margin-right: 15px;
    transform: rotate(45deg); /* ひし形にする */
}

.privacy-box p, 
.privacy-box li {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-box ul {
    background: #161616;
    padding: 30px 30px 30px 50px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.privacy-box li {
    list-style: disc;
    margin-bottom: 10px;
}

.privacy-box li:last-child { margin-bottom: 0; }

/* お問い合わせエリア */
.privacy-contact-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.contact-label {
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.btn-line-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #06C755;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-line-contact:hover {
    background: #05b54b;
    transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .privacy-box { padding: 40px 20px; }
    .privacy-box ul { padding: 20px 20px 20px 40px; }
}
/* --- Footer Styles --- */
.site-footer {
    background-color: #080808;
    color: #fff;
    padding: 80px 0 30px; /* 下部はコピーライト用に少し空ける */
    border-top: 1px solid #1a1a1a;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #1a1a1a;
}

/* ロゴ & アドレス */
.footer-logo img {
margin-bottom: 10px;
    width: 200px;
}

.footer-address {
    color: #888;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-sns a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-sns a:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

/* ナビゲーション */
.footer-col h4 {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #ccc;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold-primary);
    padding-left: 5px; /* ホバーで少し右に動く */
}

/* サブメニュー（規約系） */
.legal-links li a {
    font-size: 0.85rem;
    color: #666;
}

.footer-cta-box {
    margin-top: 30px;
}

.footer-reserve-btn {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

/* コピーライト */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    color: #444;
    font-size: 0.8rem;
    font-family: var(--font-en);
}


/* --- ★SP Floating CTA --- */
.sp-floating-cta {
    position: fixed;
bottom:0px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* 初期状態は隠す */
    width: 94%;
    max-width: 400px;
z-index:1097;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* バネのような動き */
}

.sp-floating-cta.visible {
    transform: translateX(-50%) translateY(0);
}

/* グラスモーフィズム（すりガラス）背景 */
.cta-inner-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 10px 15px 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: visible; /* 吹き出しがはみ出るように */
}

/* 左側のメッセージエリア */
.cta-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-right: 10px;
}

.cta-bubble {
    position: absolute;
	top:-40px;
    left: 0;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    animation: bounce 2s infinite;
}

/* 吹き出しの三角 */
.cta-bubble::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10px;
    border-top: 4px solid var(--gold-primary);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.cta-main-text {
    font-size: 0.75rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

/* LINEボタン（メイン） */
.cta-line-btn-float {
    flex: 1; /* 残りの幅を埋める */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #06C755;
    color: #fff;
    height: 50px;
    border-radius: 40px;
    margin: 0 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
    position: relative;
    overflow: hidden;
}

/* キラッと光るエフェクト */
.cta-line-btn-float::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shine-float 3s infinite;
}

.icon-pulse-wrap {
    font-size: 1.4rem;
}

/* 会員予約ボタン（サブ） */
.cta-reserve-btn-float {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.65rem;
    width: 50px;
    text-decoration: none;
}

.cta-reserve-btn-float i {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color:var(--gold-primary);
}
.cta-reserve-btn-float a{
color:var(--gold-primary);
}
/* --- Animations --- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

@keyframes shine-float {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* スマホは1カラム */
        gap: 40px;
        text-align: center;
    }
    .footer-sns { justify-content: center; }
    .footer-col a:hover { padding-left: 0; color: var(--gold-primary); }
    
    /* フッターがCTAに被らないように余白を追加 */
    .site-footer { padding-bottom: 100px; padding-top: 40px;}
}
/* --- Campaign Banner Area --- */
.campaign-banner-area {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    padding: 50px 20px 40px;
    margin: 0 auto 50px; /* 下の料金表との間隔 */
    max-width: 800px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    overflow: visible;
}

/* 上部のリボン */
.campaign-ribbon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #c00; /* インパクト重視の赤 */
    color: #fff;
    font-weight: 900;
    padding: 10px 40px;
    border-radius: 40px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    white-space: nowrap;
    z-index: 2;
    letter-spacing: 0.05em;
}

.campaign-name {
    color: var(--gold-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom:10px;
    letter-spacing: 0.1em;
}

/* インパクトエリア */
.campaign-impact {
    margin-bottom: 30px;
}

.impact-small {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin:5px auto;
}

.impact-main {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.gold-num {
    font-family: var(--font-en); /* 数字用フォント */
    color: var(--gold-primary);
    font-size: 1.3em;
}

/* 価格の変化エリア */
.campaign-price-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 価格ラベル（通常月会費など） */
.p-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.p-label-new {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

/* 元の価格 */
.price-old {
    text-align:center;
    position: relative;
}

.price-old .p-val {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    color: #aaa;
    text-decoration: line-through;
    text-decoration-color: #c00; /* 赤い打ち消し線 */
    text-decoration-thickness: 3px;
}

.price-old .p-tax {
    font-size: 0.8rem;
    color: #666;
    display: block;
}

/* 矢印 */
.price-arrow {
    color: #fff;
    font-size: 2rem;
    opacity: 0.5;
}

/* 新価格 */
.price-new {
    text-align:center;
}

.price-new .p-val {
    font-family: var(--font-en);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.price-new .p-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.price-new .p-tax {
    font-size: 0.9rem;
    color: #fff;
    display: block;
    margin-top: 5px;
}

.campaign-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .campaign-ribbon { font-size: 0.95rem; padding: 8px 25px; }
    .impact-main { font-size: 1.8rem; }
    
    .campaign-price-flow {
        flex-direction: column; /* 縦並び */
        gap:5px;
        padding: 20px;
    }
    
    .price-arrow {
        transform: rotate(90deg); /* 下向き矢印 */
        font-size: 1.5rem;
        margin: 5px 0;
    }
    
    .price-old, .price-new { text-align: center; }
    .price-old .p-val { font-size: 1.8rem; }
    .price-new .p-val { font-size: 2.8rem; }
}
.map-container {
border-radius: 10px;
position: relative;
    width: 100%;
    height:500px; /* ここでマップの高さを指定します（スマホなら300pxなど） */
    overflow: hidden; /* 万が一のはみ出しを防ぐ */
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* 枠線を消す */
    filter: invert(80%);
    -webkit-filter: invert(80%);
}
/* --- Campaign Section --- */
.campaign-badge-area {
    text-align: center;
    margin-bottom: 20px;
}

.campaign-badge-gold {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 5px 20px;
    border-radius: 50px;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-desc-center {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* キャンペーンカード */
.campaign-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.campaign-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

/* ホバー時のエフェクト */
.campaign-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 人気No.1リボン */
.card-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c00;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.card-target {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.card-price-area {
    margin-bottom: 25px;
}

.price-val {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.price-unit {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: normal;
}

.detail-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.detail-breakdown {
    font-size: 0.85rem;
    color: #888;
}

.campaign-note-area {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 30px;
}

/* --- Regular Price Table --- */
.price-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #0d0d0d;
    padding: 10px; /* 外枠の余白 */
    border-radius: 4px;
}

.personal-price-table {
    width: 100%;
    border-collapse: collapse;
}

.personal-price-table th,
.personal-price-table td {
    padding: 20px;
    border-bottom: 1px solid #222;
    text-align: left;
}

.personal-price-table th {
    color: #ccc;
    font-weight: normal;
    font-size: 1rem;
    width: 60%;
}

.personal-price-table td {
    text-align: right;
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.personal-price-table td .unit {
    font-size: 0.9rem;
    color: #888;
    font-weight: normal;
    margin-left: 5px;
}

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

.price-note {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
    margin-right: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section-title-center { font-size: 1.6rem; }
    
    .personal-price-table th, 
    .personal-price-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px;
    }
    
    .personal-price-table th {
        background: #111;
        border-bottom: none;
        padding-bottom: 5px;
        font-weight: bold;
    }
    
    .personal-price-table td {
        padding-top: 0;
        border-bottom: 1px solid #333;
        font-size: 1.6rem;
    }
}
.footer-col .footer-cta-box a{
	color:#000;
}
.footer-col .footer-cta-box a{
padding:15px 30px;;
}
.footer-col .footer-sns a:hover {
    color: #fff;
    padding-left: 0;
}
/* --- Safety & Quality Section --- */
.safety-section {
    background: linear-gradient(to right, #111, #1a1a1a);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.safety-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* テキストエリア */
.safety-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.safety-subtitle {
    display: block;
    font-family: var(--font-en);
    color: #666;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.safety-subtitle::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--gold-primary);
    vertical-align: middle;
    margin-right: 10px;
}

.safety-title {
    font-size: 1.8rem;
    font-weight:500;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5;
}

.safety-text {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.9;
    margin-bottom: 20px;
}

.safety-text strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--gold-primary);
    text-decoration-thickness: 2px;
}

/* 画像エリア */
.safety-image {
    flex: 1;
    position: relative;
}

.safety-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    filter: brightness(0.9); /* 少し落ち着いたトーンに */
}

/* バッジ装飾 */
.safety-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    text-align: center;
}

.badge-en {
    display: block;
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-jp {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
}

/* 背景の装飾（薄いロゴや文字など） */
.safety-section::after {
    content: 'TRUST';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 10rem;
    font-family: var(--font-en);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .safety-wrapper {
        flex-direction: column; /* 縦並び */
        gap: 40px;
    }
    
    .safety-title {
        font-size: 1.5rem;
    }
    
    .safety-badge {
        bottom: -15px;
        right: 10px;
        padding: 15px;
    }
    
    .safety-section::after {
        font-size: 5rem;
        top: 10%;
    }
}
.hero-title .gold-text{
font-size: 0.7em;
}
.container.hero-content{
padding-top:5vh;
}
/* --- Approval Wait Page Styles --- */
.approval-wait-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: #111;
    border: 1px solid #333;
    padding: 60px 40px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.status-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: pulse-gold 2s infinite;
}

.status-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.status-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.status-steps {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 30px;
    border-left: 3px solid var(--gold-primary);
}

.status-steps strong {
    color: var(--gold-primary);
    display: block;
    margin-bottom: 15px;
}

.status-steps ol {
    padding-left: 20px;
    margin: 0;
}

.status-steps li {
    color: #bbb;
    margin-bottom: 10px;
    line-height: 1.6;
}

.status-note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 40px;
}

.status-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold-outline {
    display: inline-block;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 30px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: #000;
}

/* アイコンのアニメーション */
@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .approval-wait-box { padding: 40px 20px; }
    .status-title { font-size: 1.5rem; }
    .status-btn-area { flex-direction: column; }
    .btn-line-small { margin-left: 0 !important;text-align: center;}
    .btn-gold-outline { width: 100%; text-align: center; }
}
/* FAQセクション全体のデザイン */
.gorize-faq-section {
    background-color: #000000; /* 背景黒 */
    color: #ffffff; /* 文字白 */
    padding: 40px 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.gorize-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* カテゴリ見出し */
.gorize-faq-category {
    color: #d4af37; /* ゴールド */
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    letter-spacing: 0.1em;
}
.gorize-faq-category:first-of-type {
    margin-top: 0;
}

/* アコーディオン詳細（detailsタグ） */
.gorize-faq-item {
    background-color: #1a1a1a; /* 濃いグレー */
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.gorize-faq-item:hover {
    border-color: #d4af37; /* ホバー時に枠線をゴールドに */
}

/* 質問部分（summaryタグ） */
.gorize-faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    list-style: none; /* デフォルトの三角を消す */
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    line-height: 1.5;
}

/* デフォルトのマーカーを消す（Safari等対応） */
.gorize-faq-question::-webkit-details-marker {
    display: none;
}

/* 質問の「Q.」をゴールドにする */
.gorize-faq-question span.q-mark {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 開閉アイコン（＋と－） */
.gorize-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* 開いている時のスタイル */
details[open] .gorize-faq-question::after {
    content: '-';
    transform: rotate(0deg);
}
details[open] .gorize-faq-question {
    border-bottom: 1px solid #333;
}

/* 回答部分 */
.gorize-faq-answer {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc; /* 少しグレーにして読みやすく */
    background-color: #1a1a1a;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
/* アスリートコース全体の枠組み */
.athlete-section {
    margin-top: 60px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
padding: 80px 20px 100px;
}

/* 上部のゴールドライン装飾 */
.athlete-deco-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FUDC7F, #D4AF37);
}

.athlete-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* タイトル */
.athlete-title {
    color: #D4AF37;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* リード文 */
.athlete-lead {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* トレーナー紹介ボックス */
.athlete-trainer-box {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center; /* PCでも中央寄せの方がバランスが良い場合があります */
}

.athlete-trainer-text {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #D4AF37;
    display: inline-block; /* スマホでの改行対策 */
    padding-bottom: 2px;
}

/* 特徴リスト */
.athlete-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    text-align: left;
    display: inline-block; /* 中央寄せしつつリストは左揃えにするテクニック */
}

.athlete-features li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.athlete-features li:last-child {
    margin-bottom: 0;
}

/* 価格ボックス */
.athlete-price-box {
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    margin-top: 20px;
}

/* STUDENT PRICE ラベル */
.price-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    color: #000;
    font-weight: bold;
    padding: 2px 20px;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.price-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.price-sub-label {
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: center;
}

.price-value-sub {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

/* 区切り線 (PCのみ表示) */
.price-divider {
    width: 1px;
    height: 40px;
    background: #444;
    display: block;
}

/* 料金詳細レイアウト */
.cost-flex {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
	 align-items: center; 
}

.old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 14px;
}

.arrow-icon {
    font-size: 18px;
    color: #D4AF37; /* アイコンをゴールドに */
}

.new-price-group {
    text-align: left;
}

.special-tag {
    display: block;
    color: #D4AF37;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom:5px;
}

.new-price-num {
    color: #fff;
    font-size: 32px; /* 少し大きく強調 */
    font-weight: bold;
    line-height: 1;
}

.yen {
    color: #fff;
    font-size: 14px;
}

/* --- スマートフォン・レスポンシブ対応 (768px以下) --- */
@media screen and (max-width: 768px) {
	.old-price{
	font-size: 22px;
	}
    .athlete-section {
padding: 70px 0 60px;
        margin: 0 auto;
    }
	.athlete-container{
		width:90%;
	}
    .athlete-title {
        font-size: 20px; /* スマホでは少し小さく */
    }
    
    .athlete-features li {
        font-size: 14px; /* リスト文字サイズ調整 */
    }

    .price-content-wrapper {
        flex-direction: column; /* 縦並びに変更 */
        gap: 20px;
    }

    .price-divider {
        display: none; /* スマホでは縦棒を消す */
    }
    
    .price-item.time {
        border-bottom: 1px solid #333; /* 代わりに下線を入れる */
        padding-bottom: 15px;
        width: 100%;
    }

    .cost-flex {
        flex-direction: column; /* 料金部分も縦並びにして見やすく */
        align-items: center;
        gap:0;
    }

    .arrow-icon {
        transform: rotate(90deg); /* 矢印を下向きにする */
        margin: 5px 0;
    }
    
    .new-price-group {
        text-align: center; /* 中央揃えに変更 */
    }
}
/* 団体貸切セクション 全体枠 */
.group-rental-section {
    max-width: 800px;
    margin: 60px auto 30px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 会員外OKバッジ */
.group-badge {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* タイトル */
.group-title {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* リード文 */
.group-lead {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* 情報ボックスのレイアウト (Flexbox) */
.group-info-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.group-info-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px 20px;
    flex: 1; /* 幅を均等に */
}

/* 小見出し */
.info-head {
    color: #D4AF37;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.info-head span {
    color: #e74c3c; /* 注意書きを少し目立たせる（赤系） */
    font-size: 12px;
    margin-left: 10px;
    font-weight: normal;
}

/* 料金の行 */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.time-label {
    color: #fff;
    font-size: 15px;
}

.price-val {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.price-val .yen {
    font-size: 13px;
    font-weight: normal;
    margin-left: 4px;
    color: #aaa;
}

/* 定員ブロックの中央寄せ */
.capacity-box {
    display: flex;
    flex-direction: column;
}

.capacity-val {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capacity-val span {
    color: #D4AF37;
    font-size: 40px;
    font-weight: bold;
    margin: 0 8px;
    line-height: 1;
}

/* お問い合わせ（CTA）エリア */
.group-cta p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}


/* --- スマートフォン対応 --- */
@media screen and (max-width: 768px) {
    .group-rental-section {
        padding: 30px 15px;
        margin: 40px 15px;
    }

    .group-title {
        font-size: 22px;
    }

    /* スマホでは料金と定員を縦並びに */
    .group-info-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .info-head span {
        display: block; /* 注意書きを改行させる */
        margin-left: 0;
        margin-top: 5px;
    }

    .capacity-val {
        padding: 20px 0;
    }
}
.access-tenpo-img{
max-width:1000px;
margin:0 auto 50px;
}
/* --- オプション追加部分のスタイル --- */

/* オプションボックス全体の装飾 */
.option-box {
    margin-top: -15px; /* 上のボックスとの間隔調整 */
    margin-bottom: 35px;
    border: 1px solid #D4AF37; /* プレミアム感を出すため枠線をゴールドに */
    background: rgba(212, 175, 55, 0.05); /* 背景をうっすらゴールドに */
}

/* オプションのテキストを少し目立たせる */
.option-label {
    font-weight: bold;
    color: #D4AF37;
}

/* --- スマートフォン対応（768px以下） --- */
@media screen and (max-width: 768px) {
    .option-box {
        margin-top: 0;
        margin-bottom: 25px;
        padding: 20px 15px;
    }
    
    /* スマホ画面で文字と金額が窮屈にならないよう縦に並べる */
    .option-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* 金額部分を右下に寄せる */
    .option-row .price-val {
        align-self: flex-end;
    }
}
/*  PC 
================================================================= */

@media (min-width: 769px) {
.sp-only{
display:none;	
}
}
/* 7. MEDIA QUERIES
   ================================================================= */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --space-section: 60px; /* スマホは余白を少し詰める */
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pc-only { display: none !important; }
    .sp-only { display: block !important; }
    
    /* スマホでは文字サイズを少し調整 */
    body { font-size: 0.95rem; }
	header{ padding:8px 0; }
.logo {
    width: 145px;
}
.page-id-58 .site-footer, .page-id-64 .site-footer, .page-id-53 .site-footer, .page-id-81 .site-footer, .page-id-80 .site-footer, .page-id-75 .site-footer, .page-id-53 .site-footer{
padding-bottom:10px;
}
.hero-subtitle {
    font-size: 1rem;
margin-bottom:10px;
}
.mobile-menu a.nav-btn {
        padding: 10px 25px;
        border: 1px solid var(--gold-primary);
        color: var(--gold-primary);
        border-radius: 4px;
        font-weight: bold;
    }
.hero-tag{
padding:6px 20px;
	}
.hero-title .gold-text {
    font-size: 0.7em;
	margin-bottom:8px;
    display: inline-block;
}
.price-display .amount {
font-size:3rem;
}
.btn-gold{
    padding: 13px 50px;
    width: 300px;
	}
.container.hero-content{
text-align:center;
	}
.price-display{
margin-bottom:25px;
	}
h3.youbou{
font-size:20px;
}
	.section-header{
		margin-bottom:40px;
	}
	.pain-grid{
		margin-top:40px;
	}
	.section-padding {
    padding:70px 0 60px;
}
	.price-card-wrapper{
		padding:20px 20px;
	}
	.price-row {
    display: block;
	}
	.price-row span{
	display:block;
	width:100%;
	}
	.option-row .price-val, .option-row .price-val .yen{
		        display: inline;
	}
	.btn-line-big{
		padding:20px 0px;
	}
	.trainer-content{
	display:block;
	}
	.trainer-title{
		margin-bottom:15px;
	}
	.trainer-image{
	margin: 0 auto 45px;
	width:79%;
    min-width: 260px;
	}
	/* 外枠の余白を調整して画面を広く使う */
    .gorize-faq-section {
        padding: 30px 15px; /* 上下30px、左右15px */
    }

    /* カテゴリ見出しのサイズ調整 */
    .gorize-faq-category {
        font-size: 1.1rem; /* 文字を少し小さく */
        margin-top: 30px;
        margin-bottom: 15px;
		text-align:center;
    }

    /* 質問部分（タップエリア）の調整 */
    .gorize-faq-question {
        padding: 15px; /* 指で押しやすいサイズ感を維持しつつ余白削減 */
        font-size: 0.95rem; /* スマホで読みやすいサイズ */
        align-items: flex-start; /* 文字が複数行になってもアイコン位置をズレさせない */
    }

    /* Qマークの調整 */
    .gorize-faq-question span.q-mark {
        font-size: 1.1rem;
        margin-right: 8px;
    }

    /* ＋－アイコンの調整 */
    .gorize-faq-question::after {
        font-size: 1.4rem;
        margin-left: 10px; /* テキストとの距離 */
        flex-shrink: 0; /* アイコンが潰れないように固定 */
        line-height: 1; /* 高さズレ防止 */
    }

    /* 回答部分の調整 */
    .gorize-faq-answer {
        padding: 15px; /* 内部の余白を少し詰める */
        font-size: 0.9rem; /* 長文でも読みやすく */
        line-height: 1.7;
    }
	.gorize-faq-container{
		width:90%;
	}
	img.foot-logo{
        margin: 0 auto 15px;
        width: 190px;
	}
	.page-title-main{
		font-size:25px;
		letter-spacing:2px;
	}
	.page-header {
    height:250px;
	}
	.aioseo-breadcrumbs{
	font-size:14px;	
	}
.hero {
    height: 92vh;
	}
/* data-tab="privacy" を中身に持っている要素だけを非表示にする */
.um-account-nav.uimob340-show.uimob500-show:has(a[data-tab="privacy"]) {
    display: none !important;
}
	.hero-bg{
	    background-position: right 62% center;
}
.access-tenpo-img {
margin:0 auto 30px;
}
	.map-container{
		height:380px;
	}
}

