@charset "utf-8";
/* CSS Document */





/* ==============================

define

============================== */
:root {
    /* max width */
    --mw: 1920;
    --mw-px: 1920px;

    /* design width */
    --dw: 1403; /* 1388px + 15px */
    --dw-px: 1403px;

    /* 表示最大幅 / デザイン幅 = 1.38 */
    --magnification: 1;

    /* font size */
    --fs-xs: min( max( calc( 12 * 100vw / var( --dw ) ), 10px ), calc( 12px * var( --magnification ) ) );
    --fs-s: min( max( calc( 14 * 100vw / var( --dw ) ), 12px ), calc( 14px * var( --magnification ) ) );
    --fs-m: min( max( calc( 16 * 100vw / var( --dw ) ), 14px ), calc( 16px * var( --magnification )) );
    --fs-l: min( max( calc( 18 * 100vw / var( --dw ) ), 16px ), calc( 18px * var( --magnification ) ) );
    --fs-xl: min( max( calc( 20 * 100vw / var( --dw ) ), 18px ), calc( 20px * var( --magnification ) ) );
    --fs-xxl: min( max( calc( 30 * 100vw / var( --dw ) ), 26px ), calc( 30px * var( --magnification ) ) );

    --fs-m-v2: min( max( calc( 16 * 100vw / var( --dw ) ), 14px ), calc( 16px * var( --magnification ) ) );
    --fs-xl-v2: min( max( calc( 26 * 100vw / var( --dw ) ), 24px ), calc( 26px * var( --magnification ) ) );

    --fs-caption: min( max( calc( 12 * 100vw / var( --dw ) ), 10px ), calc( 12px * var( --magnification ) ) );

    --fls: 0.1em;
}
@media screen and ( max-width: 768px ){
    :root {
        /* max width */
        --mw: 375;
        --mw-px: 375px;

        /* design width */
        --dw: 375;
        --dw-px: 375px;

        /* font size */
        --fs-xs: calc( 12 * 100vw / var( --dw ) );
        --fs-s: calc( 14 * 100vw / var( --dw ) );
        --fs-m: calc( 14 * 100vw / var( --dw ) );
        --fs-l: calc( 18 * 100vw / var( --dw ) );
        --fs-xl: calc( 14 * 100vw / var( --dw ) );
        --fs-xxl: calc( 20 * 100vw / var( --dw ) );

        --fs-m-v2: calc( 13 * 100vw / var( --dw ) );
        --fs-xl-v2: calc( 18 * 100vw / var( --dw ) );

        --fs-caption: min( calc( 12 * 100vw / var( --dw ) ), 14px );

    }
}





.fs-xs {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-xs );
    line-height: 1.3;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-s {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-s );
    line-height: 2.133;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-m {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-m );
    line-height: 2.235;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-l {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-l );
    line-height: 2.05;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-xl {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-xl );
    line-height: 1.652;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-xxl {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-xxl );
    line-height: 1.66;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-m-v2 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-m-v2 );
    line-height: 2.235;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
.fs-xl-v2 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-xl-v2 );
    line-height: 1.652;
    letter-spacing: 0.01em;
    letter-spacing: var( --fls );
    font-feature-settings: "palt";
}
@media screen and ( max-width: 768px ) {
    .fs-xs {
        line-height: 1.3;
    }
    .fs-s {
        line-height: 2.133;
    }
    .fs-m {
        line-height: 1.823;
    }
    .fs-l {
        line-height: 2.05;
    }
    .fs-xl {
        line-height: 1.652;
    }
    .fs-xxl {
        font-size: var( --fs-xxl );
    }
    .fs-m-v2 {
        line-height: 1.823;
    }
    .fs-xl-v2 {
        line-height: 1.652;
    }
}



.fs-caption {
    /*font-family: "Noto Sans JP", sans-serif;*/
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var( --fs-caption );
    line-height: 2;
    letter-spacing: 0;
    font-feature-settings: "palt";
}
@media screen and ( max-width: 768px ) {
    .fs-caption {
        line-height: 2;
    }
}





body {
    font-family: "Noto Serif JP", serif;
}









.l-content-section figure, 
.l-content-section picture {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
}
.l-content-section img {
    max-width: none;
    width: 100%;
}
.l-content-section figure figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0 1em;
    color: #fff;
    background-color: rgba( 0, 0, 0, 0.4 );
}
.l-content-section figure figcaption.transparent {
    color: #333;
    background-color: transparent;
}
@media screen and ( max-width: 768px ) {
}





/* ==============================

l-container

============================== */
.l-container {
    position: relative;
    max-width: var( --mw-px );
    margin: 0 auto;
}
@media screen and ( max-width: 768px ) {
    .l-container {
        position: relative;
        max-width: none;
        margin: 0 auto;
    }
}



.l-content-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
@media screen and ( max-width: 768px ){
    .l-content-section {
    }
}



.l-content-section-inner {
    position: relative;
    width: 100%;
    /*
    max-width: var( --dw-px );
    margin: 0 auto;
    padding: 0;
    padding-left: min( calc( 100 * 100vw / var( --dw ) ), calc( 100px * 1.38 ) );
    padding-right: min( calc( 100 * 100vw / var( --dw ) ), calc( 100px * 1.38 ) );
    */

    margin: 0;
    padding: 0 calc( calc( 100% - var( --dw-px ) ) / 2 );


}
@media screen and ( max-width: 768px ){
    .l-content-section-inner {
        /*
        padding-left: min(5.333vw, 24px);
        padding-right: min(5.333vw, 24px);
        */
        padding: 0 min( 5.333vw, 24px );
    }
}





/* ==============================

main_visual

============================== */
.lower_page .main_visual {
}
.lower_page .main_visual .main_visual-bg {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
}
.lower_page .main_visual .main_visual-fg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
}
.lower_page .main_visual .main_visual-fg__title {
    position: absolute;
    left: 110px;
    margin: 0;
    padding: 0;
    font-size: 0;
}
@media screen and ( max-width: 768px ){
    .lower_page .main_visual {
    }
    .lower_page .main_visual .main_visual-bg {
    }
    .lower_page .main_visual .main_visual-fg {
    }
    .lower_page .main_visual .main_visual-fg__title {
        position: absolute;
        left: calc( 45 * 100vw / var( --dw ) );
        margin: 0;
        padding: 0;
        font-size: 0;
    }
}



.lower_page .main_visual .main_visual-bg, 
.lower_page .main_visual .main_visual-fg {
    opacity: 0;
    transform: translateY( 20px );
    transition: all 0.5s;
}
.lower_page .main_visual .main_visual-bg.is_active, 
.lower_page .main_visual .main_visual-fg.is_active {
    opacity: 1;
    transform: translateY( 0 );
}
@media screen and ( max-width: 768px ){
}



.l-header__btns__btn.navi_entry {
    background-color: #897658;
}



.c-button.c-button--primary.ctaSpFixed_entry {
    background-color: #897658;
}



.c-button.c-button--primary {
    background-color: #897658;
}



.c-button.c-button--secondary {
    color: #fff;
    background-color: #000;
}



.l-footer__contact {
    background-color: #031e37;
}



.c-note ul li {
    word-break: break-all;
}



.l-header__link.disabled, 
.l-footer__nav__link.disabled {
    color: #999 !important;
}
.l-header__link.disabled:hover {
    color: #999 !important;
    opacity: 1;
}
.l-footer__nav__link.disabled:hover {
    opacity: 1;
}
@media screen and ( max-width: 768px ){
    .l-header__link.disabled, 
    .l-footer__nav__link.disabled {
        color: #999 !important;
    }
    .l-header__link.disabled:hover {
        color: #999 !important;
        opacity: 1;
    }
    .l-footer__nav__link.disabled:hover {
        opacity: 1;
    }
}



.c-cta--fixed a {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
}



.c-cta__inner a {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
}



.l-header__link .text_icon {
    position: absolute;
    bottom: 3px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}
.l-header__link .text_icon.comming_soon img {
    position: relative;
    display: inline-block;
    width: min( calc( 72.17 * 100vw / var( --dw ) ), 72.17px );
    aspect-ratio: 28868 / 3733;
    margin: 0;
    padding: 0;
    /*
    background-image: url( '../img/common/text-comming_soon.svg' );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    */
}
.l-header__link .text_icon.new {
    margin-bottom: 2px;
}
.l-header__link .text_icon.new img {
    position: relative;
    display: inline-block;
    width: min( calc( 23.005 * 100vw / var( --dw ) ), 23.005px );
    aspect-ratio: 9202 / 2657;
    margin: 0;
    padding: 0;
    /*
    background-image: url( '../img/common/text-new.svg' );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    */
}
@media screen and ( max-width: 768px ){
    .l-header__link .text_icon {
        bottom: auto;
        top: 0;
        left: 15rem;
        justify-content: flex-start;
        width: calc( 100% - 15rem );
        height: 100%;
    }
    .l-header__link .text_icon.comming_soon img {
        width: calc( 72.25 * 100vw / var( --dw ) );
    }
    .l-header__link .text_icon.new img {
        width: calc( 23 * 100vw / var( --dw ) );
    }
}








