@charset "utf-8";
/*========================================================
ヘッダーナビ
=========================================================*/

/*
ヘッダーナビ：コンテナー
---------------------------------------------------------*/
.header-nav {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    /*-----*/
    z-index: 100;
}
.header-nav p{
}

/*
ヘッダーナビ：インナー
---------------------------------------------------------*/
.header-nav_inner{
    padding: 0 30px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

/*
ヘッダーナビ：左パート
---------------------------------------------------------*/
.header-nav_left{
    display: flex;
    align-items: center;
    padding-top: 15px;
}
/*ヘッダー：ロゴ*/
.header-nav_logo {
    transition: .3s ease-out;
    cursor: pointer;
}
.header-nav_logo:hover {
    transform: scale(1.07);
    opacity: 0.8;
}
.header-nav_logo img{
    height:50px;
    margin-right: 10px;
    padding-bottom: 0px;
}
/*ヘッダー：タグライン*/
.header-nav_tagline{
    padding: 7px 0 7px 8px; 
    font-size: 16px;
    white-space: nowrap;
    border-style: solid;
    border-left-width: 2px;
    border-color: #d8d8d8;
    color: #8a8aad;
    font-weight: bold;
}

/*
ヘッダーナビ：右パート
---------------------------------------------------------*/
.header-nav_right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*
ヘッダーナビ：サブナビ
---------------------------------------------------------*/
.header-nav_sub{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-nav_sub a{
    display: block;
    margin-right: 5px;
    padding: 5px 10px;
    letter-spacing: 0.04em;
    font-size: 1.4rem;
    line-height: 1;
    white-space: nowrap;
    border-radius: 5px;
    transition: .3s ease-out;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-color: #3ab20e;
    background: #009d12;
}

.header-nav_sub ul li:first-child a{
    margin-bottom: 5px;
}
.header-nav_sub i{
    transition: .3s ease-out;
}

.header-nav_sub a,.header-nav_sub i{
    color: #fff;
}
.header-nav_sub a:hover{
    background: #52db1f;
    border: solid .1rem #fff;
    color: #fff;
}
.header-nav_sub a:hover i{
    color: #fff;
}

/*
ヘッダーナビ:CTAナビ
---------------------------------------------------------*/
.header-nav_cta {
    display: flex;
    align-items: center;
}

/*ボタンのベース*/
.header-nav_cta-btn{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: bold;
    height: 75px;
    width: 160px;
    transition: .3s ease-out;
}

.header-nav_cta-btn.type1{
    font-size: 1.8rem;
    box-shadow: 0 2px 3px 0 hsla(0, 0%, 0%, 0.3);
    color: hsl(0, 0%, 100%);
    font-weight: bold;
    background-color: #966920;
    border-radius: 0 0 0 5px;
}
.header-nav_cta-btn.type1:hover{
    background-color: #d0922f;
}

.header-nav_cta-btn.type1::before{
    position:absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f073";
    font-size: 55px;
    color: hsla(0, 0%, 100%, 0.12);
    transform: rotate(0deg);
    top: -0px;
    z-index: -1;
}

.header-nav_cta-btn.type2{
    background-color: #ad8519;
    font-size: 1.8rem;
    box-shadow: 0 2px 3px 0 hsla(0, 0%, 0%, 0.3);
    color: hsl(0, 0%, 100%);
    font-weight: bold;
    border-radius: 0 0 5px 0;
/*    border-left: 2px #77512d solid;*/
}
.header-nav_cta-btn.type2:hover{
    background-color: #c4961b;
}
.header-nav_cta-btn.type2::before{
    position:absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: normal;
    content: "\f086";
    font-size: 65px;
    color: hsla(0, 0%, 100%, 0.12);
    transform: rotate(0deg);
    top: -5px;
    z-index: -1;
}
.header-nav_cta-btn.type2 .txt {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.7rem;
    font-family:'Quicksand',sans-serif;
    letter-spacing: 0.03em;
}




/*=====================================================================

メインメニュー

======================================================================*/
.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    height: 40px;
    background: #fff;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.18);
    z-index: 11;
}

/*
ドロップダウンナビ
----------------------------------------------------------------------*/
.dropdown-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.dropdown-nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*
リスト：一階層目
----------------------------------------------------------------------*/
/*ベース*/
.dropdown-nav > ul > li{
    transition: .4s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px 5px 0 0;
}
.dropdown-nav > ul > li:hover{
    transition: .4s ease-out;
}
.dropdown-nav > ul > li > a {
    transition: .4s ease-out;
    cursor: pointer;
    display:block;
    line-height: 1;
    padding: 0 2em;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*-----------------------------------*/
.dropdown-nav > ul > li > a {
    font-weight: bold;
    font-size: 1.6rem;
    color: #7b5110;
    
}
.dropdown-nav > ul > li:hover{
    background: #f2ddbc;
}
.dropdown-nav > ul > li:hover > a{
    color: #7b5110;
}

/*
リスト：二階層目（非表示の状態）
----------------------------------------------------------------------*/
.dropdown-nav > ul > li > ul{
    transition: .4s ease-out;
    position: absolute;
    top: 40px;
    left: 0;
    display: flex;
    flex-flow: column;
    align-items:flex-start;
    justify-content: flex-start;
    height: 0;
    /*-------*/
    overflow: hidden;
    z-index: 100;
}
.dropdown-nav > ul > li:last-child ul {
    left: 100%;
    transform:translateX(-100%);
    text-align: right;
}
.dropdown-nav > ul > li > ul > li{
    transition: .4s ease-out;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    width: 100%;
}
.dropdown-nav > ul > li > ul > li > a {
    transition: .4s ease-out;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0em 2em 0em 2em;
    width: 100%;
}
/*-----------------------------------*/
.dropdown-nav > ul > li > ul > li{
    background: linear-gradient(#c7ab84, #c7a263);
    background: rgba(255, 255, 255, 1);
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.dropdown-nav > ul > li > ul > li:last-child{
    border-bottom: none;
}
.dropdown-nav > ul > li > ul > li > a {
    font-size: 1.4rem;
    font-weight: bold;
    color:#fff;
    color: #7b5110;
}

/*
リスト：二階層目（表示の状態：一階層目のホバーで表示）
----------------------------------------------------------------------*/
/*ベース*/
.dropdown-nav > ul > li:hover > ul{
    height: 40px;
    overflow: visible;
    /*-----*/
    z-index: 100;
}
.dropdown-nav > ul > li:hover > ul > li > a {
    padding: 1em 2em 1em 2em;
    min-width: 80px;
    position: relative;
}
/*-----------------------------------*/
.dropdown-nav > ul > li:hover > ul > li:last-child {
    border-radius: 0 0 5px 5px;
}
.dropdown-nav > ul > li:hover > ul > li:last-child > a {
    border-radius: 0 0 5px 5px;
}


/*
二階層目のホバー
----------------------------------------------------------------------*/
/*-----------------------------------*/
.dropdown-nav > ul > li:hover > ul > li:hover > a{
    background: rgb(247, 233, 187);
/*    color:#004515;*/
}
.dropdown-nav > ul > li:hover > ul > li:hover > a::before {
    font-weight: bold;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    top:50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: .9em;
}
/*END：メインメニュー*/




/*========================================================
グローバルメニュー：表示設定
=========================================================*/
/*
モバイル用の要素を隠す
---------------------------------------------------------*/
/*
@media screen and (min-width: 1025px) {
    .burger-btn {
        display: none;
    }
    .drawer-btn {
        display: none;
    }
}
*/

/*
パソコン用の要素を隠す
---------------------------------------------------------*/
@media screen and (max-width: 1024px) {
    .header-nav_right {
        display: none;
    }
    #main-menu {
        display: none;
    }
}

/*
ヘッダーを固定化する
---------------------------------------------------------*/
@media screen and (max-width: 1024px) {
    .header-nav {
        position: fixed;
        top:0;
    }
}

/*
サイズ調整：タブレット用
---------------------------------------------------------*/
@media screen and (max-width: 1024px) {
    /*コンテナーの見栄えを変える*/
    .header-nav {
        box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.18);
    }
    /*インナーの高さ＆両端の余白のサイズを変える*/
    .header-nav_inner {
        padding: 0 0 0 10px;
        height: 48px;
    }
    .header-nav_left {
        padding: 0;
    }
    /*要素のサイズを変える*/
    .header-nav_logo img{
        height: 30px;
        margin-right: 10px;
    }
    .header-nav_tagline{
        padding: 5px 0 5px 8px; 
        font-size: 16px;
    }
}

/*
サイズ調整：モバイル用
---------------------------------------------------------*/
@media screen and (max-width: 678px) {
    .header-nav_inner {
        padding: 0 0 0 5px;
        height: 48px;
    }

    .header-nav_logo img {
        height:30px;
        margin-left: 6px;
        margin-right: 10px;
    }
    .header-nav_tagline{
        font-size: 12px;
        padding: 10px 0 7px 5px;
    }
}
/*
サイズ調整：モバイル用
---------------------------------------------------------*/
@media screen and (max-width: 375px) {
    .header-nav_logo img {
        height:30px;

    }
}

/*
固定ヘッダーのスペース
---------------------------------------------------------*/
/* 親要素にヘッダーの高さと同じサイズのスペースをつくる*/
@media screen and (max-width: 1024px) {
    #global-nav{
        padding-bottom: 48px;
    }
}
@media screen and (max-width: 678px) {
    #global-nav{
        padding-bottom: 48px;
    }
}

