* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background: #f5f5f7;
    color: #33353a;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #dde0e6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ハンバーガーボタン（PCでは非表示） */
.nav-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #4b4f59;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
    margin-top: 5px;
}

/* 開いているときのアニメーション（×っぽく） */
.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ロゴ周り */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    display: block;
    height: 40px;
    width: auto;
}

/* ロゴテキスト（筆記体＋2行構成） */
.logo-text {
    display: inline-block;
    font-family: 'Yuji Syuku', 'Noto Sans JP', serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #3f434d;
    line-height: 1.1;
}

.logo-line1 {
    letter-spacing: 0.18em;
}

.logo-line2 {
    letter-spacing: 0.18em;
    font-size: 1.0em;
}

/* ナビゲーション */
.global-nav a {
    margin-left: 20px;
    font-size: 0.95rem;
    text-decoration: none;
    color: #5e6470;
    position: relative;
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,#9da3b0,#c9ced9);
    transition: width 0.2s;
}

.global-nav a:hover::after {
    width: 100%;
}

/* =========================================
   HERO（古本の見開き）
========================================= */

.hero-book {
    padding: 40px 10px;
    background: #f5f6f8;
    text-align: center;
}

.book-wrapper {
    max-width: 900px;
    margin: 0 auto 26px;
    perspective: 2000px;
}

/* 本全体 */
.book {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    background: #eae3d6;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    display: flex;
    overflow: hidden;
}

/* ページ共通（古本の紙色） */
.page {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #f3e5c9;
}

/* 古紙の質感 */
.page::before {
    content: "";
    position: absolute;
    inset: 6% 7%;
    border-radius: 8px;
    background: radial-gradient(circle at top left, rgba(0,0,0,0.06), transparent 55%), radial-gradient(circle at bottom right, rgba(0,0,0,0.06), transparent 55%), linear-gradient(135deg, rgba(255,255,255,0.25), rgba(225,204,165,0.2)), repeating-linear-gradient(180deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 1px, rgba(230,214,190,0.16) 2px, rgba(230,214,190,0.16) 3px);
    box-shadow: inset 0 0 0 1px rgba(160,130,90,0.35), inset 0 18px 30px rgba(255,255,255,0.5), inset 0 -18px 30px rgba(180,150,110,0.25);
}

/* 左ページ */
.page-left {
    border-right: 1px solid rgba(120,100,80,0.4);
}

/* 右ページはめくれる */
.page-right {
    transform-origin: left center;
}

/* 綴じ部分 */
.book::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 5px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(40,30,20,0.3), rgba(255,255,255,0.1), rgba(40,30,20,0.35));
    box-shadow: 0 0 14px rgba(0,0,0,0.5), inset 0 0 4px rgba(255,255,255,0.4);
}

/* めくりアニメ（右ページ） */
.page-right.turn-right {
    animation: flipRight 1.3s ease-in-out;
}

@keyframes flipRight {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    40% {
        transform: rotateY(-95deg);
        opacity: 0.08;
    }
    60% {
        transform: rotateY(95deg);
        opacity: 0.08;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* 左ページも揺れる */
.page-left.turn-left {
    animation: flipLeft 1.3s ease-in-out;
}

@keyframes flipLeft {
    0% {
        transform: rotateY(0deg);
        filter: brightness(1);
    }
    25% {
        transform: rotateY(5deg);
        filter: brightness(1.03);
    }
    75% {
        transform: rotateY(-4deg);
        filter: brightness(0.97);
    }
    100% {
        transform: rotateY(0deg);
        filter: brightness(1);
    }
}

/* ヒーローテキスト */
.hero-book-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #d5d7de;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    color: #4b4f59;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.5;
    margin: 0 0 12px;
}

.hero-sub {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.9;
    color: #555a63;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-primary,
.btn-sub {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.btn-primary {
    background: linear-gradient(90deg,#595f6b,#8e94a1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.btn-sub {
    background: #fff;
    color: #4b4f59;
    border: 1px solid #c9ced9;
}
/* ===== BLOCK 共通 ===== */
.block {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 16px 70px;
}

.block-heading {
    text-align: center;
    margin-bottom: 32px;
}

.block-label {
    font-size: 0.78rem;
    letter-spacing: 0.26em;
    color: #6a707c;
    margin-bottom: 6px;
}

.block-title {
    font-size: 1.8rem;
    margin: 0 0 4px;
}

.block-lead {
    font-size: 0.98rem;
    color: #666b74;
}

/* ===== フェア概要 ===== */
.block-fair {
    background: #ffffff;
}

.fair-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.fair-card {
    background: #fcfcfd;
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid #dde0e6;
    box-shadow: 0 3px 14px rgba(0,0,0,0.06);
}

.fair-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #4b4f59;
}

.fair-text {
    margin: 0 0 10px;
}

.fair-note {
    font-size: 0.9rem;
    color: #696e78;
}

.fair-list {
    margin: 0;
    padding-left: 1.1em;
    font-size: 0.9rem;
}

/* ===== PRICE ===== */
.block-price {
    background: #f5f6f8;
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1.4fr);
    gap: 26px;
    align-items: flex-start;
}

.price-main {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.price-main h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.price-range {
    margin: 0 0 10px;
    font-weight: 700;
    color: #4b4f59;
}

.price-caption {
    font-size: 0.94rem;
    color: #666b74;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 0.94rem;
}

.price-table td,
.price-table th {
    border: 1px solid #dde0e6;
    padding: 8px 10px;
}

.price-table th {
    background: #f2f3f6;
    color: #4b4f59;
}

.price-side {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid #dde0e6;
}

.price-side h3 {
    margin: 0 0 6px;
}

.price-side-note {
    font-size: 0.9rem;
    margin: 0 0 10px;
    color: #666b74;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.chip-list li {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #f3f4f7;
    border: 1px solid #d5d7de;
}

.price-option-title {
    font-size: 0.92rem;
    margin: 6px 0 4px;
    color: #4b4f59;
}

.price-options {
    margin: 0;
    padding-left: 1.1em;
    font-size: 0.9rem;
}

/* ===== BENEFITS ===== */
.block-benefits {
    background: #ffffff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.benefit-card {
    position: relative;
    background: #fcfcfd;
    border-radius: 14px;
    padding: 16px 14px 18px;
    border: 1px solid #dde0e6;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.benefit-num {
    position: absolute;
    top: -14px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #595f6b;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.benefit-card h3 {
    margin: 10px 0 6px;
    font-size: 0.98rem;
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== STUDIO（アルバム風） ===== */
.block-studio {
    background: #f5f6f8;
}

.studio-layout {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1.6fr);
    gap: 26px;
    align-items: center;
}

.studio-text h3 {
    margin: 0 0 8px;
}

.studio-text p {
    margin: 0 0 10px;
    font-size: 0.96rem;
    color: #555a63;
}

.studio-list {
    margin: 0;
    padding-left: 1.1em;
    font-size: 0.9rem;
}

/* アルバムっぽく写真を重ねる */
.studio-photos {
    position: relative;
    min-height: 260px;
}

.studio-photo {
    position: absolute;
    width: 70%;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18), 0 0 0 6px #fdfdfb;
    /* 写真の白フチ */
}

/* 中央 */
.studio-photo-1 {
    left: 50%;
    top: 6%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
    background-image: url("../img/214A2507.JPG");
}

.studio-photo-2 {
    left: 10%;
    top: 18%;
    transform: rotate(-8deg);
    z-index: 1;
    background-image: url("../img/214A2811.jpg");
}

.studio-photo-3 {
    right: 4%;
    bottom: 4%;
    transform: rotate(7deg);
    z-index: 2;
    background-image: url("../img/214A4905.JPG");
}

/* スマホ時：重ねず縦並びに */
@media (max-width: 720px) {

    /* ヘッダーは左右にロゴ＆ボタン */
    .header-inner {
        flex-direction: row;
        align-items: center;
    }

    /* ハンバーガーを表示 */
    .nav-toggle {
        display: block;
    }

    /* PC向けの横並びナビは一旦リセット */
    .global-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        border-bottom: 1px solid #dde0e6;
        display: flex;
        flex-direction: column;
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .global-nav a {
        margin: 10px 0;
    }

    /* 開いたとき */
    .global-nav.is-open {
        max-height: 280px;
        /* メニューの高さに合わせて調整 */
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .fair-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .flow-timeline {
        grid-template-columns: 1fr;
    }
    .studio-layout {
        grid-template-columns: 1fr;
    }

    .studio-photos {
        min-height: auto;
        padding-top: 8px;
    }

    .studio-photo {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0 auto 16px;
        transform: none !important;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        z-index: auto;
        box-shadow: 0 8px 18px rgba(0,0,0,0.16), 0 0 0 6px #fdfdfb;
    }
}

/* ===== FLOW ===== */
.block-flow {
    background: #ffffff;
}

.flow-timeline {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.flow-item {
    background: #fcfcfd;
    border-radius: 14px;
    padding: 18px 14px;
    border: 1px solid #dde0e6;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.flow-step {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: #6a707c;
    margin-bottom: 6px;
}

.flow-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.flow-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.block-faq {
    background: #f5f6f8;
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item + .faq-item {
    margin-top: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #dde0e6;
    background: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    margin-left: 8px;
    font-weight: 700;
    color: #4b4f59;
}

.faq-answer {
    display: none;
    padding: 10px 14px 12px;
    font-size: 0.9rem;
    background: #f8f8fa;
    border-radius: 0 0 10px 10px;
    border: 1px solid #dde0e6;
    border-top: none;
}
/* ===== RESERVE（予約導線） ===== */
.block-reserve {
    background: #ffffff;
    text-align: center;
}

.reserve-text {
    font-size: 0.96rem;
    margin-bottom: 12px;
    color: #555a63;
}

.reserve-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #dde0e6;
    padding: 20px 0 24px;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.footer-name {
    font-weight: 600;
    color: #4b4f59;
}

.footer-info {
    font-size: 0.9rem;
    margin: 4px 0 2px;
    color: #666b74;
}

.footer-copy {
    font-size: 0.8rem;
    color: #8a8f99;
}

/* ===== fadeup アニメーション ===== */
.fadeup {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fadeup.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .price-layout {
        grid-template-columns: 1fr;
    }

    .studio-layout {
        grid-template-columns: 1fr;
    }

    .flow-timeline {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .book {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 720px) {

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .global-nav {
        margin-top: 6px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .global-nav a {
        margin-left: 0;
        margin-right: 16px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .fair-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .flow-timeline {
        grid-template-columns: 1fr;
    }
}
/* === ご成約特典カード 背景画像バージョン === */
.benefit-card {
    position: relative;
    overflow: hidden;
}

/* 背景画像レイヤー */
.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1502741338009-cac2772e18bc?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    /* 背景を薄く */
    z-index: 0;
}

/* 白いカード部分（半透明に変更） */
.benefit-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(3px);
}

/* 番号や文字を前に出す */
.benefit-card * {
    position: relative;
    z-index: 1;
}
/* =========================================
   HERO SLIDER（既存CSSに追加）
========================================= */

.hero-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 26px;
    aspect-ratio: 16 / 6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    background: #000;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}
/* =========================================
   HERO SLIDER 全幅化（追記）
========================================= */

/* hero-book 自体は中央寄せのまま */
.hero-book {
    padding-left: 0;
    padding-right: 0;
}

/* スライドだけ画面いっぱいに広げる */
.hero-slider {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

/* 影は残すなら弱める */
.hero-slider {
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
/* =========================================
   ページ遷移ナビカード
========================================= */

.block-navcards {
    background: #ffffff;
}

.navcard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.navcard {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dde0e6;
    background: #fcfcfd;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.navcard-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

.navcard-body {
    padding: 12px 14px 14px;
    text-align: center;
}

.navcard-body h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #4b4f59;
}

.navcard-body p {
    margin: 0;
    font-size: 0.85rem;
    color: #6a707c;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .navcard-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 600px) {
    .navcard-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   ナビカード：中央寄せレイアウト
========================================= */

.navcard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    /* ここがポイント */
    max-width: 900px;
    /* 中央コンテンツ幅 */
    margin: 0 auto;
    /* ページ中央寄せ */
}

/* =========================================
   PRICE：横並び 正式対応
========================================= */

.price-layout {
    display: block;
    /* grid をやめる */
}

/* カードを横に並べる本体 */
.price-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

/* 各カード */
.price-main {
    width: 100%;
    max-width: none;
}

/* スマホ */
@media (max-width: 900px) {
    .price-cards {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   フォトスタジオ 外部リンク
========================================= */

.studio-link {
    margin-top: 18px;
}

/* =========================================
   ACCESS MAP（常時表示）
========================================= */

.block-access {
    background: #ffffff;
    text-align: center;
}

.access-map {
    max-width: 960px;
    margin: 20px auto 16px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.access-map iframe {
    width: 100%;
    height: 420px;
    border: none;
}

/* スマホ */
@media (max-width: 600px) {
    .access-map iframe {
        height: 300px;
    }
}

.access-buttons {
    margin-top: 12px;
}

/* =========================================
   ACCESS：Instagramボタン
========================================= */

.access-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-instagram {
    border-color: #e1306c;
    color: #e1306c;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    border-color: transparent;
}
/* =========================================
   Instagramボタン（アイコン）
========================================= */

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-color: #e1306c;
    color: #e1306c;
}

.ig-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 4px;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    border-color: transparent;
}

.studio-photo {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* ================================
   アルバム → 横並び展開
================================ */

.studio-photos:hover .studio-photo-1 {
    transform: translateX(-220px) rotate(0deg);
    z-index: 1;
}

.studio-photos:hover .studio-photo-2 {
    transform: translateX(320px) rotate(0deg);
    z-index: 2;
}

.studio-photos:hover .studio-photo-3 {
    transform: translateX(550px) rotate(0deg);
    z-index: 1;
}

/* hover時は少し浮かせる */
.studio-photos:hover .studio-photo {
    box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

/* ================================
   HERO スライド上テキスト
================================ */

/* ================================
   HERO スライドテキスト（2行・遅延フェード）
================================ */

.hero-slide-text {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-align: center;
    color: #ffffff;
    pointer-events: none;

    /* フェードイン用 */
    opacity: 0;
    transform: translateY(16px);
    animation: heroTextFade 1.2s ease-out forwards;
    animation-delay: 1.2s;
    /* ★ 遅らせる */
}

/* 1行目（メインコピー） */
.hero-line-main {
    font-family: 'Yuji Syuku', 'Noto Sans JP', serif;
    font-size: 2.3rem;
    letter-spacing: 0.18em;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* 2行目（サブコピー） */
.hero-line-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    opacity: 0.9;
}

/* フェードインアニメーション */
@keyframes heroTextFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スマホ調整 */
@media (max-width: 720px) {
    .hero-line-main {
        font-size: 1.5rem;
        letter-spacing: 0.12em;
        padding: 0 16px;
    }

    .hero-line-sub {
        font-size: 0.8rem;
        letter-spacing: 0.22em;
    }
}

/* =========================================
   撮影プラン 詳細ページ導線ボタン
========================================= */

.plan-detail-link {
  margin-top: 32px;
  text-align: center;
}

.btn-plan-detail {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;

  color: #ffffff;
  background: linear-gradient(90deg, #c77bbf, #e3a9d8);
  box-shadow: 0 10px 26px rgba(199,123,191,0.35);

  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-plan-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(199,123,191,0.45);
}

/* スマホ */
@media (max-width: 720px) {
  .btn-plan-detail {
    width: 100%;
    max-width: 320px;
  }
}
/* =========================================
   撮影プランカード（添付画像風）
========================================= */

.block-plan-cards {
  background: #ffffff;
}

.plan-card {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
}

.plan-card-image img {
  width: 100%;
  border-radius: 18px;
}

.plan-card-lead {
  font-size: .85rem;
  letter-spacing: .14em;
  color: #777;
  margin-bottom: 6px;
}

.plan-card-title {
  font-size: 1.7rem;
  margin: 0 0 14px;
}

.plan-card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: #f6e9f3;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.price-main {
  font-size: 2.2rem;
  font-weight: 700;
  color: #c77bbf;
}

.price-sub {
  font-size: .9rem;
  color: #666;
}

.plan-card-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.plan-card-icons li {
  text-align: center;
  font-size: .8rem;
  background: #f2f2f5;
  border-radius: 999px;
  padding: 8px 6px;
}

.plan-card-note {
  font-size: .85rem;
  color: #666;
}

/* スマホ */
@media (max-width: 720px) {
  .plan-card {
    grid-template-columns: 1fr;
  }

  .plan-card-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =========================================
   フッター余白リセット
========================================= */

.site-footer {
  margin-bottom: 0;
  padding-bottom: 12px;
}

body {
  padding-bottom: 0;
}


/* =========================================
   プランアイコン（ピクトグラム）
========================================= */

.plan-card-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: #f2f2f5;
  border-radius: 999px;
  font-size: .75rem;
  line-height: 1.3;
}

/* 共通アイコンベース */
.plan-card-icons li::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #b8a56a; /* 和・上品カラー */
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* =========================================
   【強制】価格の白抜き・箱・影を完全削除
========================================= */

/* 価格ブロック配下すべてを無背景に */
.plan-card-price,
.plan-card-price *,
.price-range,
.price-range *,
.price-main,
.price-main * {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* 擬似要素が原因の場合も潰す */
.plan-card-price::before,
.plan-card-price::after,
.price-range::before,
.price-range::after,
.price-main::before,
.price-main::after {
  content: none !important;
  display: none !important;
}

/* レイアウトだけ整える */
.plan-card-price {
  padding: 0 !important;
  margin: 0 0 14px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* 金額 */
.price-main {
  font-size: 2.1rem;
  font-weight: 700;
  color: #3f434d;
  letter-spacing: .02em;
}

/* 円・税込 */
.price-sub {
  font-size: .9rem;
  color: #6a707c;
}

/* =========================================
   撮影プラン一覧（横並び）
========================================= */

.price-plan-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
}

/* 1プラン */
.price-plan-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
}

/* 画像 */
.price-plan-image img {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* テキスト */
.price-plan-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-plan-title {
  font-size: 1.3rem;
  margin: 0;
  color: #3f434d;
}

/* ボタン */
.price-plan-button {
  display: inline-block;
  width: fit-content;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg,#595f6b,#8e94a1);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* ===== スマホでは縦に戻す ===== */
@media (max-width: 900px) {
  .price-plan-list {
    flex-direction: column;
    gap: 32px;
  }

  .price-plan-item {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .price-plan-button {
    margin: 0 auto;
  }
}

/* =========================================
   限定2着プラン
========================================= */

.plan-special {
  background: #f9f1f6;
  padding: 70px 16px;
}

.plan-special-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #3f434d;
}

/* 上段カード */
.plan-special-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.special-card {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  position: relative;
}

.special-card img {
  width: 100%;
  display: block;
}

.special-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  font-size: .9rem;
  letter-spacing: .2em;
}

.special-price {
  padding: 18px;
  text-align: center;
}

.special-text {
  margin: 0 0 6px;
  font-size: .95rem;
}

.special-amount {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.special-price span {
  font-size: .85rem;
  color: #666;
}

/* 色分け */
.special-card.green .special-price {
  background: #e7f6ef;
}

.special-card.pink .special-price {
  background: #fde7ef;
}

/* 下段計算 */
.plan-special-calc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.calc-item {
  border: 1px solid #d6c7d5;
  padding: 16px 22px;
  transform: rotate(45deg);
  text-align: center;
}

.calc-item p,
.calc-item strong {
  transform: rotate(-45deg);
  display: block;
}

.calc-item strong {
  font-size: 1.1rem;
}

.calc-item.total {
  background: #fff;
  border-color: #b28abf;
}

.calc-plus,
.calc-equal {
  font-size: 1.4rem;
  font-weight: bold;
}

/* スマホ */
@media (max-width: 768px) {
  .plan-special-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-special-calc {
    flex-direction: column;
  }

  .calc-plus,
  .calc-equal {
    transform: rotate(90deg);
  }
}

/* =========================================
   10大特典
========================================= */

/* =========================================
   10大特典（index.html 完全準拠）
========================================= */

.plan-benefits {
  background: #ffffff;
  padding: 90px 16px 80px;
}

/* タイトル */
.plan-benefits-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 56px;
  color: #3f434d;
  letter-spacing: .18em;
}

/* グリッド */
.plan-benefits-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 36px 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

/* 各アイテム */
.plan-benefits-list li {
  text-align: center;
  transition: transform .25s ease;
}

/* 丸アイコン（index.htmlと同配色） */
.benefit-icon {
  width: 88px;              /* ← 大きくした */
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #f3f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.14),
    inset 0 0 0 1px #d5d9e2;
}

/* SVG（index.htmlと同じ線色・太さ） */
.icon-svg {
  width: 40px;              /* ← SVGも拡大 */
  height: 40px;
  fill: none;
  stroke: #4b4f59;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* テキスト */
.plan-benefits-list p {
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
  color: #4b4f59;
  line-height: 1.4;
}

/* hover（indexと同じく控えめ） */
.plan-benefits-list li:hover {
  transform: translateY(-4px);
}

.plan-benefits-list li:hover .benefit-icon {
  box-shadow:
    0 12px 28px rgba(0,0,0,0.22),
    inset 0 0 0 1px #c9ced9;
}

/* タブレット */
@media (max-width: 900px) {
  .plan-benefits-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ */
@media (max-width: 600px) {
  .plan-benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .benefit-icon {
    width: 76px;
    height: 76px;
  }

  .icon-svg {
    width: 34px;
    height: 34px;
  }
}



/* 個別アイコン定義（SVG） */
.icon-camera::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3l1.5 2H15l1.5-2H19c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h4zm3 15a5 5 0 100-10 5 5 0 000 10z'/%3E%3C/svg%3E");
}

.icon-kimono::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2l6 3 6-3v20l-6-3-6 3V2z'/%3E%3C/svg%3E");
}

.icon-dressing::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2l5 5-5 5V2zm10 0v10l-5-5 5-5z'/%3E%3C/svg%3E");
}

.icon-hairmake::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 00-7 7v3h14V9a7 7 0 00-7-7z'/%3E%3C/svg%3E");
}

.icon-outing::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 11l9-9 9 9h-3v10h-4v-6H10v6H6V11H3z'/%3E%3C/svg%3E");
}

.icon-album::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 3h14a2 2 0 012 2v14a2 2 0 01-2 2H4V3zm2 2v14h12V5H6z'/%3E%3C/svg%3E");
}

/* =========================================
   HERO（シンプル版）※753用
========================================= */

.hero-simple {
  background: #f5f6f8;
  padding: 80px 16px 70px;
}

.hero-simple-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-simple .hero-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.hero-simple .hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: #555a63;
}

/* =========================================
   753 プラン表示（強制）
========================================= */

.price-plan-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
}

.price-plan-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
}

.price-plan-image img {
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

