/* ========================================
Header
======================================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#fff;
}

body{
    padding-top:190px;
}

section[id]{
    scroll-margin-top:190px;
}

@media (max-width:899px){
    body{
        padding-top:70px;
    }
section[id]{
    scroll-margin-top:70px;
}
}

/* ========================================
ヘッダー上段
======================================== */

.header-top{
    background:#fff;
    border-bottom:1px solid #ece7df;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    min-height:120px;
    margin:0 auto;
    padding:16px 30px;
}

.header-logo{
    flex-shrink:0;
}

.header-logo a{
    display:block;
}

.header-logo img{
    display:block;
    width:auto;
    max-height:68px;
}

/* ========================================
右側
======================================== */

.header-right{
    display:flex;
    align-items:center;
    gap:24px;
}

/* ========================================
PC電話
======================================== */

.header-tel{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}

.header-tel span{
    display:block;
    margin:0 0 5px;
    padding:0;
    color:#777;
    font-size:13px;
    line-height:1;
    background : #f4f4f4;
    padding : 5px 10px;
    font-weight : 600;
}

.header-tel a{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    padding:0;
    color:#333;
    font-family:"Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
    font-size:30px;
    font-weight:600;
    line-height:1;
    text-decoration:none;
}

.header-tel a:hover{
    color:#333;
}

.header-tel i{
    color:#b9965a;
    font-size:20px;
}

/* ========================================
お問い合わせボタン
======================================== */

.header-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:250px;
    height:60px;
    border-radius:999px;
    background:#b9965a;
    color:#fff;
    font-size:16px;
    font-weight:700;
    line-height:1;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:background .3s, box-shadow .3s, transform .3s;
}

.header-btn:hover{
    background:#a8864b;
    color:#fff;
    text-decoration:none;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.15);
}

/* ========================================
PCナビゲーション
======================================== */

.global-nav{
    display:block;
    background:#faf8f5;
    border-bottom:1px solid #ece7df;
}

.sp-nav{
    display:none;
    background:#faf8f5;
    border-bottom:1px solid #ece7df;
}

.nav-inner{
    max-width:1200px;
    margin:0 auto;
}

/* ---------- PC ---------- */

.global-nav ul{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
}

.global-nav li{
    flex:1;
    margin:0;
    padding:0;
}

.global-nav a{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:68px;
    color:#333;
    text-decoration:none;
    transition:background .3s;
}

.global-nav .ja{
    margin:0;
    padding:0;
    color:#6b5b43;
    font-family:"Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
    font-size:18px;
    font-weight:600;
    line-height:1;
}

.global-nav .en{
    margin:4px 0 0;
    padding:0;
    color:#b9965a;
    font-size:10px;
    font-weight:500;
    line-height:1;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.global-nav a:hover{
    background:#fff;
}

.global-nav a:hover .ja,
.global-nav a:hover .en{
    color:#b9965a;
}


/* ========================================
スマホ用要素
======================================== */

.sp-tel,
.menu-toggle{
    display:none;
}


/* ========================================
スマホ
======================================== */

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

    .header-inner{
        min-height:68px;
        padding:8px 15px;
    }

    .header-logo img{
        max-width:190px;
        max-height:48px;
    }

    .header-right{
        gap:8px;
    }

    .header-tel,
    .header-btn{
        display:none;
    }

    /* 電話 */

    .sp-tel{
        display:flex;
        justify-content:center;
        align-items:center;
        width:42px;
        height:42px;
        border:1px solid #b9965a;
        border-radius:50%;
        background:#fff;
        color:#b9965a;
        text-decoration:none;
    }

    .sp-tel i{
        font-size:17px;
    }

    /* ハンバーガー */

    .menu-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:5px;
        width:42px;
        height:42px;
        background:none;
        border:0;
        cursor:pointer;
    }

    .menu-toggle span{
        width:26px;
        height:2px;
        background:#333;
        transition:.3s;
    }

    .menu-toggle.open span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.open span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }

    /* PCメニューは消す */

    .global-nav{
        display:none;
    }

    /* SPメニュー */

    .sp-nav{
        display:none;
        width:100%;
        background:#fff;
        border-bottom:1px solid #ece7df;
    }

    .sp-nav.open{
        display:block;
    }

    .sp-nav ul{
        margin:0;
        padding:0;
        list-style:none;
    }

    .sp-nav li{
        border-bottom:1px solid #ece7df;
    }

    .sp-nav li:last-child{
        border-bottom:0;
    }

    .sp-nav a{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:16px 20px;
        text-decoration:none;
        color:#333;
        background:#fff;
    }

    .sp-nav .ja{
        color:#6b5b43;
        font-family:"Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
        font-size:16px;
        font-weight:600;
    }

    .sp-nav .en{
        color:#b9965a;
        font-size:9px;
        letter-spacing:.15em;
        text-transform:uppercase;
    }

    .sp-nav a:hover{
        background:#faf8f5;
    }
}


/*************************
上部アイコン
*************************/

.sp-tel,
.sp-mail{
    display:none;
}

.header-line{
    display:flex;
    justify-content:center;
    align-items:center;
    width:38px;
    height:38px;
    font-size:48px;
    color:#06C755;
    text-decoration:none;
}

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

    .sp-tel{
        display:flex;
        justify-content:center;
        align-items:center;
        width:30px;
        height:30px;
        font-size:20px;
    }

        .sp-mail{
        display:flex;
        justify-content:center;
        align-items:center;
        width:38px;
        height:38px;
        font-size:26px;
    }

    .header-line{
        width:38px;
        height:38px;
        font-size:28px;
    }

}

/*****************************
 * FV下トップメッセージ
 * **************************/
.top-message{
    padding : 70px 0px 35px 0;
	text-align : center;
	font-size : 28px;
	line-height : 1.8;
	background : #fff;
    font-family:"Yu Mincho","Hiragino Mincho ProN",serif;
    font-weight:600;
    color:#6b5b43;
}

@media screen and (max-width:768px){
.top-message{
    padding : 40px 0px 20px 0;
	font-size : 20px;
}
}