@charset "utf-8";
/*==========================================================

ナビドロワー

==========================================================*/
/*
背景固定
---------------------------------------------------------*/
/*
@media screen and (max-width: 1024px) {
    .js-scroll-fixed {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%;
    }
}
*/

/*
トグルボタン部分
---------------------------------------------------------*/
/*
#nav-tgl {
    display: none;
}
*/
#drower-menu input{
    /*デフォルト表示されるinput要素のチェックボックを非表示に*/
    display: none;
}
.nav-tgl-btn {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
}
.nav-tgl-open {
    z-index: 2;
    width: 48px;
    height: 48px;
    background: #7b5a12;
    transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: .6s ease-out;
    /*-------*/
    z-index: 10000;
    /*-------*/
}

.nav-tgl-open::before,
.nav-tgl-open::after {
    content: "";
}

.nav-tgl-open span,
.nav-tgl-open::before,
.nav-tgl-open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 30%;
    width: 40%;
    border-bottom: 2px solid white;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: .6s ease-out;
}

.nav-tgl-open::before {
    transform: translateY(-8px);
}

.nav-tgl-open::after {
    transform: translateY(8px);
}

.nav-tgl-close {
    z-index: 1;
    z-index: 1000;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background .6s;
}

#nav-tgl:checked+.nav-tgl-open {
    background: #000000;
    transform: translateX(-250px);
    transform: translateX(-272px);
}

#nav-tgl:checked+.nav-tgl-open span {
    transform: scaleX(0);
}

#nav-tgl:checked+.nav-tgl-open::before {
    transform: rotate(45deg);
}

#nav-tgl:checked+.nav-tgl-open::after {
    transform: rotate(-45deg);
}

#nav-tgl:checked~.nav-tgl-close {
    pointer-events: auto;
    background: rgba(0, 0, 0, .6);
}

/*
サイトコンテンツ部分
---------------------------------------------------------*/
/*
.content-wrapper3 {
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-tgl:checked~.content-wrapper3 {
        transform: translateX(-272px);
}
*/


/*
メニューデザイン
---------------------------------------------------------*/
.drower-nav01 {
    z-index: 1000;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    top: 0;
    right: 0;
    width: 250px;
    width: 272px;
    height: 100%;
    margin: 0;
    padding: 0 0 10px;
    box-sizing: border-box;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: .6s ease-out;
}

.drower-nav01 a {
    display: block;
/*    color: #0f0f0f;*/
    padding: 10px;
    text-decoration: inherit;
    transition: background .6s;
}

.drower-nav01 a:hover {
/*     background: #a58e77;*/
}

#nav-tgl:checked~.drower-nav01 {
    transform: none;
}

/*
以下、カスタマイズ
---------------------------------------------------------*/
.drower-nav01_list .group2 i,
.drower-nav01_list .group3 i{
    color: #806953;
}

/*
グループ１
---------------------------------------------------------*/
.drower-nav01_list .group1 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    background: #806953;
    padding: 5px 10px;
    box-sizing: border-box;
    height: 48px;
}
.drower-nav01_list .group1 a {
    color: #fff;
}
/*
グループ２
---------------------------------------------------------*/
.drower-nav01_list .group2{
    display: flex;
    align-items: center;
    flex-flow: wrap;
    list-style: none;
}
.drower-nav01_list .group2 a{
    width: 50%;
    display: flex;
    flex-flow:column;
    align-items: center;
    border-color: hsl(0, 0%, 90%);
    border-width: 1px;
    border-bottom-style: solid;
    border-right-style: solid ;
    box-sizing: border-box;
}
.drower-nav01_list .group2 a:hover{
    background: rgba(0, 0, 0, 0.1);
    transition:.3s ease-out;
}
.drower-nav01_list .group2 i{
    display: block;
    width: 100%;
    font-size: 2.5rem;
    line-height: 1.3;
    padding-bottom: 2px;
}
.drower-nav01_list .group2 a:nth-child(even) {
    border-right-style: none ;
}
.drower-nav01_list .group2 a:nth-child(odd) a {
    padding: 15px 5px 15px 10px;
}
.drower-nav01_list .group2 a:nth-child(even) a {
    padding: 15px 10px 15px 5px;
}

/*
グループ３
---------------------------------------------------------*/
.menu03-ctr {
}
.menu03 {
    width: 100%;
}
.menu03 ul {
}
.menu03 input {
    display: none;
}
.menu03 .list1{
    display: block;
    padding : 15px 7px;
    line-height: 1;
    position: relative;
    transition:.5s ease-out;
    cursor :pointer;
    border-color: hsl(0, 0%, 90%);
    border-width: 1px;
    border-top-style: solid;
}
.menu03 .list1:first-child{
    border-top-style: none;
}
.menu03 .list1:hover{
    background: rgba(0, 0, 0, 0.1);
    transition:.3s ease-out;
}
.menu03 .list1 a {
    display: block;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content:flex-start;
}
.menu03>ul>li>ul>li{
    height: 0;
    overflow: hidden;
    transition: all .7s;
    display: flex;
    opacity: 1;
    text-align: center;
}
.menu03>ul>li>ul>li:hover{
    background: rgba(0, 0, 0, 0.1);
    transition:.3s ease-out;
}
.menu03>ul>li>ul>li>a {
    display: block;
    padding: 15px 0px 15px 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}
.menu03>ul>li>ul>li>a::before{
    position: absolute;
    top:50%;
    left: 20px;
    transform: translate(0,-50%) rotate(0deg);
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: bold;
    font-size: 1em;
    color: rgba(0, 0, 0, 0.4);
    transition:.5s;
}
.menu03 label::after{
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: bold;
    cursor: pointer;
    top:50%;
    right: .8em;
    transform: translate(0,-50%) rotate(0deg);
    transition: all .5s ease-out;
    color: rgba(0, 0, 0, 0.4);
}

/*
開いたとき
---------------------------------------------------------*/
.menu03 input:checked+label+ul>li{
    height: 45px;
    opacity: 1;
}
.menu03 input:checked+label+ul>li:first-child{
    margin-top: 10px;
}
.menu03 input:checked+label+ul>li:last-child{
    margin-bottom: 10px;
}
.menu03 input:checked+label::after{
    transform: translate(0,-50%) rotate(135deg);
}
.menu03 input:checked+label{
    background: rgba(0, 0, 0, 0.05);
}
.menu03 input:checked+label:hover{
    background: rgba(0, 0, 0, 0.1);
}

/*
グループ４
---------------------------------------------------------*/
.drower-nav01_list .group4{
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 20px 0px 10px;
    border-color: hsl(0, 0%, 90%);
    border-width: 1px;
    border-top-style: solid;
}
.drower-nav01_list .group4 a{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    /*    border: solid 1px;*/
    padding: 0;
}
.contact_btn-drower-nav01 {
    background-color: #218918;
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    padding: 0px;
    margin: 0 0 5px 0;
    line-height: 1;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    transition:.3s ease-out;
}
.contact_btn-drower-nav01:hover{
    opacity: .7;
}
.drower-nav01_list .group4 div{
    font-size: 12px;
    text-align: center;
}

/*
レスポンシブ
---------------------------------------------------------*/
@media screen and (min-width: 1025px) {
    .nav-tgl-btn {
        display: none;
    }
}
@media screen and (min-width: 1025px) {
    .drower-nav01 {
        display: none;
    }
}
@media screen and (max-width: 678px) {
    .nav-tgl-open {
        width: 48px;
        height: 48px;
    }
/*
    .nav-tgl-open span,
    .nav-tgl-open::before,
    .nav-tgl-open::after {
        right: 26%;
        width: 45%;
    }
    .nav-tgl-open::before {
        transform: translateY(-7px);
    }
    .nav-tgl-open::after {
        transform: translateY(7px);
    }
*/
}

