@charset "utf-8";
/* ヘッダー ********************************************************/
header {
    z-index: 20;
    margin: 0 auto;
    width: 100%;
    height: auto;
    position: fixed;
    text-align: center;
}
header .flx-btwn {
    margin: 0 auto;
    padding: 15px 50px 0 20px;
    width: 100%;
    max-width: 1000px;
}
/* ヘッダーナビ ********************************************************/
.hdr-navgrp {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;
    background-color: #FFFFFF;
    filter: drop-shadow(0 0 5px #FFFFFF);
    z-index: 91;
}
/* ヘッダーロゴ *********************/
.hdr-logo {
    height: 100%;
    overflow: hidden;
    float: left;
    display: flex;
    align-items: center;
}
.hdr-logo-img {
    width: 70px;
    height: auto;
    float: left;
    margin-left: 20px;
}
.hdr-logo-img img {
    width: 100%;
}
.hdr-logo-txt {
    float: left;
    margin-left: 7px;
}
.hdr-logo-txt p {
    font-weight: bold;
    text-align: center;
    line-height: 1.4em
}
.hdr-logo-txt span {
    font-size: 17px;
    letter-spacing: 0.2em;
    margin-left: 2px;
}
.hdr-logo-img:hover {
    opacity: 0.6;
    transition: 0.5s;
}
header a:link, a:visited, a:hover, a:active {
    color: #000000;
    transition: 0.5s;
}
/* メニュー項目 **********************/
.hdr-nav {
    height: 100%;
    position: absolute;
    right: 0;
    float: left;
    margin-right: 20px;
    display: flex;
    align-items: center;
    z-index: 95;
}
.hdr-sp {
    width: 100%;
    height: 70px;
    background-color: #FFFFFF;
}
.hdr-logo-sp {
    width: 70px;
    height: auto;
    padding-top: 10px;
    margin: 0 15px 0 auto;
}
.hdr-logo-sp img {
    width: 100%;
    height: auto;
}
.hdr-logo-sp:hover {
    opacity: 0.6;
    transition: 0.5s;
}
/* メインメニュー */
.menu {
    display: inline-block;
    vertical-align: middle;
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu ul {
    height: 100%;
}
.menu li {
    position: relative;
    float: left;
    margin: 0 30px 0 0;
    padding: 0;
    text-align: left;
}
.menu li a {
    display: block;
    margin: 0;
    padding: 0;
    color: #000000;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}
.menu li ul {
    list-style: none;
    position: absolute;
    z-index: 99;
    top: 40px;
    left: 0;
    margin: 0;
    padding: 0;
}
.menu li ul li {
    overflow: hidden;
    height: 0;
    color: #ffffff;
}
.line-bottom a {
    border-bottom: 1px solid #fff;
}
.menu li ul li:before {
    content: none;
}
.menu > li:hover > a {
    color: #f58656;
    transition: 0.5s;
}
.menu li:first-child::before {
    content: none;
}
/* ボタン **************************/
.hdr-btn-grp {
    float: left;
    display: flex;
    align-items: center;
    text-align: center;
}
.hdr-btn-grp a {
    width: 85px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
    margin-right: 5px;
}
#btn_reserve {
    background: #f75940;
    color: #FFFFFF;
    padding: 11px 0;
}
#btn_line {
    background: #06c755;
    color: #FFFFFF;
    padding: 4px 0;
}
.hdr-btn-grp a:hover {
    opacity: 0.6;
    transition: 0.5s;
}
/* =============================== */
/* レスポンシブ */
/* =============================== */
/* Smartphone */
@media screen and (max-width: 1350px) {
    header {
        height: auto;
        margin: 0 auto;
        padding-top: 0;
        text-align: center;
    }
    .hdr-left {
        margin-right: 5vw;
    }
    .hdr-right {
        left: 0;
    }
    .hdr-nav {
        margin-right: 50px;
    }
    .btn-sp-menu {
        display: block;
        position: relative;
        left: 12px;
    }
    .hdr-navgrp {
        height: 70px;
    }
    .hdr-logo-img {
        width: 50px;
        margin-left: 10px;
    }
    .hdr-logo-txt p {
        font-size: 12px
    }
    .hdr-logo-txt span {
        font-size: 14px;
    }
}
/* =============================== */
/* レスポンシブ */
/* =============================== */
/* Smartphone */
@media screen and (max-width: 350px) {
    .hdr-left {
        margin-right: 10px;
    }
    .hdr-co-name {
        position: relative;
        max-width: 110px;
    }
}
/* グローバルナビ ***************************************************/
/* ハンバーガーボタン ***********************************************/
/* ここから下がハンバーガーメニューに関するCSS */
/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 35px;
    right: 30px;
    z-index: 100; /* 重なり順を一番上にする */
    cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span, .drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #000000;
    transition: 0.5s;
    position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 8px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 8px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}
/* メニューのデザイン*/
.sp-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 90;
    transition: .5s;
    text-align: center;
    padding-top: 70px;
}
/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
}
.nav_item a {
    color: #FFFFFF;
    text-decoration: none;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .sp-nav {
    left: 0; /* メニューを画面に入れる */
}
/* レスポンシブメニュー */
.sp-nav ul {
    background: #FFFFFF;
    margin: 0 auto;
    width: 100%;
    opacity: 0.9;
}
.sp-nav ul li {
    list-style-type: none;
    width: 100%;
    border-bottom: 1px solid #000000;
}
.sp-nav ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.sp-nav ul a {
    display: block;
    color: #000000;
    padding: 2em 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    min-width: 75px;
    letter-spacing: 5px;
    margin: 0 auto;
}
.sp-nav ul a:hover {
    opacity: 0.6;
    transition: 0.5s;
}
.nav_item {
    display: flex;
}
.nav_list li ul {
    background-color: transparent;
    padding: 5px 0 0 10px;
}
.nav_list li ul li {
    float: left;
    width: 80px;
    white-space: nowrap;
}
.nav_list li ul a {
    display: block;
}
/* サブメニューの区切り線削除 */
#sp-sub-menu li {
    border: none;
}
#sp-sub-menu-item a {
    width: 70px;
    padding: 10px 0 10px;
    font-size: 11px;
    font-weight: bold;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}
/* 非表示 */
#nav-input, #nav-open, .nav-unshown {
    display: none;
}
nav {
    text-align: center;
}
/* =============================== */
/* レスポンシブ */
/* =============================== */
@media screen and (max-width:1350px) {
    .hamburger {
        display: block;
    }
    nav.globalMenuSp {
        display: block;
    }
}