@charset "UTF-8";

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

.header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    z-index: 999;
    background: #fff;
    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: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2%;
}


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


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


.hd__right {
    width: fit-content;
    display: flex;
    justify-content: flex-end;
    transition: .3s;
}

.hd__logo {
    width: 120px;
    z-index: 999;
    position: relative;
}

.hd__snswrap {
    display: flex;
    align-items: center;
}

.hd__sns {
    margin-right: 10px;
}

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



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

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

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

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

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

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


.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__menu.active .hd__hamburger--top {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

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

.hd__menu.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: -130%;
    height: 100vh;
    min-width: 100vw;
    transition: all .5s;
    background: #fcf6e0;
    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,
.g-nav__bg .g-nav__li span {
    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: 200px;
    margin: 0 auto 20px;
}

.g-nav__tel p {
    display: inline-block;
}

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

.g-nav__btn:last-child {
    margin-bottom: 0;
}

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

    .header {
        padding: 0;
        width: 100%;
    }

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

    .hd__left {
        width: 45%;
    }

    .hd__right {
        width: auto;
    }

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

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

    .hd__menu {
        width: 40px;
        height: 22px;
    }


    .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: 100px 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;
    }

    .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 {
        max-width: 200px;
        margin: 0 auto 20px;
    }

    .g-nav__btn {
        width: 240px;
        margin: 0 auto 10px;
    }


}

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

    .header .sp {
        display: none;
    }

    .header .flex {
        display: flex;
    }

    .header {
        padding: 0 1%;
        background: none;
    }

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

    .hd__inner {
        height: 120px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .hd__left {
        width: 10%;
        position: relative;
    }


    .hd__right {
        width: 89%;
    }

    .hd__logo {
        max-width: 316px;
        transition: .3s;
        margin: 0 auto;
        position: relative;
    }


    .hd__btn {
        width: 12%;
        max-width: 190px;
        min-width: 100px;
        position: relative;
    }

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


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


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

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

    /*.g-nav__li a {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        transition: .3s ease-out;
        line-height: 1;
        text-align: center;
        padding: 0 5px 0;
        white-space: nowrap;
        border-right: solid 1px #666666;
}*/
    .g-nav__li a,
    .g-nav__li .sub-txt {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        transition: .1s;
        line-height: 1;
        font-size: min(1.6rem, 1.2vw);
        font-weight: 500;
        text-align: center;
        padding: 50px 5px 0;
        white-space: nowrap;
    }

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

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

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

    .g-nav__li a:hover {
        opacity: .8;
        color: #e6b85c;
    }

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

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

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

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

    .g-nav__li .font-en {
        font-size: 1.2rem;
        display: block;
        letter-spacing: .1em;
        margin-top: 1em;
        line-height: 1;
        white-space: nowrap;
        position: relative;
    }


    .g-nav__li.sub-triger {
        position: relative;
        padding-bottom: 50px;
        margin-bottom: -50px;
    }

    .g-nav__li.sub-triger .arw {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%);
        width: 10px;
    }

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

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

    .sub-nav {
        position: absolute;
        width: fit-content;
        left: 50%;
        top: 95px;
        min-width: 200px;
        background: rgba(230, 184, 92, .8);
        border-radius: 0 0 10px 10px;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        display: none;
        opacity: 0;
        transition: .5s;
        padding: 1em 1em;
        animation: sub-navAppear .5s forwards;
    }

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

        100% {
            opacity: 1;
        }
    }

    .g-nav__pc--ul .sub-nav__li a {
        line-height: 1.2;
        white-space: nowrap;
        font-weight: 500;
        font-size: 1.5rem;
        margin-bottom: 1em;
        padding: 0;
        border: none;
        color: #412500;
        text-align: center;
    }

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

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

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

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

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

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

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

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

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

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


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


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

    .hd__menu {
        width: 40px;
        height: 22px;
        transition: .5s;
        margin: 0 auto;
    }

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

    .hd__ham--line {
        background: #0b0b0b;
        height: 2px;
    }

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

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

    .g-nav__bg {
        top: 0;
        min-width: 100vw;
        padding: 120px 10% 100px;
    }

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

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

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

    .g-nav__mail {
        margin: 0 auto;
    }


}



/*============================
    contact  
============================*/
.contact {
    padding: 50px 0;

}

.contact__item {
    display: block;
    max-width: 400px;
    width: 280px;
    margin: 0 auto 15px;

}

.contact__tel {
    max-width: 332px;
    width: 220px;
}

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

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

    }

    .contact__txt {
        text-align: center;
    }

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

    }

    .contact__tel {
        max-width: 332px;
        width: 31%;
    }

}

@media screen and (min-width:1025px) {

    .contact {
        padding: 60px 0;

    }


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

    }

    .contact__tel {
        max-width: 332px;
    }

}

/*============================
	footer
============================*/
.ft__bg {
    background: url(../images/ft_bg.png) no-repeat center center/cover;
}

.ft__top {
    padding: 30px 5% 60px 0;
    position: relative;

}

.ft__top::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background: #fff;
    border-radius: 0 30px 0 0;
    top: 0;
    right: 0;
}

.ft__ill01 {
    max-width: 232px;
    max-width: 60px;
    width: calc((232/1400) * 100%);
    bottom: 10px;
    left: 0;
}

.ft__ill02 {
    max-width: 85px;
    max-width: 60px;
    width: calc((85/1400) * 100%);
    bottom: 0;
    right: 1%;
}

.ft__map {
    margin-bottom: 20px;
}

.ft__map iframe {
    width: 100%;
    height: 175px;
}

.ft__map--txt {
    margin-top: 1em;
}


.ft__tbl {
    max-width: 565px;
}

.ft__btm {
    position: relative;
    padding: 30px 5% 80px 0;
}

.ft__btm::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background: #fff6ea;
    top: 0;
    right: 0;
}

.ft__info {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.ft__logo {
    max-width: 316px;
    max-width: 160px;
    margin: 0 auto 10px;
}




.ft__navwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.ft__nav {
    width: 50%;
}


.ft-nav__li a {
    display: block;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 1.5em 0;
    position: relative;
    font-weight: 500;
}

.ft-nav__li p,
.ft-nav__li span {
    line-height: 1;
}


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

@media screen and (min-width:768px) {

    .ft__top {
        padding: 50px 5% 80px 0;
    }

    .ft__ill01 {
        max-width: 232px;
        max-width: 90px;
        width: calc((232/1400) * 100%);
        bottom: 10px;
        left: 0;
    }

    .ft__ill02 {
        max-width: 85px;
        width: calc((85/1400) * 100%);
        bottom: 0;
        right: 5%;
    }

    .ft__top::before {
        border-radius: 0 60px 0 0;
    }

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

    .ft__map iframe {
        width: 100%;
        height: 175px;
    }

    .ft__map--txt {
        margin-top: 1em;
    }


    .ft__tbl {
        width: 55%;
    }

    .ft__btm {
        padding: 50px 5% 30px 0;
    }

    .ft__flex {
        margin-bottom: 30px;
    }

    .ft__left {
        width: 49%;
    }

    .ft__navwrap {
        width: 55%;
    }

    .ft__info {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .ft__logo {
        max-width: 316px;
        max-width: 200px;
        margin: 0 0 10px;
    }


    .ft__navwrap {
        justify-content: flex-end;
        margin-bottom: 0;
    }

    .ft__nav {
        width: fit-content;
        padding: 0 1em;
    }


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


    .ft__copyright {
        font-size: 1rem;
    }


}

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

    .ft__top::before {
        border-radius: 0 100px 0 0;
    }

    .ft__ill01 {
        max-width: 232px;
        width: calc((232/1400) * 100%);
        bottom: 50px;
        left: -20%;
    }

    .ft__ill02 {
        max-width: 85px;
        width: calc((85/1400) * 100%);
        bottom: 0;
        right: 5%;
    }

    .ft__map {
        width: 46%;
    }

    .ft__map iframe {
        width: 100%;
        height: 175px;
    }

    .ft__tbl {
        width: 52%;
    }

    .ft__btm {
        padding: 30px 5% 30px 0;
    }

    .ft__flex {
        margin-bottom: 30px;
    }

    .ft__left {
        width: 40%;
    }

    .ft__navwrap {
        width: 55%;
    }

    .ft__info {
        font-size: 1.3rem;
    }

    .ft__logo {
        max-width: 316px;
        margin: 0 0 10px;
    }

    .ft__nav {
        padding: 0 5%;
    }


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


    .ft__copyright {
        font-size: 1.2rem;
    }


}



/*============================
	page top /side btn
============================*/
.js-pagetop {
    display: block;
    max-width: 11px;
    max-width: 8px;
    z-index: 99;
    opacity: 0;
    transition: .5s;
    right: 2%;
    bottom: 100px;
    position: fixed;
}

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

.side__btn {
    display: none;
}


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

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

.fixed__tel img {
    width: 100%;
    max-width: 160px;
}

.fixed__mail {
    background: #e6b85c;
}

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

}

.fixed__reserve {
    background: #df8f70;
    color: #fff;
}

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

@media screen and (min-width:768px) {
    .js-pagetop {
        max-width: 11px;
        max-width: 8px;
        right: 2%;
        bottom: 100px;
    }

    .fixed__ft {
        display: none;
    }

    .side__btn {
        display: block;
        position: fixed;

        max-width: 63px;
        min-width: 40px;
        width: 3.28%;
        top: 150px;
        right: 0;
        z-index: 99;
    }

}

@media screen and (min-width:1025px) {


    .js-pagetop {
        max-width: 11px;
        right: 1%;
        bottom: 100px;
    }


    .side__btn {
        max-width: 63px;
        min-width: 40px;
        width: 3.28%;
        top: 250px;
    }
}