@charset "UTF-8";
@import url(../fonts/remixicon.css);
/*=======================================
設定 
=======================================*/
:root {
    /*Wrapper*/
    --ctr_width: 100%;
    --ctr_max: 1200px;
    --inline_max: 768px;
    /*余白 縦*/
    --ctr_td: clamp(40px, 5.8565vw, 80px);
    /*余白 横*/
    --ctr_pd: clamp(20px, 4.392vw, 60px);
    /*header*/
    /*font size*/
    --font_ss: clamp(1rem, 0.878vw, 1.2rem);
    --font_s: clamp(1.2rem, 1.02vw, 1.4rem);
    --font_l: clamp(1.6rem, 1.32vw, 1.8rem);
    --font_xl: clamp(2rem, 1.76vw, 2.4rem);
    --font_base: clamp(1.4rem, 1.17vw, 1.6rem);
    /*family*/
    --font_family: Futura, "Century Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /*color=============================*/
    /*サイトカラー*/
    /*#003ca6 ------*/
    --maincolor: 23, 53, 142;
    /*#3168ca*/
    --subcolor01: 49, 104, 202;
    /*#fcd554*/
    --accentcolor01: 252, 213, 84;
    /*テキストカラー ------*/
    /*#333333*/
    --base_tx_color: 17, 17, 17;
    /*#fff*/
    --light_tx_color: 255, 255, 255;
    /*#cf3a3a*/
    --error_color: 207, 58, 58;
    /*基本色 ------*/
    /*#fff*/
    --white: 255, 255, 255;
    /*#111*/
    --black: 17, 17, 17;
    /*#939393*/
    --gray: 143, 143, 143;
    /*線 ------*/
    /*#c0c0c0*/
    --border_color: 192, 192, 192;
    /*背景色 ------*/
    /*#fff*/
    --bg_white: 255, 255, 255;
    /*#dae5fa*/
    --bg_color01: 218, 229, 250;
    /*#ececec*/
    --bg_color02: 236, 236, 236;
    /*a ------*/
    /*#49aad7*/
    --a_tx: 51, 173, 255;
    /*#a4d5eb*/
    --a_hover: 164, 213, 235;
    /*#227398*/
    --a_visited: 34, 115, 152;
    /*table　color ------*/
    /*#888*/
    --table_bd_color: 136, 136, 136;
    /*#fde698*/
    --table_th_color: 253, 230, 152;
    /*marker ------*/
    /*#ffff66*/
    --marker: 255, 255, 102;
    /*other=============================*/
    --base_radius: 5px;
    --inner_radius: 3px;
    --btn_radius: 5px;
    /*header=============================*/
    --header_h: clamp(60px, 10.416vw, 80px);
    /*toggle=============================*/
    --toggle_radius: 0;
    --toggle_w: clamp(32px, 4.032vw, 40px);
    --toggle_h: 2px;
    --toggle_all_h: clamp(24px, 3.2258vw, 32px);
    /*footer=============================*/
    --footer_h: 80px;
    /*z-index=============================*/
    --pagetop_z: 997;
    --toggle_z: 1000;
    --nav_z: 999;
    --header_z: 998;
}
/*=======================================
font
=======================================*/
/*---
icon font
---*/
/*★remixicon*/
/*=======================================
body
=======================================*/
body {
    color: rgba(var(--base_tx_color), 1);
    overflow-x: hidden;
    font-family: var(--font_family);
}
img {
    image-rendering: -webkit-optimize-contrast;
}
/*=======================================
header
=======================================*/
.header {
    padding: 0 var(--ctr_pd);
    box-shadow: rgba(var(--black), 0.1) 0px 2px 8px 0px;
    background: rgba(var(--bg_white), 1);
    /*固定*/
    @media (width >=992px) {
        &.fixed {
            animation: header_anime 0.4s;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header_h);
            z-index: var(--header_z);
        }
    }
}
@keyframes header_anime {
    0% {
        top: calc(var(--header_h) * -1);
    }
    100% {
        top: 0;
    }
}
.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header_h);
}
.shop_logo {
    :is(img) {
        width: auto;
        height: clamp(24px, 36vw/13.66, 36px);
    }
    :is(a) {
        transition: 0.2s;
        &:hover {
            opacity: 0.8;
        }
    }
}
/*=======================================
mypage　link
=======================================*/
.login_group {
    margin-right: calc(var(--toggle_w) + clamp(16px, 2.419vw, 24px));
    @media (width >=992px) {
        margin-right: auto;
        margin-left: 32px;
    }
    /*ログアウト -----------*/
    .login {
        & > a {
            text-decoration: none;
            color: rgba(var(--base_tx_color), 1);
            font-size: var(--font_s);
            &:hover {
                color: rgba(var(--subcolor01), 1);
            }
        }
        .more_ico {
            margin-left: 0.5em;
            width: 16px;
            height: 16px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: rgba(var(--subcolor01), 1);
            color: rgba(var(--light_tx_color), 1);
            border-radius: 100px;
            font-size: 1.4rem;
        }
        @media (width >=992px) {
            padding-top: 0.5em;
        }
        /*非表示*/
        &.inactive {
            display: none;
        }
    }
    /*ログイン後 -----------*/
    .logout {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        .mypage {
            & > a {
                text-decoration: none;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2px;
                min-width: clamp(40px, 3.367vw, 46px);
                height: clamp(40px, 3.367vw, 46px);
                border-radius: var(--base_radius);
                background: rgba(var(--subcolor01), 1);
                position: relative;
                font-size: clamp(1.8rem, 1.46vw, 2rem);
                color: rgba(var(--light_tx_color), 1);
                padding: 0.1em 0.2em 0;
                line-height: 1;
                &:hover {
                    background: rgba(var(--maincolor), 1);
                }
            }
            .mypage_tx {
                font-size: 0.8rem;
            }
        }
        .user_info {
            align-self: center;
            text-align: left;
        }
        .user_name {
            line-height: 1.2;
            font-size: clamp(1.2rem, 1.02vw, 1.4rem);
            .name {
                display: inline-block;
                overflow: hidden;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                width: max-content;
                max-width: 11em;
                @media (width <=350px) {
                    max-width: 6em;
                }
            }
            &::after {
                content: "様";
                font-size: 0.9em;
                margin-left: 0.5em;
                display: inline-block;
                vertical-align: baseline;
                transform: translateY(-0.25em);
            }
        }
        .logout_btn {
            line-height: 1;
            text-align: left;
            & > a {
                color: rgba(var(--base_tx_color), 1);
                font-size: var(--font_ss);
                color: rgba(var(--gray), 1);
                &:hover {
                    color: rgba(var(--subcolor01), 1);
                }
            }
        }
        @media (width >=992px) {
            padding-top: 0.5em;
            gap: 12px;
        }
        /*非表示*/
        &.inactive {
            display: none;
        }
    }
}
/*=======================================
nav
=======================================*/
/*toggle ================*/
.toggle {
    position: fixed;
    right: var(--ctr_pd);
    top: clamp(18px, 3.125vw, 24px);
    z-index: var(--toggle_z);
    transition: 0.2s;
    & > button {
        border: none;
    }
    .toggle_open {
        top: 32px;
    }
}
.hamburger {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: var(--toggle_w);
    height: var(--toggle_all_h);
    padding: 0;
    background-color: transparent;
    outline: none;
    &::before {
        display: block;
        border-radius: var(--toggle_radius);
        width: var(--toggle_w);
        height: var(--toggle_h);
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(var(--maincolor), 1);
        box-sizing: border-box;
        -webkit-animation: navToggleOuter_reverse 0.5s;
        animation: navToggleOuter_reverse 0.5s;
        content: "";
        transition-duration: 0.5s;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
    }
    &::after {
        display: block;
        position: absolute;
        border-radius: var(--toggle_radius);
        left: 0;
        bottom: 0;
        width: var(--toggle_w);
        height: var(--toggle_h);
        background-color: rgba(var(--maincolor), 1);
        box-sizing: border-box;
        -webkit-animation: navToggleInner_reverse 0.5s;
        animation: navToggleInner_reverse 0.5s;
        content: "";
        transition-duration: 0.5s;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
    }
    & > span {
        display: block;
        border-radius: var(--toggle_radius);
        width: var(--toggle_w);
        height: var(--toggle_h);
        background-color: rgba(var(--maincolor), 1);
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        transition-duration: 0.5s;
        transition-property: opacity;
    }
    /*open ---------*/
    &.hamburger_open {
        &::before {
            inset-block-start: 50%;
            -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
        }
        &::after {
            width: var(--toggle_w);
            top: 50%;
            left: 1.5px;
            -webkit-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
        }
        & > span {
            opacity: 0;
        }
    }
    /*削除 ---------*/
    @media (width >=992px) {
        display: none;
    }
}
/*nav ==================*/
/*wrap ---------*/
#mainnav {
    @media (width <=992px) {
        position: fixed;
        height: 100vh;
        padding-top: var(--header_h);
        width: min(60%, 320px);
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(var(--bg_color01), 1);
        opacity: 0;
        transform: translateX(100%);
        z-index: -1;
        transition-duration: 0.4s;
        transition-property: transform, opacity, z-index;
        &.navopen {
            transform: translateX(0);
            z-index: var(--nav_z);
            opacity: 1;
        }
        .mainnav_wrap {
            height: calc(100dvh - var(--header_h));
            overflow-y: auto;
        }
    }
    @media (width >=992px) {
        .mainnav_wrap {
            display: contents;
        }
    }
}
.nav_group {
    display: flex;
    :is(a) {
        text-decoration: none;
        color: rgba(var(--base_tx_color), 1);
    }
    @media (width <=992px) {
        padding-left: 16px;
        padding-right: 16px;
        flex-direction: column;
        text-align: left;
        & > li {
            border-bottom: 1px dotted rgba(var(--maincolor), 1);
            padding: 1px 0;
            :is(a) {
                display: block;
                padding: 1em 0.5em;
                position: relative;
                &::after {
                    content: "\ea6e";
                    font-family: remixicon !important;
                    font-style: normal;
                    display: inline-block;
                    position: absolute;
                    right: 0.5em;
                    top: 50%;
                    transform: translateY(-50%);
                    color: rgba(var(--maincolor), 1);
                }
                &:hover {
                    background: rgba(var(--maincolor), 0.1);
                }
            }
            &.active {
                :is(a) {
                    pointer-events: none;
                    color: rgba(var(--maincolor), 1);
                    &::after {
                        display: none;
                    }
                }
            }
        }
    }
    @media (width >=992px) {
        gap: 32px;
        & > li {
            position: relative;
            :is(a) {
                display: inline-block;
                &::after {
                    content: "";
                    width: 1px;
                    min-height: 2px;
                    background: rgba(var(--maincolor), 1);
                    position: absolute;
                    left: 50%;
                    bottom: -0.8em;
                    transform: translateX(-50%);
                    opacity: 0;
                    transition-duration: 0.2s;
                    transition-property: opacity, width;
                }
                &:hover {
                    color: rgba(var(--maincolor), 1);
                    &::after {
                        width: 100%;
                        opacity: 1;
                    }
                }
            }
        }
        .active {
            &::after {
                content: "";
                width: 100%;
                min-height: 2px;
                background: rgba(var(--maincolor), 1);
                position: absolute;
                left: 0;
                right: 0;
                bottom: -0.8em;
            }
            :is(a) {
                pointer-events: none;
                color: rgba(var(--maincolor), 1);
            }
        }
    }
}
/*=======================================
main
======================================*/
.main_wrap {
    /*min-height: calc(100dvh - var(--header_h) - var(--footer_h));*/
    min-height: 100vh;
}
/*pagetitle ------*/
.pagetitle_wrap {
    background: rgba(var(--maincolor), 1);
    background: linear-gradient(180deg, rgba(var(--maincolor), 1) 0%, rgba(var(--maincolor), 0.9) 100%);
    padding: clamp(32px, 48vw/13.66, 48px) var(--ctr_pd) 0;
    .pagetitle_group {
        margin-bottom: clamp(24px, 32vw/13.66, 32px);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        .ja_tx {
            font-size: clamp(3.2rem, 56vw/13.66, 5.6rem);
            color: rgba(var(--light_tx_color), 1);
            line-height: 1.2;
            font-weight: 700;

            /*mypage用 年度*/
            .year {
                display: block;
                width: max-content;
                padding: 0.2em 0.6em;
                border-radius: var(--base_radius);
                line-height: 1;
                background: rgba(var(--white), 1);
                color: rgba(var(--maincolor), 1);
                font-size: 0.6em;
                margin: 0.4em auto 0;
            }
        }
        .en_tx {
            display: none;
        }
    }
}
/*pankuzu ------*/
.pankuzu {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(100%, var(--ctr_max));
    height: clamp(24px, 2.93vw, 40px);
    background: rgba(var(--bg_white), 1);
    border-radius: var(--base_radius) var(--base_radius) 0 0;
    margin-right: auto;
    margin-left: auto;
    & > ol {
        width: max-content;
        margin-right: auto;
        margin-left: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 6px 22px;
        & > li {
            font-size: var(--font_s);
            position: relative;
            &:not(:last-of-type) {
                &::before {
                    font-family: remixicon !important;
                    font-style: normal;
                    content: "\ea6e";
                    display: block;
                    position: absolute;
                    inset: 52% -1.5em auto auto;
                    transform: translateY(-50%);
                    line-height: 1;
                }
            }
            :is(em) {
                font-size: clamp(1rem, 0.81vw, 1.1rem);
            }
            :is(a) {
                font-size: clamp(1rem, 0.81vw, 1.1rem);
                color: rgba(var(--base_tx_color), 1);
                &:link,
                &:visited,
                &:hover,
                &:active {
                    text-decoration: underline;
                }
                &:hover {
                    opacity: 0.8;
                    color: rgba(var(--maincolor), 1);
                }
            }
        }
    }
}
/*=======================================
footer
======================================*/
.footer_wrap {
    padding: 24px var(--ctr_pd);
    height: var(--footer_h);
    .footer_inner {
        width: min(100%, var(--ctr_max));
        margin-left: auto;
        margin-right: auto;
    }
}
.copyright {
    font-size: var(--font_s);
}
/*=============================
text
=============================*/
.cts_p {
    text-align: left;
}
.cts_p.tx_cent {
    text-align: center;
}
.cts_p.cent_l {
    text-align: center;
}
.cts_p + .cts_p {
    margin-top: 1em;
}
@media print, screen and (min-width: 992px) {
    .cts_p.l_cent {
        text-align: center;
    }
    .cts_p.cent_l {
        text-align: left;
    }
}
/*price*/
.price {
    white-space: nowrap;
    &::after {
        content: "円";
    }
}
/*TextRight*/
.tx_right {
    text-align: right;
}
/*TextLeft*/
.tx_left {
    text-align: left;
}
/*TextCenter*/
.tx_cent {
    text-align: center;
}
/*center/left*/
.l_cent {
    text-align: left;
}
@media print, screen and (min-width: 992px) {
    .l_cent {
        text-align: center;
    }
}
/*left/center*/
.cent_l {
    text-align: center;
}
@media print, screen and (min-width: 992px) {
    .cent_l {
        text-align: left;
    }
}
.en_tx {
    font-family: Futura, "Century Gothic";
    font-weight: 700;
}
/*bold*/
.tx_bold {
    font-weight: 700;
}
/*Textmaincolor*/
.tx_main {
    color: rgba(var(--maincolor), 1);
}
/*TextRed*/
.tx_red {
    color: rgba(var(--error_color), 1);
}
/*TextGray*/
.tx_gray {
    color: rgba(var(--gray), 1);
}
/*s text*/
.s_tx {
    font-size: var(--font_s);
}
.s_em {
    font-size: 0.8em;
}
/*big text*/
.l_tx {
    font-size: var(--font_l);
}
.xl_tx {
    font-size: var(--font_xl);
}
.b_em_tx {
    font-size: 1.2em;
}
/*marker*/
.marker {
    background: linear-gradient(transparent 60%, rgba(var(--marker), 1) 60%);
}
/*=============================*/
/*== 幅 ==*/
/*=============================*/
.w100 {
    width: 100%;
}
.max_40 {
    max-width: 40px;
}
.max_60 {
    max-width: 60px;
}
.max_80 {
    max-width: 80px;
}
.max_160 {
    max-width: 160px;
}
.max_240 {
    max-width: 240px;
}
.max_360 {
    width: min(100%, 360px);
}
.max_400 {
    width: min(100%, 400px);
}
.max_560 {
    width: min(100%, 560px);
}
.min_40 {
    min-width: 40px;
}
.min_60 {
    min-width: 60px;
}
.min_80 {
    min-width: 80px;
}
.min_160 {
    min-width: 160px;
}
.min_240 {
    min-width: 240px;
}
.min_360 {
    min-width: 360px;
}
.min_400 {
    min-width: 400px;
}
.min_560 {
    min-width: 560px;
}
/*=============================*/
/*== Margin ==*/
/*=============================*/
/*MarginTop*/
.margin_t06 {
    margin-top: 6px;
}
.margin_t08 {
    margin-top: 8px;
}
.margin_t10 {
    margin-top: 10px;
}
.margin_t16 {
    margin-top: 16px;
}
.margin_t24 {
    margin-top: 24px;
}
.margin_t32 {
    margin-top: 32px;
}
.margin_t40 {
    margin-top: 40px;
}
.margin_t56 {
    margin-top: 56px;
}
/*MarginBottom*/
.margin_b06 {
    margin-bottom: 6px;
}
.margin_b08 {
    margin-bottom: 8px;
}
.margin_b10 {
    margin-bottom: 10px;
}
.margin_b16 {
    margin-bottom: 16px;
}
.margin_b24 {
    margin-bottom: 24px;
}
.margin_b32 {
    margin-bottom: 32px;
}
.margin_b40 {
    margin-bottom: 40px;
}
.margin_b56 {
    margin-bottom: 56px;
}
/*MarginRight*/
.margin_r06 {
    margin-right: 6px;
}
.margin_r10 {
    margin-right: 10px;
}
.margin_r16 {
    margin-right: 16px;
}
.margin_r24 {
    margin-right: 24px;
}
/*MarginLeft*/
.margin_l06 {
    margin-left: 6px;
}
.margin_l10 {
    margin-left: 10px;
}
.margin_l16 {
    margin-left: 16px;
}
.margin_l24 {
    margin-left: 24px;
}
/*==========================
layout
==========================*/
/*枠 ----------------*/
.section_wrap {
    padding-left: var(--ctr_pd);
    padding-right: var(--ctr_pd);
    padding-top: var(--ctr_td);
    padding-bottom: var(--ctr_td);
    /*上下スペースなし*/
    &.tb_nospace {
        padding-top: 0;
        padding-bottom: 0;
    }
    /*上スペースなし*/
    &.t_nospace {
        padding-top: 0;
    }
    /*下スペースなし*/
    &.b_nospace {
        padding-bottom: 0;
    }
}
/*innerサイズ*/
.section_inner {
    width: 100%;
    max-width: var(--ctr_max);
    margin-left: auto;
    margin-right: auto;
    & + .section_inner {
        margin-top: clamp(60px, 6.666vw, 80px);
    }
}
/*内コンテナサイズ*/
.inline_max {
    width: 100%;
    max-width: var(--inline_max);
    margin-left: auto;
    margin-right: auto;
}
/*はみ出してmax*/
.over_max {
    padding: 0 calc(50% - 50vw);
    width: 100vw;
}
/*card　-----------------=*/
:root {
    --lay_gap_sp: 16px;
    --lay_gap_md: 36px;
}
/*1 →　2*/
.ly_card_2column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: 100%;
    }
    @media (width >=768px) {
        flex-direction: row;
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
}
/*1 →　3*/
.ly_card_3column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: 100%;
    }
    @media (width >=768px) {
        flex-direction: row;
        gap: var(--lay_gap_md);
        & > * {
            width: calc(100% / 3 - var(--lay_gap_md) * 2 / 3);
        }
    }
}
/*1 → 2 → 4*/
.ly_card_4column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: 100%;
    }
    @media (width >=768px) {
        flex-direction: row;
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
    @media (width >=992px) {
        & > * {
            width: calc(25% - var(--lay_gap_md) * 3 / 4);
        }
    }
}
/*2*/
.ly_2column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: calc(50% - var(--lay_gap_sp) / 2);
    }
    @media (width >=768px) {
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
}
/*2→3*/
.ly_2_3column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: calc(50% - var(--lay_gap_sp) / 2);
    }
    @media (width >=768px) {
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
    @media (width >=992px) {
        gap: var(--lay_gap_md);
        & > * {
            width: calc(calc(100% / 3) - var(--lay_gap_md) * 2 / 3);
        }
    }
}
/*img column*/
.ly_img_box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    & > figure {
        text-align: center;
        & > img {
            max-width: 100%;
            height: auto;
            margin-inline: auto;
        }
    }
    @media (width >=768px) {
        flex-direction: row;
        gap: 24px;
        align-items: center;
        & > figure {
            width: 180px;
        }
        & > div {
            flex-grow: 2;
        }
    }
}
/*パネル　-------*/
.panel_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: var(--inline_max);
    margin-left: auto;
    margin-right: auto;
}
.panel_list_box {
    border-radius: var(--base_radius);
    border: 3px solid rgba(var(--subcolor01), 0.5);
    padding: clamp(16px, 3.125vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 16px 24px;
    @media (width >=768px) {
        flex-direction: row;
        justify-content: space-between;
        .panel_btn {
            align-self: flex-end;
        }
    }
}
.panel_btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    @media (width >=768px) {
        width: max-content;
    }
    [class^="btn0"] {
        :is(a),
        :is(input),
        :is(button),
        input[type="submit"] {
            font-size: 1.4rem;
            cursor: pointer;
            min-width: auto;
            width: 100%;
            @media (width >=768px) {
                min-width: 180px;
                width: revert;
            }
        }
    }
}
.panel_btn.row_btn {
    flex-direction: row;
}
/*golden ratio-----------------*/
:root {
    /*間に作りたいすきま*/
    --gold_space_sp: 24px;
    --gold_space_pc: 40px;
}
.ly_gold {
    display: flex;
    flex-direction: column;
    gap: var(--gold_space_sp) var(--gold_space_pc);
}
.ly_gold.s_top .ly_gold_s {
    order: -1;
}
.ly_gold.b_top .ly_gold_b {
    order: -1;
}
@media print, screen and (min-width: 768px) {
    .ly_gold {
        flex-direction: row;
        justify-content: space-between;
    }
    .ly_gold.align_cent {
        align-items: center;
    }
    .ly_gold .ly_gold_s {
        width: 50%;
        order: 0;
    }
    .ly_gold .ly_gold_b {
        width: calc(50% - var(--gold_space_pc));
        order: 0;
    }
    .ly_gold.s_top .ly_gold_s {
        order: 0;
    }
    .ly_gold.b_top .ly_gold_b {
        order: 0;
    }
}
@media print, screen and (min-width: 992px) {
    .ly_gold .ly_gold_s {
        width: 38%;
    }
    .ly_gold .ly_gold_b {
        width: calc(62% - var(--gold_space_pc));
    }
}
/*half-----------------*/
.ly_half {
    display: flex;
    flex-direction: column;
    @media (width >=768px) {
        flex-direction: row;
        & > * {
            width: 50%;
        }
    }
}
/*btn_layout-----------------*/
.ly_btn_box {
    display: flex;
    flex-direction: column;
    gap: 10px 16px;
    @media (width >=768px) {
        flex-direction: row;
        justify-content: center;
        & > * {
            min-width: 240px;
        }
        /*左寄せ*/
        &.tx_left {
            justify-content: flex-start;
        }
        /*右寄せ*/
        &.tx_right {
            justify-content: flex-end;
        }
    }
}
/*table内button*/
.ly_inner_btn {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: max-content;
    margin: 0 auto;
    [class^="btn0"] {
        :is(a),
        :is(input),
        :is(button),
        input[type="submit"] {
            font-size: var(--font_s);
            cursor: pointer;
            padding: 0.6em 1em;
            min-width: auto;
        }
    }
}
/*set */
.align_cent {
    @media (width >=768px) {
        align-items: center;
    }
}
/*==========================
other
==========================*/
.bg_color01 {
    background: rgba(var(--bg_color01), 1);
}
.bg_color02 {
    background: rgba(var(--bg_color02), 1);
}
/*anchorlink============*/
/*<a id="name" class="anchor" ></a>===========*/
a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}
/*ClearFix============*/
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/*Float============*/
/*FloatLeft*/
.float_left {
    float: left;
}
/*FloatRight*/
.float_right {
    float: right;
}
/*ClearBoth*/
.clearboth {
    clear: both;
}
/*phbox============*/
:root {
    --float_space: 30px;
    --img_top: 16px;
}
.phbox_right,
.phbox_left {
    text-align: center;
    margin-bottom: var(--img_top);
    :is(img) {
        max-width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        & + *:not(figcaption) {
            margin-top: var(--img_top);
        }
    }
    & > a {
        display: block;
        & + * {
            margin-top: var(--img_top);
        }
    }
}
@media print, screen and (min-width: 768px) {
    .phbox_right {
        float: right;
        margin-left: var(--float_space);
        margin-bottom: 0;
    }
    .phbox_left {
        float: left;
        margin-right: var(--float_space);
        margin-bottom: 0;
    }
}
.ov_hidden {
    overflow: hidden;
}
/*レスポンシブblock/none============*/
@media print, screen and (min-width: 768px) {
    .md_none {
        display: none;
    }
}
@media print, screen and (min-width: 1200px) {
    .pc_none {
        display: none;
    }
}
.sp_none {
    display: none;
    @media (width >=768px) {
        display: inline-block;
    }
}
/*tel============*/
.tel-link a {
    text-decoration: underline;
    color: inherit;
}
.tel-link a:hover {
    opacity: 0.8;
}
/*img_fluid============*/
.img_fluid {
    max-width: 100%;
    height: auto;
}
/*==========================
parts
==========================*/
/*Pagetop============*/
.pagetop {
    position: fixed;
    inset: auto 60px -60px auto;
    z-index: var(--pagetop_z);
    transition: all 0.3s;
    :is(a) {
        display: flex;
        justify-content: center;
        align-items: center;
        width: clamp(40px, 4.39vw, 60px);
        height: clamp(40px, 4.39vw, 60px);
        border-radius: 100px;
        background: rgba(var(--subcolor01), 1);
        text-decoration: none;
    }
    :is(i) {
        color: rgba(var(--light_tx_color), 1);
        font-size: clamp(24px, 2.34vw, 32px);
    }
    @media (width <=600px) {
        :is(a) {
            display: none;
        }
    }
}
.pagetop.active {
    inset: auto 60px 60px auto;
}
/*PageNavi============*/
:root {
    --pagenavi_bd_span: #ccc;
    --pagenavi_bd_a: #ccc;
    --pagenavi_tx_span: #666;
    --pagenavi_tx_a: #666;
    --pagenavi_span: #e4e4e4;
    --pagenavi_a: #f2f2f2;
    --pagenavi_pdd_b: 3px;
    --pagenavi_pdd_in: 10px;
}
* + .pagenavi {
    margin-top: clamp(32px, 2.93vw, 40px);
}
.pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    & + * {
        margin-top: clamp(32px, 2.93vw, 40px);
    }
    & > li {
        :is(span) {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: var(--pagenavi_pdd_b) var(--pagenavi_pdd_in);
            color: var(--pagenavi_tx_span);
            border: 1px solid var(--pagenavi_bd_span);
            background: var(--pagenavi_span);
        }
        :is(a) {
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            padding: var(--pagenavi_pdd_b) var(--pagenavi_pdd_in);
            color: var(--pagenavi_tx_a);
            border: 1px solid var(--pagenavi_bd_a);
            background: var(--pagenavi_a);
            transition: 0.2s;
            &:hover {
                opacity: 0.8;
            }
        }
    }
}
/*Line============*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin: 40px 0;
    border: none;
    border-top: 1px dotted rgba(var(--gray), 1);
}
/*title============*/
.title01 {
    font-weight: 700;
    font-size: clamp(2.6rem, 2.64vw, 3.6rem);
    padding-bottom: 0.8em;
    line-height: 1.2;
    margin-bottom: 1.4em;
    position: relative;
    &::after {
        content: "";
        display: block;
        width: 80px;
        height: 6px;
        background: rgba(var(--maincolor), 1);
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
.title02 {
    font-size: 2rem;
}
.title03 {
    background: rgba(var(--subcolor01), 1);
    font-size: clamp(1.8rem, 1.61vw, 2.2rem);
    text-align: left;
    font-weight: 700;
    color: rgba(var(--light_tx_color), 1);
    padding: 0.4em 1em;
    margin-bottom: 1em;
}
.title04 {
    text-align: left;
    color: rgba(var(--maincolor), 1);
    border-left: 6px solid rgba(var(--maincolor), 1);
    font-size: var(--font_xl);
    font-weight: 700;
    margin-bottom: 1em;
    padding-left: 0.5em;
}
.title05 {
    text-align: left;
    font-size: clamp(1.8rem, 1.61vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
    &::before {
        font-family: remixicon !important;
        font-style: normal;
        content: "\eb7b";
        color: rgba(var(--maincolor), 1);
        font-size: 1.1em;
        position: absolute;
        inset: 0 auto auto 0;
    }
}
/**/
.sub_title01 {
    font-size: var(--font_xl);
    font-weight: 700;
    margin-bottom: 1em;
}
/*table============*/
:root {
    --tbl_pd_sp_b: 12px;
    --tbl_pd_sp_in: 16px;
    --tbl_pd_pc_b: 12px;
    --tbl_pd_pc_in: 16px;
    /*color*/
}
/*table01 -----*/
.sheet_basic {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(var(--table_bd_color), 1);
    border-bottom: none;
    /*右寄せ*/
    &.tx_right {
        :is(th),
        :is(td) {
            text-align: right;
        }
    }
    /*左よせ*/
    &.tx_left {
        :is(th),
        :is(td) {
            text-align: left;
        }
    }
    :is(tr) {
        & > th {
            background: rgba(var(--bg_color02), 1);
        }
        & > th,
        & > td {
            border-bottom: 1px solid rgba(var(--table_bd_color), 1);
            padding: var(--tbl_pd_sp_b) var(--tbl_pd_sp_in);
            display: block;
            /*右寄せ*/
            &.tx_right {
                text-align: right;
            }
            /*左よせ*/
            &.tx_left {
                text-align: left;
            }
        }
        /*右寄せ*/
        &.tx_right {
            & > th,
            & > td {
                text-align: right;
            }
        }
        /*左よせ*/
        &.tx_left {
            & > th,
            & > td {
                text-align: left;
            }
        }
    }
    @media (width >=768px) {
        :is(tr) {
            & > th,
            & > td {
                display: table-cell;
                padding-block: var(--tbl_pd_pc_b) var(--tbl_pd_pc_in);
            }
            & > th {
                border-right: 1px solid rgba(var(--table_bd_color), 1);
            }
        }
    }
}
/*table02 -----*/
.table_basic {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid rgba(var(--table_bd_color), 1);
    border-bottom: none;
    /*右寄せ*/
    &.tx_right {
        :is(th),
        :is(td) {
            text-align: right;
        }
    }
    /*左よせ*/
    &.tx_left {
        :is(th),
        :is(td) {
            text-align: left;
        }
    }
    :is(tr) {
        & > th,
        & > td {
            border-bottom: 1px solid rgba(var(--table_bd_color), 1);
            border-right: 1px solid rgba(var(--table_bd_color), 1);
            padding: var(--tbl_pd_sp_b) var(--tbl_pd_sp_in);
            /*右寄せ*/
            &.tx_right {
                text-align: right;
            }
            /*左よせ*/
            &.tx_left {
                text-align: left;
            }
        }
        & > th {
            background: rgba(var(--table_th_color), 1);
            width: 30%;
        }
        & > td {
            /*金額*/
            &.price {
                text-align: right;
            }
        }
        /*右寄せ*/
        &.tx_right {
            & > th,
            & > td {
                text-align: right;
            }
        }
        /*左よせ*/
        &.tx_left {
            & > th,
            & > td {
                text-align: left;
            }
        }
    }
    @media (width >=768px) {
        :is(tr) {
            & > th,
            & > td {
                padding: var(--tbl_pd_pc_b) var(--tbl_pd_pc_in);
            }
            & > th {
                width: 320px;
            }
        }
    }
}
.nowrap {
    white-space: nowrap;
}
tr.nowrap > th,
tr.nowrap > td {
    white-space: nowrap;
}
/*table_scroll*/
.table_scroll {
    overflow: auto;
    margin-right: calc(var(--ctr_pd) * -1);
    &::after {
        margin: 1em 0;
        text-align: left;
        display: block;
        font-family: remixicon !important;
        content: "\ea63""　スクロールしてください　" "\ea6d";
        color: rgba(var(--gray), 1);
    }
    @media (width >=768px) {
        display: contents;
        &::after {
            display: none;
        }
    }
}
/*list=============*/
/*pdf -----*/
.pdf_link > li {
    line-height: 1.4;
    position: relative;
    padding-left: 1.4em;
    text-align: left;
}
.pdf_link > li + li {
    margin-top: 8px;
}
.pdf_link > li::before {
    font-family: remixicon !important;
    font-style: normal;
    content: "\eceb";
    display: block;
    position: absolute;
    inset: 0 auto auto 0;
    color: rgba(var(--error_color), 1);
    font-size: 1.2em;
}
/*※ -----*/
.note_list {
    text-align: left;
}
.note_list > li {
    line-height: 1.4;
    position: relative;
    padding-left: 1.4em;
}
.note_list > li + li {
    margin-top: 8px;
}
.note_list > li::before {
    content: "※";
    position: absolute;
    inset: 0 auto auto 0;
}
.note_list.s_tx > li {
    font-size: var(--font_s);
}
/*※に番号リスト -----*/
ol.note_list {
    counter-reset: number;
}
ol.note_list > li {
    list-style: none;
    padding-left: 3.5em;
}
ol.note_list > li::before {
    counter-increment: number;
    content: "0" counter(number) "）";
    position: absolute;
    inset: 0 auto auto 1.5em;
}
ol.note_list > li::after {
    content: "（注";
    position: absolute;
    inset: 0 auto auto -0.5em;
}
ol.note_list > li:nth-child(n + 10)::before {
    content: counter(number) "）";
}
/*番号リスト -----*/
.num_list {
    counter-reset: number;
    text-align: left;
}
.num_list > li {
    line-height: 1.4;
    position: relative;
    list-style: none;
    padding-left: 1.8em;
}
.num_list > li + li {
    margin-top: 8px;
}
.num_list > li::before {
    counter-increment: number;
    content: "0" counter(number) ".";
    position: absolute;
    inset: 0 auto auto 0;
}
.num_list > li:nth-child(n + 10)::before {
    content: counter(number) ".";
}
/*basic list -----*/
.list_basic01 {
    text-align: left;
}
.list_basic01 > li {
    position: relative;
    padding-left: 0.8em;
}
.list_basic01 > li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(var(--maincolor), 1);
    border-radius: 100px;
    position: absolute;
    inset: 0.6em 0 0 0;
}
.list_basic01 > li + li {
    margin-top: 0.4em;
}
.list_basic01.s_tx > li {
    font-size: var(--font_s);
}
/*input_list -----*/
.input_list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    & > li {
        white-space: nowrap;
        & > input[type="checkbox"],
        & > input[type="radio"] {
            margin-right: 0.2em;
        }
    }
}
/*dl =============*/
/*basic dl (div)-----*/
.dl_basic01 {
    & > div {
        display: flex;
        text-align: left;
        & > * {
            line-height: 1.4;
        }
        & > dt {
            white-space: nowrap;
            &::after {
                content: "：";
                display: inline-block;
                padding-inline: 0.5em;
            }
        }
        & + div {
            margin-top: 0.5em;
        }
    }
}
.dl_basic03 {
    text-align: left;
    & > div {
        & + div {
            margin-top: 1.5em;
        }
        & > dt {
            line-height: 1.1;
            margin-bottom: 0.5em;
            &::after {
                content: "：";
            }
        }
    }
    @media (width >=768px) {
        & > div {
            display: flex;
            align-items: center;
            & + div {
                margin-top: 1em;
            }
            & > dt {
                width: max-content;
                min-width: clamp(115px, 9.52vw, 130px);
                margin-bottom: 0;
            }
            & > dd {
                flex-grow: 2;
            }
        }
    }
}
/*btn =============*/
[class^="btn0"] {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-style: solid;
        border-width: 1px;
        text-decoration: none;
        line-height: 1.2;
        border-radius: var(--btn_radius);
        cursor: pointer;
        padding: 1em 2em;
        transition: 0.2s;
        font-family: var(--font_family);
        white-space: nowrap;
        font-weight: 700;
        min-width: 240px;
        font-size: 1.6rem;
    }
    /*大きなボタン*/
    &.l_size {
        :is(a),
        :is(input),
        :is(button),
        input[type="submit"] {
            padding: 0.8em 1.5em;
            font-size: 1.8rem;
        }
    }
    /*中央寄せ*/
    &.tx_cent {
        margin-left: auto;
        margin-right: auto;
    }
}
.btn01 {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        background: rgba(var(--maincolor), 1);
        color: rgba(var(--light_tx_color), 1);
        border-color: rgba(var(--maincolor), 1);
        &:hover {
            opacity: 0.8;
        }
    }
}
.btn02 {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        background: rgba(var(--gray), 1);
        color: rgba(var(--light_tx_color), 1);
        border-color: rgba(var(--gray), 1);
        &:hover {
            opacity: 0.8;
        }
    }
}
.btn03 {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        background: rgba(var(--white), 1);
        color: rgba(var(--maincolor), 1);
        border-color: rgba(var(--maincolor), 1);
        &:hover {
            background: rgba(var(--maincolor), 1);
            color: rgba(var(--light_tx_color), 1);
        }
    }
}
.btn04 {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        background: rgba(var(--accentcolor01), 1);
        color: rgba(var(--base_tx_color), 1);
        border-color: rgba(var(--accentcolor01), 1);
        &:hover {
            opacity: 0.8;
        }
    }
}
.btn05 {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        background: rgba(var(--subcolor01), 1);
        color: rgba(var(--light_tx_color), 1);
        border-color: rgba(var(--subcolor01), 1);
        &:hover {
            opacity: 0.8;
        }
    }
}
.btn06 {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        background: rgba(var(--white), 1);
        color: rgba(var(--gray), 1);
        border-color: rgba(var(--gray), 1);
        padding: 0.8em 2em;
        &:hover {
            background: rgba(var(--gray), 1);
            color: rgba(var(--light_tx_color), 1);
        }
    }
}
/*pとのspace*/
.cts_p {
    & + [class^="btn0"] {
        margin-top: 24px;
    }
}
/*icon btn ------------*/
.icon_btn {
    :is(a),
    :is(input),
    :is(button),
    input[type="submit"] {
        display: flex;
        justify-content: center;
        gap: 8px;
        border: none;
        line-height: 1;
        border-radius: var(--btn_radius);
        padding: 16px 1em;
        cursor: pointer;
        transition: 0.2s;
        font-size: var(--font_l);
        color: rgba(var(--light_tx_color), 1);
        background-color: rgba(var(--maincolor), 1);
        width: 100%;
        min-width: 240px;
        &:hover {
            opacity: 0.8;
        }
        & + .file_p {
            padding-top: 0.2em;
        }
        @media (width >=576px) {
            width: max-content;
        }
    }
    :is(a) {
        text-decoration: none;
    }
}
/*box =============*/
.box01 {
    background: rgba(var(--bg_color01), 1);
    border-radius: var(--base_radius);
    padding: 28px;
    &.s_pd {
        padding: 16px;
    }
}
.box02 {
    background: rgba(var(--bg_color02), 1);
    border-radius: var(--base_radius);
    padding: 28px;
    &.s_pd {
        padding: 16px;
    }
}
.bd_box01 {
    border: 2px solid rgba(var(--accentcolor01), 1);
    border-radius: var(--base_radius);
    background: rgba(var(--bg_white), 1);
    padding: 28px;
    &.s_pd {
        padding: 16px;
    }
}
.bd_box02 {
    border: 1px solid rgba(var(--maincolor), 1);
    border-radius: var(--base_radius);
    padding: clamp(16px, 3.6458vw, 28px);
    background: rgba(var(--bg_white), 1);
    position: relative;
}
.bd_box03 {
    border: 1px solid rgba(var(--border_color), 1);
    border-radius: var(--base_radius);
    padding: clamp(16px, 3.6458vw, 28px);
    background: rgba(var(--bg_white), 1);
    position: relative;
}
/*====================
下層ページ　ナビ
=======================*/
.subpage_nav_wrap {
    width: min(100%, var(--ctr_max));
    margin: clamp(24px, 2.93vw, 40px) auto 0;
    padding: 0 var(--ctr_pd);
}
.subpage_nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    & > li {
        width: calc(50% - 4px);
        :is(a) {
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(var(--subcolor01), 1);
            background: rgba(var(--bg_white), 1);
            color: rgba(var(--subcolor01), 1);
            border-radius: var(--base_radius);
            line-height: 1;
            font-weight: 700;
            white-space: nowrap;
            padding: 1em;
            &:hover {
                background: rgba(var(--subcolor01), 1);
                color: rgba(var(--light_tx_color), 1);
            }
        }
        &.active {
            :is(a) {
                pointer-events: none;
                background: rgba(var(--subcolor01), 1);
                color: rgba(var(--light_tx_color), 1);
            }
        }
    }
    @media (width >=768px) {
        gap: 6px 16px;
        & > li {
            flex: 1;
            max-width: 240px;
        }
    }
}
/*==========================
modal / camera
==========================*/
:root {
    --camera_z: 1110;
    --camera_inner_z: 1111;
    --camera_overlay_z: 1099;
}
.modal_camera_wrapper {
    z-index: var(--camera_z);
    position: fixed;
    inset: 0;
    text-align: center;
    &:not(:target) {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    &:target {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.4s, visibility 0.4s;
    }
    &::after {
        display: inline-block;
        height: 100%;
        margin-left: -0.05em;
        vertical-align: middle;
        content: "";
    }
}
.modal_camera_window {
    box-sizing: border-box;
    display: inline-block;
    z-index: var(--camera_inner_z);
    position: relative;
    width: min(85%, 798px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
    padding: 25vw 0;
    .camera_tx {
        color: rgba(var(--light_tx_color), 1);
        font-size: var(--font_l);
    }
    /*閉じボタン*/
    .modal_close {
        z-index: var(--modal_inner_z);
        position: absolute;
        right: -0.5em;
        top: 0.2em;
        width: 48px;
        color: rgba(var(--white), 1) !important;
        font-size: 4rem;
        line-height: 48px;
        text-align: center;
        text-decoration: none;
        text-indent: 0;
        &:hover {
            color: #000 !important;
        }
    }
}
.modal_camera_overlay {
    z-index: var(--camera_overlay_z);
    position: absolute;
    inset: 0;
    background: rgba(var(--black), 0.8);
    mask-image: url(../img/common_img/camera_mask.png);
    -webkit-mask-image: url(../img/common_img/camera_mask.png);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
/*============================================================
各ページ　*/
/*====================
利用規約 conditions_cts.php
=======================*/
.terms_box {
    overflow-y: scroll;
    width: 100%;
    height: 240px;
    padding: 2em 2em 2em 1.5em;
    background: rgba(var(--bg_white), 1);
    border: 1px solid rgba(var(--gray), 1);
    @media (width >=768px) {
        height: 360px;
    }
}
/*中身*/
.terms_list {
    text-align: left;
    counter-reset: terms_number;
    & > dt {
        background: rgba(var(--gray), 1);
        color: rgba(var(--light_tx_color), 1);
        padding: 0.5em 1em 0.5em 2.5em;
        margin-bottom: 0.8em;
        position: relative;
        font-weight: 700;
        &::before {
            counter-increment: terms_number;
            content: "(" counter(terms_number) "）";
            position: absolute;
            left: 1em;
            top: 0.5em;
        }
        &:nth-of-type(n + 10) {
            &::before {
                content: counter(terms_number);
            }
        }
    }
    & > dd {
        /* font-size: var(--font_s); */
        :is(p),
        :is(li),
        :is(dt),
        :is(dd) {
            /* font-size: var(--font_s); */
            line-height: 1.6;
        }
        & + dt {
            margin-top: 2em;
        }
        & > * + * {
            margin-top: 1.5em;
        }
        * + p {
            margin-top: 0.5em;
        }
        /*子*/
        & > ol {
            counter-reset: number;
            & > li {
                position: relative;
                list-style: none;
                padding-left: 2.5em;
                &::before {
                    counter-increment: number;
                    content: "（0" counter(number) "）";
                    position: absolute;
                    left: -0.5em;
                    top: 0.1em;
                }
                &:nth-child(n + 10)::before {
                    content: "（" counter(number) "）";
                }
                & + li {
                    margin-top: 1em;
                }
                /*孫*/
                & > ol {
                    margin-top: 0.5em;
                    margin-bottom: 0.5em;
                    counter-reset: inumber;
                    background: #fff;
                    border: 4px solid rgba(var(--gray), 0.3);
                    padding: 1em;
                    border-radius: var(--base_radius);
                    & > li {
                        position: relative;
                        list-style: none;
                        padding-left: 2em;
                        counter-increment: inumber;
                        &::before {
                            content: "0" counter(inumber) ".";
                            position: absolute;
                            left: 0;
                            top: 0;
                            color: rgba(var(--gray), 1);
                        }
                        &:nth-of-type(n + 10) {
                            &::before {
                                content: counter(inumber) ".";
                            }
                        }
                        & + li {
                            margin-top: 0.5em;
                        }
                        /*ひ孫*/
                        & > ol {
                            margin-top: 0.5em;
                            & > li {
                                position: relative;
                                list-style: none;
                                padding-left: 2em;
                                counter-increment: listkana;
                                &::before {
                                    content: counter(listkana, katakana) ".";
                                    position: absolute;
                                    left: 0;
                                    top: 0;
                                    color: rgba(var(--gray), 1);
                                }
                                & + li {
                                    margin-top: 0.5em;
                                }
                            }
                        }
                    }
                }
            }
        }
        /*dl*/
        :is(dl) {
            & > dt {
                font-weight: 700;
                margin-left: -0.5em;
                color: rgba(var(--maincolor), 1);
                &::before {
                    content: "【";
                    display: inline-block;
                    margin-right: 0.5em;
                }
                &::after {
                    content: "】";
                    display: inline-block;
                    margin-left: 0.5em;
                }
            }
            & > dd {
                margin-top: 0.5em;
                & + dt {
                    margin-top: 1em;
                }
            }
        }
    }
}
.signature_box {
    margin-top: 24px;
    text-align: right;
    .company {
        font-weight: 700;
    }
    .days {
        display: flex;
        justify-content: flex-end;
        & > dt {
            line-height: 1.6;
            &::after {
                content: "：";
            }
        }
        & > dd {
            line-height: 1.6;
        }
    }
}
/*====================
マイページ
=======================*/
.cts_p + .new_member_btn {
    @media (width >=768px) {
        margin-top: clamp(50px, 4.86vw, 80px);
    }
}
/*====================
証明書写真の撮影における注意事項 guide.php
=======================*/
#guide .license_list .sub_ti01 .svg {
    fill: #75fcff;
    vertical-align: middle;
    -webkit-margin-end: 0.5em;
    margin-inline-end: 0.5em;
    -webkit-margin-before: -0.5em;
    margin-block-start: -0.5em;
}
#guide .license_list figure + .note_list,
#guide .license_list figure + p {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
}
@media print, screen and (min-width: 768px) {
    #guide .license_list .bd_box01:last-child {
        width: calc((33.3333333333% - var(--lay_gap_md) * 2 / 3) * 2 + var(--lay_gap_md));
    }
}
#guide .sub_ti01 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}
#guide .sub_ti01 .point {
    width: 1.5em;
    height: 1.5em;
    background: #09090d;
    color: #fff;
    border-radius: 100px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-margin-end: 0.5em;
    margin-inline-end: 0.5em;
}
#guide .sub_ti01 .point i {
    font-size: 0.9em;
    font-weight: normal;
}
#guide .sub_ti01.b_tx {
    font-size: 2.2rem;
}
@media print, screen and (min-width: 768px) {
    #guide .sub_ti01.b_tx {
        font-size: clamp(3rem, 2.64vw, 3.6rem);
    }
}
#guide .sub_ti04 {
    font-size: clamp(2rem, 2.04vw, 2.8rem);
    font-weight: 700;
    color: #5c6373;
    line-height: 1.4;
}
/*spacer============*/
#guide .spacer_l {
    -webkit-margin-after: clamp(50px, 7.32vw, 100px);
    margin-block-end: clamp(50px, 7.32vw, 100px);
}
#guide .spacer_m {
    -webkit-margin-after: clamp(36px, 4.4vw, 60px);
    margin-block-end: clamp(36px, 4.4vw, 60px);
}
#guide .spacer_s {
    -webkit-margin-after: clamp(24px, 2.93vw, 36px);
    margin-block-end: clamp(24px, 2.93vw, 36px);
}
