@charset "UTF-8";
/* -------------------
common
--------------------- */
:root {
    --primary-black: #3e3e3e;
    --primary-gray: #f3f3f3;
    --contentWidth: 77.6%;
    --contentPadding: 11.2%;
}

html {
    font-size: 62.5%;
}

/* 共通 */
body{
    color: var(--primary-black, #3e3e3e);
    font-style: normal;
    font-weight: 400;
    line-height: 220%; 
}

/* 和文フォント */
body.lang-ja {
    font-family: "Noto Sans JP", Arial, sans-serif;
    font-size: 1.4rem;
}

/* 欧文フォント */
body.lang-en {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
}

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

a {
    text-decoration: none;
}

.topic {
    font-family: "Cormorant Garamond";
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 120%;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.8rem;
    width: 15.3rem;
    height: 3.2rem;
    border: 0.1rem solid;
    background: transparent;
    text-decoration: none;
    color: var(--primary-black);
    text-align: center;
    color: #3E3E3E;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-weight: 700;
    line-height: 257%;
    position: relative; 
}

.btn::after {
    content: '';
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image:url(../images/icon_arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 8%;
}

.btnNoarrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11.6rem;
    height: 2.8rem;
    border: 0.1rem solid;
    background: transparent;
    text-decoration: none;
    color: var(--primary-black);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-weight: 700;
    line-height: 143%;
    font-size: 1.4rem;
}

/* common pc */
@media screen and (min-width: 960px) {
    .topic {
        font-size: 3.2rem;
        font-weight: 600;
        line-height: 122%;
    }

    .btn {
        padding-right: 0.8rem;
        width: 16.3rem;
        border: 0.1rem solid;
        font-weight: 500;
        line-height: 225%;
    }

    .btn::after {
        top: 30%;
    }
}
/*  pc 960px */

/* -------------------
header
--------------------- */
.header__topic {
    display: none;
    /* padding-top: 2rem;
    padding-left: 3.2rem;
    font-family: "Cormorant Garamond";
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%; */
}

.header__btn {
    display: block;
    position: fixed;
    top: 2.2rem;
    right: 3.2rem; 
    width: 3.6rem;
    height: 2.4rem;
    z-index: 2;
}

/* headerTxt */
.headerTxt {
    display: none;
}

/* navの初期表示 */
.nav {
    background-color: var(--primary-gray);
    width: 100%;
    max-width: 37.5rem;
    height: 67.3rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav__header {
    padding: 2rem 9.6% 0 9.6%;
}

.nav__topic {
    display: inline-block;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;    
}

.nav__topic a {
    color: var(--primary-black);
    width: 100%;
}

.nav__btn {
    position: fixed;
    top: 2.8rem;
    right: 9.6%;
}

.language {
    text-align: right;
    font-family: "Cormorant Garamond";
    font-size: 1.2rem;
    line-height: 300%   
}

.language__EN {
    margin-left: 8.5%;
    position: relative;
}

.language__EN::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #CECECE;
}

.language__JP a , .language__EN a{
    color: var(--primary-black);
    font-weight: 700;
}

.language__JP.is-active a,
.language__EN.is-active a {
    font-weight: 400;
}

.nav__list {
    padding-top: 6.8rem;
    padding-left: 8.8rem;
}

.nav__item {
    margin-top: 4.8rem;
    text-decoration: none;
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
}

.nav__item a {
    color: var(--primary-black);
}

.nav__item:first-child{
    margin-top: 0;
}

.item__jptxt {
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
}

.navIcon{
    position: fixed;
    right: 4.8rem;
    bottom: 9.8rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.navIcon__item img {
    display: flex;
    text-align: center;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width: 960px) {
    .header__btn {
        display: none;
    }
    
    .headerTxt {
        display: flex;
        justify-content: space-between;
        padding: 3rem 4.1% 2rem 4.1%;
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .headerTxt__header {
        padding: 0;
    }

    .headerTxt__topic {
        display: inline-block;
        font-family: "Cormorant Garamond";
        font-size: 3.2rem;
        font-weight: 400;
        line-height: 122%;   
    }
    
    .headerTxt__topic a {
        color: var(--primary-black);
        width: 100%;
    }

    .headerTxt__btn {
        display: none;
    }
    
    .headerTxtLanguage {
        position: absolute;
        top: 3.4rem;
        right: 6rem;
        width: 4.8rem;
        text-align: right;
        font-family: "Cormorant Garamond";
        font-size: 12px;
        line-height: 300%   
    }

    .headerTxtLanguage__EN {
        margin-left: 1.6rem;
    }
    
    .headerTxtLanguage__EN::before {
        content: "";
        position: absolute;
        left: 2.4rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 12px;
        background-color: #CECECE;
    }

    .headerTxtLanguage__JP a , .headerTxtLanguage__EN a{
        color: var(--primary-black);
        font-weight: 700;
    }
    
    .headerTxtLanguage__JP.is-active a,
    .headerTxtLanguage__EN.is-active a {
        font-weight: 400;
    }

    .headerTxt__list {
        display: flex;
        padding-top: 0;
        padding-right: 27.4rem;
        margin-top: 0;
        font-size: 1.4rem;
        line-height: 257%;
        gap: 3.2rem;
        list-style: none;
    }

    .headerTxt__item {
        margin-top: 1rem;
        text-align: center;
        text-decoration: none;
        font-family: "Cormorant Garamond";
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1;
    }

    .headerTxt__item a {
    color: var(--primary-black);
    }

    .headerTxt__item:first-child{
        margin-top: 1rem;
    }


    .headerTxtIcon{
        position: absolute;
        top: 42%;
        right: 13.1rem;
        margin-left: 3.6rem;
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .headerTxtIcon__item img {
        display: flex;
        text-align: center;
    }

    .headerTxtIcon__item--white img{
        display: none;
    }

    body.home .headerTxt {
        display: none;
    } 

    body.page-id-26 .headerTxt {
        display: none;
    }
}
/*  pc 960px */


/* -------------------
footer
--------------------- */
.footer {
    position: relative;
    height: 47.6rem;
    background-color: #bfbfbf;
}

.footerContent {
    position: relative;
    width: 77.6%;
    height: 47.6rem;
    /* padding: 5.4rem 11.2% 1.2rem; */
    padding-top: 5.4rem;
    padding-bottom: 1.2rem;
    margin: 0 auto;
}

.footer__topic {
    font-family: "Cormorant Garamond";
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 120%;
}

.footer__topic a {
    color: #fff;
}

.footer__list {
    list-style: none;
    padding: 4.8rem 0;
    display: block;
}

.footer__item {
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 3.6rem;
    letter-spacing: 0.05%;
}

.footer__item a {
    color: #fff;
    letter-spacing: 0.05rem;
}

.footerItem__jptxt {
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 16px;
}

.footer__item--privacy a {
    color: #6f6f6f;
}

.footerIcon{
    position: absolute;
    left: 0;
    bottom: 10rem;
    display: flex;
    gap: 4rem;
}

.btnNoarrow--footerIcon {
    color: #fff;
}

.copy {
    position: absolute;
    bottom: 1.2rem;
    display: block;
    font-family: "Noto Sans JP";
    color: #6f6f6f;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 360%;
    width: 77.6%;
    margin-left: 11.2%;
}

/* footer pc 1024px */
@media screen and (min-width: 1024px) {
    .footer {
        height: auto;
        padding: 3rem 10% 8rem;
    }

    .footerContent {
        width: auto;
        height: auto;
        padding-top: 0;
        margin-right: 0;
    }

    .footer__topic {
        font-size: 3rem;
        font-weight: 500;
        line-height: 122%;
    }

    .footer__list {
        position: absolute;
        top: 0;
        right: -5%;
        width: 72%;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 0;
    }

    .footer__item {
        line-height: 220%;
    }

    .footerItem__jptxt {
        display: block;
        line-height: 0;
    }

    .footerIcon{
        left: auto;
        right: 0;
        bottom: -5rem;
    }

    .copy {
        bottom: -8rem;
        right: 0;
        text-align: right;
    }
}
/*  pc 1024px */

/* footer pc 1440px */
@media screen and (min-width: 1440px) {
    .footer {
        height: auto;
        padding: 3rem 13.8% 8rem;
    }

    .footerContent {
        width: auto;
        height: auto;
        padding-top: 0;
        margin-right: 0;
    }

    .footer__topic {
        font-size: 3rem;
        font-weight: 500;
        line-height: 122%;
    }

    .footer__list {
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        padding: 0;
        display: flex;
        /* grid-template-columns: repeat(4, 1fr); */
        gap: 2.4rem 3rem;
    }

    .footer__item {
        line-height: 220%;
    }

    .footerItem__jptxt {
        display: block;
        line-height: 0;
    }

    .footerIcon{
        left: auto;
        right: 0;
        bottom: -5rem;
    }

    .copy {
        bottom: -8rem;
        right: -16rem;
        text-align: right;
    }
}
/*  pc 1440px */

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0,2rem);
    opacity: 0;
    transition: 2s;
}

.fadeIn.animated {
    transform: translate(0,0);
    opacity: 1;
}

/* -------------------
404
--------------------- */
.page404{
    padding: 4rem 0;
}

.page404 .section-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.page404 p:first-of-type {
    margin-top: 3rem;
}

/* 404 pc 769px */
@media screen and (min-width: 769px) {
    .page404{
        padding: 16rem 0;
    }
    
    .page404 .section-title {
        font-size: 2rem;
        font-weight: 600;
    }
}