@charset "UTF-8";
@media (max-width: 1000px) {
  .header_box {
    height: 100px;
  }
  .header_logo_img {
    height: 70px;
  }
  .header_nav ul {
    gap: 6px;
    margin-top: 10px;
  }
  .header_nav ul li a {
    padding: 2px 1px;
    font-size: 1.3rem;
  }
  .header_contact {
    margin-left: 20px;
  }
  .header_contact .btn_main {
    width: 180px;
    height: 50px;
    line-height: 50px;
  }
}
@media (min-width: 801px) {
  .header_nav ul li a:hover {
    color: #6F8F7A;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header_nav ul li a.current::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6F8F7A;
    position: absolute;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header.change .header_box {
    height: 100px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .navbar-toggle, .submenu_open {
    display: none;
  }
  .change .header_logo_img {
    height: 70px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
}
@media (max-width: 800px) {
  .header_box {
    height: 90px;
  }
  .header_logo_img {
    height: 60px;
  }
  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 30%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    z-index: 10;
    overflow-x: hidden;
  }
  .header_nav > ul {
    padding: 80px 0 0 0;
    margin-top: 0;
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header_nav > ul li:not(.nav_contact) {
    text-align: center;
  }
  .header_nav > ul li:not(.nav_contact) a {
    line-height: 60px;
    display: block;
    color: #333;
    margin-left: 0;
  }
  .header_nav > ul li:not(.nav_contact) a:after {
    content: none !important;
  }
  .header_nav > ul li.nav_reservation {
    margin-left: 0;
  }
  .header_nav > ul li.nav_reservation a {
    border: none;
    margin-left: 0;
  }
  .header_nav > ul li.has_submenu > button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 20px;
    top: 25px;
    border: 1px solid #ccc;
    color: #666;
    background: #fafafa;
    border-radius: 50%;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header_nav > ul li.has_submenu > button img {
    width: 30%;
    margin-left: 35%;
  }
  .header_nav > ul li.has_submenu > button.show {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
  .header_nav > ul li.has_submenu ul.sub_menu {
    position: static;
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    visibility: visible;
    opacity: 1;
    padding: 0;
    background: #fafafa;
    border-radius: 0;
    box-sizing: border-box;
    overflow-x: clip;
  }
  .header_nav > ul li.has_submenu ul.sub_menu > li {
    text-align: center;
    position: relative;
    /* 閉じている状態 */
    padding-top: 0;
    padding-bottom: 0;
    /* 閉じるアニメーション */
    -webkit-transition: padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
    transition: padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
  }
  .header_nav > ul li.has_submenu ul.show > li {
    /* 開いている状態 */
    padding-top: 15px;
    padding-bottom: 15px;
    /* 開くアニメーション */
    -webkit-transition: padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
    transition: padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
  }
  .header_nav > ul li.has_submenu ul.show > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 0.5px solid #f2f2f2;
    box-sizing: border-box;
  }
  .header_nav > ul li.has_submenu ul.show > li:last-child:after {
    border: none;
  }
  .header_nav > ul li.has_submenu ul.sub_menu > li > a {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    /* 閉じるアニメーション */
    -webkit-transition: line-height 0.3s ease-out, opacity 0.1s linear, visibility 0.1s linear;
    transition: line-height 0.3s ease-out, opacity 0.1s linear, visibility 0.1s linear;
  }
  .header_nav > ul li.has_submenu ul.show > li > a {
    /* 開いている状態 */
    line-height: 3;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    -webkit-transition: line-height 0.3s ease-out, opacity 0.1s linear 0.1s, visibility 0.1s linear 0.1s;
    transition: line-height 0.3s ease-out, opacity 0.1s linear 0.1s, visibility 0.1s linear 0.1s;
  }
  nav.is-active {
    -webkit-transform: translate(0%, 0);
        -ms-transform: translate(0%, 0);
            transform: translate(0%, 0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .nav_contact a {
    width: 100%;
    padding: 20px 0;
    margin: 0;
    background: -webkit-linear-gradient(left, #C8B6A6 40%, #6F8F7A);
    background: linear-gradient(to right, #C8B6A6 40%, #6F8F7A);
    border-radius: 0;
  }
  .nav_contact a:before {
    content: none;
  }
  .nav_contact a:after {
    content: none;
  }
}
@media (min-width: 701px) {
  .header_tel .contact_time_sp {
    display: none;
  }
}
@media (max-width: 700px) {
  .header_tel {
    display: block;
  }
  .header_tel img {
    width: 10px;
    margin-left: 6px;
  }
  .header_tel .tl.number {
    font-size: 1.4rem;
  }
  .header_tel .contact_time {
    display: none;
  }
  .header_tel p {
    padding-left: 0;
    border: none;
    font-size: 1rem;
  }
  .header_contact .btn_main {
    width: 90px;
    height: 38px;
    line-height: 38px;
    font-size: 1rem;
  }
  .header_contact .btn_main:before {
    content: none;
  }
}
@media (max-width: 600px) {
  .header_logo_img {
    height: 50px;
  }
  .nav_screw {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 400px) {
  .header_tel {
    display: none;
    visibility: hidden;
  }
}