@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-serif: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    --font-sans-serif: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-en: 'Poppins', sans-serif;
    --main-color: #39428C;
    --main-color-light:#D1CFEF;
    --main-color-dark:#293066;
    --sub-color: #B09D7C;
    --main-black: #1a1a1a;
    --border-gray: #ccc;
    --bg-gray: #f5f5f5;
    --text-red: #ed1c24;
    --min-width_pc: 1024px;
    --inner-width--sp: 90.625%;
    --inner-width--sp_vw: 90.625vw;
    --inner-sidespace--sp: 4.6875%;
    --inner-sidespace--sp_vw: 4.6875vw;
    --contents-upspace: 60px;
    --contents-downspace: 120px;
    --contents-updownspace: var(--contents-upspace) 0 var(--contents-downspace);
    --boxshadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    --boxshadow--sp: 0px 6px 9px rgba(0, 0, 0, 0.1);
    --text-frame--white_1: #fff 0 0, #fff 0 1px, #fff 0 -1px, #fff 1px 0, #fff 1px 1px, #fff 1px -1px, #fff -1px 0, #fff -1px 1px, #fff -1px -1px;
}
@media screen and (max-width:768px){
    :root{
        --contents-upspace: 40px;
        --contents-downspace: 80px;
    }
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: var(--min-width_pc);
    background: #fff;
    color: var(--main-black);
    font-family: var(--font-sans-serif);
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: left;
    word-wrap: break-word;
}
*{
    letter-spacing: .04em;
}
/*--- sp */
@media screen and (max-width:767px){
    body{
        min-width: 320px;
    }
    img{
        width: 100%;
        height: auto;
    }
}

/* common */
@media screen and (min-width:769px){
    .sp{
        display: none!important;
    }   
}
@media screen and (max-width:768px){
    .pc{
        display: none!important;
    }
}
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
.floatL, .l{
    float: left;
}
.floatR, .r{
    float: right;
}
.clearBoth, .c_b{
	clear:both;
}
.dispIB{
    display: inline-block;
}
img.dispIB{
    width: revert-layer;
    height: revert-layer;
}

/* margin */
.mRkern{
    margin-right: -.4em;
}
.mLkern{
    margin-left: -.4em;
}
.mLRkern{
    margin-right: -.4em;
    margin-left: -.4em;
}
.mB5, .m_b5{
	margin-bottom: 5px!important;
}
.mB10, .m_b10{
	margin-bottom: 10px!important;
}
.mB15, .m_b15{
	margin-bottom: 15px!important;
}
.mB20, .m_b20{
	margin-bottom: 20px!important;
}
.mB30, .m_b30{
	margin-bottom: 30px!important;
}
.mR10, .m_r10{
	margin-right: 10px!important;
}

/* text */
*{
    letter-spacing: .02em;
}
.textInd, .txt_ind {
    text-indent: -1.02em;
    padding-left: 1.02em;
}
.ffsPalt{
	font-feature-settings: "palt" 1;
}
.ffSans{
    font-family: var(--font-sans)!important;
}
.txtMainColor{
    color: var(--main-color)!important;
}
.txtRed{
    color: var(--text-red)!important;
}
.textSmall{
    font-size: .7em;
}
.textCenter, .txt_c{
    text-align: center;
}
.textRight, .txt_r{
    text-align: right;
}
.wsNowrap{
    white-space: nowrap;
}
*:has(> wbr){
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* a */
a:hover{
    text-decoration: none;
}
.textLink{
    color: var(--blue_main);
}
.textLink:not(:hover){
    text-decoration: underline;
}
@media screen and (min-width:769px){
    a[href^="tel:"]{
        pointer-events: none;
    }   
}
.fadeHover{
    transition: opacity var(--ease);
}
.viewing_pc .fadeHover:hover{
    opacity: .7;
}
a:has(> img:only-child),
a:has(> picture:only-child){
    transition: opacity var(--ease);
}
.viewing_pc a:has(> img:only-child):hover,
.viewing_pc a:has(> picture:only-child):hover{
    opacity: .7;
}

/*-------------
accordion
-------------*/
.accordion-btn:not(.is--ready){
    pointer-events: none;
}
.accordion-btn.is--ready{
    cursor: pointer;
}
@media screen and (max-width:767px){
    .accordion-btn_sp:not(.is--ready){
        pointer-events: none;
    }
    .accordion-btn_sp.is--ready{
        cursor: pointer;
    }
}
.accordion-btn:not(.is--active):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:767px){
    .accordion-btn_sp:not(.is--active):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content_sp{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
}
.accordion-container{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-container.is--hit_low{
    transition: height .2s ease;
}
.accordion-container:not(.is--open){
    height: 0!important;
}
@media screen and (min-width:768px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}

/*-------------
header
-------------*/
@media screen and (min-width:1291px){
    :root{
        --header_hit: 80px;
    }
    .header{
        display: flex;
        align-items: center;
        min-width: var(--min-width_pc);
        background: var(--main-color);
        position: fixed;
        z-index: 1000;
        width: 100%;
    }
    #main{
        padding-top: 80px;
    }
    .header .header-head{
        flex: 0 0 auto;
        padding-left: 40px;
    }
    .header .header-body{
        display: flex;
        flex: 1 1 auto;
        height: auto!important;
    }
    .header .header-menu{
        flex: 1 1 auto;
        position: relative;
        height: var(--header_hit);
        margin: 0 30px;
    }
    .header .header-nav{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header_hit);
        overflow-x: auto;
        overflow-y: hidden;
    }
    .header .header-nav::-webkit-scrollbar{
        height: 4px;
    }
    .header .header-nav::-webkit-scrollbar-track{
        border-radius: 2px;
        background-color: #fff;
    }
    .header .header-nav::-webkit-scrollbar-thumb{
        border-radius: 2px;
        background-color: var(--sub-color);
    }
    .header .header-nav-list{
        display: flex;
        width: 100%;
        height: var(--header_hit);
    }
    .header .header-nav-list-item{
        flex-shrink: 0;
    }
    .header .header-nav-list-item:first-child{
        margin-left: auto;
    }
    .header .header-nav-list-item__link{
        display: flex;
        align-items: center;
        position: relative;
        height: var(--header_hit);
        padding: 10px 20px;
        color: #fff;
        font-size: 1.6rem;
        white-space: nowrap;
    }
    .header .header-contact{
        flex: 0 0 auto;
    }
    .header .header-contact__link{
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--header_hit);
        padding: 9px 25px 11px;
        background: var(--sub-color);
        color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
    }
    .header .header-contact__link::before{
        flex: 0 0 auto;
        width: 24px;
        height: 22px;
        margin-right: 8px;
        background: url(../images/icon_check.svg) no-repeat center / contain;
        content: "";
    }
    @keyframes scroll-mes-flash{
        0% {
            opacity: 1;
        }
        50% {
            opacity: .25;
        }
        100% {
            opacity: 1;
        }
    }
    .header .header-menu .scroll-message{
        display: flex;
        align-items: center;
        position: absolute;
        top: calc(50% + 2px);
        left: 50%;
        transform: translate(-50%,-50%);
        padding: 4px 12px 6px;
        border-radius: 5px;
        background: #000;
        color: #fff;
        pointer-events: none;
        animation: scroll-mes-flash 2s infinite;
    }
    .header .header-menu .scroll-message::after{
        margin: 1px 0 0 8px;
        border-top: solid 5px rgba(0,0,0,0);
        border-bottom: solid 5px rgba(0,0,0,0);
        border-left: solid 10px #fff;
        content: "";
    }
    .header:not(.header) .header-menu .scroll-message{
        display: none!important;
    }
}
/*--- sp ---*/
@media screen and (max-width:1290px){
    :root{
        --header_hit--sp: 50px;
    }
    .header{
        width: 100%;
        position: fixed;
        z-index: 1000;
    }
    #main{
        padding-top: 50px;
    }
    .header-head{
        display: flex;
        align-items: center;
        position: relative;
        height: var(--header_hit--sp);
        background: var(--main-color);
    }
    .header-logo{
        padding-left: 15px;
    }
    .header-logo img{
        width: min(270px, 75vw);
    }
    .header-menu-btn{
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        background: linear-gradient(to top,#fff,#fff) no-repeat top 24px left 13px / 24px 2px;
        cursor: pointer;
    }
    .header-menu-btn.menu--open{
        background: var(--main-color);
    }
    .header-menu-btn::before,
    .header-menu-btn::after{
        position: absolute;
        left: 13px;
        width: 24px;
        height: 2px;
        background: #fff;
        content: "";
        transition: transform .3s ease,top .3s ease;
    }
    .header-menu-btn::before{
        top: calc(50% - 8px);
    }
    .header-menu-btn.menu--open::before{
        top: calc(50% - 1px);
        transform: rotate(45deg);
    }
    .header-menu-btn::after{
        top: calc(50% + 6px);
    }
    .header-menu-btn.menu--open::after{
        top: calc(50% - 1px);
        transform: rotate(-45deg);
    }
    .header-body{
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header_hit--sp);
        left: 0;
        width: 100%;
        height: calc(100svh - var(--header_hit--sp));
        padding: 30px 0 calc(90px + env(safe-area-inset-bottom));
        background: #fff;
        transition: opacity .2s ease;
    }
    .header-body:not(.is--active){
        display: none;
    }
    .header-body:not(.is--show){
        opacity: 0;
    }
    .header-menu{
        margin: auto 0;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .header-nav{
        padding: 0 10vw;
    }
    .header-nav-list-item{
        padding: 14px 0;
    }
    .header-nav-list-item__link{
        display: block;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: calc(1em + 6px);
        text-shadow: var(--text-frame--white_1);
    }
    .header-contact{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .header-contact__link{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 59px;
        padding: 0 15px calc(2px + env(safe-area-inset-bottom));
        background: var(--sub-color);
        color: #fff;
        font-size: 1.5rem;
        font-weight: bold;
    }
    .header-contact__link::before{
        flex: 0 0 auto;
        width: 24px;
        height: 22px;
        margin-right: 10px;
        background: url(../images/icon_check.svg) no-repeat center / contain;
        content: "";
    }
    .header .header-menu .scroll-message{
        display: none!important;
    }
}

/*-------------
footer
-------------*/
.footer{
    position: relative;
    padding: 50px 10px;
    border-top: solid 1px var(--border-gray);
    box-shadow: 0 1px 0 var(--border-gray);
}
.footer-inner{
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 1000px;
    min-height: 180px;
    margin: 0 auto;
}
.footer-top{
    margin-right: 40px;
}
.footer-logo{
    margin-bottom: 10px;
    font-size: 2.4rem;
    font-weight: bold;
}
.footer-address{
    line-height: calc(1em + 10px);
}
.footer-nav{
    margin: 0 auto;
}
.footer-nav-list{
    columns: 2;
    column-gap: 30px;
    margin: -5px 0 0;
}
.footer-nav-list-item{
    margin: 0 0 5px;
}
.footer-nav-list-item__link{
    display: block;
    padding: 5px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.footer-side{
    flex: 0 0 auto;
    margin-left: 20px;
}
.footer-contact{
    width: 180px;
}
.footer-contact__link{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 15px 2px;
    background: var(--sub-color);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}
.footer-contact__link::before{
    flex: 0 0 auto;
    width: 20px;
    height: 22px;
    margin-right: 10px;
    background: url(../images/icon_check.svg) no-repeat center / contain;
    content: "";
}
.footer-link-list{
    margin-top: 20px;
}
.footer-link-list-item:not(:last-child){
    margin-bottom: 10px;
}
.footer-link-list-item__link{
    position: relative;
    padding: 5px 0 5px 21px;
    font-size: 1.4rem;
    line-height: calc(1em + 4px);
}
.footer-link-list-item__link::before{
    position: absolute;
    top: calc(0.5em + 1px);
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    content: "";
}
.footer-link-list-item__link::after{
    position: absolute;
    top: calc(0.5em + 6px);
    left: 4px;
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
.footer-bottom{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    grid-column: span 3;
    margin-top: 20px;
}
.footer-sns-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.footer-sns-list-item{
    flex: 0 0 auto;
}
.footer-sns-list-item a{
    display: block;
}
.footer-sns-list-item img{
    width: auto;
    height: auto;
    max-height: 32px;
}
.footer-youtube-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 32px;
    padding: 0 16px;
    border: solid 1px #ccc;
    border-radius: 3px;
    color: #212121;
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0;
}
.footer-youtube-link a::before{
    flex: 0 0 auto;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 12px;
    height: 14px;
    background: #f00;
    content: "";
}
.footer-youtube-link img{
    width: 100%;
    height: auto;
}
.footer-copy{
    display: block;
    margin-right: auto;
    padding: 5px 0;
    font-size: 1.3rem;
    line-height: calc(1em + 4px);
}
/* footer__pagetop */
.footer__pagetop{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: 60px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity .3s ease;
}
.footer__pagetop.is--follow{
    position: fixed;
}
.footer__pagetop.is--follow:not(.is--show){
    opacity: 0;
    pointer-events: none;
}
.footer__pagetop::after{
    position: absolute;
    right: 14px;
    bottom: 9px;
    width: 14px;
    height: 15px;
    background: url(../images/pagetop-arrow.svg) no-repeat center / contain;
    content: "";
    pointer-events: none;
}
.footer__pagetop-btn{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(45deg);
    transform-origin: bottom left;
    width: 100%;
    aspect-ratio: 1 / 2;
    background: var(--main-color);
    font-size: 0;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .footer{
        padding: 30px var(--inner-sidespace--sp) calc(25px + env(safe-area-inset-bottom));
    }
    .footer-inner{
        display: block;
        width: 100%;
        min-height: 0;
    }
    .footer-top{
        margin: 0 0 25px;
    }
    .footer-logo{
        max-width: calc(100% - 80px);
    }
    .footer-logo img{
        width: auto;
        max-width: 100%;
    }
    .footer-nav{
        flex: 0 1 auto;
        margin: 0 auto;
        overflow: hidden;
    }
    .footer-nav-list{
        display: flex;
        flex-wrap: wrap;
        columns: unset;
        column-gap: 0;
        margin: -5px -20px -5px 0;
    }
    .footer-nav-list-item{
        flex: 0 0 auto;
        margin: 0 20px 5px 0;
    }
    @media screen and (max-width:428px){
        .footer-nav-list-item{
            min-width: calc((100% - 60px) / 3);
        }
    }
    .footer-nav-list-item__link{
        display: block;
        padding: 5px 0;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: calc(1em + 6px);
    }
    .footer-side{
        margin: 25px 0 38px;
    }
    .footer-contact{
        width: 100%;
    }
    .footer-contact__link{
        min-height: 44px;
    }
    .footer-link-list{
        margin-top: 15px;
    }
    .footer-link-list-item:not(:last-child){
        margin-bottom: 5px;
    }
    .footer-bottom{
        display: block;
    }
    .footer-copy{
        margin: 20px 0 0;
        font-size: 1.2rem;
        line-height: 1;
    }
    /* footer__pagetop */
    .footer__pagetop{
        width: 50px;
        height: 50px;
    }
    .footer__pagetop::after{
        right: 10px;
        bottom: 7px;
    }
}

/*-------------
loading
-------------*/
.site-loading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding-bottom: clamp(10px,10vh,100px);
    background: #fff;
    transition: opacity .7s ease;
}
.site-loading.is--fade{
    opacity: 0;
    pointer-events: none;
}
@keyframes site-loading {
    0%,100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}
.site-loading-anime {
    position: relative;
    transform: translateZ(0);
    width: 1em;
    height: 1em;
    margin: 3em auto 5em;
    border-radius: 50%;
    color: var(--main-color);
    font-size: 10px;
    text-indent: -9999em;
    animation: site-loading 1.3s infinite linear;
}
.site-loading-text{
    font-family: arial,sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}
.site-loading-gauge{
    position: relative;
    width: 100px;
    height: 10px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 5px;
    background: #ccc;
}
.site-loading-gauge-progress{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 0;
    height: 100%;
    background: var(--main-color);
    font-size: 0;
    transition: max-width .3s linear;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .site-loading{
        padding-bottom: calc(clamp(10px,10vh,100px) + env(safe-area-inset-bottom));
    }
}

/*-------------
top
-------------*/
.top-mainvisual{
    position: relative;
}
.top-mainvisual-wrapper{
    position: relative;
}
.top-mainvisual-track{
    position: relative;
    height: calc(100svh - 135px);
}
.top-mainvisual-slider{
    height: 100%;
    position: relative;
    overflow: hidden;
}
.top-mainvisual-slider-item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.top-mainvisual-slider-item img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-mainvisual-slider-item img.is--pos_top{
    object-position: top;
}
.top-mainvisual-slider-item img.is--pos_right{
    object-position: right;
}
.top-mainvisual-slider-item img.is--pos_bottom{
    object-position: bottom;
}
.top-mainvisual-slider-item .catch-copy{
    font-size: 5.0rem;
    text-shadow: 0px 0px 20px #999999;
    letter-spacing: 1.5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-mainvisual-arrows{
    display: none;
}
.top-mainvisual-arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 58px;
    height: 58px;
    background: var(--main-black);
    color: var(--main-black);
    font-size: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.top-mainvisual-arrow::after{
    display: block;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
.top-mainvisual-arrow--left{
    transform: rotate(180deg);
    left: 0;
}
.top-mainvisual-arrow--right{
    right: 0;
}
.top-mainvisual--dots{
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #efefef; */
    padding: 15px 0;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
}
.top-mainvisual--dot{
    background: #fff;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 5px;
}
.top-mainvisual-dot--active{
    background: var(--main-color);
}
@media screen and (max-width:767px){
    .top-mainvisual{
        height: auto;
    }
    .top-mainvisual-slider-item{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    .top-mainvisual-arrow{
        width: 40px;
        height: 40px;
    }
}
.top-mainvisual:has(.top-mainvisual__catch)::after{
    mix-blend-mode: color-burn;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(50,50,50,.25), rgba(255,255,255,0));
    content: "";
    pointer-events: none;
}
.top-mainvisual__catch{
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: 1;
    transform: translateY(-50%);
    padding-bottom: 1em;
    color: #fff;
    font-family: var(--font-serif);
    font-feature-settings: "palt" 1;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(50,50,50,.5);
}
@media screen and (max-width:767px){
    /*--- sp ---*/
    .top-mainvisual__catch{
        left: var(--inner-sidespace--sp);
        width: var(--inner-width--sp);
        font-size: 2rem;
    }
}

/* title */
.sect-title{
    margin: 0 auto;
    font-family: var(--font-serif);
    color: var(--main-black);
    font-size: 3.6rem;
    font-weight: bold;
    line-height: calc(1em + 7px);
}
.sect-title[data-en]::before{
    display: block;
    margin-bottom: 4px;
    color: var(--main-color);
    font-family: var(--font-en);
    font-size: 2.1rem;
    font-weight: 600;
    line-height: calc(1em + 4px);
    content: attr(data-en);
}
@media screen and (max-width:767px){
    /*--- sp ---*/
    .sect-title{
        max-width: var(--inner-width--sp_vw);
        margin-bottom: 17px;
        font-size: 3.0rem;
    }
    .sect-title[data-en]::before{
        margin-bottom: 3px;
        font-size: 1.8rem;
    }
}
.mid-title{
    width: var(--blocks-width);
    margin: 0 auto 22px;
    padding: 0 0 2px 9px;
    border-left: solid 6px var(--main-color);
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.mid-title:not(:first-child){
    margin-top: 45px;
}
@media screen and (max-width:768px){
    .mid-title{
        margin-bottom: 17px;
        padding-left: 8px;
        border-left-width: 4px;
        font-size: 2.1rem;
    }
    .mid-title:not(:first-child){
        margin-top: 35px;
    }
}

/*-------------
top-info
-------------*/
.top-info{
    display: flex;
    container-type: inline-size;
    border-top: solid 4px var(--main-color);
}
.top-info-content{
    flex: 0 0 50%;
    min-width: 600px;
    padding: 40px 40px 60px max(calc(50cqw - 600px), 20px);
}
.top-info__title{
    margin-bottom: 30px;
}
.top-info-list{
    padding-top: 15px;
    border-top: dotted 1px var(--border-gray);
}
.top-info-list-item{
    position: relative;
    padding-left: 1.5em;
}
.top-info-list-item:not(:last-child){
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: dotted 1px var(--border-gray);
}
.top-info-list-item::before{
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
    content: "◆";
}
.top-info-bnr{
    margin-top: 25px;
}
.top-info-visual{
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
}
.top-info-visual img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    /*--- sp ---*/
    .top-info{
        display: block;
    }
    .top-info-content{
        min-width: 0;
        padding: 20px var(--inner-sidespace--sp) 25px;
    }
    .top-info-list{
        padding-top: 10px;
    }
    .top-info-list-item:not(:last-child){
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .top-info-bnr{
        max-width: 350px;
    }
    .top-info-visual{
        flex: 1 1 auto;
        position: relative;
        overflow: hidden;
    }
    .top-info-visual img{
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*-------------
top-reserve
-------------*/
.top-reserve{
    position: relative;
    z-index: 0;
    padding: 18px calc(50% - 600px) 26px;
    border-top: solid 4px var(--main-color-dark);
    border-bottom: solid 4px var(--main-color-dark);
    background: var(--main-color);
    color: #fff;
}
.top-reserve::before{
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../images/bg-pattern.svg) repeat center / auto;
    content: "";
}
.top-reserve__title{
    margin-bottom: 20px;
    color: #fff;
}
.top-reserve__title[data-en]::before{
    color: var(--main-color-light);
}
.top-reserve-inner{
    display: flex;
    margin-top: 20px;
}
.top-reserve-item{
    flex: 1;
}
.top-reserve-item:not(:last-child){
    margin-right: 40px;
    padding-right: 39px;
    border-right: solid 1px var(--main-color-light);
}
.top-reserve-item__lead{
    margin: -4px 0 10px;
    color: #fff;
    font-size: 1.6rem;
    line-height: calc(1em + 7px);
}
.top-reserve-item__btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 50px;
    padding-bottom: 2px;
    background: var(--sub-color);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}
.top-reserve-item__btn a::after{
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .top-reserve{
        padding: 13px var(--inner-sidespace--sp) 20px;
        border-width: 2px;
    }
    .top-reserve::before{
        background-size: 64px;
    }
    .top-reserve__title{
        margin-bottom: 15px;
    }
    .top-reserve-inner{
        display: block;
        margin-top: 15px;
    }
    .top-reserve-item:not(:last-child){
        margin: 0 0 15px;
        padding: 0 0 15px;
        border-right: none;
        border-bottom: solid 1px var(--main-color-light);
    }
    .top-reserve-item__lead{
        margin-bottom: 7px;
        font-size: 1.4rem;
    }
    .top-reserve-item__btn a{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 50px;
        padding-bottom: 2px;
        background: var(--sub-color);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
    }
    .top-reserve-item__btn a::after{
        position: absolute;
        top: calc(50% - 4px);
        right: 20px;
        transform: rotate(45deg);
        width: 8px;
        height: 8px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        content: "";
    }
}

/*-------------
top-room
-------------*/
.top-room{
    position: relative;
    z-index: 0;
    margin-bottom: 116px;
    padding-top: 98px;
}
.top-room::before{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 373px;
    background: #f5f5f5;
    content: "";
}
.top-room-title{
    width: 1200px;
    margin: 0 auto 47px;
}
.top-room-slider-wrapper{
    position: relative;
}
.top-room-slider-track{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.top-room-list:not(.keen-slider){
    display: flex;
    justify-content: center;
}
.top-room-list.keen-slider{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 2040px!important;
}
.top-room-list:not(.is--ready){
    opacity: 0;
}
.top-room-list-item{
    width: 384px;
    padding: 0 12px;
}
.top-room-list-item__pic{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #fff;
}
.top-room-list-item__pic img{
    max-width: 100%;
}
.top-room-list-item__info{
    margin-top: 16px;
}
.top-room-list-item__info__name{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 7px);
}
.top-room-list-item__info__desc{
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: calc(1em + 8px);
}
.top-room-slider-arrows{
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: calc(50% - 600px);
    top: -108px;
    width: 300px;
}
.top-room-slider-arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 58px;
    height: 58px;
    background: #1a1a1a;
    color: #1a1a1a;
    font-size: 0;
    cursor: pointer;
    border-radius: 50%;
}
.top-room-slider-arrow::after{
    display: block;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
.top-room-slider-arrow--left{
    transform: rotate(180deg);
    margin-right: 2px;
}
.top-room-slider-counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -79px;
    right: calc(50% - 520px);
    transform: translateY(-50%);
    width: 140px;
}
.top-room-slider-counter::before{
    flex: 1 1 auto;
    height: 1px;
    margin: 0 10px;
    background: #ccc;
    content: "";
}
.top-room-slider-counter__num{
    min-width: 30px;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}
.top-room-slider-counter__num--current{
    order: -1;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .top-room{
        margin-bottom: 60px;
        padding-top: 36px;
    }
    .top-room::before{
        width: 100%;
        height: calc(118px + 31.25vw);
    }
    .top-room-title{
        width: var(--inner-width--sp);
        margin-bottom: 17px;
    }
    .top-room-list.keen-slider{
        width: calc((75vw + 15px) * 3) !important;
    }
    .top-room-list-item{
        width: 75vw;
        padding: 0 7.5px;
    }
    .top-room-list-item__info{
        margin-top: 16px;
    }
    .top-room-slider-arrows{
        justify-content: space-between;
        top: 21.09375vw;
        transform: translateY(-50%);
        width: var(--inner-width--sp_vw);
        right: var(--inner-sidespace--sp_vw);
    }
    .top-room-slider-arrow{
        width: calc((var(--inner-width--sp_vw) - (62.5vw + 30px)) / 2);
        height: auto;
        aspect-ratio: 1;
    }
    .top-room-slider-arrow::after{
        width: 6px;
        height: 6px;
        margin-right: 2px;
    }
    .top-room-slider-arrow--left{
        margin: 0;
    }
    .top-room-slider-counter{
        justify-content: center;
        position: static;
        transform: none;
        width: 100px;
        height: 30px;
        margin: 22px auto 0;
        border-radius: 15px;
        background: #f2f2f2;
    }
    .top-room-slider-counter::before{
        max-width: 30px;
        margin: 0 5px;
    }
    .top-room-slider-counter__num{
        min-width: 20px;
        font-size: 1.3rem;
    }
}

/* top-room-price */
.top-room-price{
    width: 1200px;
    margin: 60px auto 0;
}
.top-room-price-table{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, auto);
    margin-bottom: 20px;
    border-top: solid 1px var(--main-color-dark);
    border-left: solid 1px var(--main-color-dark);
}
.top-room-price-table__column{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
}
.top-room-price-table__column.pc{
    font-weight: bold;
}
.top-room-price-table__row{
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-right: solid 1px var(--main-color-dark);
    border-bottom: solid 1px var(--main-color-dark);
}
.top-room-price-table__row._head{
    background: var(--bg-gray);
}
.top-room-price-table__row._room{
    justify-content: center;
    border-bottom-width: 3px;
    border-bottom-style: double;
    background: var(--main-color-light);
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.top-room-price-table__row._data{
    justify-content: flex-end;
    text-align: right;
}
.top-room-price-table__row-head{
    display: none;
}
@media screen and (max-width:767px){
    /*--- sp ---*/
    .top-room-price{
        width: var(--inner-width--sp);
        margin-top: 40px;
    }
    .top-room-price-table{
        display: block;
        margin-bottom: 15px;
        border: none;
    }
    .top-room-price-table__column{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
        grid-row: unset;
        border-top: solid 1px var(--main-color-dark);
        border-left: solid 1px var(--main-color-dark);
    }
    .top-room-price-table__column:not(:last-child){
        margin-bottom: 10px;
    }
    .top-room-price-table__row{
        grid-column: span 2;
        padding: 0;
    }
    .top-room-price-table__row:not(._room){
        display: grid;
        grid-template-columns: subgrid;
    }
    .top-room-price-table__row._room,
    .top-room-price-table__row-head,
    .top-room-price-table__row-body{
        padding: 10px 14px;
    }
    .top-room-price-table__row._data{
        justify-content: flex-end;
        text-align: right;
    }
    .top-room-price-table__row-head{
        display: block;
        background: var(--bg-gray);
        text-align: left;
    }
    .top-room-price-table__row:has(.top-room-price-table__row-body:empty){
        display: none;
    }
}

/*-------------
top-facility
-------------*/
.top-facility{
    width: 1200px;
    margin: 0 auto 100px;
}
.top-facility-title{
    margin-bottom: 30px;
    text-align: center;
}
.top-facility-gallery{
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}
.top-facility-table{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1px 20px;
    padding: 1px 0;
}
.top-facility-table__row{
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
}
.top-facility-table__column{
    padding: 19px 0 21px;
    box-shadow: 0 -1px 0 var(--border-gray), 0 1px 0 var(--border-gray);
}
.top-facility-table__column._head{
    min-width: 180px;
    box-shadow: 0 -1px 0 var(--main-color), 0 1px 0 var(--main-color);
    color: var(--main-color);
    font-weight: bold;
}
.top-facility-list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
}
.top-facility-list-item:not(:last-child)::after{
    display: inline-block;
    content: "・";
}
.top-facility-mid-table{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 10px;
}
@media screen and (max-width:767px){
    /*--- sp ---*/
    .top-facility{
        width: var(--inner-width--sp);
        margin-bottom: 60px;
    }
    .top-facility-title{
        margin-bottom: 20px;
    }
    .top-facility-gallery{
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 20px;
    }
    .top-facility-gallery-pic{
        flex: 0 0 auto;
        width: calc(50% - 3px);
    }
    .top-facility-table{
        display: flex;
        flex-direction: column;
        border-bottom: solid 1px var(--border-gray);
    }
    .top-facility-table__row{
        display: block;
    }
    .top-facility-table__column{
        border-top: dotted 1px var(--border-gray);
        box-shadow: none;
    }
    .top-facility-table__column._head{
        min-width: 0;
        padding: 12px 0;
        box-shadow: 0 -1px 0 var(--main-color);
    }
    .top-facility-list{
        display: flex;
        flex-wrap: wrap;
        gap: 5px 0;
    }
    .top-facility-list-item:not(:last-child)::after{
        display: inline-block;
        content: "・";
    }
    .top-facility-mid-table{
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 5px 10px;
    }
}

/*-------------
top-access
-------------*/
.top-access{
    width: 1200px;
    margin: 0 auto 100px;
}
.top-access-title{
    margin-bottom: 40px;
    text-align: center;
}
.top-access-inner{
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 0 40px;
}
.top-access-lead{
    grid-column: 2;
    line-height: calc(1em + 14px);
}
.top-access-gmap{
    grid-column: 1;
    grid-row: 1 / 4;
    max-height: 700px;
    background: var(--bg-gray);
}
.top-access-gmap iframe{
    width: 100%;
    height: 100%;
}
.top-access-area{
    grid-column: 2;
    margin-top: 30px;
}
.top-access-spot{
    grid-column: 2;
    margin-top: 15px;
}
.top-access-spot-title{
    margin-bottom: 15px;
    color: var(--main-color);
    font-size: 1.8rem;
    font-weight: bold;
}
.top-access-spot-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px 10px;
}
.top-access-spot-list-item__name{
    margin-top: 3px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width:767px){
    /*--- sp ---*/
    .top-access{
        width: 100%;
        margin-bottom: 40px;
    }
    .top-access-title{
        margin-bottom: 15px;
    }
    .top-access-inner{
        display: block;
    }
    .top-access-lead{
        width: var(--inner-width--sp);
        margin: 0 auto 20px;
        line-height: calc(1em + 12px);
    }
    .top-access-gmap{
        aspect-ratio: 8 / 5;
    }
    .top-access-area{
        width: var(--inner-width--sp);
        margin: 30px auto 20px;
    }
    .top-access-spot{
        width: var(--inner-width--sp);
        margin: 20px auto 0;
    }
    .top-access-spot-title{
        font-size: 1.6rem;
    }
    .top-access-spot-list-item{
        flex: 0 0 auto;
        width: calc(50% - 5px);
    }
    .top-access-spot-list-item__name{
        font-size: 1.3rem;
    }
}

/*-------------
top-contact
-------------*/
.top-contact{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
    padding: 24px calc(50% - 600px) 26px;
    border-top: solid 4px var(--main-color-dark);
    border-bottom: solid 4px var(--main-color-dark);
    background: var(--main-color);
    color: #fff;
}
.top-contact::before{
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../images/bg-pattern.svg) repeat center / auto;
    content: "";
}
.top-contact-head{
    flex: 0 0 auto;
    width: 50%;
}
.top-contact-title{
    margin-bottom: 20px;
    color: #fff;
}
.top-contact-title[data-en]::before{
    color: var(--main-color-light);
}
.top-contact-body{
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
    align-items: center;
    position: relative;
    border-left: solid 1px var(--main-color-light);
    border-right: solid 1px var(--main-color-light);
}
.top-contact-body::before{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--main-color-light);
    content: "";
}
.top-contact-item{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}
.top-contact-item__icon{
    flex: 0 0 auto;
    margin-bottom: 10px;
}
.top-contact-item__inner{
    width: 100%;
}
.top-contact-item__inner._tel a{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    color: #fff;
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}
.top-contact-item__inner._mail a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    background: #fff;
    color: var(--main-color);
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}
.top-contact-item__inner._mail a::after{
    content: attr(data-inner);
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .top-contact{
        display: block;
        padding: 20px var(--inner-sidespace--sp) 15px;
        border-width: 2px;
    }
    .top-contact::before{
        background-size: 64px;
    }
    .top-contact-head{
        width: 100%;
        margin-bottom: 20px;
    }
    .top-contact-title{
        margin-bottom: 15px;
    }
    .top-contact-body{
        display: grid;
        grid-template-columns: auto 1fr;
        border: none;
    }
    .top-contact-body::before{
        content: none;
    }
    .top-contact-item{
        display: grid;
        grid-template-columns: subgrid;
        grid-column: span 2;
        padding: 15px 0;
        border-top: solid 1px var(--main-color-light);
    }
    .top-contact-item__icon{
        width: 36px;
        margin: 0 20px 0 0;
    }
    .top-contact-item__inner{
        width: 100%;
    }
    .top-contact-item__inner._tel a{
        min-height: 44px;
        font-size: 28px;
    }
    .top-contact-item__inner._mail a{
        min-height: 44px;
        font-size: 16px;
    }
}
