@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 ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2% 0 5%;
}


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


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


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

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

.hd__ig {
    max-width: 20px;
    margin-right: 10px;
}

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

.hd__menu {
    z-index: 999;
    width: 30px;
    height: 16px;
    transition: .5s;
    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: #705637;
    height: 1px;
}

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


.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(0, 0, 0, .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: #705637;
    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;
    color: #fff;
    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 {
    width: 180px;
    margin: 0 auto 20px;
}

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


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

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

.hedBtnsArea{
    width: 30%;
    display: flex;
}

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

    .header {
        padding: 0;
    }

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

    .hd__left {
        width: 45%;
    }

    .hd__right {
        width: auto;
    }

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

    .hd__ig {
        max-width: 30px;
        margin-right: 15px;
    }

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

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

    .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: 180px;
        margin: 0 auto 20px;
    }

    .g-nav__btn {
        width: 240px;
    }

}

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

    .header .sp {
        display: none;
    }

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

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

    }

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

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


    .hd__left {
        width: 11%;
    }


    .hd__right {
        width: 82%;
    }

    .hd__logo {
        max-width: 311px;
        margin: 0 auto;
        position: relative;
    }

    .hd__btn {
        max-width: 200px;
        min-width: 120px;
        margin-right: 1%;
        line-height: 1;
    }


    .hd__tel {
        max-width: 316px;
        min-width: 240px;
        line-height: 1;
    }

    .hd__tel img {
        object-fit: cover;
        height: 100px;
    }

    .hd__ig {
        max-width: 42px;
        min-width: 30px;
    }

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

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

    .hedBtnsArea{
        width: 39%;
        max-width: 395px;
        align-items: center;
        margin: 10px 15px 0px 0px;
        justify-content: space-around;
    }

    .g-nav__pc--ul {
        width: 100%;
        margin: 0 0 0 auto;
        position: relative;
    }

    .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;
        font-size: min(1.6rem, 1.2vw);
        /*padding: 0 5px 0;*/
        white-space: nowrap;
      font-size:13px;
    }

    .g-nav__li .font-en {
        display: block;
        font-size: 1.4rem;
        line-height: 1;
        margin-top: .25em;
    }

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

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

    .g-nav__li img {
        width: 25px;

    }

    /* .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.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: block;
        opacity: 1;
    }

    .sub-nav {
        position: absolute;
        width: fit-content;
        left: 50%;
        top: 62px;
        min-width: 180px;
        background: rgba(0, 0, 0, .7);
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        display: none;
        opacity: 0;
        transition: .5s;
        padding: 1.5em 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;
        color: #fff;
        margin-bottom: 1em;
        font-size: 1.3rem;
        padding: 0;
        border: none;
        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: 1px;
        height: 0;
        background: #705637;
        left: 50%;
        bottom: 1.5em;
        transition: .5s;
        z-index: -1;
        opacity: 0;
        transform: translate(-50%);
    }

    .g-nav__pc--ul .g-nav__li:hover:before {
        opacity: 1;
        height: 100px;
    }

    .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: 50vw;
        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;
    }
}

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

.ft__top {
    padding: 60px 0;
}

.ft__top::before {
    content: "";
    position: absolute;
    width: 100%;
    padding-bottom: 11.51%;
    background: url(../images/ft_obj.png) no-repeat center center/cover;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

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

.ft-nav__li {
    width: 50%;
}

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

}

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


.ft__logo {
    max-width: 311px;
    max-width: 200px;
    margin: 0 auto 20px;
}

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

.ft__btm {
    padding: 10px 0;
    background: url(../images/bg_ft.png) no-repeat center center/cover;
}

.ft__tel {
    max-width: 307px;
    width: 200px;
    margin: 0 auto 10px;
}

.ft__btn {
    max-width: 300px;
    width: 200px;
    margin: 0 auto 10px;
}

.ft__snswrap {
    display: flex;
    justify-content: center;
}

.ft__sns:first-child {
    max-width: 58px;
    width: 30px;
    margin: 0 5% 0 0;
}

.ft__sns:nth-child(2) {
    max-width: 220px;
    width: 120px;
}


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

    .ft__top {
        padding: 60px 0;
    }

    .ft__top::before {
        bottom: 0;
        left: 50%;
    }

    .ft__nav {
        margin-bottom: 30px;
        justify-content: center;
    }

    
    .ft-nav__li {
        width: auto;
    }
    .ft-nav__li a {
        font-size: 1.3rem;
        padding: 0 1em;
        border-right: solid 1px #141414;
        margin: 0 0 1em;

    }

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

    .ft__logo {
        max-width: 311px;
        max-width: 200px;
        margin: 0 auto 20px;
    }

    .ft__copyright {
        font-size: 1rem;
    }

    .ft__btm {
        padding: 10px 0;
    }

    .ft__tel {
        max-width: none;
        width: 48%;
        margin: 0;
    }

    .ft__tel img {
        display: block;
        max-width: 307px;
        width: 200px;
        margin: 0 0 0 auto;
    }

    .ft__btm--right {
        width: 48%;
        display: flex;
        justify-content: space-between;
    }

    .ft__btn {
        max-width: 300px;
        width: 50%;
        margin: 0;
    }

    .ft__snswrap {
        width: 48%;
    }

    .ft__sns:first-child {
        max-width: 58px;
        width: 30px;
        margin: 0 5% 0 0;
    }

    .ft__sns:nth-child(2) {
        max-width: 220px;
        width: 120px;
    }

}

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


    .ft__nav {
        margin-bottom: 50px;
    }

    .ft-nav__li a {
        font-size: 1.2rem;

    }

    .ft__logo {
        max-width: 311px;
        width: 100%;
        margin: 0 auto 60px;
    }

    .ft__copyright {
        font-size: 1.3rem;
    }

    .ft__btm {
        padding: 15px 0;
    }

    .ft__tel {
        max-width: none;
        width: 48%;
        margin: 0;
    }

    .ft__tel img {
        width: 100%;
        margin: 0 0 0 auto;
    }

    .ft__btm--right {
        width: 48%;
        align-items: center;
    }

    .ft__btn {
        max-width: 300px;
        width: 50%;
        margin: 5%;
    }

    .ft__snswrap {
        width: 45%;
        align-items: center;
    }

    .ft__sns:first-child {
        max-width: 58px;
        width: 58px;
        margin: 0 5% 0 0;
    }

    .ft__sns:nth-child(2) {
        max-width: 220px;
        width: 220px;
    }


}




/*============================
	page top /side btn
============================*/
.js-pagetop a {
    max-width: 120px;
    min-width: 50px;
    width: 6.25%;
    bottom: 20px;
    right: 1%;
    display: block;
    z-index: 99;
    opacity: 0;
    transition: .5s;
    position: fixed;
}

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

.side__btnwrap {
    max-width: 50px;
    min-width: 30px;
    width: 2.64%;
    bottom: 20px;
    right: 0;
    display: block;
    z-index: 99;
    transition: .5s;
    position: fixed;
}

.side__btn:first-child {
    margin-bottom: 5px;
}

@media screen and (min-width:768px) {
    .js-pagetop a {
        min-width: 60px;
        width: 6.25%;
        bottom: 50px;
    }


    .side__btnwrap {
        max-width: 50px;
        min-width: 30px;
        width: 2.64%;
        bottom: auto;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }

    .side__btn:first-child {
        margin-bottom: 5px;
    }

}

@media screen and (min-width:1025px) {
    .js-pagetop a {
        min-width: 60px;
        width: 6.25%;
        bottom: 60px;
    }



    .side__btnwrap {
        max-width: 50px;
        min-width: 30px;
        width: 2.64%;
        bottom: auto;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }

    .side__btn:first-child {
        margin-bottom: 5px;
    }

}

.btn_wrapper {
    position: fixed;
    bottom: 160px;
    right: 1%;
    z-index: 999;
    max-width: 320px;
}

@media screen and (max-width:768px) {
    .btn_wrapper {
        bottom: 60px;
        right: 0;
        max-width: 240px;
    }
}
