   /* 基本リセット */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {

            background: #fff;
            color: #616c73;
            line-height: 1.6;
            font-family: "Zen Kaku Gothic New", system-ui;
            font-weight: 500;
        }

        ul {
            list-style-type: none;
        }

        a {
            text-decoration: none;
            color: #616c73;
        }

        .header .follow_button {
            position: fixed;
            bottom: 12px;
            right: 10px;
            background-image: radial-gradient(#9dbee4, #e7f0fd);
            width: 70px;
            height: 70px;
            border-radius: 100%;
            z-index: 100;
            text-align: center;
            line-height: 1.7rem;
            padding-top: 15px;
            box-shadow: 0px 0px 17px 3px rgba(239, 246, 247, 0.377);
            /* 最初は非表示にしておく、またはJSで制御するためにtransitionを追加 */
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            /* ふわっとさせる設定 */
        }

        .header .follow_button .follow_link {
            color: #fff;
            font-size: 1.5rem;
            letter-spacing: 0.2rem;
            text-shadow: 0px 0px 7px rgba(10, 46, 65, 0.9);
        }

        /* ボタンを表示する時のクラス */
        .header .follow_button.is-show {
            opacity: 1;
            visibility: visible;
        }

        /* 全体レイアウト */
        .wrapper {
            display: flex;
            position: relative;
        }

        /* メインコンテンツ */
        .main-content {
            width: 100%;
            max-width: 560px;
        }

        .main-content img {
            width: 100%;
        }

        /* セクション共通 */
        section {
            width: 100%;
            position: relative;
        }

        /* 1_MV & 2_Day Place */
        .mv-section {
            position: relative;
        }

        .day-place-img {
            position: absolute;
            bottom: -5%;
            /* 位置は適宜調整してください */
            /* left: 5%; */
            left: 0;
            width: 90%;
            z-index: 10;
        }

        /* マップ */
        .map-container {
            width: 90%;
            margin: 0 auto 40px;
            padding: 0;
            line-height: 0;
        }

        .map-container iframe {
            width: 100%;
            border: 0;
            vertical-align: bottom;
        }

        /* 5_Text & Slide Section */
        .gallery-section {
            background-image: url('https://so-sha.co.jp/cont3/wp-content/themes/so-sha_theme2024/img/furisode/furisode_fair_lp/itsukaichi/202604/bk.png');
            background-size: cover;
            background-position: center;
            padding-bottom: 50px;
        }

/* スライダーの外枠 */
.gallery-slider-wrapper {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

/* 手動スライダー本体 */
.manual-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* 1枚ずつ止まる */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* スクロールバーを隠す */
.manual-slider::-webkit-scrollbar {
    display: none;
}

.manual-slider img {
    flex: 0 0 100%; /* 1枚の幅を100%に */
    width: 100%;
    height: auto;
    scroll-snap-align: center; /* 中央に吸い付く */
    opacity: 1 !important;   /* 前のフェード設定を上書き */
    animation: none !important; /* 前のアニメーションを停止 */
    position: relative !important; /* absoluteを解除 */
}

/* 枚数表示のデザイン */
.slider-counter {
    text-align: center;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #7dc1c1;
    letter-spacing: 0.1em;
}

/* ドットを表示する場合のデザイン */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: 0.3s;
}
.gallery-dot.active {
    background: #7dc1c1;
    transform: scale(1.2);
}
        @keyframes fadeAnime {
            0% {
                opacity: 0;
            }

            5% {
                opacity: 1;
            }

            10% {
                opacity: 1;
            }

            15% {
                opacity: 0;
            }

            100% {
                opacity: 0;
            }
        }

        /* 横スクロールアニメーション (slide.png) */
        .loop-slider {
            overflow: hidden;
            display: flex;
            width: 100%;
            height: 280px;
        }

        .loop-slider-inner {
            display: flex;
          width: auto;
    height: 100%;
            animation: loopAnime 40s linear infinite;
        }

        .loop-slider-inner img {
    width: auto;
    height: 100%;
    max-width: none;
        }

        @keyframes loopAnime {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* 予約ボタン共通 */
        .reserve-area {
            padding: 20px;
            text-align: center;
        }

        /* PCレイアウト調整 (768px以上) */
        @media screen and (min-width: 799px) {
            .main-content {
        overflow: hidden; /* メインコンテンツ全体でも念のためガード */
    }
            .pc-sidebar {
                height: 100vh;
                position: fixed;
                flex-grow: 2;
                background-image: url('https://so-sha.co.jp/cont3/wp-content/themes/so-sha_theme2024/img/furisode/furisode_fair_lp/itsukaichi/202604/pc-menu.png');
                background-repeat: no-repeat;
                background-size: cover;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;
                margin-left: 560px;
            }

            .fixed {
                position: fixed;
                top: 100px;
                z-index: 100;
                right: 60px;
                width: 36%;
            }

            .fixed img {
                width: 80%;
            }

            .main-content {
                max-width: 560px;
            }

            .fixed.title-img {
                width: 50%;
            }

            .fixed .reserve-btn {
                transition: opacity 0.3s;
            }

            .fixed .reserve-btn:hover {
                opacity: 0.8;
            }

            /* PCの時はスライダーを解除して3列並びにする（任意） */
            .plan-list {
                overflow-x: visible;
                scroll-snap-type: none;
                flex-wrap: wrap;
            }

            .plan-list li {
                flex: 0 0 calc(33.333% - 14px);
            }

            .plan-dots {
                display: none;
                /* PCではドット不要 */
            }
        }

        /* スマホ時はサイドバーを非表示（前回の設定を維持） */
        @media screen and (max-width: 800px) {

            .pc-sidebar,
            .fixed {
                display: none;
            }

            /* .main-content {
width: calc(100% - 300px);
        max-width: 560px; 
        margin-left: 0;   
        margin-right: auto;
    } */
        }

        /*  プラン */
        /* セクション全体の装飾 */
        .section02 {
            padding: 60px 0;
            /*  background-color: #f9f9f9; サイトに合わせた背景色 */
            /* 背景画像の指定 */
            background-image: url('https://so-sha.co.jp/cont3/wp-content/themes/so-sha_theme2024/img/furisode/furisode_fair_lp/itsukaichi/202604/bk2.png');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
            /* コンテンツが画像より長い場合に背景が切れないよう、背景色を指定しておくと安全です */
            background-color: #fff;

            padding-bottom: 50px;
        }

        .section02 .inner {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
            /* ドットのはみ出し防止 */
        }

        /* タイトル周り */
        .c-title01 {
            text-align: center;
            font-size: 28px;
            color: #4a4a4a;
            margin-bottom: 20px;
        }

        .c-text01 {
            text-align: center;
            font-size: 16px;
            margin-bottom: 40px;
        }

        /* プランリスト（横並び設定） */
        .plan-list {
            display: flex;
            flex-wrap: nowrap;
            /* 【重要】折り返しを禁止 */
            overflow-x: auto;
            /* 横スクロールを許可 */
            scroll-snap-type: x mandatory;
            /* 1枚ずつ止まる設定 */
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 0 0 20px 0;
            /* 下にドット用の余白 */
            list-style: none;
            width: 100%;
        }

        .plan-list li {
            flex: 0 0 100%;
            /* 【重要】1枚の幅を親に対して100%固定 */
            width: 100%;
            /* 念のため追加 */
            scroll-snap-align: center;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 15px;
            display: flex;
            /* カード内のコンテンツを縦に並べる */
            flex-direction: column;
        }

        .plan-list li {
            flex: 0 0 100%;
            /* 1枚の幅を100%にする */
            scroll-snap-align: center;
            /* 中央で止まる */
            background: #fff;
            border: 1px solid #eee;
            border-radius: 15px;
        }

        .plan-list .option .option_list {
            width: 100%;
            background: #fff;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            padding: 9px;
            border-radius: 20px;
            margin-bottom: 5px;
            text-align: center;
            font-weight: 900;
        }

        /* スクロールバーを隠す（任意） */
        .plan-list::-webkit-scrollbar {
            display: none;
        }

        /* インジケーター（ドット）の装飾 */
        .plan-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #ccc;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .dot.active {
            background: #7dc1c1;
            /* 現在のプランの色 */
            width: 25px;
            /* 少し長くして強調 */
            border-radius: 10px;
        }


        /* @media screen and (max-width: 768px) {
    .plan-list li {
        width: 100%;
        margin-bottom: 20px;
    }
} */

        /* 各プランのヘッダー */
        .plan-head {
            background: #7dc1c1;
            /* プランの色に合わせて変更してください */
            color: #fff;
            padding: 15px;
            text-align: center;
            border-radius: 10px 10px 0 0;
        }

        .plan-head .sub {
            font-size: 13px;
            margin-bottom: 5px;
        }

        .plan-head .ttl {
            font-size: 20px;
            font-weight: bold;
        }

        /* 各プランのボディ */
        .plan-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .plan-body .txt {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: center;
        }

        .plan-body .price {
            font-size: 32px;
            font-weight: bold;
            color: #d4a373;
            /* 金額の色 */
            text-align: center;
            margin-bottom: 20px;
        }

        .plan-body .price span {
            font-size: 14px;
        }

        /* 含まれるものリスト */
        .detail-box {
            background: #fdfaf5;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            border-radius: 15px;
            color: #6c787f;
        }

        .detail-ttl {
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .detail-box ul {
            list-style: none;
            font-size: 12px;
        }


        /* 特典エリア */
        .tokuten-box {
            margin-top: auto;
            border-top: 1px dashed #ccc;
            padding-top: 15px;
            text-align: center;
        }

        .tokuten-ttl {
            font-size: 13px;
            font-weight: bold;
            color: #e63946;
            margin-bottom: 5px;
        }

        .tokuten-txt {
            font-size: 12px;
            font-weight: bold;
        }

        .plus {
            display: inline-block;
            background: #e63946;
            color: #fff;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 11px;
            margin-top: 10px;
        }

        .faq-section {
            max-width: 560px;
            margin: 40px auto;
            background-color: var(--faq-bg);
            padding: 50px 30px;
            box-sizing: border-box;
        }

        /* --- タイトル装飾 --- */
        .faq-title-area {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
        }

        .faq-title {
            font-size: rem;
            color: var(--q-color);
            margin: 0 20px;
            white-space: nowrap;
            letter-spacing: 0.1em;
            font-weight: bold;
        }

        /* --- アコーディオン --- */
        .faq-item {
            border-bottom: 1px solid #ccc;
        }

        .faq-item summary {
            list-style: none;
            /* デフォルトの矢印を消す */
            padding: 12px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            outline: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .q-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 1rem;
            font-weight: bold;
            color: var(--text-main);
            padding-right: 15px;
        }
.q-text{
    font-size: 1.3rem;
}
        .q-prefix {
            color: var(--q-color);
            font-size: 1.2rem;
        }

        /* 矢印アイコン */
        .arrow-icon {
            width: 10px;
            height: 10px;
            border-top: 2px solid #333;
            border-right: 2px solid #333;
            transform: rotate(135deg);
            margin-top: 10px;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        /* 開いている時の矢印と挙動 */
        .faq-item[open] .arrow-icon {
            transform: rotate(-45deg);
            margin-top: 15px;
        }

        .faq-content {
            padding: 0 0 25px 35px;
            line-height: 1.8;
            display: flex;
            gap: 10px;
        }

        .a-prefix {
            color: var(--a-label-color);
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: -5px;
        }

        :root {
            --index-bg: #f5f2eb;
            --main-red: #8b3a3a;
            --gold-accent: #c2a371;
            --text-gray: #4a4a4a;
        }

        /* モーダル（簡易版） */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background: #fff;
            width: 90%;
            max-width: 410px;
            padding: 10px;
            border-radius: 15px;
            position: relative;
        }

        /* モーダル起動ボタン */
        .btn-detail {

            background-image: linear-gradient(90deg, #ffd68a, #f78c71);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
        }

        .furisode-reserve {
            padding: 0 25px;
        }

        .furisode-reserve p {
            font-size: 14px
        }
    .furisode-reserv.tel_txt{
        text-align: center;
        margin-bottom: 20px;
    }

      .furisode-reserv.tel_txt .tel{
        font-size: 24px;
        text-decoration: underline;
    }
        .furisode-reserve .span-required {
            font-size: 13px;
            letter-spacing: 0.02em;
            background-color: #F89C52;
            color: #fff;
            border-radius: 21px;
            max-width: 35px;
            width: 100%;
            padding: 4px 0;
            line-height: 1;
            display: inline-block;
            text-align: center;
        }

        .furisode-reserve .reserve_dt,
        .furisode-reserve .reserve_border,
        .furisode-reserve .reserve_dd {
            margin-bottom: 15px;
        }

        .furisode-reserve .select_wrap,
        .furisode-reserve .reserve-form__btn {
            margin: 15px 0;
        }

        /* 例：LPのページだけで適用*/
        input[type="date"].wpcf7-date {
            color: #333 !important;
        }

        /* footer*/
        .footer {
            /* background-color: #699cb2; */
            background-image: url('https://so-sha.co.jp/cont3/wp-content/themes/so-sha_theme2024/img/furisode/furisode_fair_lp/itsukaichi/202604/bk.png');
            background-repeat: no-repeat;
            background-size: cover;
            padding: 20px 0;
            text-align: center;
            max-width: 560px;
            margin-top: 40px;
        }

        .footer .footerlogo img {
            width: 50%;
        }

        .insta-btn-container {
            text-align: center;
            font-size: 0.9rem;
            margin-top: 30px;
        }

        .insta-btn-container .sns {
            display: flex;
            max-width: 120px;
            width: 100%;
            margin: 0 auto;
        }

        .footer .footer__copyright {
            font-size: 0.6rem;
        }

        .fs12{
            font-size: 12px;
        }
