/* ---------
基本設定
----------- */

:root {
    /* フォント */
    --main-font: "Noto Sans JP", sans-serif;
    --sub-font: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
    --point-font: "Cormorant Garamond", serif;
    --pinpoint-font: "Poppins", sans-serif;

    /* 色  */
    --main-color: #2C2C2C;
    --accent-color: #AE202A;
    --text-color: #404040;
}

/* ---------
共通
----------- */
body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-color);
    font-family: var(--main-font);
}

.l-page {
    background: #E8E8E8;
}

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(--text-color);
    text-decoration: none;
    pointer-events: none;
}

/* スクリーンリーダー専用 */
.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;
}

/* 共通ボタン */
.ui_cp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 255px;
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 0 auto;
}

.ui_cp-btn.color02 {
    background-color: #fff;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.ui_cp-btn span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}





@media (min-width:768px) {
    .ui_cp-btn {
        width: 255px;
    }

    .ui_cp-btn.color02:hover {
        background-color: var(--accent-color);
        border: 2px solid var(--accent-color);
        color: #fff;
    }



    .section_space {
        width: 100%;
        max-width: 1000px;
    }

    .sp_in {
        display: none;
    }

    .pc_in {
        display: block;
    }

    .sp-layout {
        display: none;
    }

    .pc-layout {
        display: block;
    }

    /* 共通ボタン */
    .ui_cp-btn:hover {
        background-color: #fff;
        color: var(--accent-color);
        border-color: var(--accent-color);
    }
}