@charset "UTF-8";

/*============================
	header
============================*/

.header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    z-index: 999;
    background: #fcf9f4;
    transform: translate(-50%);
}

.header.active {
    box-shadow: 10px 10px 15px rgba(0, 0, 0, .1);
}

.hd__inner {
    margin: 0 auto;
    width: 100%;
    height: 52px;
    position: relative;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 2%;
}


.hd__flex {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    transition: .2s;
}


.hd__left {
    width: 100%;
    flex: 0 1 auto;
    position: relative;
    transition: .2s;
}


.hd__right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    transition: .2s;
}

.hd__logo {
    width: 100%;
    max-width: 45px;
    z-index: 999;
    position: relative;
}

.hd__sns {
    max-width: 20px;
    margin-right: 10px;
    display: block;
}

/***** g-nav ▲*****/
.hd__menu {
    pointer-events: none;
}



/***** ハンバーガー ▼*****/

.hd__menu {
    z-index: 999;
    width: 50px;
    height: 52px;
    transition: .5s;
    margin: 0;
    cursor: pointer;
    position: relative;
    pointer-events: all;
}

/* .hd__menu.active {
    background: #00528d;
} */

.hd__hamburger {
    width: 30px;
    height: 16px;
    margin: 0 auto;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hd__ham--line {
    background: #665241;
    height: 1px;
}

.hd__menu.active .hd__ham--line {
    background: #665241;
}


.hd__hamburger--top {
    width: 100%;
    top: 0;
    left: 50%;
    transition: .5s;
    transform: translate(-50%)
}

.hd__hamburger--middle {
    width: 100%;
    top: 50%;
    transition: .5s;
    transform: translate(0, -50%);
}

.hd__hamburger--bottom {
    width: 100%;
    bottom: 0;
    left: 50%;
    transition: .5s;
    transform: translate(-50%)
}

.hd__hamburger.active .hd__hamburger--top {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hd__hamburger.active .hd__hamburger--middle {
    display: none;
}

.hd__hamburger.active .hd__hamburger--bottom {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hd__menu--txt {
    position: absolute;
    top: 75%;
    left: 50%;
    color: #fff;
    width: 90%;
    font-size: 1.2rem;
    transform: translate(-50%, -50%);
    text-align: center;
}

/***** sp nav *****/
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(000, 000, 000, .5);
    opacity: 0;
    display: none;
    transition: .5s;

}

html.active body:before {
    opacity: 0;
    z-index: 999;
    display: block;
    animation-name: BgAppear;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes BgAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes BgHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

.g-nav__bg {
    position: fixed;
    top: 52px;
    right: -120%;
    height: 100vh;
    min-width: 100vw;
    transition: all .5s;
    background: #fcf9f4;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 60px 10% 100px;
    z-index: 999;
}

.g-nav__bg--inner {
    width: fit-content;
    margin: 0 auto;
}

.g-nav__bg.active {
    right: 0;
}

.g-nav__sp-ul {
    width: fit-content;
    margin: 0 auto 40px;
}

.g-nav__bg .g-nav__li {
    border: none;
    padding: 0;
}

.g-nav__li a::before {
    display: none;
}

.g-nav__bg .g-nav__li a {
    font-size: 1.4rem;
    height: 100%;
    display: block;
    padding: 0;
    line-height: 1;
    margin-bottom: 1em;
    background: none;
    border: none;
    text-align: center;
}

.g-nav__bg .g-nav__li p {
    line-height: 1;
}

.g-nav__bg .g-nav__li i {
    display: inline-block;
    margin: 0 0 0 .5em;
}

.g-nav__bg .g-nav__li.sub a {
    font-size: 1.4rem;
    margin-bottom: 1em;
}

.g-nav__sp-ul .sub-triger a {
    margin-bottom: 1em;
}

.g-nav__bg .sub-nav__li a {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}


.g-nav__tel {
    display: block;
    width: 220px;
    margin: 0 auto 15px;
}

.g-nav__btn {
    display: block;
    width: 240px;
    margin: 0 auto 15px;

}

.hd__btnwrap {
    display: none;
}

@media screen and (min-width:768px) {
    .header .sp {
        display: block;
    }

    .header {
        padding: 0;
    }



    .hd__inner {
        height: 62px;
        padding: 0 0 0 2%;
    }

    .hd__left {
        width: 45%;
    }

    .hd__right {
        width: auto;
    }

    .hd__logo {
        width: 100%;
        max-width: 55px;
    }

    /***** ハンバーガー ▼*****/

    .hd__menu {
        width: 62px;
        height: 62px;
    }


    .hd__hamburger {
        margin: 0 0 0 auto;
    }

    .hd__ham--line {

        height: 2px;
    }

    /***** sp nav *****/

    .g-nav__bg {
        top: 62px;
        right: -120%;
        height: 100vh;
        min-width: 50vw;
        padding: 120px 10% 100px;
    }

    .g-nav__bg--inner {
        width: fit-content;
        margin: 0 auto;
    }

    .g-nav__bg.active {
        right: 0;
    }

    .g-nav__sp-ul {
        width: fit-content;
        margin: 0 auto 40px;
    }

    .g-nav__bg .g-nav__li {
        border: none;
        padding: 0;
    }

    .g-nav__li a::before {
        display: none;
    }

    .g-nav__bg .g-nav__li,
    .g-nav__bg .g-nav__li a {
        font-size: 1.6rem;
        height: 100%;
        display: block;
        padding: 0;
        line-height: 1;
        margin-bottom: 1em;
        background: none;
        border: none;
        text-align: center;
    }


    .g-nav__bg .g-nav__li i {
        display: inline-block;
        margin: 0 0 0 .5em;
    }

}

@media screen and (min-width:1025px) {
    .header .pc {
        display: block;
    }

    .header .sp {
        display: none;
    }

    .header .flex {
        display: flex;
        flex-wrap: nowrap;
    }

    .header {
        padding: 0;
        background: none;
        padding: 0 1% 0 2%;
        height: 100px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: #fff2e9; */
        position: absolute;
        top: calc(100vh - 60px);
    }

    .header.under  {
        top: 0px;
    }

    .header.active {
        position: fixed;
        top: 0;
        left: 50%;
        background: #fcf9f4;
    }

    .hd__inner {
        height: 100px;
        margin: 0 auto;
        display: block;
        padding: 0;

    }


    .hd__left {
        width: 13%;
        height: 100px;
        position: unset;
        position: relative;
    }


    .hd__right {
        width: 86%;
        align-items: center;
    }

    .hd__logo {
        max-width: 250px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: .2s;
    }

    .hd__logo.under {
        width: 50%;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: .2s;
    }

    .header.active .hd__logo {
        max-width: 90px;
        bottom: auto;
        top: 50%;
        transform: translate(0, -50%);
    }

    .hd__tel {
        max-width: 230px;
        min-width: 160px;
        margin-right: 1.5%;
        display: block;
    }

    .hd__sns {
        display: block;
        max-width: 24px;
        min-width: 18px;
    }

    /* 
    .hd__btn img {
        object-fit: cover;
        height: 120px;
    } */



    /***** g-nav  PC ▼*****/

    .g-nav__pc {
        text-align: center;
        flex: 0 1 auto;
        display: flex;
        justify-content: flex-end;
        max-width: 940px;
        width: 100%;
        margin: 0 auto;
        align-items: center;
        transition: .2s;
        position: relative;
    }

    .g-nav__li {
        position: relative;
        z-index: 9;
        flex: 1 1 auto;
    }

    .g-nav__li a,
    .sub-triger .subtxt {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        transition: .2s;
        line-height: 1;
        font-weight: 500;
        font-size: min(1.4rem, 1.2vw);
        text-align: center;
        padding: 0 5px 0;
        white-space: nowrap;
    }

    .g-nav__li .txt {
        line-height: 1;
        font-weight: 500;
    }

    .g-nav__li .font-en {
        display: block;
        font-size: min(1.8rem, 1.2vw);
        line-height: 1;
        margin-bottom: .5em;
    }

    .g-nav__li:last-child a {
        border: none;
    }

    .sub-triger .subtxt:hover,
    .g-nav__li a:hover {
        opacity: .8;
        color: #665241;
    }

    .g-nav__li img {
        width: auto;
        position: absolute;
        top: 25%;
        left: 50%;
        display: block;
        transform: translate(-50%, -50%) scale(.66);

    }

    .g-nav__li .hover {
        opacity: 0;
    }

    .g-nav__li:hover .hover {
        opacity: 1;
    }

    .g-nav__li:hover .default {
        opacity: 0;
    }


    .g-nav__li.sub-triger {
        position: relative;
    }

    .g-nav__li.sub-triger i {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%);
        font-size: 1.4rem;
    }

    .g-nav__pc .sub-triger {
        padding-bottom: 50px;
        margin-bottom: -50px;
    }

    .sub-triger:hover .sub-nav {
        display: flex;
        opacity: 1;
    }

    .sub-nav {
        position: absolute;
        width: fit-content;
        left: 50%;
        top: 80px;
        min-width: 450px;
        max-width: 542px;
        background: rgba(170, 5, 12, .7);
        display: flex;
        justify-content: center;
        border-radius: 0 0 10px 10xp;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        display: none;
        opacity: 0;
        transition: .5s;
        border-radius: 0 0 10px 10px;
        padding: 1.5em 20px 15px;
        animation: sub-navAppear .5s forwards;
    }

    @keyframes sub-navAppear {
        0% {
            opacity: 0%;
        }

        100% {
            opacity: 1;
        }
    }

    .g-nav__container .sub-nav__li {
        width: 31.33%;
        max-width: 132px;
        min-width: 132px;
        margin: 0 2%;
    }

    .g-nav__container .sub-nav__li a {
        line-height: 1.2;
        white-space: nowrap;
        font-weight: bold;
        color: #fff;
        margin-bottom: 1em;
        font-size: 1.4rem;
        padding: 0;
        border: none;
        text-align: center;
    }

    .g-nav__container .sub-nav__li img {
        width: 100%;
        display: block;
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        margin: 0 auto 10px;
    }

    .g-nav__container .sub-nav__li:last-child a::before {
        display: none;
    }

    /* 
.g-nav__container .sub-nav__li a:hover {
    color: #fff;
} */

    .g-nav__container.sub-nav__li a::after {
        display: none;
    }

    .sub-nav__li:last-child a {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* g-nav 伸びるボーダー */

    .g-nav__li::before {
        content: "";
        position: absolute;
        width: 0;
        height: 1px;
        background: #665241;
        left: 50%;
        bottom: -.5em;
        transition: .5s;
        z-index: -1;
        opacity: 0;
        transform: translate(-50%);
    }

    .g-nav__li:hover:before {
        opacity: 1;
        width: 50%;
    }

    .g-nav__li.sub-triger::before {
        display: none;
    }

    .g-nav__li.sub-triger::before {
        width: 100%
    }

    .sub-nav__li::before {
        display: none;
    }


    /***** g-nav ▲*****/


}

/*============================
	contact
============================*/

.contact__box {
    padding: 30px 5%;
    background: #fff;
}

.contact__obj {
    width: calc((433/1400)*100%);
    top: 100%;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact__ico {
    top: 0;
    left: 50%;
    max-width: 162px;
    width: 100px;
    transform: translate(-50%, -50%);
}

.contact__ttl {
    .txt {
        margin-bottom: .5em;
    }

    .font-en {
        font-weight: 400;
    }
}

.contact__item {
    width: 100%;
    margin: 0 auto 15px;
    max-width: 360px;
    width: 280px;
    display: block;
}

.contact__item:last-child {
    margin-bottom: 0;
}

.contact__tel {
    max-width: 330px;
    width: 240px;
    margin: 0 auto 20px;
}


@media screen and (min-width:768px) {
    .contact__box {
        padding: 40px 5%;
    }

    .contact__obj {
        width: calc((433/1400)*100%);
        top: 100%;
        left: -5%;
    }

    .contact__ico {
        top: 0;
        left: 50%;
        max-width: 162px;
        width: 120px;
    }

    .contact__items {
        align-items: flex-start;
        position: relative;
    }

    .contact__item {
        width: 31%;
        margin: 0 1%;
        max-width: 360px;
    }

    .contact__tel {
        max-width: 330px;
        width: 31%;
        margin: 0;
    }

}

@media screen and (min-width:1025px) {
    .contact__box {
        padding: 50px 5%;
    }

    .contact__obj {
        width: calc((433/1400)*100%);
        top: 100%;
        left: -5%;
    }

    .contact__ico {
        top: 0;
        left: 50%;
        max-width: 162px;
        width: 162px;
    }

    .contact__items {
        align-items: flex-start;
    }

    .contact__item {
        width: 31%;
        margin: 0 1%;
        max-width: 360px;
    }

    .contact__tel {
        max-width: 330px;
        width: 31%;
        margin: 0;
    }
}

/*============================
	footer
============================*/

.footer {
    padding: 40px 0 80px;
}

.ft__flex {
    margin-bottom: 50px;
}

.ft__left {
    margin-bottom: 30px;
}

.ft__logo {
    max-width: 107px;
    width: 80px;
    margin: 0 auto;
}

.ft__info {
    margin-top: 1em;
    text-align: center;
}

.ft__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ft__nav {
    width: 50%;
}



.ft-nav__li a {
    display: block;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.2rem;
    letter-spacing: 0;
    margin: 0 auto 1.5em;
    font-weight: 400;
    width: fit-content;
    position: relative;
    white-space: nowrap;
}

.ft-nav__li:last-child a {
    border: none;

}

.ft-nav__li p,
.ft-nav__li span {
    line-height: 1;
    font-weight: 400;
    width: fit-content;
}



.ft__copyright {
    font-size: 1rem;
    text-align: center;
}

@media screen and (min-width:768px) {
    .footer {
        padding: 60px 0;
    }

    .ft__flex {
        margin-bottom: 60px;
    }

    .ft__left {
        width: 40%;
        margin-bottom: 0;
    }

    .ft__logo {
        max-width: 107px;
        width: 80px;
        margin: 0 auto;
    }

    .ft__info {
        margin: 0 0 0 1em;
        text-align: left;
    }

    .ft__right {
        width: 55%;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .ft__nav {
        width: auto;
        padding: 0 5%;
        border-right: solid 1px #e0d6c7;
    }


    .ft__nav:last-child {
        border: none;
    }

    .ft-nav__li a {
        font-size: 1.3rem;
        margin: 0 0 1.5em;
        text-align: left;
    }




    .ft__copyright {
        font-size: 1rem;
    }


}

@media screen and (min-width:1025px) {
    .footer {
        padding: 100px 0;
    }

    .ft__flex {
        margin-bottom: 60px;
    }

    .ft__left {
        width: 40%;
    }

    .ft__logo {
        max-width: 107px;
        width: auto;
        margin: 0;
    }

    .ft__info {
        margin: 0 0 0 1.5em;
    }

    .ft__right {
        width: 55%;
    }

    .ft__nav {
        padding: 0 5%;
    }


    .ft-nav__li a {
        font-size: 1.4rem;
        margin: 0 0 1.5em;
    }

    .ft__copyright {
        font-size: 1.3rem;
    }


}




/*============================
	page top /side btn
============================*/
.js-pagetop {
    max-width: 19px;
    min-width: 12px;
    width: calc((19/1920)*100%);
    display: block;
    z-index: 99;
    opacity: 0;
    transition: .5s;
    position: fixed;
    bottom: 70px;
    right: 1%;
}

.js-pagetop.active {
    opacity: 1;
    pointer-events: fill;
}

.side__btn {
    max-width: 60px;
    min-width: 35px;
    width: calc((60/1920)*100%);
    bottom: 200px;
    right: 0;
    display: block;
    z-index: 99;
    transition: .5s;
    position: fixed;
}

.side__item {
    display: none;

}

.side__line {
    display: block;
}

.fixed__ft {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 99;
}

.fixed__item {
    width: 33.33%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 1.4rem;
}

.fixed__tel img {
    display: block;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.fixed__line img {
    width: 16px;
    margin-right: .5em;
}

.fixed__line {
    color: #fff;
}

.fixed__mail {
    border-left: solid 1px #665241;
    border-right: solid 1px #665241;
}

.fixed__mail img {
    width: 14px;
    margin-right: .5em;

}

.fixed__reserve {
    background: #eadfcc;
}

.fixed__reserve img {
    width: 14px;
    margin-right: .5em;
}

@media screen and (min-width:768px) {
    .js-pagetop {
        min-width: 12px;
        width: calc((19/1920)*100%);
        bottom: 100px;
    }

    .side__btn {
        max-width: 60px;
        min-width: 35px;
        width: calc((60/1920)*100%);
        bottom: auto;
        top: 200px;
    }

    .side__item {
        display: block;
        margin-bottom: 10px;
    }

    .fixed__ft {
        display: none;
    }

}

@media screen and (min-width:1025px) {
    .js-pagetop {
        min-width: 12px;
        width: calc((19/1920)*100%);
        bottom: 20px;
        right: 1%;
    }

    .side__btn {
        max-width: 50px;
        min-width: 35px;
        width: calc((60/1920)*100%);
        top: 120px;
    }

    .side__item {
        margin-bottom: 10px;
    }



}