@charset "utf-8";
/* CSS Document */

#header{
    position: fixed;
    background: #fff;   
    width: 100%;
    padding: 12px 1.5%;
    z-index: 99;
    box-sizing: border-box;
}

.nav-header{
    justify-content: space-between;
}

.nav-header #logo{
    width: 15%;
    max-width: 125px;
}

.nav-header ol{
    width: 85%;
    justify-content: flex-end;
    align-items: center;
}

.nav-header ol li{
    margin-left: 2%;
    font-family: var(--En-san);
}

.nav-header ol li.comm_btn{
    width: 13%;
    max-width: 135px;
}

.nav-header ol li.comm_btn a{
    padding: 5px 0;
}

.nav-header ol li i{
    font-size: 2.4rem;
    margin-top: 7px;
}
.nav-header ol li:last-of-type{
    margin-left: 1.2%;
}


/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
    display: none;
    position: fixed;
    top: 0;
    left: 1.5%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 101;
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
}
.menu-btn-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 35px;
    background: #404040;
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
}
.menu-btn-line::before,
.menu-btn-line::after {
    content: "";
    height: 1px;
    width: 100%;
    background: #404040;
    position: absolute;
    left: 0;
    -webkit-transition: inherit;
    transition: inherit;
}
.menu-btn-line::before{
    top: -10px;
}
.menu-btn-line::after{
    top: 10px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-navi {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}
.open .menu-btn {
    border-color: var(--gray);
}
.open .menu-btn-line{
    background-color: transparent;
}
.open .menu-btn-line::before,
.open .menu-btn-line::after {
    top: 0;
    background: var(--gray);
}
.open .menu-btn-line::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.open .menu-btn-line::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/*開いたメニュー*/
.menu-navi {
    position: fixed;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    font-size: 1.8rem;
    overflow-y: auto;
}
.menu-navi .inner{
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 0;
}

.menu-navi .inner .logo{
    width: 40%;
    max-width: 125px;
    margin: 0 auto 50px;
}

.menu-navi .inner .text-navi{
}
.menu-navi li {
    font-family: var(--En-san);
    letter-spacing: 0.08rem;
    margin-bottom: 2em;
    text-align: center;
}
.menu-navi li a {
    -webkit-transition: all .2s;
    transition: all .2s;
}

.menu-navi .inner .comm_btn{
    width: 85%;
    max-width: 600px;
    margin: auto;
}

.menu-navi .inner .comm_btn a:before{
    height: 30px;
    width: 20px;
}

.menu-navi .inner .insta{
    text-align: center;
    font-size: 3rem;
    margin-top: 30px;
}




@media only screen and (max-width: 950px) {  
    .nav-header{
        justify-content: center;
    }
    .nav-header #logo {
        width: 35%;
    }
    .nav-header ol{
        display: none;
    }
    .menu-btn {
        display: block;
    }
}
















/*----------------------------------------------------------

フッター

---------------------------------------------------------------------*/
footer{
    font-family: var(--En-san);
    letter-spacing: 0.07rem;
    text-align: center;
    margin-top: 50px;
}

footer ul.flex {
    color: var(--base-color);
    justify-content: center;
    align-items: flex-end;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

footer li{
    margin: 0 1.5% 10px;
    font-size: clamp(1.2rem, 1rem + 0.59vw, 1.4rem);
}

footer li a {
    color: #bcbcbc;
}

footer li.f-btn{
    font-size: 80%;
    vertical-align: middle;
}

footer li.f-btn a{
    border: 1px solid #bcbcbc;
    border-radius: 30px;
    background: none;
    padding: 4px 20px 0;
    display: flex;
}

footer li.f-btn a:before{
    content: "";
    display:inline-block;
    width: 20px;
    height: 18px;
    background: url("../../img/comm/tel_g.png") no-repeat;
    background-size: contain;
}


#copyright{
    font-size: clamp(1.15rem, 1.02rem + 0.39vw, 1.3rem);
    margin-bottom: 50px;
}









@media only screen and (max-width: 540px) {  

#copyright{
    margin-top: 20px;
}




}















