@charset "UTF-8";

/* ==========================================================================
   Foundation (変数・ベース設定)
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --designwidth: 1440;
    --base: #FEF6EC;
    --bk: #2F2D2C;
    --gray: #D9D9D9;
    --theme-orange: #FE7B41;
    --theme-beige: #FEF6EC;
    --pure-white: #FFFFFF;
    --white: #FEF7ED;

    --jp-font: "YakuHanJP", "Noto Sans JP", sans-serif;
    --en-font: "Roboto", sans-serif;
}

body {
    font-family: var(--jp-font);
    color: var(--bk);
    background-color: var(--base);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Layout (レイアウト)
   ========================================================================== */
/* モバイルファースト：基本は縦積み */
.l-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.l-sidebar {
    display: none;
    width: 100%;
    padding: 40px 20px;
}

.l-main {
    width: 100%;
    position: relative;
    background-color: var(--pure-white);
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* 共通のコンテンツインナー（コンテナ） */
.l-container {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .l-container {
        width: calc(350 / 380 * 100%);
    }
}

/* PC（1024px以上）での3カラム・左右固定レイアウト */
@media (min-width: 1024px) {
    .l-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        min-height: 100vh;
    }

    .l-sidebar {
        display: block;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        z-index: 10;
        padding: 40px 20px;
    }

    .l-sidebar--left {
        flex: 0 0 calc(530 / var(--designwidth) * 100%);
        background-color: var(--theme-beige);
        padding: 40px 0;
        height: 100vh;
        overflow: hidden;
        box-shadow: inset 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
    }

    .l-main {
        flex: 0 0 calc(380 / var(--designwidth) * 100%);
        min-height: 100vh;
        z-index: 1;
        margin: 0;
        min-width: 0;
    }

    .l-sidebar--right {
        flex: 0 0 calc(530 / var(--designwidth) * 100%);
        background-color: var(--theme-beige);
        box-shadow: inset 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
    }
}

/* ==========================================================================
   Component (共通パーツ)
   ========================================================================== */
.c-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.c-btn:hover {
    opacity: 0.8;
}

.c-btn--primary {
    background-color: var(--theme-orange);
    color: var(--pure-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Loading (羊のモコモコ背景アニメーションを追加)
   ========================================================================== */
body.is-loading {
    overflow: hidden;
}

.p-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--theme-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.p-loader__logo {
    width: 350px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* ▼ 追加：モコモコ背景より手前に表示させる */
    position: relative;
    z-index: 2;
}


@media (max-width: 1023px) {
    .p-loader__logo {
        width: 250px;
    }
}

.p-loader__logo img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}


/* ----------------------------------
   羊のモコモコ（ウール・雲）背景：ポップ＆くっきり版（雲増量）
   ---------------------------------- */
.p-loader__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* ロゴより後ろ */
}

/* モコモコの土台（横長の角丸） */
.p-loader__wool {
    position: absolute;
    width: 140px;
    height: 50px;
    background-color: var(--pure-white);
    border-radius: 50px;
    opacity: 0.9;
    /* 全て画面の左外側からスタートさせる */
    left: -200px;
    animation: drift-wool linear infinite;
}

/* モコモコの上の膨らみ 1 (左側) */
.p-loader__wool::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--pure-white);
    border-radius: 50%;
    top: -30px;
    left: 20px;
}

/* モコモコの上の膨らみ 2 (右側) */
.p-loader__wool::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--pure-white);
    border-radius: 50%;
    top: -15px;
    right: 25px;
}

.p-loader__wool--1 {
    top: 5%;
    --scale: 1.2;
    animation-duration: 25s;
    animation-delay: -2s;
}

/* 進行度 約8% (左端・上) */
.p-loader__wool--2 {
    top: 15%;
    --scale: 0.8;
    animation-duration: 35s;
    animation-delay: -30s;
}

/* 進行度 約85% (右端・上) */
.p-loader__wool--3 {
    top: 25%;
    --scale: 1.5;
    animation-duration: 28s;
    animation-delay: -12s;
}

/* 進行度 約42% (中央・上) */
.p-loader__wool--4 {
    top: 35%;
    --scale: 0.9;
    animation-duration: 32s;
    animation-delay: -22s;
}

/* 進行度 約68% (右寄り・上) */
.p-loader__wool--5 {
    top: 45%;
    --scale: 1.1;
    animation-duration: 24s;
    animation-delay: -6s;
}

/* 進行度 約25% (左寄り・中央) */
.p-loader__wool--6 {
    top: 55%;
    --scale: 0.7;
    animation-duration: 38s;
    animation-delay: -35s;
}

/* 進行度 約92% (右端・中央) */
.p-loader__wool--7 {
    top: 65%;
    --scale: 1.3;
    animation-duration: 30s;
    animation-delay: -16s;
}

/* 進行度 約53% (中央・下) */
.p-loader__wool--8 {
    top: 75%;
    --scale: 0.6;
    animation-duration: 22s;
    animation-delay: -1s;
}

/* 進行度 約4% (左端・下) */
.p-loader__wool--9 {
    top: 85%;
    --scale: 1.4;
    animation-duration: 36s;
    animation-delay: -28s;
}

/* 進行度 約77% (右寄り・下) */
.p-loader__wool--10 {
    top: 90%;
    --scale: 1.0;
    animation-duration: 26s;
    animation-delay: -8s;
}

/* 進行度 約30% (左寄り・下) */

/* 左から右へゆったり流れるキーフレーム（ここは変更なし） */
@keyframes drift-wool {
    0% {
        transform: translateX(0) scale(var(--scale, 1));
    }

    100% {
        transform: translateX(calc(100vw + 400px)) scale(var(--scale, 1));
    }
}

/* ==========================================================================
   Header & Drawer (ヘッダーとメニュー)
   ========================================================================== */
.l-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background-color: var(--theme-orange);
    z-index: 100;
}

.p-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-header__logo-area {
    display: flex;
    align-items: center;
}

.p-header__logo {
    width: 200px;
    height: auto;
}

.p-header__hamburger {
    width: 32px;
    height: 20px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 0;
}

.p-header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--pure-white);
    transition: all 0.3s ease;
}

.p-header__hamburger span:nth-child(1) {
    top: 0;
}

.p-header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.p-header__hamburger span:nth-child(3) {
    bottom: 0;
}

.p-header__hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.p-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.p-header__hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.p-drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--theme-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 105;
}

.p-drawer.is-active {
    opacity: 0.95;
    visibility: visible;
}

.p-drawer__list {
    text-align: center;
}

.p-drawer__list li {
    margin-bottom: 24px;
}

.p-drawer__list a {
    color: var(--pure-white);
    font-size: 2rem;
    font-family: var(--en-font);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.p-drawer__list a:hover {
    opacity: 0.7;
}

@media (max-width: 1023px) {
    .p-header__logo {
        width: 200px;
    }
}

/* ==========================================================================
   Project (固有スタイル)
   ========================================================================== */

/* 左サイドバー：WEARING IMAGE (GIFアニメーション + テキスト画像) */
.p-sidebar-left__inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.p-sidebar-left__gif {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.p-sidebar-left__gif img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: bottom;
}

.p-sidebar-left__img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.p-sidebar-left__img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.p-kv {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-grow: 1;
    height: calc(100vh - 65px);
    height: calc(100dvh - 65px);
    min-height: 500px;
    background-color: var(--theme-orange);
}

.p-kv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* ...（.p-kv__bg::after や .p-kv__bg-track は変更なしのためそのまま残してください）... */
.p-kv__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: soft-light;
}

.p-kv__bg-track {
    display: flex;
    height: 100%;
    width: max-content;
}

.p-kv__bg-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    pointer-events: none;
    filter: contrast(0.85) brightness(0.95);
}

.p-kv__content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    transform: translateY(-12px);
}

.p-kv__collage {
    margin: 0 auto;
    width: 100%;
}

.p-kv__collage-img {
    margin-bottom: 24px;
}

.p-kv__title {
    width: 100%;
}

/* 右サイドバー：ご購入エリア */
.p-sidebar-right__inner {
    max-width: 400px;
    margin: 60px auto 0;
    text-align: center;
}

.p-purchase__img {
    margin-bottom: 40px;
}

.p-purchase__info {
    margin-top: 32px;
    color: var(--bk);
}

.p-purchase__period-label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.p-purchase__period-date {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.p-purchase__note {
    font-size: 1.2rem;
}

/* ==========================================================================
   Project - Concept
   ========================================================================== */
.p-concept {
    padding-top: 80px;
    color: var(--pure-white);
    background-color: var(--theme-orange);
}

.p-concept__slider {
    margin-bottom: 40px;
}

.p-concept__slider img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    vertical-align: bottom;
}

.p-concept__text-area {
    margin-bottom: 60px;
    text-align: left;
}

.p-concept__label {
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.p-concept__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: var(--jp-font);
}

.p-concept__desc {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
}

/* 下部ループ帯画像 */
.p-concept__loop {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.p-concept__loop-track {
    display: flex;
    width: max-content;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.p-concept__loop-track img {
    height: 100%;
    width: auto;
    max-width: none;
    pointer-events: none;
}

/* ==========================================================================
   Project - Features
   ========================================================================== */
.p-features {
    padding: 80px 0 40px 0;
    background-color: var(--base);
    color: var(--bk);
}

.p-features__header {
    text-align: left;
    margin-bottom: 24px;
}

.p-features__label {
    color: var(--theme-orange);
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.p-features__title {
    font-size: 3.2rem;
    line-height: 1.4;
}

/* スライダー部分 */
.p-features__slider {
    width: 100%;
}

.p-features__img {
    margin-bottom: 16px;
    width: 100%;
}

.p-features__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
}

.p-features__text-area {
    text-align: left;
}

.p-features__subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.p-features__desc {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
}

.p-features__slider .splide__pagination {
    bottom: -32px;
}

.p-features__slider .splide__pagination__page {
    background: #ccc;
}

.p-features__slider .splide__pagination__page.is-active {
    background: var(--theme-orange);
    transform: scale(1.2);
}

.p-features_banner {
    margin-top: 60px;
    text-align: center;
}


.p-features_banner a {
    display: block;
}



/* ==========================================================================
   Project - Wearing
   ========================================================================== */
.p-wearing {
    padding: 40px 0 80px 0;
    background-color: var(--base);
}

.p-wearing__header {
    margin-bottom: 30px;
}

.p-wearing__label {
    color: var(--theme-orange);
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-align: left;
}

.p-wearing__title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: left;
}

.p-wearing__tabs {
    display: flex;
    flex-direction: column;
    /* 縦並びに変更 */
    gap: 10px;
    /* ボタン同士の隙間をしっかりあける */
    margin-bottom: 24px;
}

.p-wearing__tabs li {
    width: 100%;
}

.p-wearing__tabs button {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    border: none;
    background-color: var(--pure-white);
    color: var(--bk);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.p-wearing__tabs button::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--theme-orange);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.p-wearing__tabs button:not(.is-active):hover {
    background-color: var(--theme-beige);
    border-color: var(--theme-orange);
    padding-left: 24px;
}

.p-wearing__tabs button.is-active {
    background-color: var(--theme-orange);
    border-color: var(--theme-orange);
    color: var(--pure-white);
    box-shadow: 0 4px 12px rgba(254, 123, 65, 0.3);
}

.p-wearing__tabs button.is-active::after {
    content: "\f107";
    color: var(--pure-white);
}

.p-wearing__contents {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

.p-wearing__content {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.p-wearing__content.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 画像グリッド */
.p-wearing__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* 個別アイテム全体（タップ切り替え用） */
.p-wearing__item {
    cursor: pointer;
    width: 100%;
}

/* 画像エリアのラッパー */
.p-wearing__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: var(--gray);
    /* 画像読み込み前のダミー色 */
    overflow: hidden;
}

/* ウラ・オモテ画像の配置とアニメーション */
.p-wearing__img-front,
.p-wearing__img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    /* ふわっと切り替わる */
}

/* 初期状態：ウラ画像を透明にする */
.p-wearing__img-back {
    opacity: 0;
}

/* タップされた状態：オモテを透明にし、ウラを表示する */
.p-wearing__item.is-flipped .p-wearing__img-front {
    opacity: 0;
}

.p-wearing__item.is-flipped .p-wearing__img-back {
    opacity: 1;
}

/* タップアイコン（画像右下に固定） */
.p-wearing__tap {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
    background-color: var(--theme-orange);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: tap-pulse 1.5s infinite ease-in-out;
}

@keyframes tap-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
    }
}

/* 画像直下の情報エリア全体 */
.p-wearing__info {
    background-color: var(--theme-orange);
    color: var(--pure-white);
    padding: 12px 8px;
    text-align: center;
}

/* 個別のテキストスタイルリセット */
.p-wearing__info p {
    margin: 0;
    line-height: 1.4;
}

/* ----------------------------------
   文字組み（フォントサイズと太さの調整）
   ---------------------------------- */
/* 犬種：補足情報として少し小さく・控えめに */
.p-wearing__breed {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4px;
    opacity: 0.9;
}

/* 名前 / 身長：メインの情報として大きく・太く */
.p-wearing__name,
.p-wearing__height {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* 着用サイズ：中くらいのサイズでスッキリと */
.p-wearing__size {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ==========================================================================
   Project - Flow
   ========================================================================== */
.p-flow {
    padding: 80px 0;
    background-color: var(--theme-orange);
    color: var(--pure-white);
}

.p-flow__header {
    margin-bottom: 30px;
}

.p-flow__label {
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-align: left;
}

.p-flow__title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: left;
}

/* スライダー内のカードスタイル */
.p-flow__slider {
    width: 100%;
}

.p-flow__card {
    background-color: var(--base);
    color: var(--bk);
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p-flow__badge {
    background-color: var(--theme-orange);
    color: var(--pure-white);
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 4px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    display: inline-block;
}

.p-flow__card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.p-flow__card-icon {
    width: 80px;
    margin: 0 auto 24px;
}

.p-flow__card-desc {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
}

.p-flow__card-desc strong {
    font-weight: 700;
}

/* FLOWスライダーのページネーション（ドット）の位置 */
.p-flow__slider .splide__pagination {
    bottom: -32px;
}

/* 非アクティブなドットのスタイル */
.p-flow__slider .splide__pagination__page {
    background: var(--base);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 3px;
    transition: all 0.3s ease;
}

/* アクティブ（現在表示中）なドットのスタイル */
.p-flow__slider .splide__pagination__page.is-active {
    background: var(--pure-white);
    opacity: 1;
    transform: scale(1.3);
}

/* ==========================================================================
   Project - Checklist
   ========================================================================== */
.p-checklist {
    padding: 40px 0 80px 0;
    background-color: var(--theme-orange);
    color: var(--pure-white);
}

.p-checklist__header {
    margin-bottom: 30px;
}

.p-checklist__label {
    font-family: var(--en-font);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-align: left;
}

.p-checklist__title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: left;
}

/* アコーディオン全体 */
.p-checklist__accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

.p-checklist__item {
    margin-bottom: 16px;
}

.p-checklist__item:last-child {
    margin-bottom: 0;
}

/* アコーディオントリガー（ボタン） */
.p-checklist__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--theme-beige);
    color: var(--bk);
    border: none;
    padding: 16px 20px;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

/* アイコン（プラス / マイナス） */
.p-checklist__icon {
    width: 32px;
    height: 32px;
    background-color: var(--theme-orange);
    border-radius: 50%;
    position: relative;
    margin-right: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.p-checklist__icon::before,
.p-checklist__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--pure-white);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 横線 */
.p-checklist__icon::before {
    width: 14px;
    height: 2px;
}

/* 縦線 */
.p-checklist__icon::after {
    width: 2px;
    height: 14px;
}

/* 開いたときのアイコン（マイナスになる） */
.p-checklist__trigger.is-active .p-checklist__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* アコーディオンの中身 */
.p-checklist__content {
    background-color: var(--theme-beige);
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    max-height: 0;
    opacity: 0;
}

.p-checklist__content.is-open {
    opacity: 1;
}

.p-checklist__content-inner {
    padding: 0 12px 24px;
    color: var(--bk);
    font-size: 1.4rem;
}

/* テーブルスタイル（スマホ用の縦積みデザインを採用） */
.p-checklist__table {
    width: 100%;
    border-collapse: collapse;
}

.p-checklist__table th,
.p-checklist__table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
}

.p-checklist__table th {
    background-color: var(--theme-orange);
    color: var(--pure-white);
    font-weight: 500;
    margin-top: 16px;
    font-size: 1.6rem;
}

.p-checklist__table td {
    padding: 10px 4px;
    color: var(--bk);
    border-bottom: 1px dotted var(--gray);
    line-height: 1.6;
    font-size: 1.6rem;
    font-weight: 400;
}

.p-checklist__table td:last-child {
    border-bottom: none;
}

.p-checklist__table a {
    color: var(--theme-orange);
    text-decoration: underline;
}

.p-checklist__table small {
    font-size: 1.2rem;
    display: block;
    margin-top: 4px;
}

.p-checklist__price {
    font-size: 1.8rem;
    font-weight: 700;
}

/* 画像エリア */
.p-checklist__images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.p-checklist__img {
    flex: 1 1 calc(50% - 5px);
}

.p-checklist__wash-img {
    max-width: 300px;
}

.p-checklist__unit {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* リスト・注意事項 */
.p-checklist__notes {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.p-checklist__notes li {
    margin-bottom: 8px;
    line-height: 1.75;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;

}

/* FAQボタン */
.p-checklist__faq-btn {
    display: inline-block;
    background-color: var(--theme-orange);
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 30px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.p-checklist__faq-btn:hover {
    opacity: 0.8;
}

.p-checklist__table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
    border: 1px solid var(--gray);
    background-color: var(--theme-beige);
    border-radius: 4px;
}

.p-checklist__table--size {
    min-width: 450px;
    border-collapse: collapse;
    table-layout: fixed;
}

.p-checklist__table--size th,
.p-checklist__table--size td {
    display: table-cell;
    width: 80px;
    text-align: center;
    padding: 12px 8px;
    white-space: nowrap;
    font-size: 1.4rem;
    border: 1px solid var(--gray);
}

.p-checklist__table--size thead th {
    background-color: var(--theme-orange);
    color: var(--pure-white);
    font-weight: 700;
    margin-top: 0;
    border-radius: 0;
}

.p-checklist__table--size thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
}

.p-checklist__table--size tbody th {
    font-weight: 700;
    margin-top: 0;
    border-radius: 0;
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: var(--theme-orange);
}

.p-checklist__jancode-ttl {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 6px;
    color: var(--bk);
}

.p-checklist__jancode-ttl:first-child {
    margin-top: 0;
}

.p-checklist__jancode-item {
    margin: 0 0 2px 0;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--en-font);
}

/* ==========================================================================
   Project - CTA (フッター直上の購入エリア)
   ========================================================================== */
.p-cta {
    padding: 80px 0;
    background-color: var(--base);
    /* 背景はベージュ（ベース色） */
    color: var(--bk);
    text-align: center;
}

.p-cta__inner {
    max-width: 100%;
    margin: 0 auto;
}

.p-cta__img {
    margin-bottom: 32px;
}

.p-cta__info {
    margin-top: 24px;
}

.p-cta__period-label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.p-cta__period-date {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--theme-orange);
    /* 日付をオレンジにして目立たせる */
}

.p-cta__note {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ==========================================================================
   Project - Footer
   ========================================================================== */
.l-footer {
    width: 100%;
}

.p-footer {
    background-color: var(--theme-orange);
    color: var(--pure-white);
    border-top: none;
}

.p-footer__inner {
    padding: 0px 20px;
    text-align: center;
}

.p-footer__nav {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.p-footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-footer__nav a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.p-footer__nav a:hover {
    opacity: 0.7;
}

.p-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.p-footer__logo img {
    width: 60px;
    height: auto;
}

.p-footer__sns p {
    font-family: var(--en-font);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--pure-white);
}

.p-footer__sns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.p-footer__sns img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.p-footer__sns a:hover img {
    opacity: 0.7;
}

.p-footer__copy {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--en-font);
    letter-spacing: 0.05em;
    color: var(--pure-white);
}