/**
* くまピクLP用スタイル
* 2026-03-18
*/

:root {
    /* --- 1. 固定サイズ（本文系） --- */
    /* 本文は可読性重視のため、固定または極小の変化に留める */

    /* 14px */
    --font-size-s: 0.875rem;
    /* 16px */
    --font-size-base: 1rem;
    /* 16 - 18px */
    --font-size-l: clamp(1rem, 0.286vw + 0.911rem, 1.125rem);
    /* １８ｐｘ - 20px */
    --font-size-xl: clamp(1rem, 0.571vw + 0.821rem, 1.25rem);
    /* 20ｐｘ - 24px */
    --font-size-xxl: clamp(1.25rem, 0.571vw + 1.071rem, 1.5rem);

    /* --- 2. 流動サイズ（見出し系） --- */
    --font-size-hero: clamp(1.7rem, 1.5rem + 2vw, 3.5rem);
    --font-size-h2: clamp(1.5rem, 1rem + 2vw, 3rem);
    --font-size-h2-small: clamp(1rem, 1.143vw + 0.643rem, 1.5rem);
    --font-size-h3: clamp(1.3rem, 0.8rem + 1.5vw, 2.25rem);
    --font-size-h4: clamp(1.1rem, 0.7rem + 1vw, 1.5rem);

    /* 行高 */
    --line-height-header: 130%;
    /* 見出し用 */
    --line-height-paragraph-l: 170%;
    /* テキスト用 */
    --line-height-paragraph-m: 180%;
    /* テキスト用 */

    /* 2. スペース（Stack用） */
    --space-xs: 0.35rem;
    --space-s: 0.75rem;
    --space-m: 1rem;
    --space-l: clamp(1.5rem, 1.5rem + 2vw, 3rem);

    /* 3. カラー */
    --color-bg: #f3f9fd;
    --color-bg-lg: #f8f8f8;
    --color-bg-or: #fff3ee;
    --color-bg-1: #fffbef;
    --color-bg-1b: rgb(255 251 239 / 0.8);
    --color-key-1: #c47153;
    --color-key-2: #3b5e79;
    --color-key-2b: rgb(59 94 121 / 0.6);
    --color-key-3: #f8ca8a;
    --color-key-4: #fffbef;
    --color-key-5: #f0eae0;
    --color-key-6: #d6e4ef;
    --color-text: #505050;
    --color-wh: #fff;
    --color-bl: #000;
}

/* JSスクロール用着火マーカ（疑似終了マーカー） */
#jsctrl_end-marker {
    position: absolute;
    bottom: -100px;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

/* 不要なパーツ削除 */
.grecaptcha-badge,
.smpMenuArea,
.logoArea,
#global-styles-inline-css,
.footBanner,
#luxy > div.header,
div.footer,
section.wrap.footer {
    display: none !important;
    z-index: -1000000000;
}

/* ここまで */

html {
    font-size: 16px;
    background-color: var(--color-bg);
    scroll-behavior: smooth;
    scroll-padding-top: 100px;

    @media (width >=768) {
        scroll-padding-top: 72px;
    }
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
    color: var(--color-text);
}

* {
    box-sizing: border-box;
    text-decoration: none;
}

img {
    width: 100%;
}

.page-default {
    /* position: relative; */
}

/* ******************************************************
          レイアウト（Full-bleed Grid）
          */
.section {
    display: grid;
    /* --content-width 変数で幅を動的に切り替える */
    grid-template-columns: [full-start] minmax(1rem, 1fr) [content-start] min(100% - 2rem, var(--content-width, 1000px)) [content-end] minmax(1rem, 1fr) [full-end];
    padding-block: clamp(2.875rem, 7.143vw + 0.643rem, 6rem);

    &.inner {
        padding-block: 0;
    }

    &.--top-0 {
        padding-block: 0 clamp(2.875rem, 7.143vw + 0.643rem, 6rem);
    }

    &.--btm-0 {
        padding-block: clamp(2.875rem, 7.143vw + 0.643rem, 6rem) 0;
    }

    &.--narrow {
        padding-block: clamp(1rem, 1.143vw + 0.643rem, 1.5rem);
    }

    &.--pad-lr {
        padding-inline: 1rem;
    }
}

@media (width >=768px) {
    .sp {
        display: none;
    }
}

@media (width < 768px) {
    .pc {
        display: none;
    }
}

.section > * {
    grid-column: content;
}

.section-inline {
    max-width: var(--content-width);
    margin-inline: auto;
}

/* セクション幅のバリエーション */
.section--w-640 {
    --content-width: 640px;
}

.section--w-800 {
    --content-width: 800px;
}

.section--w-850 {
    --content-width: 850px;
}

.section--w-920 {
    --content-width: 920px;
}

.section--w-1000 {
    --content-width: 1000px;
}

.section--w-1200 {
    --content-width: 1200px;
}

/* --- 垂直方向のリズム（Stack） --- */
.stack-s > * + * {
    margin-block-start: var(--space-s);
}

.stack-m > * + * {
    margin-block-start: var(--space-m);
}

.stack-l > * + * {
    margin-block-start: var(--space-l);
}

/* --- センター揃え専用のスタック ---*/
.stack-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-m);

    &.--m {
        gap: var(--space-m);
    }

    &.--s {
        gap: var(--space-s);
    }

    &.--xs {
        gap: var(--space-xs);
    }
}

/* --- 内部レイアウト --- */
/* --- 共通のグリッド定義 --- */
.l-grid {
    display: grid;
    gap: clamp(1.25rem, 0.571vw + 1.071rem, 1.5rem);
    /* 画面幅に応じた流動的な溝 */
    align-items: center;

    /* スマホ（デフォルト）：1列スタック */
    grid-template-columns: 1fr;

    /* --- スマホでの並び順固定（テキスト→画像の順） --- */
    .l-grid__a {
        order: 1;
    }

    .l-grid__b {
        order: 2;
    }

    &.--50-50-line {
        .l-grid__a {
            order: 1;
        }

        .l-grid__b {
            order: 3;
        }

        .--border {
            width: 100%;
            /* 横いっぱいに広げる */
            height: 2px;
            grid-column: 1;
            background-color: #eee;
            /* 線の色 */
            order: 2;
        }
    }

    /* --- PCレイアウト (768px以上) --- */
    @media (width >=768px) {
        &.--max100 {
            width: 100%;
        }

        /* 50% : 50% 分割 */
        &.--50-50 {
            grid-template-columns: 1fr 1fr;
        }

        /* 50% : 50% 分割（ライン入り） */
        &.--50-50-line {
            grid-template-columns: 1fr 2px 1fr;
            align-items: stretch;

            .--border {
                height: unset;
                grid-column: 2;
                /* 常に2列目 */
                grid-row: 1;
                /* 1行目 */
                background-color: #eee;
                /* 線の色 */
                /* 上下を少し空けたい場合は margin-block を使う */
                margin-block: 1rem;
            }
        }

        /* 70% : 30% 分割 */
        &.--70-30 {
            grid-template-columns: 7fr 3fr;
        }

        /* 60% : 40% 分割 */
        &.--60-40 {
            grid-template-columns: 6fr 4fr;
        }

        /* PCで「画像・テキスト」の順に入れ替えるクラス */
        /* HTMLの順序は変えず、見た目だけ order で制御 */
        &.--reverse-pc .l-grid__a {
            order: 2;
        }

        &.--reverse-pc .l-grid__b {
            order: 1;
        }

        /* もし 70:30 で反転させる場合、列の比率も反転させる必要があるため注意 */
        &.--70-30.--reverse-pc {
            grid-template-columns: 3fr 7fr;
        }
    }
}

/* ******************************************************
          見出し・本文
          */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
    color: var(--color-key-2);
    font-weight: bold;

    &.--col-t {
        color: var(--color-text);
    }

    &.--w-4 {
        font-weight: 400;
    }

    &.--icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-m);

        &.--m {
            img {
                width: 74px;
            }
        }

        &.--s {
            img {
                width: 70px;
            }
        }
    }
}

.heading-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);

    &.--s-header {
        text-align: center;
        align-items: center;
    }

    & > small {
        font-size: var(--font-size-h2-small);
        font-weight: bold;
        color: var(--color-key-2);
        line-height: var(--line-height-header);
        /* order: -1;*/
    }

    & > img {
        width: clamp(5rem, 2.857vw + 5.357rem, 7.5rem);
    }

    &.flex-c {
        align-items: center;
    }
}

.heading-group:has(h1, .h1, h2, .h2) > small {
    font-size: var(--font-size-h4);
}

.heading-group:has(h3, .h3) > small {
    font-size: var(--font-size-l);
}

.heading-group:has(h4, .h4) > small {
    font-size: var(--font-size-m);
}

h1,
.hero {
    font-size: var(--font-size-hero);
    line-height: var(--line-height-header);
}

.hero {
    color: var(--color-key-1);

    .main {
        font-size: clamp(4rem, 5vw + 2rem, 5.75rem);
        font-family: ads-aozora, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .main-2 {
        font-size: clamp(2.5rem, 3.2vw + 1.5rem, 3.5rem);
        font-family: m-plus-1c, sans-serif;
        font-weight: 700;
        font-style: normal;
        letter-spacing: 0.5rem;
    }

    .sub {
        font-size: clamp(1.25rem, 0.8vw + 1rem, 1.5rem);
        font-family: m-plus-1c, sans-serif;
        font-weight: 700;
        font-style: normal;
        color: var(--color-key-2);
    }
}

h2,
.h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-header);
}

.section header h2:not(.noicon):before {
    display: none;
}

h3,
.h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
}

h4,
.h4 {
    font-size: var(--font-size-h4);
    line-height: var(--line-height-header);
}

p,
.text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-paragraph-m);
}

p + p {
    margin-block-start: var(--space-s);
}

/* テキストサイズ設定 */
.text-xxl {
    font-size: var(--font-size-xxl);
    line-height: var(--line-height-paragraph-l);
}

.text-xl {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-paragraph-l);
}

.text-l {
    font-size: var(--font-size-l);
    line-height: var(--line-height-paragraph-l);
}

.text-s {
    font-size: var(--font-size-s);
}

.text-ali-c {
    text-align: center;
}

.text-ali-l {
    text-align: left;
}

.text-ali-r {
    text-align: right;
}

.font-w6 {
    font-weight: 600;
}

/* 特殊デザイン */
.heading_box-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    height: clamp(3.375rem, 1.429vw + 2.929rem, 4rem);
    padding-inline: 3rem;
    border-radius: 100px;
    background: var(--color-key-2);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-wh);
}

/* ******************************************************
          画像
          */
img.round {
    border-radius: 2rem;
}

/*
          ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
          Photobase
          ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
          */

.page-default {
    position: relative;
}

/* ******************************************************
          セクション/レイアウト
           */

/* --- セクション −−− */
.section {
    &.--bg {
        background-repeat: no-repeat;
        background-size: contain;
    }

    &.--bg-c-white {
        background-color: var(--color-wh);
    }

    &.--bg-c-brown {
        background-color: var(--color-key-6);
    }

    &.--bg-c-brown-to-0 {
        background-image: linear-gradient(var(--color-key-6), var(--color-bg));
    }

    &.--bg-c-wh-to--brown {
        background-image: linear-gradient(var(--color-wh), var(--color-key-6));
    }

    &.--bg-img-top {
        background-position: top center;
    }

    &.--bg-img-btm {
        background-position: bottom center;
    }

    &.--bg-img-wave-bgcol-t {
        background-image: url(https://photobase.me/wordpress/wp-content/uploads/2026/03/pb__kuma26_sec-6-0.webp);
    }

    &.--bg-img-wave-wh-t {
        background-image: url(https://photobase.me/wordpress/wp-content/uploads/2026/02/pb__pan26_sec-3-0.webp);
    }

    &.--bg-img-wave-wh-b {
        background-image: url(https://photobase.me/wordpress/wp-content/uploads/2026/02/pb__pan26_sec-1-0.webp);
    }

    &.--bg-img-cta {
        background: url("https://photobase.me/wordpress/wp-content/uploads/2026/03/pb__kuma26_BASE_stripe_1617.webp") no-repeat center center;
        background-size: cover;
        background-color: var(--color-bg);
    }

    &.--round-btm {
        border-radius: 0 0 clamp(3rem, 16vw - 2rem, 10rem) clamp(3rem, 16vw - 2rem, 10rem);
    }
}

/* --- カードコンポーネント --- */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
    gap: 1.5rem;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.card-grid-3 .card,
.card-grid-2 .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-inline: 1.125rem;
    padding-block: 1.5rem;
    text-align: center;
    background: var(--color-wh);
    border-radius: 3.5rem;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.03);
}

/* ******************************************************
          ロゴ
           */
.lp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    top: 0;
    z-index: 200;
    height: 4rem;
    padding-inline: 1rem;
    background-color: var(--color-bg);
    transition: 0.2s;

    .logo img {
        max-width: 180px;
    }

    .humbergerBlock {
        position: absolute;
        right: 1rem;
    }

    @media (width >768px) {
        transform: translateY(0);
        z-index: 18;

        &.is-hidden {
            transform: translateY(-150%);
        }
    }
    @media (width <=768px) {
        position: sticky;
    }
}

/* ******************************************************
          メニュー
          */
/* --- PC --- */
.pc-nav {
    margin-top: -2.25rem;
    padding-block: 0rem;
    position: sticky;
    top: 16px;
    z-index: 30;

    transition: 0.2s;

    * {
        transition: 0.2s;
        line-height: 1;
    }

    ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding-inline: clamp(1.25rem, 2.4vw + 0.5rem, 2rem) clamp(0.5rem, 1.852vw - 0.389rem, 1rem);
        padding-block: clamp(0.5rem, 1.852vw - 0.389rem, 1rem);
        list-style: none;
        overflow: hidden;
        background-color: var(--color-key-2);
        border-radius: 100px;
    }

    a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-wh);
        font-size: clamp(0.75rem, 0.926vw + 0.306rem, 1rem);
        font-weight: 700;
        border-radius: 100px;
        word-break: keep-all;

        &.--btn {
            padding-inline: 1rem;
            padding-block: 0.75rem;
            background-color: var(--color-key-1);
        }

        &:hover {
            color: var(--color-key-1);

            &.--btn {
                color: var(--color-wh);
                background-color: var(--color-text);
            }
        }
    }

    &:has(.is-active) {
        ul {
            background-color: var(--color-wh);
            box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
        }

        a:not(.--btn) {
            color: var(--color-key-2);
        }
    }

    #scr-logo {
        margin-inline-start: clamp(-3.25rem, -3.704vw - 0.472rem, -2.25rem);
        width: 0;
        opacity: 0;

        &.is-active {
            margin-inline-start: 0;
            width: 100px;
            opacity: 1;
        }
    }
}

/* --- SP --- */
/* ボタン */
.smtmenu {
    position: absolute;
    right: 1rem;
    z-index: 100;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    /* background-color: var(--color-key-2); */
    background-color: var(--color-key-2b);
    border: 0 none;
    transition: 0.2s;
    transform: translatex(150%);

    @media (width <=768px) {
        transform: translatex(0);
    }

    &:before,
    &:after {
        content: "";
        width: 17px;
        height: 2px;
        background-color: var(--color-wh);
        border-radius: 100px;
        transition: 0.2s;
    }

    @media (width < 1173px) {
        display: flex;
    }

    &.on {
        background-color: var(--color-wh);

        &:before,
        &:after {
            background-color: var(--color-key-2);
        }

        &:before {
            transform: rotate(45deg) translateY(3px) translateX(2px);

            @starting-style {
                transform: rotate(0deg) translateY(0);
            }
        }

        &:after {
            transform: rotate(-45deg) translateY(-2px) translateX(1px);

            @starting-style {
                transform: rotate(0deg) translateY(0);
            }
        }
    }
}

/* メニュー */
.h-nav {
    display: none;
    align-items: space-between;
    justify-content: center;
    flex-direction: column;
    background-color: var(--color-key-2b);
    align-items: center;
    gap: 2.5rem;
    padding: 1rem;
    backdrop-filter: blur(100px);
    transition: opacity 0.2s allow-discrete;
    opacity: 0;

    &.on {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100lvw;
        height: 100lvh;
        opacity: 1;
        transition: opacity 0.2s;

        @starting-style {
            opacity: 0;
        }
    }

    .sectionlink {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        font-size: var(--font-size-l);

        a {
            color: var(--color-wh);
        }
    }
}

/* ******************************************************
          ヒーロー
           */
.hero-section {
    display: grid;
    /* 4列構造：[左余白] [左コンテンツ] [右コンテンツ] [右余白] */
    gap: clamp(1rem, 5.714vw - 0.786rem, 3.5rem);
    grid-template-columns:
        [full-start] minmax(1rem, 1fr) [content-start] min(50%, 500px)
        /* コンテナ幅1000pxの半分 */
        [content-mid] min(50%, 500px) [content-end] minmax(1rem, 1fr) [full-end];

    padding-block: 0;
    /* ヒーローは高さを固定したりするため個別に制御 */
    min-height: clamp(31.25rem, 25.463vw + 19.028rem, 38.125rem);
    align-items: center;
    overflow: hidden;
    /* 画像がはみ出るのを防ぐ */
    background: url("https://www.labonetwork.co.jp/wp-content/uploads/pb__kuma26_BASE_stripe_1617.webp") no-repeat center center;
    background-size: cover;
    background-color: var(--color-wh);
}

.hero-content {
    text-align: center;
    justify-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.heading-group.hero {
    position: relative;

    &::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        display: block;
        top: -2rem;
        bottom: unset;
        left: clamp(-70px, 6vw - 100px, -40px);
        right: unset;
        width: clamp(10rem, 1.429vw + 9.554rem, 10.625rem);
        aspect-ratio: 342/288;
        background-image: url("https://www.labonetwork.co.jp/wp-content/uploads/pb__kuma26_fv-2-1.webp");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    &::after {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        display: block;
        top: unset;
        bottom: -2rem;
        left: unset;
        right: clamp(-1.875rem, 3.571vw - 2.991rem, -0.312rem);
        /* width: clamp(5.625rem, 2.857vw + 4.732rem, 6.875rem); */
        width: clamp(4.375rem, 2vw + 3.75rem, 5rem);
        aspect-ratio: 137/149;
        background-image: url("https://www.labonetwork.co.jp/wp-content/uploads/pb__kuma26_fv-2-2.webp");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

/* --- SPレイアウト (デフォルト) --- */
@media (width < 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        padding-inline: 1rem;
        padding-block: 4rem 1.5rem;
        text-align: center;
    }

    .hero-visual {
        order: 2;
        /* テキストの下に配置 */
        margin-block-start: 2rem;
        width: 100%;

        img {
            width: 100%;
        }
    }
}

/* --- PC・タブレットレイアウト --- */
@media (width >=768px) {
    .hero-content {
        grid-column: content-start / content-mid;
        /* 左のコンテナ内に収まる */
        padding-block: 4rem;
    }

    .hero-visual {
        grid-column: content-mid / full-end;
        /* 中央から右端まで突き抜ける */
        grid-row: 1;
        /* テキストと同じ行に配置 */
        height: 100%;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .hero-visual img {
        width: 100%;
        height: 100%;
        max-height: 600px;
        object-fit: contain;
        /* 枠いっぱいに広げて成り行きで切る */
        object-position: left center;
        /* 左側（テキスト寄り）を優先して見せる */
    }
}

/* --- PC・タブレットレイアウト --- */
@media (1100px <=width <=1920px) {
    .hero-visual {
        /* 右端に固定、または流動的な余白を作る */
        padding-inline-end: clamp(-0.312rem, 1.16vw - 0.392rem, 1rem);
    }
}

/* --- 撮影会LP - スタジオ名など --- */
.studioinfo-kv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0rem;
    text-align: center;
    font-weight: 600;
    color: var(--color-key-2);

    & > .text-xl {
        line-height: 1.4;
    }
}

/* ******************************************************
          CTA
           */
.section.cta {
    padding-inline: 1rem;
}

.cta-catch {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 1.5rem; */

    &::before,
    &::after {
        content: "";
        display: inline-flex;
        width: 3px;
        height: 54px;
        background: var(--color-key-2);
        border-radius: 100px;
    }

    &::before {
        transform: rotate(145deg);
        margin-inline-end: 1.5rem;
    }

    &::after {
        transform: rotate(-145deg);
        margin-inline-start: 1.5rem;
    }
}

.cta-illust {
    max-width: 460px;
}

/* --- 下部固定cta --- */
#floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem 1.2rem;
    margin: auto;
    border-radius: 40px 40px 0 0;
    background: var(--color-bg-1b);
    text-align: center;
    transition: transform 0.4s ease-out;
    transform: translateY(150%);
    z-index: 18;

    &.is-active {
        @media (width <=768px) {
            transform: translateY(0);
        }
    }
}

/* --- CTAボタン--- */

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--color-key-1);
    color: var(--color-wh);
    border-radius: clamp(0.5rem, 2vw, 1rem);

    &.--bg-or {
        background-color: var(--color-key-1);
    }

    &.--inline {
        width: fit-content;
    }

    &.--small {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.45rem;
        padding-inline: 48px;
        padding-block: 18px;
        border-radius: 0.75rem;
    }

    &.--large {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: clamp(23.75rem, 3.75vw + 22.813rem, 25.625rem);

        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.45rem;
        padding-inline: 18px;
        padding-block: 18px;
        border-radius: 0.75rem;
    }

    &.--sticky {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: clamp(23.75rem, 3.75vw + 22.813rem, 25.625rem);
    }

    .kikaku {
        display: flex;
        align-items: center;
        justify-content: center;

        .l {
            font-size: clamp(1.375rem, 0.286vw + 1.286rem, 1.5rem);
            font-family: ads-aozora, sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .r {
            font-size: clamp(1rem, 0.286vw + 0.911rem, 1.125rem);
            font-family: m-plus-1c, sans-serif;
            font-weight: 700;
            font-style: normal;
            letter-spacing: 0.5rem;
        }
    }

    .main {
        font-size: clamp(1.75rem, 0.571vw + 1.571rem, 2rem);
        font-family: m-plus-1c, sans-serif;
        font-weight: 700;
        font-style: normal;
        letter-spacing: 0.5rem;
    }

    &.--sticky {
        padding-inline: 24px;
        padding-block: 8px;
        border-radius: 10rem;
        flex-wrap: wrap;
        width: 100%;
        max-width: 500px;

        .kikaku {
            .l {
                font-size: clamp(1.375rem, 0.286vw + 1.286rem, 1.5rem);
            }

            .r {
                font-size: clamp(1rem, 0.286vw + 0.911rem, 1.125rem);
                letter-spacing: 0.1rem;
            }
        }

        .main {
            font-size: clamp(1rem, 0.286vw + 0.911rem, 1.125rem);
            letter-spacing: 0.1rem;
        }
    }
}

/* ******************************************************
          フォトブックめくりのやつ
          */

/* --- flipbox --- */
#flipbox-wrapper {
    position: relative;
    margin-inline: auto;
    padding-inline: 1rem;
    width: 95%;
    /* 画面に対する基本幅 */
    max-width: 1000px;
    /* ★好みに合わせて調整してください */
}

/* ページめくりを邪魔しないクリック判定 */
.click-area {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 100;
    cursor: pointer;
}

#prev-area {
    left: 0;
}

#next-area {
    right: 0;
}

#flipbook {
    margin: 0 auto;

    .shadow {
        overflow: visible !important;
        z-index: 100 !important;
        position: relative;
        box-shadow:
            5px 5px 8px rgba(0, 0, 0, 0.1),
            2px 2px 4px rgba(0, 0, 0, 0.1);

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            display: block;
            top: clamp(-30px, -5vw + 20px, -5px);
            bottom: unset;
            left: unset;
            right: clamp(-30px, -5vw + 20px, -5px);
            width: clamp(50px, 10svw, 120px);
            aspect-ratio: 160/94;
            background-image: url("https://photobase.me/wordpress/wp-content/uploads/2026/03/pb__kuma26_sec-2-1.webp");
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

        &::after {
            content: "";
            position: absolute;
            inset: 0;
            display: block;
            bottom: clamp(-40px, -4vw, -20px);
            top: unset;
            right: unset;
            left: clamp(-40px, -4vw, -20px);
            width: clamp(5rem, 6vw + 3.125rem, 6.875rem);
            aspect-ratio: 180/188;
            background-image: url("https://photobase.me/wordpress/wp-content/uploads/2026/03/pb__kuma26_sec-2-2.webp");
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }
    }

    /* ページ内の画像設定 */
    .page-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* 画像を歪ませずに収める */
        display: block;
    }
}

/* ******************************************************
          小さいパーツ
          */

/* --- 箱のデザイン --- */

.round-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: var(--content-width);
    margin-inline: auto;
    border-radius: clamp(3rem, 1.143vw + 2.643rem, 3.5rem);

    &.--dir-row {
        flex-direction: row;
    }

    &.--dir-row_sp-col {
        @media (width > 768px) {
            flex-direction: row;
        }
    }

    &.--l {
        padding-block: clamp(3rem, 1.143vw + 2.643rem, 3.5rem);
        padding-inline: clamp(1rem, 2.857vw + 0.107rem, 2.25rem);
    }

    &.--m {
        padding: clamp(1rem, 2.857vw + 0.107rem, 2.25rem);
    }

    &.--gap-s {
        gap: var(--space-s);
    }

    &.--gap-m {
        gap: var(--space-m);
    }

    &.--bg-c-white {
        background: var(--color-wh);
    }

    &.--bg-c-brown {
        background: var(--color-key-6);
    }

    &.--l .heading_box-1 {
        margin-block-start: clamp(-5.5rem, -1.857vw - 4.107rem, -4.687rem);
    }

    &.--l.--first:has(.heading_box-1) {
        margin-block-start: clamp(3.5rem, 3.429vw + 2.429rem, 5rem);
    }

    &.--m .heading_box-2 {
        width: clamp(5rem, 5.714vw + 3.214rem, 7.5rem);
        margin-block-start: clamp(-5.5rem, -5.714vw - 1.214rem, -3rem);

        img {
            width: 100%;
        }
    }

    &.--m:has(.heading_box-2) {
        margin-block-start: clamp(3.5rem, 3.429vw + 2.429rem, 5rem);
    }

    &.--m.--first:has(.heading_box-2) {
        margin-block-start: clamp(3.5rem, 3.429vw + 2.429rem, 5rem);
    }
}

/* --- ピルデザイン ---*/
.round-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 100px;
    padding-inline: clamp(1.25rem, 0.571vw + 1.071rem, 1.5rem);
    padding-block: 0.5rem;
    line-height: 100%;

    &.--size-s {
        padding-inline: clamp(0.25rem, 2.4vw - 0.5rem, 1rem);
        padding-block: clamp(0.188rem, 0.6vw, 0.375rem);
    }

    &.--c-light {
        background-color: var(--color-key-4);
    }

    &.--c-dark {
        background-color: var(--color-text);
        color: var(--color-wh);
    }

    &.--c-orange-1 {
        background-color: var(--color-key-3);
        color: var(--color-wh);
    }

    &.--c-wh {
        background-color: var(--color-wh);
        color: var(--color-key-2);
    }
}

/* --- 価格 ---*/
.price {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;

    small {
        font-size: 0.75rem;
    }
}

/* --- プラン内容 --- */
.plan-include {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 100px;
    font-size: var(--font-size-l);
    font-weight: 600;
    border: 2px solid var(--color-key-2);

    & > * {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 26px;
    }

    .title {
        background: var(--color-key-2);
        box-shadow: 0 0 0 1px var(--color-key-2);
        color: var(--color-wh);
        border-radius: 100px;
        padding-inline: 1.125rem;
        padding-block: 0.5rem;
    }

    .content {
        padding-inline: 1.25rem;
        padding-block: 0.5rem;

        @media (width < 768px) {
            padding-block: 1rem;
        }
    }

    &.--c-a {
        border-color: var(--color-key-1);

        .title {
            background: var(--color-key-1);
            box-shadow: 0 0 0 1px var(--color-key-1);
        }
    }

    @media (width < 768px) {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;

        & > * {
            flex-direction: column;
            width: 100%;
        }
    }
}

/* ******************************************************
          ギャラリー
          */
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    /* スマホは1列 */
}

.gallery-main {
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

/* 全ての画像に 3:2 を適用 */
.gallery-main img,
.gallery-side img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    /* 3:2 で固定 */
    object-fit: cover;
    /* 比率が異なる元画像でも枠内に収める */
}

.gallery-side img {
    border-radius: 1rem;
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 常に2列 */
    grid-template-rows: 1fr 1fr;
    /* 常に2行 */
    gap: inherit;
    /* 親の 1rem を継承 */
}

/* --- PCレイアウト (768px以上) --- */
@media (min-width: 768px) {
    .gallery-grid {
        /* 重要：左(2) : 右(1) の比率にすると、
       左の大きな画像1枚と右の2x2の高さがピタリと揃います */
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* ******************************************************
          開催概要・ご予約
           */
.event {
    border-top: 1px solid var(--color-text);

    .-unit {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding-block: clamp(1.25rem, -0.8vw + 1.75rem, 1.5rem);
        padding-inline: 0.8rem;
        border-bottom: 1px solid var(--color-text);

        @media (max-width: 768px) {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        dt {
            flex-shrink: 0;
            width: 100%;
            max-width: 152px;
            font-size: clamp(1.25rem, 0.8vw + 1rem, 1.5rem);
            font-weight: 600;
            line-height: 1.4;

            @media (width < 768px) {
                text-align: center;
            }
        }

        dd {
            width: 100%;
            line-height: 1.4;

            @media (width < 768px) {
                text-align: center;
            }
        }

        .equip {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 1rem;

            @media (width < 768px) {
                justify-content: center;
            }

            figure {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 0.3rem;
                max-width: 55px;
                text-align: center;
                opacity: 0.2;

                &.ok {
                    opacity: 1;
                }
            }

            figcaption {
                font-size: 8px;
            }
        }
    }
}

/* ******************************************************
          よくある質問
          */

.faq {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;

    .-unit {
        width: 100%;
        position: relative;
    }

    .-head {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: clamp(2.5rem, 1.429vw + 2.054rem, 3.125rem);
        aspect-ratio: 1/1;
        font-size: var(--font-size-xxl);
        border-radius: 100px;
    }

    .-body {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        width: 100%;
        background-color: var(--White);
    }

    dt {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        position: relative;
        padding: 1rem;
        border-radius: 2rem;
        background-color: var(--color-key-6);
        font-size: var(--font-size-xxl);
        z-index: 2;
        width: 100%;

        .-head {
            background-color: var(--color-key-1);
            color: var(--color-wh);
        }

        .-body {
            line-height: var(--line-height-paragraph-l);
            padding-inline-end: 2rem;

            &:after {
                content: "";
                width: 8px;
                height: 8px;
                position: absolute;
                right: 0.75rem;
                border-right: 2px solid #000;
                border-bottom: 2px solid #000;
                transform: rotate(45deg);
                transition: transform 0.3s;
            }
        }

        &.on {
            .-body {
                &:after {
                    transform: rotate(-135deg);
                }
            }
        }
    }

    dd {
        display: none;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        position: relative;
        z-index: 1;
        opacity: 0;
        width: 100%;
        margin: -50px 0 0;
        transform: scaleY(0);
        padding: 1rem;
        border-radius: 2rem;
        background-color: var(--color-wh);
        font-size: var(--font-size-m);
        line-height: var(--line-height-paragraph-m);
        overflow: hidden;
        transition:
            opacity 0.2s,
            margin-top 0.3s,
            display 0.3s allow-discrete;

        .-head {
            background-color: var(--color-key-3);
            color: var(--color-key-1);

            &::before {
                width: 44px;
                height: 44px;
                border-radius: 100px;
                background-color: var(--Black);
                z-index: 0;
            }

            /* &::after {
                content: "A";
                position: absolute;
                z-index: 2;
                line-height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                width: clamp(2.5rem, 1.429vw + 2.054rem, 3.125rem);
                aspect-ratio: 1/1;
                background-color: var(--color-key-1);
                font-size: var(--font-size-xxl);
                color: var(--color-wh);
                border-radius: 100px;
              } */
        }

        &.on {
            display: flex;
            transform: scaleY(1);
            margin-top: 0px !important;
            opacity: 1;
            transition:
                opacity 0.2s,
                margin-top 0.3s;

            @starting-style {
                margin-top: -80px;
                opacity: 0;
            }
        }
    }
}

/* ******************************************************
          撮影会LP - プラン選択
           */
.reserv-plan {
    &:not(:first-of-type) {
        margin-block-start: 2rem;
    }

    @media (width < 768px) {
        gap: 1.5rem;
    }

    .badge {
        flex-shrink: 0;
        width: clamp(5rem, 8vw + 2.5rem, 7.5rem);

        &.--l {
            max-width: 120px;
        }
    }

    .-txt {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
        width: 100%;

        @media (width < 768px) {
            align-items: center;
            justify-content: center;
        }
    }

    .round-pill {
        gap: 1rem;
        flex-shrink: 0;
        height: 64px;
        padding-inline: 1.5rem;
        margin-left: auto;
        background: var(--color-text);
        color: var(--color-wh);
        text-decoration: none;
        font-size: clamp(1.25rem, 0.8vw + 1rem, 1.5rem);

        @media (width < 768px) {
            margin-left: unset;
        }

        &:after {
            content: "";
            width: 14px;
            height: 14px;
            border-right: solid 3px var(--color-wh);
            border-top: solid 3px var(--color-wh);
            border-radius: 2px;
            transform: rotate(45deg);
        }

        &.--a {
            background: var(--color-key-1);
        }
    }

    .h3 {
        color: var(--color-key-1);
    }

    .h4 {
        color: var(--color-text);
    }
}

.reserv-plan-include {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;

    .-unit {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
        padding: 0;

        dt {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 100%;
            max-width: 120px;
            padding-block: 0.5rem;
            font-size: var(--font-size-l);
            font-weight: 600;
            line-height: 1;
            text-align: center;
            background-color: var(--color-text);
            color: var(--color-wh);
        }

        dd {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            font-size: var(--font-size-l);
            font-weight: 600;
            line-height: 1.4;
        }

        small {
            font-size: 0.6rem;
        }

        .equip {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 1rem;

            figure {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 0.3rem;
                max-width: 55px;
                text-align: center;
                opacity: 0.2;

                &.ok {
                    opacity: 1;
                }
            }

            figcaption {
                font-size: 8px;
            }
        }
    }
}

/* ******************************************************
          footer
           */
footer.lp-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 1rem;
    background-color: var(--color-key-2);

    .ft-logo {
        width: 300px;

        img {
            width: 100%;
        }
    }

    .ft-misc {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: clamp(1rem, 2.857vw + 0.107rem, 2.25rem);
        width: 100%;

        @media (width <=768px) {
            flex-direction: column;
        }
    }

    .ft-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(1rem, 2.857vw + 0.107rem, 2.25rem);
    }

    a {
        text-decoration: underline;

        &:hover {
            color: var(--color-key-1);
        }
    }

    a,
    .ft-copy {
        color: var(--color-wh);
    }
}
