@charset "UTF-8";

/*============================
	header
============================*/
.header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    z-index: 999;
    background: #fff;
    transform: translate(-50%);
    padding: 0 0 0 2%;
}

.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 0 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;
    transition: .3s;
}

.hd__txt {
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0;
}

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

.hd__tel {
    margin-right: 10px;
}

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



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

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

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

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

.hd__ham--line {
    background: #4488ff;
    height: 1px;
    border-radius: 1px;
}

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


.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: 1rem;
    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: #fff;
    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;
    font-weight: 500;
    background: none;
    border: none;
    text-align: center;
}

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

.g-nav__bg .g-nav__li .txt {
    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 20px;
}

.g-nav__item {
    margin-bottom: 20px;
}

.g-nav__name {
    text-align: center;
    margin-bottom: .5em;
}

.g-nav__btnwrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-nav__btn {
    display: block;
    margin: 0 5px;
}

.g-nav__btn img {
    width: auto;
    transform: scale(.75);
}

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

    .header {
        padding: 0 0 0 2%;
    }

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

    .hd__left {
        width: 45%;
    }

    .hd__right {
        width: auto;
    }

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

    .hd__btn {
        width: 62px;
    }

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

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


    .hd__hamburger {
        width: 30px;
        height: 20px;
    }

    .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;
        margin-bottom: 1em;
    }

    .g-nav__tel {
        width: 220px;
        margin: 0 auto 20px;
    }

    .g-nav__btnwrap {
        max-width: 250px;
    }

    .g-nav__item {
        margin-bottom: 20px;
    }

    .g-nav__name {
        text-align: center;
        margin-bottom: .5em;
    }

    .g-nav__btnwrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .g-nav__btn {
        display: block;
        margin: 0 5px;
    }

    .g-nav__btn img {
        width: auto;
        transform: scale(.75);
    }
}

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

    .header .sp {
        display: none;
    }


    .header {
        height: 100vh;
        height: 100px;
        width: 100%;
        left: 0;
        top: 0;
        padding: 0;
        transform: none;
        position: fixed;
        transition: .3s;
        background: none;
        background: #fff;

    }

    .hd__txt {
        line-height: 30px;
        background: #4488ff;
        padding: 0 2%;
    }

    .hd__flex {
        height: 70px;
        padding: 0 2%;
    }

    .hd__left {
        width: 45%;
    }


    .hd__right {
        width: 45%;
    }

    .hd__logo {
        max-width: 182px;
    }

    .hd__btn {
        max-width: 160px;
        width: 100%;
        margin: 0 auto 10px 0;
    }


    .hd__contact.pc {
        width: 100%;
        height: 90px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        background: #727171;
        padding: 0 1em;
    }

    .hd__tel {
        max-width: 197px;
    }

    .hd__reserve {
        max-width: 200px;
        margin-bottom: 10px;
    }

    .hd__sns {
        max-width: 18px;
        margin-right: 10px;
    }

    /***** g-nav  PC ▼*****/
    .hd__side {
        position: fixed;
        width: 200px;
        height: calc(100vh - 100px);
        top: 100px;
        left: 0;
        padding: 20px 10px;
        opacity: 0;
        transition: .3s;
        pointer-events: none;
    }

    .header.active .hd__side {
        opacity: 1;
        pointer-events: fill;
    }

    .g-nav__pc--ul {
        width: 100%;
        text-align: center;
        padding: 0;
        display: block;
        transition: .3s;
        margin: 0 auto;
    }

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

    .g-nav__li a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        transition: .3s;
        line-height: 1;
        text-align: left;
        font-size: 1.2rem;
        padding-bottom: 1em;
        margin-bottom: 1em;
        border-bottom: solid 1px #0d49b8;
        font-weight: 400;
        white-space: nowrap;
    }


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

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

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

    .g-nav__li a:hover {
        opacity: .5;
    }

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

    }

    .g-nav__li .font-en {
        font-size: 1.5rem;
        display: block;
        line-height: 1;
        white-space: nowrap;
        position: relative;
        font-weight: 300;
        width: 60%;
        /* transition: .3s ; */
    }

    .g-nav__li a .txt {
        width: 40%;
    }

    .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: 93px;
        min-width: 120px;
        background: #aaaaaa;
        border-radius: 10px;
        -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: 0;
        height: 1px;
        background: #999999;
        left: -210px;
        top: 50%;
        transform: translate(0, -50%);
        transition: .5s;
        z-index: -1;
        opacity: 0;
    }

    .g-nav__pc--ul .g-nav__li:hover:before {
        opacity: 1;
        width: 200px;
    }

    .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: 32px;
        height: 28px;
        transition: .5s;
        position: relative;
    }

    .hd__hamburger {
        width: 32px;
        height: 28px;
    }

    .hd__ham--line {
        height: 4px;
        border-radius: 2px;

    }

    .hd__menu--txt {
        font-size: 2.2rem;
    }

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

    .g-nav__bg {
        top: 100px;
        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__item {
        margin-bottom: 20px;
    }

    .hd__side {


        .g-nav__name {
            text-align: left;
            margin-bottom: .5em;
        }

        .g-nav__btnwrap {
            display: flex;
            justify-content: flex-start;
        }

        .g-nav__btn {

            margin: 0 5px;
        }

        .g-nav__btn img {
            width: auto;
            transform: scale(1);
        }
    }

}

/*============================
	contact
============================*/
.contact__box {
    display: flex;
}

.contact .inner {
    border-top: solid 1px #0d49b8;
    border-bottom: solid 1px #0d49b8;
    padding: 20px 3%;
}

.contact__item {
    width: 50%;
    padding: 30px 5% 30px 0;
    border: none;
    border-right: solid 1px #0d49b8;

}
.contact__item:nth-child(2) {
    padding: 30px 0 30px 5%;
}
.contact__item:last-child {
   border: none;
}

.contact__txt .fs-14 {
    display: block;
}

.contact__txt .fs-12 {
    display: block;
}

.contact__btn {
    display: block;
    max-width: 256px;
    width: 100%;
    margin: 0 auto 10px;

}

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

@media screen and (min-width:768px) {
    .contact .inner {
        border-top: solid 1px #0d49b8;
        border-bottom: solid 1px #0d49b8;
        padding: 20px 3%;
    }

    .contact__item {
        width: 50%;
        padding: 30px 10px;
        border: none;
        border-right: solid 1px #0d49b8;
    }

    .contact__item:last-child {
        border: none;
        padding: 30px 10px;
    }

    .contact__btn {
        display: block;
        max-width: 256px;
        width: 220px;
        margin: 0 auto 10px;

    }


}

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

    .contact .inner {
        padding: 40px 1%;
    }

    .contact__item {
        width: 50%;
        padding: 0 10px;
        border-right: solid 1px #0d49b8;
    }

    .contact__item:last-child {
        padding: 0 10px;
    }
    .contact__btn {
        max-width: 256px;
        width: 256px;
        margin: 0 auto 10px;

    }
}


/*============================
	footer
============================*/
.footer {
    padding: 60px 0 80px;
}

.ft__nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ft-nav__li {
    width: 50%;
}


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

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


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

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

    .ft__nav {
        margin-bottom: 40px;
    }

    .ft-nav__li {
        width: auto;
    }


    .ft-nav__li a {

        font-size: 1.2rem;
        margin: 0 0 1em;
        padding: 0 1em;
        border-right: solid 1px #0d49b8;
    }

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

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


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

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

    .ft__nav {
        margin-bottom: 40px;
    }

    .ft-nav__li {
        width: auto;
    }


    .ft-nav__li a {

        font-size: 1.4rem;
        margin: 0 0 1em;
        padding: 0 1em;
        border-right: solid 1px #0d49b8;
    }

    .ft__copyright {
        font-size: 1.2rem;
        text-align: right;
    }

}




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

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

.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;
    border-top: solid 1px #0d49b8;
}

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

.fixed__item:first-child {
    border-right: solid 1px #0d49b8;
}

.fixed__inner {
    width: 100%;
}

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

}

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

.fixed__btn img {
    display: block;
    width: auto;
    transform: scale(.6);
    height: 30px;
}

@media screen and (min-width:768px) {
    .js-pagetop {
        max-width: 10px;
        max-width: 8px;
        right: 1%;
        bottom: 30px;
    }

    .fixed__ft {
        display: none;
    }

}

@media screen and (min-width:1025px) {
    .js-pagetop {
        max-width: 10px;
        right: 1%;
        bottom: 30px;
    }

}

/* hd__pd */

@media screen and (min-width:1025px) {
    .hd__pd {
        padding-left: 200px;
    }
}