@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: 70px;
    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: url(../images/bg_wood.jpg);
    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;
    color: #fff;
    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 15px;
}

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

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

    .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% 0 2%;
        background: none;
    }

    .header.active {
        background: #fff;

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

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

    .header.active .hd__inner {
        height: 140px;
    }

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

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


    .hd__right {
        width: 84%;
        display: block;
        align-items: flex-start;

    }

    .header.active .hd__right {
        display: flex;
    }

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

    .header.active .hd__logo {
        max-width: 140px;
    }



    .hd__contact.pc {
        width: fit-content;
        margin: 30px 0 0 auto;
        max-width: 300px;
        min-width: 200px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .header.active .hd__contact.pc {
        margin: 0;
    }

    .hd__ig {
        display: block;
    }

    .hd__tel {
        display: block;
        width: 100%;
        max-width: 260px;
    }

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

    .hd__btnwrap {
        display: flex;
        max-width: 320px;
        justify-content: center;
    }

    .hd__btn {
        margin: 0 1%;
        width: 48%;
        max-width: 142px;


    }


    .hd__sns img {
        width: auto;
    }

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



    .g-nav__pc--ul {
        width: 100%;
        max-width: 298px;
        margin: 0 1em 0 auto;
        position: relative;
        height: fit-content;
    }

    .header.active .g-nav__pc--ul {
        max-width: 800px;
        height: 80px;
        align-items: center;
    }

    .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;
        transition: .1s;
        line-height: 1;
        font-size: min(1.8rem, 1.4vw);
        font-weight: 500;
        text-align: left;
        padding: 0 5px 0;
        white-space: nowrap;
        color: #fff;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;

    }

    .header.active .g-nav__li a {
        writing-mode: unset;
        font-size: min(1.6rem, 1.2vw);
        text-align: center;
        color: #111;
    }

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


    /* .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;
    }

    .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: 50px;
        min-width: 120px;
        background: rgba(17, 17, 17, .8);
        -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.4rem;
        margin-bottom: .5em;
        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: 0;
        height: 2px;
        background: #4e1c00;
        left: 50%;
        top: -20px;
        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: 60px 0;
    background: url(../images/concept_bg.jpg) no-repeat center center/cover;
    color: #fff;
}

.contact__ttl {
    line-height: 1.4;
    padding: 0 3em;
    position: relative;
  	font-size: 1.6rem;
}

.contact__ttl::before {
    content: "";
    position: absolute;
    width: 3em;
    height: 1em;
    background: url(../images/contact_line.png) repeat-x center center;
    top: 25%;
    left: -.5em;
    transform: translate(0, -50%);
}

.contact__ttl::after {
    content: "";
    position: absolute;
    width: 3em;
    height: 1em;
    background: url(../images/contact_line.png) repeat-x center center;
    top: 25%;
    right: -.5em;
    transform: translate(0, -50%);
}

.contact__item {
    max-width: 410px;
    width: 280px;
    margin: 0 auto;
    display: block;
}


.contact__tel {
    max-width: 380px;
    width: 240px;
    margin-bottom: 20px;
}

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


@media screen and (min-width:414px) {
  .contact__ttl {
    line-height: 1.4;
    padding: 0 3em;
    position: relative;
    font-size: 1.7rem;
}
}

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

    .contact__ttl {
        line-height: 1.4;
        padding: 0 3em;
        font-size: 2.4rem;
    }

    .contact__ttl::before {
        width: 3em;
        height: 1em;
        top: 50%;
        left: calc(50% - 14em);
        transform: translate(-50%, -50%);
    }

    .contact__ttl::after {
        width: 3em;
        height: 1em;
        top: 50%;
        right: auto;
        left: calc(50% + 14em);
        transform: translate(-50%, -50%);
    }

    .contact__item {
        max-width: 410px;
        max-width: 300px;
        width: 45%;
        margin: 0 2%;
    }


    .contact__tel {
        max-width: 380px;
        max-width: 280px;
        width: 45%;
        margin: 0 2%;
    }

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

}

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

    .contact__ttl {
        padding: 0 3em;
    }

    .contact__ttl::before {
        width: 5em;
        height: 1em;
        top: 50%;
        left: calc(50% - 14em);
    }

    .contact__ttl::after {
        width: 5em;
        height: 1em;
        top: 50%;
        left: calc(50% + 14em);
    }

    .contact__item {
        max-width: 410px;
        width: 45%;
        margin: 0 2%;
    }


    .contact__tel {
        max-width: 380px;
        width: 45%;
        margin: 0 2%;
    }


}

/*============================
	footer
============================*/
.footer {
    padding: 60px 0 80px;
    border-bottom: solid 20px #920000;

}


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





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

.ft__nav {
    width: 49%;
}


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

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

.ft__ig {
    display: block;
    margin: 20px auto;
    width: fit-content;
}

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

@media screen and (min-width:768px) {
    .footer {
        padding: 60px 0 80px;
        border-bottom: solid 30px #920000;

    }


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


    .ft__navwrap {
        display: block;
    }

    .ft__nav {
        width: 100%;
    }


    .ft-nav__li a {
        font-size: 1.2rem;
        padding: 0 1em;
        margin: 0 0 1.5em 0;
        border-right: solid 1px #111;
    }

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

    .ft__ig {
        margin: 30px auto;
    }

    .ft__copyright {
        font-size: 1rem;
    }

}

@media screen and (min-width:1025px) {
    .footer {
        padding: 80px 0 100px;
        border-bottom: solid 50px #920000;

    }


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

    .ft-nav__li a {
        font-size: 1.4rem;
        padding: 0 1em;
        margin: 0 0 1.5em 0;
        border-right: solid 1px #111;
    }


    .ft__ig {
        margin: 30px auto 50px;
    }

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



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

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

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

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

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

.fixed__ft {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
}

.ft__item {
    width: 30%;
    height: 50px;
}

.fixed__reserve {
    width: 40%;
}

.ft__item a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #faf0c6;

}

.fixed__tel a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;

}

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

}

.fixed__mail a {
    color: #fff;
    background: #452f0d;
}

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

.fixed__reserve a {
    background: #f9d954;
    color: #452f0d;
}

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

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




    .side__btn {
        min-width: 35px;
        width: calc((70/1920)*100%);
        bottom: auto;
        top: 50%;
        transform: translate(0, -50%);
        right: 0;
    }

    .fixed__ft {
        display: none;
    }
}

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

    .js-pagetop {
        min-width: 50px;
        width: calc((100/1920)*100%);
        right: 1%;
        bottom: 100px;
    }

    .side__btn {
        min-width: 35px;
        width: calc((70/1920)*100%);
        top: 50%;
        right: 0;
    }
}


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

#splash.secondtime {
    display: none;
}

#loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f5e8;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../images/load_bg.png) no-repeat center center/cover;
        transform: translate(-50%, -50%);
        top: 35%;
        left: 50%;
        animation: bgAnime02 1.5s 1s forwards;
    }

    &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #f8f5e8;
        top: 0;
        left: 0;
        animation: beAnime 1s .5s forwards;

    }
}

@keyframes beAnime {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }

}

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

    100% {
        opacity: 0;
    }

}

.logo--container {
    width: 300px;
    padding: 15px;
    position: relative;
    opacity: 0;
    animation: logoAnime 1.5s 2s forwards;
}

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

    100% {
        opacity: 1;
    }
}

.logo-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url("../images/logo@2x.png");
    mask-image: url('../images/logo@2x.png');
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    mask-position: left top;
}

.logo-hikari {
    position: absolute;
    top: -2%;
    left: -60%;
    width: 60%;
    padding: 60% 0 0;
    background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
    transform: skewX(30deg);
    animation-name: demo_kirari;
    animation-duration: 1s;
    animation-delay: 2.5s;
    /* animation-iteration-count: infinite; */
    animation-timing-function: linear;
}

@keyframes demo_kirari {
    100% {
        left: 100%;
    }
}

@media screen and (max-width:767px) {
    .logo--container {
        width: 200px;
        padding: 15px;
    }


}