@charset "UTF-8";

/* =================
common
==================== */
:root{
    --black:#303030;
    --green:#228966;
    --orange:#F96635;
    --pink:#F7845E;
    --yellow:#FFBE70;
    --backgroundB:#FFFAE4;
    --backgroundY:#FFF2BA;
}

html{
    font-size: 62.5%;
}

body{
    font-family: "dnp-shuei-gothic-kin-std", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--black,#303030);
    background-color: var(--backgroundB,#FFFAE4);
    line-height: 1.5;
}

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

.br__pc{
    display: none;
}

@font-face {
    font-family: "optima";
    src: url("../../font/optima-roman.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "optima";
    src: url("../../font/optima-medium.otf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "optima";
    src: url("../../font/optima-demibold.ttf") format("truetype");
    font-weight: 700;
}

.sec__title{
    font-family: "optima", sans-serif;
    font-style: normal;
    font-weight: 400;
}

/* common pc */
@media screen and (min-width:768px) {
    .br__pc{
        display: block;
    }

    .br__sp{
        display: none;
    }
}

/* ===================
button
====================== */
.btn{
    font-size: 2rem;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn img{
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* ===================
txt
======================*/
.txt{
    font-size: 1.3rem;
    line-height: 1.8; /* 28.8px */
}

.txt span{
    color: var(--orange,#F96635);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
}

@media screen and (min-width:1025px) {
    .txt{
        font-size: 1.4rem;
    }

    .txt span{
        font-size: 1.4rem;
    }
}

/* =====================
nav初期表示
======================== */
.nav{
    background-color: var(--backgroundY,#FFF2BA);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 102;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active{
    transform: translateX(0);
}

.nav__cont{
    padding: 42px 45px 51px 64px;
    height: 100vh;
    position: relative;
}

.nav__btn{
    width: 30px;
    display: inline-block;
    position: absolute;
    top: 42px;
    right: 35px;
}

.nav__name{
    height: 80vw;
    max-height: 300px;
    position: absolute;
    right: 25px;
    bottom: 51px;
}

.nav__pf{
    width: 54.6vw;
    max-width: 205px;
    position: absolute;
    left: 46px;
    bottom: 51px;
}

.nav__list{
    margin-top: 42px;
}

.nav__item{
    color: #7C672D;
    text-align: left;
    font-family: "optima";
    font-size: 2.6rem;
    font-weight: 700;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.nav__item:first-of-type{
    margin-top: 0;
}

.nav__item::before{
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #7C672D;
    margin-right: 20px;
}

/* nav pc */
@media screen and (min-width: 1025px) {
    .nav{
        display: none;
    }

    .header__nav{
        display: none;
    }

    .nav__item{
        font-size: 3.6rem;
    }
}
/* pc 1160px */

/* =================
footer
==================== */
.footer{
    background-color: var(--backgroundY,#FFF2BA);
    position: relative;
    padding: 65px 9.8% 50px;
}

.separator--footer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 50px;
}

.txt__footer{
    text-align: center;
    margin-top: 35px;
}

.footer__mail{
    display: block;
    margin: 35px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    border:  2px solid var(--green,#228966) ;
    max-width: 300px;
    padding: 10px 20px;
}

.footer__mail img{
    width: 36px;
    margin: 0;
}

.copy{
    text-align: center;
    font-size: 1.6rem;
    padding: 10px 9.8px;
}

.br__sp--footer{
    display: block;
}

/* footer pc */
@media screen and (min-width: 349px) {
    .br__sp--footer{
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    .footer__cont{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 9.7vw;
        flex-direction: row-reverse;
    }

    .txt__footer{
        margin-top: 45px;
    }

    .footer__mail{
        margin: 40px auto 0;
        font-size: 1.8rem;
    }

    .footer{
        padding-bottom: 86px;
    }

    .copy{
        font-size: 1.8rem;
    }

    .footer__mail:hover{
        transform: scale(0.9);
        transition:0.5s all;
    }
}

@media screen and (min-width: 1160px) {
    .separator--footer{
        max-height: 110px;
    }
}

/* ================================
pagetop
================================ */
.pagetop{
    display: none;
}

@media screen and (min-width:1025px) {
.pagetop{
    display: block;
    position: fixed;
    bottom: 100px;
    right: 2.9vw;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.pagetop img:hover{
    transform: scale(1.2) rotate(-90deg);
    transition:0.5s all;
}

.pagetop a{
    position: relative;
    display: block;
}

.pagetop img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    transform: rotate(-90deg);
}

.pagetop.active{
    opacity: 1;
    visibility: visible;
    z-index: 101;
}
}

@media screen and (min-width: 1440px){
    .pagetop img{
        width: 60px;
        height: 60px;
    }
}
/* pc 1260px */


/* ================================
btn__wkLheader
================================ */
@media screen and (min-width:1025px) {
    .btn__wkLheaderO:hover,
    .btn__wkLheaderG:hover{
        transform: scale(0.9);
        transition:0.5s all;
    }
}

