/* ---------
基本設定
----------- */

:root {
    /* フォント */
    --text-font: "Noto Sans JP", sans-serif;
    --main-font: "Zen Maru Gothic", sans-serif;
    --en-font: "Barlow", sans-serif;

    /* 色  */
    --main-color: #573001;
    --sub-color: #D04D18;
    --point-color: #FFD050;
}

/* ---------
共通
----------- */
body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--main-color);
    font-family: var(--main-font);
    overflow-x: clip;
}

.l-page {
    background-color: rgba(254, 239, 216, 0.65);
    background-image: url("/images/common/page_base_bg.png");
    background-size: contain;
    background-position: center;
    mix-blend-mode: multiply;
    padding-top: 25px;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.section_space {
    width: calc(100% - 40px);
    margin: 0 auto;
}

/* 表示 */
.sp_in {
    display: block;
}

.sp-layout {
    display: block;
}

/* 非表示 */
.pc_in,
.pc-layout {
    display: none;
}

.not-link a {
    color: var(--main-color);
    text-decoration: none;
    pointer-events: none;
}

/* ---------
セクション背景パターン
----------- */

/* ドット背景 + テクスチャオーバーレイ */
.bg-dot {
    position: relative;
    background: url("/images/common/dot_bg_sp.png") center top / contain no-repeat;
    overflow: visible;
}

.bg-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(254, 239, 216, 0.65);
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
}

.bg-dot>.section_space {
    position: relative;
    z-index: 1;
}

/* スクリーンリーダー専用 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 共通もっと見るボタン */

.btn_block {
    max-width: 335px;
    margin: 0 auto;
}

.cp_more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 335px;
    height: 50px;
    background: #FFD800;
    border: 1px solid #573001;
    border-radius: 30px;
    text-decoration: none;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--text-font);
}

.cp_more-btn::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url("/images/common/cp_more-btn-icon.png") center / contain no-repeat;
}


@media (min-width:768px) {

    .l-page {
        padding: 0;
        background-image: url("/images/common/page_base.png");
        background-size: cover;
    }

    .section_space {
        width: 100%;
        max-width: 1400px;
    }

    .sp_in {
        display: none;
    }

    .pc_in {
        display: inline;
    }

    .sp-layout {
        display: none;
    }

    .pc-layout {
        display: block;
    }

    /* 共通ボタン */

    .btn_block {
        max-width: clamp(14.375rem, 13.125rem + 2.6vw, 16.25rem);
        margin: 0;
    }


    .cp_more-btn {
        transition: background 0.3s ease;
        max-width: clamp(14.375rem, 13.125rem + 2.6vw, 16.25rem);
        height: 60px;
        border: 2px solid #573001;
    }

    .cp_more-btn:hover {
        background: #FFEAD0;
    }

    /* ドット背景 PC */
    .bg-dot {
        background-image: url("/images/common/dot_bg.png");
        background-size: cover;
    }

    .bg-dot::after {
        background: url("/images/common/paper_texture_bg.png") center top / cover no-repeat;
    }
}