@charset "utf-8";

/* ========================
base
======================== */
:root {
    --yellow-main: #FFFBF0;
    --yellow-second: #FFEFCC;
    --yellow-accent: #FFBD28;
    --green-btn: #679579;
    --brown-main: #5E3A19;
    --brown-second: #855224;
    --white: #fff;
    --contentWidth-1240: 86.1vw;
    --contentWidth-1040: 72.2vw;
    --sp-contentWidth-335: 89.3vw;
    --maxWidth-1040: 1040px;
    --maxWidth-1240: 1240px;
    --maxWidth-1440: 1440px;

}

html {
    font-size: 62.5%;
}

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

body {
    font-family:
        "Zen Kaku Gothic New",
        Arial,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1rem;
    color: var(--brown-main);
    background-color: var(--yellow-main);
}

.container {
    overflow: hidden;
}

/* ========================
common
======================== */
/* br */
.spBr {
    display: none;
}

/* btn */
.btn {
    background-color: var(--green-btn);
    border-radius: 74px;
    width: 20.8vw;
    max-width: 350px;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 0.8rem;
    transition: all 0.15s linear;
}

.btn:hover {
    filter: brightness(0.7) contrast(1.4);
    transition: all 0.15s linear;
}

.btn__txt {
    line-height: 1.5;
    color: white;
    letter-spacing: .16rem;
}

.btn__txt--En {
    font-family: "Montserrat";
    font-size: clamp(1.8rem, 1.39vw, 2.0rem);
    font-weight: 600;
}

.btn__txt--Jp {
    font-family: "Zen Kaku Gothic New";
    font-size: clamp(1.7rem, 1.32vw, 1.9rem);
}

.btn::after {
    display: block;
    width: 2.0rem;
    aspect-ratio: 1/1;
    content: '';
    background-image: url(../images/btn__icon--_blank.svg);
    background-repeat: no-repeat;
    background-position: center;
}

/* btn--PageTop */
/* .scrollBtn--top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.6%;
    max-width: 100px;
    min-width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 10rem 0 0 10rem;
    background-color: var(--yellow-accent);
    position: fixed;
    right: 0;
    bottom: 80px;
    z-index: 100;
}

.scrollBtn--top p {
    font-family: "Montsrrat";
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.2;
    padding: 0 0 0 0.8rem;
} */

/* section__heading */
.heading--En {
    font-family: "Montserrat";
    font-size: 5.4rem;
    font-weight: 700;
    letter-spacing: 0.324rem;
}

.heading--Jp {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.144rem;
    margin-top: 16px;
}

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

    /* spBr */
    .spBr {
        display: block;
    }

    .pcBr {
        display: none;
    }

    /* btn */
    .btn {
        min-width: initial;
        padding: 16px 0;
        width: 100%;
    }

    .btn__txt--En {
        font-size: 1.8rem;
    }

    .btn__txt--Jp {
        font-size: 1.7rem;
    }

    .btn::after {
        width: 1.8rem;
    }

    /* btn--PageTop */
    .scrollBtn--top {
        width: 60px;
        min-width: initial;
        right: 0;
        bottom: 80px;
    }

    .scrollBtn--top p {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    /* section__heading */
    .heading--En {
        font-size: 4.0rem;
        letter-spacing: 0.1rem;
    }

    .heading--Jp {
        font-size: 1.6rem;
        margin-top: 8px;
        letter-spacing: 0.1rem;
    }
}

/* ========================
header
======================== */
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 2.1%;
    position: fixed;
    z-index: 100;
}

.header__logo {
    width: 18.4%;
    max-width: 180px;
    min-width: 124px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 1.67vw, 4.0rem);
}

.nav__item {
    font-family: "Montserrat";
    font-size: clamp(1.4rem, 1.67vw, 2.4rem);
}

.nav__item a img {
    width: clamp(1.4rem, 1.67vw, 2.4rem);
    aspect-ratio: 1/1;
}

.nav__btn {
    display: none;
}

@media screen and (max-width: 767px) {
    .header {
        padding: 20px 3.6%;
    }

    .header__logo {
        width: 19.5%;
        min-width: 150px;
    }

    .nav {
        display: none;
        opacity: 0;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--yellow-second);
        z-index: -1;
        animation: navClose 0.4s cubic-bezier(.4, .4, 0, 1);
    }

    @keyframes navClose {
        from {
            display: block;
            opacity: 1;
        }

        to {
            display: none;
            opacity: 0;
        }
    }

    .nav.active {
        display: block;
        opacity: 1;
        animation: navOpen 0.4s cubic-bezier(.4, .4, 0, 1);
    }

    @keyframes navOpen {
        from {
            display: none;
            opacity: 0;
        }

        to {
            display: block;
            opacity: 1;
        }
    }



    .nav__list {
        height: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
    }

    .nav__item {
        font-size: 2.4rem;
    }

    .nav__item a img {
        width: 2.4rem;
    }

    .nav__btn {
        display: block;
        width: 12.8%;
        max-width: 60px;
        aspect-ratio: 1/1;
        border-radius: 100px;
        background-color: var(--yellow-accent);
        position: relative;
    }

    .nav__btn span {
        display: block;
        width: 45.8%;
        height: 3px;
        border-radius: 100px;
        background-color: white;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.4s cubic-bezier(.4, .4, 0, 1);
    }

    /* nav__btn close */
    .nav__btn span:nth-child(1) {
        top: 38.3%;
    }

    .nav__btn span:nth-child(2) {
        bottom: 38.3%;
    }

    /* nav__btn open */
    .nav__btn.active span:nth-child(1) {
        rotate: -30deg;
        top: 36.3%;
        left: 48%;
    }

    .nav__btn.active span:nth-child(2) {
        rotate: 30deg;
        bottom: 35.3%;
        left: 48%;
    }

}

/* ========================
footer
======================== */
.footer {
    padding: 120px 0 40px;
    background-image: url(../images/footer__bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0;
}

.footer__wrap {
    display: flex;
    justify-content: center;
    gap: 6%;
    width: 42.7%;
    max-width: 1040px;
    min-width: 540px;
    margin: 0 auto;
    opacity: 0;
}

/* contact */
.section__heading--contact .heading--En {
    font-size: clamp(4.0rem, 0.6rem + 3.75vw, 5.4rem);
}

.section__heading--contact .heading--Jp {
    font-size: clamp(1.6rem, 0.4rem + 1.25vw, 1.8rem);
}

.contact__content {
    margin-top: 14.5%;
}

.contact__desc {
    font-size: clamp(1.2rem, 0.3rem + 0.97vw, 1.4rem);
    line-height: 1.6;
    letter-spacing: 0.058rem;
}

.contact__btn {
    margin-top: 24px;
    width: auto;
    min-width: auto;
}

/* footer */
.footer__logo {
    max-width: 250px;
}

.footer__nav {
    margin: 19.1% auto 0;
    display: flex;
    gap: 12px 20px;
    flex-direction: column;
    flex-wrap: wrap;
    width: fit-content;
    height: calc(clamp(1.6rem, 0.4rem + 1.39vw, 2.0rem) * 4 + 12px * 4);
}

.footer__nav__item {
    font-family: Montserrat;
    font-size: clamp(1.6rem, 0.4rem + 1.39vw, 2.0rem);
    width: fit-content;
}

.footer__nav__item img {
    width: clamp(1.6rem, 0.4rem + 1.39vw, 2.0rem);
    aspect-ratio: 1/1;
}

/* copy */
.copy {
    display: block;
    text-align: center;
    font-size: 1.0rem;
    margin-top: clamp(40px, -1.2rem + 6.94vw, 100px);
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 80px 0 32px;
        background-size: 240% 100%;
    }

    .footer__wrap {
        width: 68.8%;
        min-width: initial;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    /* contact */
    .contact__content {
        margin-top: 32px;
    }

    .contact__btn {
        margin-top: 24px;
        width: auto;
        min-width: auto;
    }

    /* footer */
    .footer__logo {
        width: 69.8%;
        margin: 0 auto;
    }

    .footer__nav {
        margin-top: 24px;
        gap: 20px 24px;
        height: calc(1.8rem*4 + 20px*4);
    }

    .footer__nav__item {
        font-size: 1.8rem;
    }

    .footer__nav__item img {
        width: 1.8rem;
    }

    /* copy */
    .copy {
        font-size: 1.0rem;
        margin-top: 60px;
    }
}