@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

*{
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}


body {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    color: #343B37;
    background: #F0F2EF;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a:hover{
    color: rgba(52,59,55,0.6);
}

a img, a svg {
    transition: 0.3s ease-out;
}

a:hover img{
    opacity: .7;
}

::-moz-selection {
    background: #343B37;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #343B37;
    color: #fff;
    text-shadow: none;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    font-weight: inherit;
}

img {
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

svg{
    fill: currentcolor;
}

ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.display_none{
    display: none;
}

.wrapper {
    width: calc(1166 / 1280 * 100%);
    max-width: 1166px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*テキスト*/
.en{
    font-family: "EB Garamond", serif;
    font-weight: 400;
}

p a{
    word-break: break-all;
}


/*リンク*/
.link_box{
    width: 18rem;
    height: 4.4rem;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    border: 1px solid rgba(52,59,55,0.3);
    margin: auto;
    border-radius: 1px;
}

.link_box.en{
    letter-spacing: .1rem;
}

.link_box:hover{
    background: rgba(52,59,55,0.85);
    color: #fff;
    text-decoration: none;
}

.link_box + .link_box{
    margin-top: 2rem;
}

/*fadein*/
.fadein {
    opacity: 0;
    transition: 1000ms ease-in;
}

.fadein.scrollin {
    opacity: 1;
}

@media print {
    .fadein {
        opacity: 1;
    }
}

/*ヘッダー*/
.header_container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 4.4rem 6% 0;
}

.header_logo{
    width: calc(100 / 1166 * 100%);
}

.header_logo img {
    filter: invert(100%);
}

/*メイン*/
.top_fv_slide{
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top_fv_slide-1{
    background-image: url(img/fv-1_pc.jpg);
}

.top_fv_slide-2{
    background-image: url(img/fv-2_pc.jpg);
}

.top_fv_slide-3{
    background-image: url(img/fv-3_pc.jpg);
}

.top_fv_slide-4{
    background-image: url(img/fv-4_pc.jpg);
}

.top_intro_container{
    width: 56rem;
    margin: 11rem auto 8rem;
}

.top_intro_text_jp{
    font-size: 1.6rem;
    line-height: 2.1;
    text-align: center;
    margin-bottom: 5.2rem;
}

.top_intro_text_en{
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    color: rgba(52,59,55,0.8);
    margin-bottom: 8.8rem;
}


/*フッター*/
.main_footer{
    margin-top: 8rem;
    border-top: 1px solid rgba(52,59,55,0.15);
    border-bottom: 1px solid rgba(52,59,55,0.15);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.main_footer_text{
    font-size: 1.5rem;
    line-height: 1.85;
    text-align: center;
}

.main_footer_text + .main_footer_text{
    margin-top: 2rem;
}

.main_footer_text a{
    text-decoration: underline;
}

.footer_bottom{
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    font-size: 1.4rem;
    justify-content: space-between;
    align-items: center;
}

/*----------------------------------------------------

PCのみ

----------------------------------------------------*/

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

@media screen and (max-width: 849px) and (min-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .wrapper{
        width: 90%;
    }
}
/*----------------------------------------------------

スマートフォンのみ

----------------------------------------------------*/


@media screen and (max-width: 767px) {

    body {
        position: relative;
        background-image: none;
    }
    
    .display_pc{
        display: none !important;
    }

    .wrapper {
        width: 100%;
        padding: 0 6.8%;
    }

    /*ヘッダー*/
    .header_container{
        padding: 3.6rem 8% 0;
    }

    .header_logo{
        width: calc(80 / 390 * 100%);
    }

    /*メイン*/

    .top_fv_slide-1{
        background-image: url(img/fv-1_sp.jpg);
    }

    .top_fv_slide-2{
        background-image: url(img/fv-2_sp.jpg);
    }

    .top_fv_slide-3{
        background-image: url(img/fv-3_sp.jpg);
    }

    .top_fv_slide-4{
        background-image: url(img/fv-4_sp.jpg);
    }

    .top_intro_container{
        width: 100%;
        margin: 8rem auto 6rem;
    }

    .top_intro_text_jp{
        font-size: 1.6rem;
        margin-bottom: 5rem;
    }

    .top_intro_text_en{
        font-size: 1.4rem;
        margin-bottom: 6rem;
    }


    /*フッター*/
    .main_footer{
        margin-top: 8rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .main_footer_text{
        font-size: 1.4rem;
    }

    .main_footer_text + .main_footer_text{
        margin-top: 1.6rem;
    }

    .footer_bottom{
        padding-top: 4rem;
        padding-bottom: 4rem;
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .copyright{
        padding-top: 2rem;
    }

}

@media print,
    screen and (max-width: 379px) {
        html {
            font-size: 56%;
        }
}