@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 0 0 2%;
}


.hd__flex {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    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;
}

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


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



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

.hd__menu {
    z-index: 999;
    width: 50px;
    height: 52px;
    transition: .5s;
    margin: 0 0 0 auto;
    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: #ad8e2b;
    height: 1px;
}

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


.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: -120%;
    height: 100vh;
    min-width: 100vw;
    transition: all .5s;
    background: #371603;
    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 {
    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__btn {
    display: block;
    width: 240px;
    margin: 0 auto;
}


@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: 40px;
    }

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

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


    .hd__hamburger {
        margin: 0 0 0 auto;
    }

    .hd__ham--line {

        height: 1px;
    }

    /***** 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 {
        width: 220px;
    }

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


}

@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 0 0 1%;
    }

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

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

    }


    .hd__left {
        width: 0;
        position: unset;
    }


    .hd__right {
        width: 100%;
        height: 100px;
        align-items: center;
        justify-content: flex-end;
    }

    .hd__logo {
        max-width: 150px;
        width: 7.81%;
        left: 48%;
        top: 100%;
        transform: translate(-50%, -50%);
        position: absolute;
        transition: .3s;
    }

    .header.active .hd__logo {
        max-width: 60px;
        top: 50%;
    }

    .hd__btn {
        display: block;
        max-width: 150px;
        min-width: 100px;
        width: 7.8%;
    }

    .hd__tel {
        max-width: 202px;
        min-width: 100px;
    }



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



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

    .g-nav__pc {
        text-align: center;
        width: 85%;
        flex: 0 1 auto;
        display: flex;
        justify-content: flex-end;
        /* max-width: 1180px; */
        height: 100%;
        align-items: center;
        transition: .3s ease-out;
        position: relative;
    }

    .g-nav__pc--ul.nav01 {
        max-width: 455px;
        width: 38.55%;
        left: 30%;
        top: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .g-nav__pc--ul.nav02 {
        max-width: 388px;
        width: 32.88%;
        left: 80%;
        top: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .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: .3s ease-out;
        line-height: 1;
        font-weight: 500;
        font-size: min(1.6rem, 1.2vw);
        text-align: center;
        padding: 0 5px 0;
        border-right: solid 1px #371603;
        white-space: nowrap;
    }

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

    .g-nav__li .font-en {
        display: block;
        font-weight: bold;
        color: #ec8f83;
        line-height: 1;
        margin-top: .75em;
    }

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

    .g-nav__li a:hover {
        opacity: 1;
        color: #d0bf8b;
    }

    .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 a:hover .hover {
        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: 40px;
        min-width: 120px;
        background: rgba(0, 0, 0, .8);
        border-radius: 0 0 10px 10xp;
        -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: bold;
        color: #fff;
        margin-bottom: 1em;
        font-size: 1.5rem;
        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: #d0bf8b;
        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;
    }

}

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

.contact {
    padding: 60px 0;
    background: url(../images/contact_bg.png) no-repeat center center/cover;
    color: #fff;
}

.contact__ttl .font-en {
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: overlay;
}

.contact__txt {
    font-size: 1.2rem;
}

.contact__tel {
    display: block;
    max-width: 293px;
    max-width: 220px;
    margin: 0 auto 20px;
}

.contact__mail {
    display: block;
    max-width: 350px;
    width: 260px;
    margin: 0 auto;
}

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

    .contact__ttl .font-en {
        font-size: 7rem;
    }

    .contact__txt {
        font-size: 1.4rem;
    }

    .contact__tel {
        max-width: 293px;
        max-width: 220px;
        margin: 0 2%;
    }

    .contact__mail {
        max-width: 350px;
        width: 260px;
        margin: 0 2%;
    }

}

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

    .contact__ttl .font-en {
        font-size: 12rem;
    }

    .contact__txt {
        font-size: 1.6rem;
    }

    .contact__tel {
        max-width: 293px;

        margin: 0 2%;
    }

    .contact__mail {
        max-width: 350px;
        width: 100%;
        margin: 0 2%;
    }

}

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

.ft__nav {
    display: flex;
    justify-content: space-between;
    padding: 1em 5%;
    background: #ad8e2b;
}

.ft-nav__li {
    width: 50%;
}

.ft-nav__li a {
    display: block;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 1.5em;
    font-weight: 400;
    text-align: center;
    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__btm {
    padding: 30px 5%;
}

.ft__logo {
    max-width: 240px;
    width: 140px;
    margin: 0 auto 30px;
}


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

@media screen and (min-width:768px) {
    .ft__nav {
        justify-content: center;
        padding: 2em 3% 1em;
    }

    .ft-nav__li {
        width: auto;
    }

    .ft-nav__li a {
        font-size: 1.55rem;
        padding: 0 1.6em;
        border-right: solid 1px #fff;
        margin: 0 0 1em;
    }


    .ft__btm {
        padding: 30px 3%;
    }

    .ft__logo {
        max-width: 240px;
        width: 180px;
        margin: 0 auto 30px;
    }


    .ft__copyright {
        font-size: 1rem;
    }
}

@media screen and (min-width:1024px) {
      .ft-nav__li a {
        font-size: 1.2rem;
        padding: 0 1em;
        border-right: solid 1px #fff;
        margin: 0 0 1em;
    }
}

@media screen and (min-width:1025px) {
    .ft__nav {
        padding: 2em 1% 1em;
    }


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


    .ft__btm {
        padding: 60px 1%;
    }

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


    .ft__copyright {
        font-size: 1.3rem;
    }


}




/*============================
	page top /side btn
============================*/
.js-pagetop {
    max-width: 86px;
    max-width: 50px;
    display: block;
    z-index: 99;
    opacity: 1;
    transition: .5s;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%);

}

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

.side__btn {
    max-width: 75px;
    min-width: 35px;
    width: 3.9%;
    bottom: 200px;
    right: 0;
    display: block;
    z-index: 99;
    transition: .5s;
    position: fixed;
}


@keyframes sideAnime {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width:768px) {
    .js-pagetop {
        max-width: 86px;
        max-width: 60px;
    }

}

@media screen and (min-width:1025px) {
    .js-pagetop {
        max-width: 86px;
    }
}


/*============================
	loading
============================*/
/* Loading背景画面設定　*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
}

#splash.secondtime {
    display: none;
}

#loading {
    width: 160px;
    height: 134px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.load-logo {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    &.parts01 {
        top: calc(50% - 60px);
        opacity: 0;
        animation: logoAnime01 2s .5s forwards;
    }

    &.parts02 {
        opacity: 0;
        animation: logoAnime02 1s .5s forwards;
    }

    &.parts03 {
        top: calc(50% + 60px);
        opacity: 0;
        animation: logoAnime03 2s .5s forwards;
    }
}


@keyframes logoAnime01 {
    0% {
        opacity: 0;
        top: calc(50% - 60px);
        transform: translate(-50%, -50%) skew(0, -50deg);

    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        top: 50%;
        transform: translate(-50%, -50%) skew(0, 0);
    }
}

@keyframes logoAnime02 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) skew(60deg, 0);
    }

    50% {
        opacity: 1;

    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) skew(0, 0);
    }
}

@keyframes logoAnime03 {
    0% {
        opacity: 0;
        top: calc(50% + 60px);
        transform: translate(-50%, -50%) skew(0, -50deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        top: 50%;
        transform: translate(-50%, -50%) skew(0, 0);
    }
}

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

@media screen and (min-width:1025px) {
    #loading {
        width: 200px;
        height: 168px;
    }

}