@charset "UTF-8";

/*=======================================
container
=======================================*/
.container {
    width: 100%;
    padding-right: var(--container-pd);
    padding-left: var(--container-pd);
}

.section {
    max-width: var(--container-max);
    margin-right: auto;
    margin-left: auto;
    padding-top: var(--section-top);
    padding-bottom: var(--section-bottom);

    &.section_block_none {
        padding-block: 0;
    }

    &+.section {
        padding-top: 0;
    }
}

/*=======================================
header
=======================================*/
.header {
    position: absolute;
    inset: 1.7rem auto auto var(--container-pd);
    z-index: var(--header-z);

    .main_logo a {
        transition: 0.2s;

        &:hover {
            opacity: 0.8;
        }
    }

    .main_logo img {
        width: clamp(12.5rem, 8.949rem + 15.15vw, 41.2rem);
        height: auto;
    }
}

.nav_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 100%;

    @media (width >=768px) {
        display: contents;
    }
}

/*=======================================
nav
=======================================*/
.mainnavi {
    background: var(--season-color);
    display: block;
    z-index: var(--nav-z);

    @media (width <=360px) {
        .nav_inner {
            gap: 16px;
        }

        .m_menu {
            &>li {
                padding-block: 0.2rem;
            }
        }
    }

    @media (width <=992px) {
        position: fixed;
        inset: 2vh 3vw auto;
        border-radius: var(--inner-radius);

        .nav_group {
            width: 94vw;
            height: 96svh;
        }
    }

    @media (width >=992px) {
        position: sticky;
        inset: 0 0 auto;

        .nav_group {
            min-height: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-block: 0.75rem;
        }
    }
}

/*navi ------------------*/
.m_menu {
    :is(a) {
        display: flex;
        gap: 0.22rem;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.2s;
    }

    &>li {

        &.active {
            &>a {
                pointer-events: none;
                color: var(--subcolor);
            }
        }
    }

    @media (width<=992px) {
        width: 90%;

        &>li {
            padding: 0.6rem 0;

            :is(a) {
                font-size: 18px;

                &:hover {
                    color: var(--subcolor);

                }
            }

            &.sub_dropdown {
                .material-symbols-rounded {
                    display: none;
                }

                &>a {
                    pointer-events: none;

                    &::before {
                        content: "";
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 0.8rem 0.5rem 0 0.5rem;
                        border-color: var(--base-tx-color) transparent transparent transparent;
                        display: inline-block;
                        vertical-align: middle;
                    }
                }

                .sub_menu {
                    margin-block: 0.5rem;
                    background: var(--white);
                    border-radius: var(--inner-radius);
                    padding-block: 0.2rem;
                    padding-inline: 1rem;

                    :is(a) {
                        padding-block: 0.3rem;

                    }

                    &>li:not(:last-child) {
                        border-bottom: 1px solid var(--season-color);
                    }
                }
            }
        }
    }

    /*pc ---------------------------*/
    @media (width>=992px) {
        display: flex;
        gap: 2rem;
        width: 100%;

        &>li {
            :is(a) {
                color: var(--base-tx-color);

                &:hover {
                    color: var(--subcolor);
                }
            }

            /*active------------*/
            &.active {
                &>a {
                    pointer-events: none;
                }
            }

            /*sub------------*/
            &.sub_dropdown {
                position: relative;

                &>a {
                    cursor: pointer;

                    .material-symbols-rounded {
                        color: var(--subcolor);
                    }
                }

                .sub_menu {
                    display: none;
                    width: max-content;
                    position: absolute;
                    background: var(--bg-white);
                    border-radius: var(--inner-radius);
                    border: 2px solid var(--season-color);
                    padding: 0.5rem 1.5rem;

                    :is(a) {
                        padding-block: 0.5rem;
                    }

                    & * {
                        white-space: nowrap;
                    }


                }
            }
        }
    }
}

@media (width>=992px) {
    .sub_menu {
        inset: calc(var(--header-h) - 2.5rem) auto auto 50%;
        transform: translateX(-50%);
    }

}


/*sns navi ------------------*/
.nav_contact_link {
    display: flex;
    gap: 8px;

}

[class^="nav_contact_"] {
    :is(a) {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 4px solid var(--white);
        border-radius: 100vmax;
        height: 56px;
        aspect-ratio: 1;
        text-decoration: none;
        color: var(--white);
        transition: 0.4s;

        &:hover {
            opacity: 0.8;
        }
    }
}

.nav_contact_mail {
    :is(a) {
        background-color: var(--color-blue);

        .material-symbols-rounded {
            font-size: 32px;
        }
    }
}

.nav_contact_insta {
    :is(a) {
        background-color: var(--color-red);

        &>img {
            width: 32px;
            height: auto;
        }
    }
}

/*------------------------------------
hamburger icon
--------------------------------------*/
.menu_btn {
    display: grid;
    place-items: center;
    width: var(--hamburger-w);
    height: var(--hamburger-h);
    position: fixed;
    inset: 1.7rem var(--container-pd) auto auto;
    z-index: var(--toggle-z);

    &:hover {
        cursor: pointer;
    }

    /*hamburger -------------*/
    .hambgr {
        display: inline-block;
        width: 100%;
        height: var(--hamburger-boder-size);
        background: var(--hamburger-color);
        transition-duration: var(--hamburger-duration);

        &:before {
            content: "";
            display: block;
            position: absolute;
            inset: 0 0 auto;
            width: 100%;
            height: var(--hamburger-boder-size);
            background: var(--hamburger-color);
            transition-duration: var(--hamburger-duration);
            will-change: transform;
        }

        &:after {
            content: "";
            display: block;
            position: absolute;
            inset: auto 0 0;
            width: 100%;
            height: var(--hamburger-boder-size);
            background: var(--hamburger-color);
            transition-duration: var(--hamburger-duration);
            will-change: transform;
        }

        /*close　----------------*/
        &.hbg_close {
            background: transparent;

            &:before {
                transform: rotate(-45deg);
                transform-origin: center;
                inset: auto;
            }

            &:after {
                transform: rotate(45deg);
                transform-origin: center;
                inset: auto;
            }
        }
    }

    /*削除 -------------*/
    @media (width >=992px) {
        display: none;
    }
}

/*=======================================
main
=======================================*/
.main_body {
    background: var(--bg-white);
    padding-bottom: var(--moyou-height);
}

/*=======================================
footer
=======================================*/

.footer_body {
    padding-bottom: 3.5rem;

    &::before {
        content: "";
        background: url(../img/common_img/bg_color01.png) center center no-repeat;
        background-size: cover;
        display: block;
        height: var(--moyou-height);
        width: 100vw;
        margin-inline: calc(var(--container-pd) * -1);
        transform: translateY(calc(var(--moyou-height) * -1));
    }

}

.footer_inner {
    width: min(100%, var(--container-max));
    margin-inline: auto;
    padding-bottom: clamp(2rem, 1.243rem + 3.23vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 4rem;

    @media (width >=768px) {
        grid-template-columns: 46% 1fr;
        align-items: center;
    }
}

/*ph*/
.footer_ph_wrap {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;

    @media (width >=768px) {
        max-width: none;
    }
}

.footer_ph {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/*footer_info bpdy*/
.footer_info_body {
    text-align: left;
}

/*footer_info*/
.footer_info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 2px solid color-mix(in srgb, var(--base-tx-color), white 80%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer_ti {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer_logo {
    :is(img) {
        width: clamp(15rem, 12.28rem + 11.6vw, 22.188rem);
        height: auto;
    }
}

.footer_insta {
    &>a {
        background-color: var(--subcolor);
        border-radius: 100vmax;
        width: clamp(2rem, 1.046rem + 4.07vw, 3rem);
        height: auto;
        aspect-ratio: 1;
        display: grid;
        place-items: center;
        transition: 0.2s;

        &>img {
            width: clamp(1.125rem, 0.767rem + 1.53vw, 1.5rem);
            height: auto;
        }

        &:hover {
            opacity: 0.8;
        }
    }
}

.address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 1.5rem;

    @media (width >=768px) {
        flex-direction: row;
        align-items: center;
    }
}

.map_btn {
    &>a {
        border-radius: var(--btn-radius);
        border: 2px solid var(--subcolor);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        color: var(--subcolor);
        font-weight: 800;
        text-decoration: none;
        padding-inline: 1.5rem;
        padding-block: 0.375rem;
        width: max-content;
        transition: 0.2s;

        &:hover {
            background: var(--subcolor);
            color: var(--light-tx-color);
        }
    }

}


.footer_tel {
    color: var(--maincolor);
    font-weight: 800;

    .tel_tx {
        font-size: var(--font-lg);
    }
}

/*footer nav*/
.footer_nav_body {
    display: flex;
    gap: 1rem 2.5rem;

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

.footer_nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    :is(a) {
        text-decoration: none;
        color: var(--base-tx-color);
        transition: 0.2s;

        &:hover {
            text-decoration: underline;
            opacity: 0.8;
        }
    }

    .f_nav_ti {
        margin-bottom: 1rem;
        font-weight: 800;
        display: flex;
        gap: 0.2rem;
        align-items: center;

        &::before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0.8rem 0.5rem 0 0.5rem;
            border-color: var(--base-tx-color) transparent transparent transparent;
            display: inline-block;
            vertical-align: middle;
        }
    }

    .f_nav_sub {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

/*copyright ------------------------*/
.copyright {
    font-size: var(--font-s);
}

/*=======================================
layout
=======================================*/
/*align------------------------*/
/*right*/
.tx_right {
    text-align: right;
}

/*left*/
.tx_left {
    text-align: left;
}

/*center*/
.tx_cent {
    text-align: center;
}

/*center　→　left*/
.cent_l {
    text-align: center;

    @media (width >=768px) {
        text-align: left;
    }
}

/*left　→　center*/
.l_cent {
    text-align: left;

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

/*カラフル文字用　------------------------*/
.colorSplit {
    &>span:nth-child(3n + 1) {
        color: var(--color-red);
    }

    &>span:nth-child(3n + 2) {
        color: var(--color-purple);
    }

    &>span:nth-child(3n) {
        color: var(--color-blue);
    }

}


/*非表示　------------------------*/
@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;
    }
}

/*phbox------------------------*/
:root {
    --phbox-space: 32px;
}

.phbox_right {
    text-align: center;

    & img {
        max-width: 100%;
        height: auto;
    }

    &>a {
        display: block;

        &+* {
            margin-top: 16px;
        }
    }

    @media (width >=768px) {
        float: right;
        margin-left: var(--phbox-space);
    }
}

.phbox_left {
    text-align: center;

    & img {
        max-width: 100%;
        height: auto;
    }

    &>a {
        display: block;

        &+* {
            margin-top: 16px;
        }
    }

    @media (width >=768px) {
        float: left;
        margin-right: var(--phbox-space);
    }
}

.ov_hidden {
    overflow: hidden;
}

/*float------------------------*/
/*left*/
.float_left {
    float: left;
}

/*right*/
.float_right {
    float: right;
}

/*clearfix*/
.clearfix {
    display: flow-root;
}

/*margin------------------------*/
/*top*/
.margin_t08 {
    margin-top: 8px;
}

.margin_t16 {
    margin-top: 16px;
}

.margin_t24 {
    margin-top: 24px;
}

.margin_t32 {
    margin-top: 32px;
}

.margin_t40 {
    margin-top: 40px;
}

.margin_t48 {
    margin-top: 48px;
}

/*bottom*/
.margin_b08 {
    margin-bottom: 8px;
}

.margin_b16 {
    margin-bottom: 16px;
}

.margin_b24 {
    margin-bottom: 24px;
}

.margin_b32 {
    margin-bottom: 32px;
}

.margin_b40 {
    margin-bottom: 40px;
}

.margin_b48 {
    margin-bottom: 48px;
}

/*right*/
.margin_r08 {
    margin-right: 8px;
}

.margin_r16 {
    margin-right: 16px;
}

.margin_r24 {
    margin-right: 24px;
}

.margin_r32 {
    margin-right: 32px;
}

/*left*/
.margin_l08 {
    margin-left: 8px;
}

.margin_l16 {
    margin-left: 16px;
}

.margin_l24 {
    margin-left: 24px;
}

.margin_l32 {
    margin-left: 32px;
}

/*------------------------------------
spacer
--------------------------------------*/
.spacer {
    margin-top: clamp(32px, 48vw/13.66, 48px);
}

.spacer_s {
    margin-top: clamp(24px, 32vw/13.66, 32px);
}

.spacer_ss {
    margin-top: clamp(16px, 24vw/13.66, 24px);
}

.spacer_l {
    margin-top: clamp(48px, 56vw/13.66, 56px);
}

/*------------------------------------
card layout
--------------------------------------*/
/*card 変数*/
:root {
    --lay_gap_sp: 24px;
    --lay_gap_md: 36px;
}

/*1 →　2*/
.row_col2 {
    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*/
.row_col3 {
    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*/
.row_col4 {
    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*/
.row_sm2 {
    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*/
.row_sm2_lg3 {
    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 layout
--------------------------------------*/
: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);

    /*※　下記指定ないときは設置の通りの順序 */
    /*▽　sを上にしたい ------*/
    &.s_top {
        .ly_gold_s {
            order: -1;
        }
    }

    /*▽　bを上にしたい ------*/
    &.b_top {
        .ly_gold_b {
            order: -1;
        }
    }

    @media (width >=768px) {
        flex-direction: row;
        justify-content: space-between;

        .ly_gold_s {
            width: 50%;
            order: 0;
        }

        .ly_gold_b {
            width: calc(50% - var(--gold_space_pc));
            order: 0;
        }

        &.s_top {
            .ly_gold_s {
                order: 0;
            }
        }

        &.b_top {
            .ly_gold_b {
                order: 0;
            }
        }

        /*縦center*/
        &.align_cent {
            align-items: center;
        }
    }

    @media (width >=992px) {
        .ly_gold_s {
            width: 38%;
        }

        .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%;
        }
    }
}

/* -----------
layout set
----------- */
/*上下真ん中よせ*/
.justify_cent {
    @media (width >=768px) {
        justify-content: center;
    }
}

/*縦まんなかよせ*/
.align_cent {
    @media (width >=768px) {
        align-items: center;
    }
}

/*=======================================
title
=======================================*/
/*pagetitle-----------------*/
.pagetitle_wrap {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    height: 240px;

    padding-top: 3.4rem;
    overflow: clip;

    background:url(../img/common_img/pagetitle_bg.png) center center no-repeat color-mix(in srgb, var(--season-color), white 70%);

    .pagetitle {
        font-size: clamp(2rem, 1.622rem + 1.61vw, 3rem);
        font-weight: 800;
        color: var(--maincolor);
        -webkit-text-stroke: 4px var(--white);
        text-stroke: 4px var(--white);
        paint-order: stroke;

        @media (width<=360px) {
            font-size: 1.6rem;
        }
    }


    .pagetitle_sub {
        &>img {
            width: clamp(15rem, 11.216rem + 16.15vw, 25rem);
            height: auto;

            @media (width<=360px) {
                width: 12rem;
            }
        }
    }

    &::before {
        content: "";
        display: block;
        width: 40vw;
        min-width: 240px;
        height: auto;
        background: url(../img/common_img/blob/pagetitle_bloc02.svg) center center no-repeat;
        background-size: cover;
        aspect-ratio: 546/474;
        position: absolute;
        inset: -20vw auto auto -6.7vw;
        z-index: -1;
        animation: fluffy-pagetitle01 1.8s ease-in-out infinite alternate-reverse;
    }

    &::after {
        content: "";
        display: block;
        width: 30.2vw;
        min-width: 200px;
        height: auto;
        background: url(../img/common_img/blob/pagetitle_bloc01.svg) center center no-repeat;
        background-size: cover;
        aspect-ratio: 413/343;
        position: absolute;
        inset: auto -5.4vw -16vw auto;
        z-index: -1;
        animation: fluffy-pagetitle02 1.8s ease-in-out infinite alternate-reverse;
    }

    @media (width <=360px) {
        &::before {
            min-width: initial;
            width: 200px;
        }

        &::after {
            min-width: initial;
            width: 160px;
        }
    }

    @media (width >=768px) {
        padding-top: 2rem;
        height: clamp(15rem, 13.108rem + 8.07vw, 20rem);

        &::before {
            inset: -16.2vw auto auto -6.7vw;
        }

        &::after {
            inset: auto -3vw -11.1vw auto;
        }
    }
}


@keyframes fluffy-pagetitle01 {
    0% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(6px);
    }
}

@keyframes fluffy-pagetitle02 {
    0% {
        transform: translateY(6px);
    }

    100% {
        transform: translateY(-6px);
    }
}

/*title-----------------*/
.title01 {
    font-size:clamp(1.5rem, 1.263rem + 1.01vw, 2.125rem);
    font-weight: 800;
    margin-bottom:1rem;
}
.title01_group{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
    .title01{
        margin-bottom: 0;
    }
    .en_tx{
        font-size: clamp(1.125rem, 0.841rem + 1.21vw, 1.75rem);
    }
}

.title02 {
    font-size: var(--font-xl);
    font-weight: 800;
    background: var(--season-color);
    border-radius: var(--inner-radius);
    padding:clamp(0.5rem, 0.405rem + 0.4vw, 0.75rem) clamp(1rem, 0.811rem + 0.81vw, 1.5rem);
    text-align: left;
    margin-bottom: 1rem;
}

.title03 {
	font-size: var(--font-lg);
	font-weight: 800;
	border-radius: var(--inner-radius);
	padding-left: 1em;
	text-align: left;
	margin-bottom: 0.5rem;
    position: relative;
    &::before {
        content: "";
        width: 5px;
        background: var(--color-purple);
        border-radius: var(--btn-radius);
        height: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}


/*=======================================
text
=======================================*/
.cts_p {
    text-align: left;
    line-height: 1.6;

    /*center*/
    &.tx_cent {
        text-align: center;
    }

    /*right*/
    &.tx_right {
        text-align: right;
    }

    /*space*/
    &+.cts_p {
        margin-top: 1em;
    }

    /*center → left*/
    &.cent_l {
        text-align: center;
    }

    @media (width >=992px) {

        /*left → center*/
        &.l_cent {
            text-align: center;
        }

        /*center → left*/
        &.cent_l {
            text-align: left;
        }
    }
}

/*decoration -------------*/
/*bold*/
.tx_bold {
    font-weight: 700;
}

/*color -------------*/
/*color red*/
.tx_red {
    color: var(--error-color);
}

/*color mian*/
.tx_main {
    color: var(--maincolor);
}

/*color gray*/
.tx_gray {
    color: var(--gray);
}

/*season　*/
.color_spring {
    color: var(--spring-color);
}

.color_winter {
    color: var(--winter-color);
}

.color_summer {
    color: var(--summer-color);
}

/*size -------------*/
/*s size*/
.s_tx {
    font-size: var(--font-s);
}

.s_em {
    font-size: 0.8em;
}

/*l size*/
.l_tx {
    font-size: var(--font-l);
}

.l_em {
    font-size: 1.2em;
}

/*english -------------*/
.en_tx {
    font-family: var(--font-en);
    font-weight: var(--font-en-weight);
}

/*------------------------------------
attention
--------------------------------------*/
.attention {
    font-size: var(--font-s);
}

/*=======================================
img
=======================================*/
/*fluid */
.img_fluid {
    max-width: 100%;
    height: auto;
}

/*round*/
.img_round {
    border-radius: var(--base-radius);
}

/*hoverimg */
.hoverimg {
    transition: 0.2s;

    &:hover {
        opacity: 0.6;
    }
}

/*※画像の親要素に追加*/
.img_max {
    :is(img) {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/*=======================================
decoration
=======================================*/
/*background color -------------*/
.content_bg_white {
    background: var(--bg-white);
}

.content_bg01 {
    background: var(--bg-color01);
}

.content_bg02 {
    background: var(--bg-color02);
}


.content_bg_season {
    background: var(--season-color);
}

/*Line -------------*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin:clamp(2rem, 1.811rem + 0.81vw, 2.5rem) 0px;
    border: none;
    border-bottom:4px dotted var(--season-color);
}

/*=======================================
parts
=======================================*/
/*------------------------------------
anchorlink
--------------------------------------*/
.anchor {
    scroll-margin-top: var(--header-h);
}

/*------------------------------------
pankuzu
--------------------------------------*/
.pankuzu_area {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    overflow-x: auto;
    padding-top: 1rem;

    .pankuzu {
        width: min(100%, var(--container-max));
        list-style: none;
        display: flex;
        gap: 1.5em;
        width: max-content;
        background: var(--bg-color02);
        border-radius: 100vmax;
        padding-inline: 1rem;
        padding-block: 0.2rem;

        &>li {
            font-size: var(--font-xs);

            &:not(:last-of-type) {
                position: relative;

                &::before {
                    content: "";
                    width: 1em;
                    height: 1em;
                    display: block;
                    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%233e408d" d="M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z" /></svg>');
                    position: absolute;
                    inset: 52% -1.4em auto auto;
                    transform: translateY(-50%);
                    line-height: 1;
                }
            }

            :is(a) {

                &:link,
                &:visited,
                &:hover,
                &:active {
                    text-decoration: underline;
                }
            }
        }

    }
}

/*------------------------------------
table
--------------------------------------*/
/*table 変数*/
:root {
    --table-padding: 0.8em 1em;
    --table-bg: #fff;
    --table-border-color: #6d6d6d;
    --th-bg: #ececec;
}

/*sheet_basic -------------*/
.sheet_basic {
    width: 100%;
    border-collapse: collapse;
    background: var(--table-bg);
    border: 1px solid var(--table-border-color);
    border-bottom: none;

    :where(th, td) {
        padding: var(--table-padding);
        border-bottom: 1px solid var(--table-border-color);
        display: block;
    }

    :where(th) {
        background: var(--th-bg);
    }

    @media (width >=768px) {
        :where(th, td) {
            display: table-cell;
        }

        :where(th) {
            border-right: 1px solid var(--table-border-color);
        }
    }
}

/*table_basic -------------*/
.table_basic {
    width: 100%;
    border-collapse: collapse;
    background: var(--table-bg);
    border: 1px solid var(--table-border-color);
    border-bottom: none;
    border-right: none;

    :where(th, td) {
        padding: var(--table-padding);
        border-bottom: 1px solid var(--table-border-color);
        border-right: 1px solid var(--table-border-color);
    }

    :where(th) {
        background: var(--th-bg);
    }
}

/*set -------------*/
.nowrap {
    white-space: nowrap;
}

tr.nowrap>th,
tr.nowrap>td {
    white-space: nowrap;
}

/*==============================
list
==============================*/
/*basic -----*/
.list_basic01 {
    text-align: left;

    & > li {
        position: relative;
        padding-left: 0.8em;

        & + li {
            margin-top: 0.4em;
        }

        &::before {
            content: "";
            display: block;
            width: 6px;
            height: 6px;
            background: var(--maincolor);
            border-radius: 100px;
            position: absolute;
            inset: 0.6em 0 0 0;
        }
    }

    /*small*/
    &.s_tx {
        & > li {
            font-size: var(--font-s);
        }
    }
}

/*※ -----*/
.note_list {
    text-align: left;
    & > li {
        line-height: 1.4;
        position: relative;
        padding-left: 1.4em;

        & + li {
            margin-top: 0.4em;
        }

        &::before {
            content: "※";
            position: absolute;
            inset: 0 auto auto 0;
        }
    }
    /*small*/
    &.s_tx {
        & > li {
            font-size: var(--font-s);
        }
    }
}

/*番号リスト -----*/
.num_list {
    counter-reset: number;
    text-align: left;
    & > li {
        line-height: 1.4;
        position: relative;
        list-style: none;
        padding-left: 1.8em;

        &::before {
            counter-increment: number;
            content: "0" counter(number) ".";
            position: absolute;
            inset: 0 auto auto 0;
        }

        &:nth-child(n + 10)::before {
            content: counter(number) ".";
        }

        & + li {
            margin-top: 0.5em;
        }
    }
    /*small*/
    &.s_tx {
        & > li {
            font-size: var(--font-s);
        }
    }
}

/*==============================
box
==============================*/
.box01 {
    background: var(--bg-color02);
    padding: 1rem;
    
}


/*------------------------------------
pagetop
--------------------------------------*/
#pagetop {
    position: fixed;
    bottom: clamp(1.125rem, 0.794rem + 1.41vw, 2rem);
    right: clamp(1.125rem, 0.794rem + 1.41vw, 2rem);

    :is(img) {
        width: clamp(2.5rem, 1.578rem + 3.94vw, 4.938rem);
        height: auto;
    }
}

/*------------------------------------
table_scroll
--------------------------------------*/
.table_scroll {
    width: 100%;
    overflow-x: auto;
    position: relative;
}
.scroll_hint {
    display: none;
    color: #fff;
    /*font-size: 1.8rem;*/
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 0.5em 1em;
    background: color-mix(in srgb, #000, transparent 30%);
    border-radius: var(--base-radius);
}
.scroll_hint_show {
    display: block;
}

/*------------------------------------
pdf link（他ファイルも対応）
--------------------------------------*/
.pdf_link>li {
    line-height: 1.4;
    position: relative;
    padding-left: 1.6em;
    text-align: left;

    &+li {
        margin-top: 0.6em;
    }

    /*その他　file*/
    &::before {
        content: "";
        display: inline-block;
        width: 1.4em;
        height: auto;
        aspect-ratio: 1;
        position: absolute;
        inset: 0 auto auto 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23888" d="M21 8V20.9932C21 21.5501 20.5552 22 20.0066 22H3.9934C3.44495 22 3 21.556 3 21.0082V2.9918C3 2.45531 3.4487 2 4.00221 2H14.9968L21 8ZM19 9H14V4H5V20H19V9Z" /></svg>');
    }

    /*pdf*/
    &:has(a[href$=".pdf"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23D35230" d="M5 4H15V8H19V20H5V4ZM3.9985 2C3.44749 2 3 2.44405 3 2.9918V21.0082C3 21.5447 3.44476 22 3.9934 22H20.0066C20.5551 22 21 21.5489 21 20.9925L20.9997 7L16 2H3.9985ZM10.4999 7.5C10.4999 9.07749 10.0442 10.9373 9.27493 12.6534C8.50287 14.3757 7.46143 15.8502 6.37524 16.7191L7.55464 18.3321C10.4821 16.3804 13.7233 15.0421 16.8585 15.49L17.3162 13.5513C14.6435 12.6604 12.4999 9.98994 12.4999 7.5H10.4999ZM11.0999 13.4716C11.3673 12.8752 11.6042 12.2563 11.8037 11.6285C12.2753 12.3531 12.8553 13.0182 13.5101 13.5953C12.5283 13.7711 11.5665 14.0596 10.6352 14.4276C10.7999 14.1143 10.9551 13.7948 11.0999 13.4716Z" /></svg>');
        }
    }

    /*word*/
    &:has(a[href$=".doc"]),
    &:has(a[href$=".docx"]),
    &:has(a[href$=".docm"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23185ABD" d="M16 8V16H14L12 14L10 16H8V8H10V13L12 11L14 13V8H15V4H5V20H19V8H16ZM3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918Z" /></svg>');
        }
    }

    /*excel*/
    &:has(a[href$=".xls"]),
    &:has(a[href$=".xlsx"]),
    &:has(a[href$=".xlsm"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23107C41" d="M13.2 12L16 16H13.6L12 13.7143L10.4 16H8L10.8 12L8 8H10.4L12 10.2857L13.6 8H15V4H5V20H19V8H16L13.2 12ZM3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918Z" /></svg>');
        }
    }

    /*power point*/
    &:has(a[href$=".pptx"]),
    &:has(a[href$=".pptm"]),
    &:has(a[href$=".potx"]),
    &:has(a[href$=".ppt"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23D35230" d="M3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918ZM5 4V20H19V8H16V14H10V16H8V8H15V4H5ZM10 10V12H14V10H10Z" /></svg>');
        }
    }
}

/*------------------------------------
pagenavi
--------------------------------------*/
:root {
    --pagenavi-span-border:var(--season-color);
    --pagenavi-span-tx: var(--base-tx-color);
    --pagenavi-span-bg: var(--season-color);
    --pagenavi-a-border:var(--season-color);
    --pagenavi-a-tx:var(--base-tx-color);
    --pagenavi-a-bg: color-mix(in srgb, var(--season-color), var(--white) 60%);
    --pagenavi-padding-block:0.4rem;
    --pagenavi-padding-inline:1rem;
    --pagenavi-radius: var(--inner-radius);
}

.pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    &>li {
        :is(span) {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: var(--pagenavi-padding-block) var(--pagenavi-padding-inline);
            color: var(--pagenavi-span-tx);
            border: 4px solid var(--pagenavi-span-border);
            background: var(--pagenavi-span-bg);
            border-radius: var(--pagenavi-radius);
        }

        :is(a) {
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            padding: var(--pagenavi-padding-block) var(--pagenavi-padding-inline);
            color: var(--pagenavi-a-tx);
            border: 4px solid var(--pagenavi-a-border);
            background: var(--pagenavi-a-bg);
            border-radius: var(--pagenavi-radius);
            transition: 0.2s;

            &:hover {
                opacity: 0.8;
            }
        }
    }
}

/*------------------------------------
tel
--------------------------------------*/
.tel-link a {
    text-decoration: underline;
    color: inherit;
}

.tel-link a:hover {
    opacity: 0.8;
}

/*------------------------------------
btn
--------------------------------------*/
.more_btn {
    &>a,
    &>span {
        width: clamp(2.4rem, 1.747rem + 2.79vw, 4.125rem);
        height: auto;
        aspect-ratio: 66/62;
        background: url(../img/common_img/blob/btn_blob.svg) center center no-repeat;
        background-size: cover;
        color: var(--light-tx-color);
        font-family: var(--font-en);
        font-weight: var(--font-en-weight);
        text-decoration: none;
        display: grid;
        place-items: center;
        font-size:clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
        transition: 0.2s;

        &:hover {
            opacity: 0.8;
            text-decoration: none;
        }
    }
}

.school_contact_btn{
    &>a{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        border-radius: var(--btn-radius);
        background: var(--subcolor);
        width: min(100%,768px);
        margin-inline: auto;
        font-size: clamp(1.5rem, 0.937rem + 2.4vw, 2.987rem);
        font-weight: 800;
        line-height: 1;
        color: var(--light-tx-color);
        text-decoration: none;
        padding-block: clamp(1.125rem, 0.605rem + 2.22vw, 2.5rem);
        transition: 0.2s;

        &:hover{
            background: color-mix(in srgb, var(--subcolor), white 30%);
        }
    }
    .material-symbols-rounded{
        font-size:clamp(2rem, 1.432rem + 2.42vw, 3.5rem);
    }
}
.school_contact_tx {
    & a {
        font-size: 1.4em;
        font-weight: 700; 
        
    }
}