/* ============================================
    VARIABLES & BASE
============================================= */
:root {
    --neon-pink: #FF0055;
    --cyber-blue: #00F3FF;
    --bg-dark: #0a0a0a; 
    --white: #ffffff;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}
/* ============================================
    HERO SECTION - UNIVERSAL STICKY
============================================= */

.hero-section {
    position: relative;
    width: 100%;
    /* スマホ・PC共通で「固定するためのレール」を作る */
    min-height: 180vh; 
    background-color: var(--bg-dark);
}

/* 背景を画面全体に固定（PC・スマホ共通） */
/* --- 背景を固定せず、ページ最上部に配置 --- */
/* --- .hero-bg の高さを修正 --- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* 120vh から 100% (親要素の全高) に変更 */
    height: 100%; 
    background: url('img_org/260220_0071-2.jpg') no-repeat center center/cover;
    z-index: 1;
}

/* --- 文字ボックスの固定と動き出し --- */
.hero-sticky-visual {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;

    /* フェードアウトしながら上に流れる */
    animation: fadeAndSlide linear both;
    animation-timeline: scroll(root);
    
    animation-range: 80vh 150vh;
}

@keyframes fadeAndSlide {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px); /* 上に逃げながら消える */
    }
}

/* --- Content Box --- */
.content {
    position: relative;
    pointer-events: auto;
    width: 90vw;
    max-width: 1100px;
    padding: 3rem 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 11;
}

/* 装飾：PC・スマホ共通 */
h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.4rem, 5vw, 4rem); 
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    /* グラデーションを確実に表示 */
    background: linear-gradient(to bottom, #ffffff 40%, #aaaaaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Safari対策 */
    white-space: normal;
}
.subtitle {
    font-family: 'Syncopate', sans-serif;
    /* 1. サイズを少し上げつつ、縦に引き伸ばす */
    font-size: 1rem; 
    display: inline-block;
    transform: scaleY(1.3); /* 垂直方向に1.3倍に伸ばす */
    transform-origin: center;

    /* 2. 行間と文字間を広げて「つぶれ」を回避 */
    letter-spacing: 0.5rem;   /* 横の間隔を広く */
    line-height: 2.5;         /* 上下の余白をたっぷり取る */
    
    margin-top: 25px;
    color: var(--cyber-blue);
    text-shadow: 0 0 12px rgba(0, 243, 255, 0.6);
    text-transform: uppercase;
    
    /* 3. 視認性を上げるために少しだけ太く（必要に応じて） */
    font-weight: 700;
}

.hero-description {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    letter-spacing: 2px;
    margin: 20px 0;
    color: var(--white);
    font-weight: 300;
    line-height: 1.6;
    max-width: 80%;
}
.btn {
    margin-top: 30px;
    padding: 12px 35px;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    box-shadow: 0 0 15px var(--neon-pink);
    background: transparent;
}

/* --- Limited Offer Badge (装飾復元 + PC左上巨大化) --- */

.hero-special-badge {
    position: absolute;
    top: 6%; 
    left: 4%;
    z-index: 20;
    pointer-events: auto;
    
    /* 文字サイズで大きくしたので、scaleは微調整程度に */
    transform: scale(1.0); 
    
    /* 消えるタイミング（遅めに設定） */
    animation: fadeOutBadge linear both;
    animation-timeline: scroll(root);
    animation-range: 120vh 170vh !important;
}
/* --- .badge-inner (余白と枠を強化) --- */
.badge-inner {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--neon-pink); /* 枠を太く */
    padding: 25px 40px;               /* 余白を大幅アップ */
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
    backdrop-filter: blur(10px);
    text-align: left;
}

/* --- .badge-tag (上の小さな文字) --- */
.badge-tag {
    color: var(--neon-pink);
    font-size: 0.9rem;                /* 0.6rem → 0.9rem */
    margin-bottom: 8px;
    letter-spacing: 3px;
    font-weight: bold;
}

/* --- .badge-title (メインの大きな文字) --- */
.badge-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;                /* 1.1rem → 1.8rem */
    color: #ffffff;
    margin: 10px 0;
    line-height: 1.1;
}

/* --- .badge-link (下のリンク文字) --- */
.badge-link {
    color: var(--cyber-blue);
    font-size: 1.0rem;                /* 0.7rem → 1.0rem */
    letter-spacing: 1px;
}

/* バッジ専用のアニメーション定義 */
@keyframes fadeOutBadge {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px); /* 少し上に浮きながら消える演出 */
    }
}

.badge-inner {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--neon-pink);
    padding: 15px 25px;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.badge-tag {
    color: var(--neon-pink);
    font-family: 'Syncopate', sans-serif;
    font-size: 0.6rem;
    display: block;
    margin-bottom: 5px;
}

/* --- .badge-link (バッジ内のリンク文字) --- */
.badge-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--cyber-blue);
    text-decoration: none;
    font-family: 'Syncopate', sans-serif; /* サイト全体の統一感のため */
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: bold;
    transition: 0.3s ease;
    border-bottom: 1px solid transparent;
}

.badge-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyber-blue);
    border-bottom: 1px solid var(--cyber-blue);
    transform: translateX(5px); /* 右に少し動く演出 */
}



/* Studio Promo Section Style */
.studio-promo-section {
    padding: 100px 0;
    background: #000;
}

.studio-promo-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-left: 4px solid var(--cyber-blue, #00f3ff);
    background: rgba(255, 255, 255, 0.01);
}

.promo-tag {
    color: var(--cyber-blue, #00f3ff);
    font-family: 'Syncopate', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 25px;
    opacity: 0.8;
}

.promo-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.promo-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.promo-text-side {
    flex: 1.4;
}

.promo-description {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.promo-description strong {
    color: var(--cyber-blue, #00f3ff);
    font-weight: 700;
}

.promo-sub-text {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.promo-link-side {
    flex: 1;
}

.promo-link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.promo-link-btn:hover {
    border-color: var(--cyber-blue, #00f3ff);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

.btn-subtext {
    font-size: 0.6rem;
    color: var(--cyber-blue, #00f3ff);
    margin-top: 10px;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .promo-grid {
        flex-direction: column;
        text-align: center;
    }
    .promo-title {
        font-size: 1.2rem;
    }
    .studio-promo-card {
        padding: 40px 25px;
        margin: 0 20px;
    }
}

/* ============================================
    MOBILE OPTIMIZATION (スマホの固定設定)
============================================= */
/* --- @media (max-width: 768px) の中身を以下に更新 --- */
@media (max-width: 768px) {
.hero-section {
        /* 200vh から 150vh に短縮（Galleryまでの距離が縮まります） */
        min-height: 150vh; 
    }

    /* 背景画像もセクションの高さ(150vh分)に合わせる */
    .hero-bg {
        position: absolute;
        top: 0;
        height: 100%; 
    }

    .hero-sticky-visual {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 5vh;
        
        /* 縦幅を縮めたので、消え始めるタイミングを「80vh」からに早めます */
        animation-range: 80vh 130vh !important;
    }
    
    .hero-special-badge {
        order: -1;
        position: relative;
        left: auto;
        margin: 0 auto 80px auto; /* センター寄せ & 下との隙間 */
        width: fit-content;
        text-align: center;
        
        /* バッジも文字と一緒に消えるようタイミングを合わせる */
        animation-range: 80vh 130vh !important;
    }

    .badge-inner {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 文字ボックス（.content）自体も少しだけ下にずらすと、よりバッジの「上」が際立ちます */
    .content {
        margin-top: 0; 
    }
    


    .badge-title {
        font-size: 1.4rem;
    }

}
/* ============================================
    GALLERY SECTION (干渉排除)
============================================= */
/* --- GALLERY SECTION (ここを書き換え・追記) --- */

.gallery-section {
    position: relative;
    z-index: 100;
    background-color: var(--bg-dark);
    padding: 100px 5%;
    /* 横はみ出しを確実に防ぐ */
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; 
}



.gallery-title {
    font-family: 'Syncopate', sans-serif;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 50px;
    font-size: clamp(1.2rem, 3vw, 2rem);
    text-transform: uppercase;
    color: #fff;
}

.gallery-grid {
    display: grid;
    /* レスポンシブなグリッド：横幅に合わせて自動調整 */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    grid-gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    overflow: hidden;
    background: #111;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    /* フェードインを無効化し、常に表示 */
    opacity: 1 !important;
}

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

/* グリッドの変則パターン設定 */
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }


@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 10px; /* 余白を少し削って画像を大きく見せる */
    }

    .gallery-grid {
        /* 横2列に固定 */
        grid-template-columns: 1fr 1fr !important; 
        /* 1マスの高さを少し下げる（2枚並ぶため） */
        grid-auto-rows: 150px; 
        gap: 10px;
        width: 100%;
        grid-auto-flow: dense; 
    }

    /* --- 個別の比率設定 --- */

    /* 横長(wide)：2列設定なので、横いっぱいに使わせる */
    .wide {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }

    /* 縦長(tall)：横は1マス、縦は2マス分使う */
    .tall {
        grid-column: span 1 !important;
        grid-row: span 2 !important; 
    }

    /* 標準：1マス */
    .gallery-item {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* ============================================
    ANIMATIONS (Reveal on scroll)
============================================= */
.reveal {
    /* 初期状態は透明で少し下に配置 */
    opacity: 0;
    transform: translateY(40px);
    /* 1.2秒かけて滑らかに表示 */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    /* アニメーションのパフォーマンス向上 */
    will-change: opacity, transform;
}

/* JSによってクラスが付与された時の状態 */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 画像自体の透明度固定を解除 */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* ============================================
    LIGHTBOX SYSTEM
============================================= */
.lightbox {
    display: none; /* 初期は非表示 */
    position: fixed;
    z-index: 2000; /* 全ての要素より手前に */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
    
    /* ブラウザ標準のタッチアクション（スクロールや戻る）を制限し、
       JSのスワイプ検知を優先させます */
    touch-action: none; 
    
    /* テキスト選択を防いで誤作動を防止 */
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    animation: zoomIn 0.3s ease forwards;
    
    /* 画像切り替え時のフェードアニメーションをより滑らかに */
    transition: opacity 0.3s ease;
}

@keyframes zoomIn {
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}



#lightbox-caption {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 2px;
}

/* ギャラリーアイテムにホバー時のカーソルを指定 */
.gallery-item {
    cursor: zoom-in;
}

/* --- Lightbox Navigation --- */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    z-index: 2200;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

/* 画像切り替え時のアニメーション */
.fade-in {
    animation: fadeInImg 0.4s ease-in-out;
}

@keyframes fadeInImg {
    from { opacity: 0; }
    to { opacity: 1; }
}




/* ============================================
    PRICING SECTION
============================================= */
.pricing-section {
    padding: 100px 5%;
    background-color: var(--bg-dark);
}

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

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
transition: 0.4s ease; /* transitionを具体的に指定 */
    position: relative;
    overflow: hidden;
}

.price-card.highlight {
    border-color: var(--cyber-blue);
    background: rgba(0, 243, 255, 0.05); /* 0.02から少しだけアップ */
    transform: translateY(-5px); /* 軽く浮かせると「反応してる感」が出ます */
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2); /* ネオンの光漏れを追加 */
}

/* ついでにプラン名の色も変えるなら */
.price-card.highlight h3 {
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

/* プラン名 */
.price-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--cyber-blue);
    margin-bottom: 25px;
}

/* 価格本体 */
.price {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px; /* 下のTax Labelとの隙間 */
    line-height: 1;
}

/* 税込表記 (重なりを修正) */
.tax-label {
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.6;
    letter-spacing: 1px;
    margin-bottom: 10px; /* 下のDurationとの隙間 */
    font-weight: 400;
    text-transform: uppercase;
}

/* 1時間セッションの表記 */
.duration {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* リスト部分 */
.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.price-card ul li::before {
    content: "■";
    color: var(--neon-pink);
    margin-right: 10px;
    font-size: 0.7rem;
}

.included-services {
    text-align: center;
    margin-top: 60px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

.included-services b {
    color: var(--white);
    border-bottom: 1px solid var(--cyber-blue);
}

/* --- Offer Banner --- */
.offer-banner {
    margin-top: 80px;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--cyber-blue));
    position: relative;
    border-radius: 4px;
}

.offer-content {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

.offer-content .tag {
    color: var(--neon-pink);
    font-family: 'Syncopate', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
}

.offer-content h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin: 20px 0;
    background: linear-gradient(to right, #fff, var(--cyber-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-btn {
    border-color: var(--cyber-blue);
    color: var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    letter-spacing: 3px;
    font-weight: bold;
}


/* ============================================
    PROFILE SECTION
============================================= */
.profile-section {
    padding: 100px 5%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.profile-container {
    max-width: 1000px;
    display: flex;
    align-items: flex-start; /* 上揃えで落ち着いた印象に */
    gap: 80px;
}

/* 画像エリアの演出 */
.profile-image {
    position: relative;
    flex: 0 0 380px;
}

.profile-image img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* 背面のフレーム：装飾を控えめに */
.image-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 243, 255, 0.3);
    z-index: 1;
}

/* テキストコンテンツ */
.profile-content {
    flex: 1;
    padding-top: 10px;
}

.profile-name-en {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    letter-spacing: 0.4rem;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    color: var(--white);
}

.profile-name-full {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-top: 8px;
    color: var(--cyber-blue);
    font-weight: 300;
}

.profile-meta {
    margin-top: 25px;
    /* Syncopateを避け、モダンなInterや標準的なSans-serifに変更 */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05rem; /* 間隔を少し詰め、単語として読みやすく */
    opacity: 0.8;
    text-transform: none; /* 勝手に大文字にならないように強制解除 */
    color: var(--white);
}

/* ついでに会社名だけ少し太くして、プロフェッショナルな印象を強める場合 */
.profile-meta span.company-name {
    font-weight: 600;
    color: var(--cyber-blue);
}

.profile-description {
    margin-top: 30px;
}

.profile-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

/* リンク：ボタンではなくテキストリンクとして上品に配置 */
.profile-url {
    display: inline-block;
    margin-top: 20px;
    color: var(--cyber-blue);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.profile-url:hover {
    border-bottom: 1px solid var(--cyber-blue);
    opacity: 0.8;
}
.profile-sns-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center; /* これで中央に寄せます */
    flex-wrap: wrap;         /* スマホで画面が狭い時に縦に並ぶようにします */
}

.sns-btn {
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 12px 25px;
    border: 1px solid;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-block;
    min-width: 160px;        /* ボタンの幅を揃えるとかっこよくなります */
    text-align: center;
}

/* WhatsApp: ネオングリーン */
.wa-btn {
    color: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.2);
}

.wa-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

/* Instagram: ネオンピンク */
.ig-btn {
    color: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 0 5px rgba(225, 48, 108, 0.2);
}

.ig-btn:hover {
    background: rgba(225, 48, 108, 0.1);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.6);
    transform: translateY(-3px);
}


/* レスポンシブ対応 */
@media (max-width: 900px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .profile-image {
        flex: 0 0 auto;
        width: 300px;
    }
    .profile-content {
        text-align: center;
    }
}


/* --- Booking Form Style --- */
.booking-section {
    padding: 100px 5%;
    background: var(--bg-dark);
}

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

.form-group-wrapper {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 0.75rem;
    color: var(--cyber-blue);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--cyber-blue);
    background: rgba(0, 243, 255, 0.05);
}

.radio-group {
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

.radio-label {
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    background: transparent;
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    cursor: pointer;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 3px;
}

.submit-btn:hover {
    background: var(--neon-pink);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.4);
}
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* カレンダーのアイコンを白く反転させる */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* 0（黒）から 1（白）に反転 */
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
/* 入力欄全体をクリックしてもカレンダーが開くようにする（一部ブラウザ用） */
input[type="date"] {
    position: relative;
}

/* アイコン自体のサイズを少し大きくして押しやすくする */
input[type="date"]::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 20px;
}/* 入力欄全体をクリックしてもカレンダーが開くようにする（一部ブラウザ用） */
input[type="time"] {
    position: relative;
}

/* アイコン自体のサイズを少し大きくして押しやすくする */
input[type="time"]::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 20px;
}
/* Responsive */
@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 20px; }
}
.offer-group {
    margin-bottom: 20px;
}

.checkbox-label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ダイヤグラム風メッセージ */
.offer-notice {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 0, 153, 0.05);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    font-size: 0.75rem;
    line-height: 1.6;
    clip-path: polygon(0 0, 95% 0, 100% 20%, 100% 100%, 5% 100%, 0 80%); /* 角を削ったサイバーデザイン */
}

.offer-notice p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: underline;
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none; /* JSでflexに切り替え */
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid #ff0099;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(255, 0, 153, 0.3);
}

.confirm-data-list {
    margin: 20px 0;
    text-align: left;
}


.confirm-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    font-size: 0.9rem;
}
.confirm-item strong { color: var(--neon-pink); margin-right: 10px; }
.modal-buttons {
    display: flex; gap: 10px; margin-top: 20px;
}
.back-btn { background: #333; color: white; border: none; padding: 10px 20px; cursor: pointer; flex: 1; }
.send-btn { background: var(--neon-pink); color: white; border: none; padding: 10px 20px; cursor: pointer; flex: 2; font-weight: bold; }

#inlineConfirm {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--neon-pink);
    padding: 30px 20px;
    border-radius: 4px;
}

.confirm-data-list {
    margin: 30px 0;
}

.modal-buttons {
    display: flex;
    flex-direction: column; /* スマホなら縦並びの方が押しやすい */
    gap: 15px;
}

@media (min-width: 768px) {
    .modal-buttons {
        flex-direction: row; /* PCなら横並び */
    }
}

/* フェードアウト・インのベース */
#bookingForm, #inlineConfirm {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

/* 非表示状態のスタイル */
.fade-out {
    opacity: 0 !important;
    transform: translateY(10px) !important;
    pointer-events: none;
}

/* 確認画面のコンテナを少し整える */
#inlineConfirm {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--neon-pink);
    padding: 30px 20px;
    margin-top: 20px;
}
#confirmContent {
    transition: opacity 0.4s ease;
}

.thanks-message h3 {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

#bookingWrapper {
    transform: translateY(-20px);
    overflow: hidden;
}

/* ボタンのホバーエフェクト（任意） */
#toggleFormBtn {
    border: 1px solid #00F3FF;
    background: transparent;
    color: #00F3FF;
    transition: 0.3s;
    cursor: pointer;
}

#toggleFormBtn:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}
/* ============================================
    SHORT SCREEN OPTIMIZATION (高さ700px以下)
============================================= */
@media (max-height: 700px) {
    /* 1. 黒いボックス全体の上下余白を圧縮 */
    .content {
        padding: 1.5rem 1.5rem; /* 3remから半分に */
        width: 85vw;
    }

    /* 2. メインタイトルの行間とサイズを微調整 */
    h1 {
        font-size: clamp(1.4rem, 6vh, 3rem); /* 高さに合わせてフォントサイズを制限 */
        line-height: 1.1; 
        margin-bottom: 0.5rem;
    }

    /* 3. サブタイトルの上下余白と行間を詰める */
    .subtitle {
        margin-top: 10px;
        line-height: 1.5; /* 先ほど広げた分をここでタイトに */
        letter-spacing: 0.2rem;
    }

    /* 4. 説明文の非表示または大幅な圧縮 */
    .hero-description {
        font-size: 0.85rem;
        margin: 10px 0;
        line-height: 1.4;
        max-width: 90%;
        /* もしこれでも入り切らない場合は display: none; も検討 */
    }

    /* 5. ボタンのサイズと上の余白を縮小 */
    .btn {
        margin-top: 15px;
        padding: 8px 25px;
        font-size: 0.7rem;
    }

    /* 6. 特典バッジの位置やサイズをさらに調整 */
    .hero-special-badge {
        margin-bottom: 40px; /* 80pxから半分に */
    }
    
    .badge-inner {
        padding: 10px 20px;
    }
}

.footer-info {
    margin-top: 100px;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    background: rgba(10, 10, 15, 0.9);
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 2;
    text-align: center;
}

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

.company-name {
    font-family: 'Syncopate', sans-serif;
    color: #00F3FF;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.address {
    margin-bottom: 15px;
    font-style: normal;
}

.manager {
    margin-bottom: 25px;
    color: #eee;
}

.footer-url {
    color: #00F3FF;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    font-size: 0.8rem;
}

.footer-url:hover {
    border-bottom: 1px solid #00F3FF;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.8);
}

.copyright {
    margin-top: 40px;
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 1px;
}