/*ヘッダー
---------------------------------------*/
header {
  position: fixed;
  z-index: 11;
  width: 100%;
}
.empty {
  display: none;
  width: 548.64px;
}
.site_logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  min-width: 130px;
}
.header_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 65px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.3);
}
.header_right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header_right nav {
  opacity: 1;
  transition: .3s
}
.nav_list {
    display: flex;
}
.nav_item {
  font-size: 11px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  border-right: 1px solid #C1BEBE;
}
.nav_item a {
  display: flex;
  align-items: center;
  height: 45px;
  padding-left: 50px;
  padding-right: 50px;
  /* transition: .3s;*/
}
/* .nav_item a:hover {
    opacity: .5;
} */
.menu_btn {
  width: 240px;
  padding-top: 17.5px;
  padding-bottom: 17.5px;

  display: flex;
  justify-content: center;
  align-items: center;
}
.menu_btn_inner {
  display: block;
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
}
 
.menu_btn_inner::before, .menu_btn_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px; /*線の太さ*/
  height: 40px; 
  background: #333;
}
.menu_btn_inner::before {
  transform: translate(-50%,-30%) rotate(90deg);
  transition: .3s;
}
.menu_btn_inner::after {
  transform: translate(-50%,-70%) rotate(-90deg);
  transition: .3s;
}
@media screen and (max-width: 1320px) {
  .menu_btn {
    width: 50px;
    margin-right: 30px;
  }
  .nav_item {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site_logo {
    width: 97px;
    min-width: 97px;
    left: 18%;
  }
  .header_inner {
    height: 55px;
  }
  .menu_btn {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
}

@media screen and (max-width: 768px) {
    .menu_btn {
        width: 30px;
    }
    .menu_btn_inner {
        width: 30px;
    }
    .menu_btn_inner::before, .menu_btn_inner::after {
        height: 30px;
    }
    .menu_btn_inner::before {
        transform: translate(-50%,-25%) rotate(90deg);
    }
    .menu_btn_inner::after {
        transform: translate(-50%,-75%) rotate(-90deg);
    }
}

/*ヘッダークリック時の処理
---------------------------------*/
body.is-fixed {
  overflow: hidden;
}
header.active {
  z-index: 11
}
header.active .header_inner {
}
header.active .header_right nav {
  opacity: 0;
}
header.active .menu_btn_inner::before {
  transform: translate(-50%,-50%) rotate(60deg);
}
header.active .menu_btn_inner::after {
  transform: translate(-50%,-50%) rotate(-60deg);
}

/*メガメニュー*/
.mega_menu {
  opacity: 0;
  position: fixed;
  z-index: -1;
  transition: .3s;
  width: 100%;
  height: calc(100vh - 65px);
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
}
header.active .mega_menu {
  opacity: 1;
  z-index: 3;
  visibility: visible;
  overflow-y: scroll;
  overflow-x: hidden;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.3);
}
.mega_menu_inner { 
  /*height: 100vh;*/
  padding-top: 150px;
/*  padding-bottom: 250px;*/
  padding-top: 5%;
/*  padding-bottom: 6%;*/
  display: flex;
  margin-right: calc(50% - 50vw);
}
.mega_menu_left {
  width: 266px;
  width: 18.11%;
}
.mega_menu_right {
  width: calc(100% - 18.11%);
}

.mega_menu_left ul{
  display: flex;
  flex-direction: column;
  height: calc(100% - 25px);
}
.mega_menu_item {
  font-size: 24px;
  letter-spacing: 2.88px;
  line-height: 1.55;
}
.mega_menu_item span{
  display: block;
  font-size: 10px;
  letter-spacing: 1.68px;
  line-height: 1;
  margin-top: 2px;
  font-family: "ryo-gothic-plusn", sans-serif;
}
/*.mega_menu_item .checkinn-reservation-button{
  position: relative;
}*/
/*.mega_menu_item .reserve-open::after{
  content: "ご予約";
  font-size: 14px;
  letter-spacing: 1.68px;
  position: absolute;
  display: block;
  width: 100%;
  height: 14px;
  margin-top: 3px;
}*/
.mega_menu_item .title  {
  margin-right: 20px;
}
.mega_menu_item .subtitle {
  font-size: 14px;
  letter-spacing: 1.68px;
  vertical-align: middle;
  display: inline-block;
}
.mega_menu_left .mega_menu_item{
  margin-bottom: 30px;
}
.mega_menu_left .mega_menu_item:nth-child(6){
  margin-top: auto;
}
.mega_menu_left .mega_menu_item:last-child{
  margin-top: 0;
}
/*.mega_menu_left .mega_menu_item:nth-child(2) {
  margin-bottom: 55px;
}
.mega_menu_left .mega_menu_item:nth-child(3) {
  margin-bottom: 55px;
}*/

/*メガメニュースライダー*/
.foodmenu_slider_container {
    overflow: hidden;
    position: relative;
}
.foodmenu_item {
    width: 35.7%;
    border-bottom: 1px solid;
    padding-bottom: 30px;
}
.foodmenu_button_wrap {
  display: flex;
  gap: 70px;
  margin-top: 60px;
}
.swiper-button-prev._foodmenu,
.swiper-button-next._foodmenu {
    width: 8px;
    height: 16px;
    background-image: url(../img/common/arrow.svg);
    background-repeat: no-repeat;
    margin-top: unset;
    position: static;
}
.swiper-button-prev._foodmenu {
    left: auto;
    transform: rotate(180deg);
}
.swiper-button-next._foodmenu {
    left: 5.8%;
    right: auto;
}
.swiper-button-prev._foodmenu::after,
.swiper-button-next._foodmenu::after {
    content: "";
}
.foodmenu_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foodmenu_title_wrap .mega_menu_item a.food_btn{
  display: flex;
  gap: 20px;
  align-items: center;
}
.foodmenu_button_wrap.sp {
  margin-top: 0;
  display: none;
}

.foodmenu_slider{
  margin-bottom: 6%;
}

.foodmenu_slider .title_small .jp {
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.95;
  font-family: "ryo-text-plusn", serif;
}
.foodmenu_item .title_sp {
  display: none;
  font-size: 20px;
  letter-spacing: 2.6px;
}
.foodmenu_slider .title_small:after {
    width: calc(100% - 2.5em);
}
.foodmenu_image {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.foodmenu_image::before {
  content: '';
  display: block;
  padding-top: 65.1%;
}
.foodmenu_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scaleup .foodmenu_image img {
  transform: scale(1.17);
  object-position: bottom;
}
.foodmenu_desc span{
  display: block;
}
@media screen and (min-width: 769px) {
  .scaleup .foodmenu_image img:hover {
    transform: scale(1.21, 1.21);
  }
}
.megamenu_footer {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: .5px solid #D3D3D3;
}

.footer_bottom {
    padding-top: 45px;
    padding-bottom: 45px;
}
.megamenu_footer_inner {
    display: flex;
    justify-content: space-between;
}
@media (min-width: 1001px) {
.footer_bottom_right{
    /* flex-shrink: 0; */
    /* margin-left: 12%; */
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.footer_bottom_right a{
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer_bottom_right a img{
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-left: 7px;
  margin-right: 10px;
  vertical-align: -5%;
}
.privacy_link,
.law_link {
    font-size: 11px;
    letter-spacing: 1.32px;
    color: #353535;
}
.law_link {
  padding-left: 1.4em;
  margin-left: .85em;
  position: relative;
}
.law_link::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #666;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.insta_link {
    font-size: 11px;
    letter-spacing: 1.32px;
    color: #353535;
    display: inline-block;
    margin-right: 50px;
}
.insta_link::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background-image: url('../img/common/icon1.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.copyright {
    display: inline-block;
    font-size: 10px;
    color: #625E5E;
}

@media screen and (max-width: 1350px) {
  .foodmenu_item {
    width: 55%;
  }
}
@media screen and (max-width: 1000px) {
  .mega_menu_left .mega_menu_item:not(:last-child) {
    margin-bottom: 35px;
  }
  .mega_menu_left {
    margin-bottom: 80px;
    width: 100%;
  }
  .mega_menu_left .mega_menu_item a:not(.checkinn-reservation-button){
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .mega_menu_item .checkinn-reservation-button::after{
    font-size: 11px;
    letter-spacing: 1.32px;
    height: 11px;
    margin-top: 0;
    right: -130px;
    top: calc(50% - 7px);
  }
  .mega_menu_left .mega_menu_item:nth-child(5){
    margin-bottom: 130px;
  }
  .mega_menu_item span{
    font-size: 11px;
    letter-spacing: 1.32px;
  }
  .mega_menu_item .reserve-open::after{
    position: static;
    font-size: 11px;
    letter-spacing: 1.32px;
  }
  .mega_menu_inner {
    flex-direction: column;
    justify-content: center;
  }
  .mega_menu_right{
    width: 100%;
  }
  .foodmenu_button_wrap  {
    display: none;
  }
  .foodmenu_title_wrap {
    margin-bottom: 30px;
  }
  .foodmenu_button_wrap.sp {
    margin-top: 0;
    display: flex;
    margin-right: 30px;
    margin-left: 15px;
  }
  .foodmenu_item {
    width: 75%;
  }
  .foodmenu_slider .title_small .jp {
    display: none;
  }
  .foodmenu_desc {
    display: none;
  }
  .foodmenu_item .title_sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mega_menu {
    height: calc(100vh - 55px);
  }
  .mega_menu_inner {
    padding-top: 65px;
    /*padding-bottom: 150px;*/
  }
  .mega_menu_item {
    font-size: 22px;
    letter-spacing: 2.64px;
  }
  .mega_menu_subtitle {
    font-size: 11px;
    letter-spacing: 1.32;
  }
  .foodmenu_image {
    margin-bottom: 20px;
  }
  .foodmenu_item {
    border-bottom: unset;
    padding-bottom: 15px;
  }
  .foodmenu_item .title_sp {
    font-size: 13px;
  }
  .megamenu_footer .footer_bottom_right {
    width: auto;
  }
  .megamenu_footer .insta_link {
    margin-right: unset;
  }
  .megamenu_footer .copyright {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .mega_menu {
    display: block;
  }
  .mega_menu_inner {
    /* padding-top: 30px;*/
    /* padding-bottom: 50px;*/
  }
}
@media screen and (max-width: 600px) and (min-height: 860px) {
  .mega_menu_inner {
/*    height: calc(100vh - 129px);*/
  }
}
@media screen and (max-width: 420px) {
  .foodmenu_item {
    width: 65%;
  }
}
@media screen and (max-width: 400px) {
  .food_button_wrap.sp {
    align-items: flex-end;
  }
}



/*トップページの場合のヘッダー*/
.top_header .header_inner {
    opacity: 0;
    transition: .3s;
    
}
.top_header.active .header_inner {
    opacity: 1;
}

/*トップページの場合のヘッダー(スライドイン・アウト用)*/
.header_inner.top_header_slide {
  position: absolute;
  width: 100%;
  left: 0;
  top: -65px;
  opacity: 1;
}
.header_inner.top_header_slide.slideIn {
  top: 0
}
/* .header_inner.origin.hidden {
    display: none;
}
.header_inner.top_header_slide {
    visibility: hidden;
    opacity: .5;
    position: relative;
    top: -65px;

    transition: .3s;
}
.header_inner.top_header_slide.active  {
    visibility: visible;
    opacity: 1;
    top: 0;
} */


/*フッター
---------------------------------------*/
/*ご予約・お問い合わせリンク*/
.reserve_contact {
    border-top: 1px solid #C1BEBE;
    border-bottom: 1px solid #C1BEBE;
}
.reserve_contact_inner {
    display: flex;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.reserve_us {
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
    border-right: 1px solid #C1BEBE;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact_us {
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.reserve_us_inner {
  position: relative;
  left: 0;
}
/*決済の注意書き（一時的）-------------------*/
.notice {
  font-size: 10px;
  position: absolute;
  left: -36%;
  bottom: -60px;
  width: 540px;
}
.br_1200 {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .notice {
    left: -42%;
    bottom: -95px;
  }
  .br_1200 {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .notice {
    left: -3%;
    bottom: -95px;
    width: 310px;
  }
  .br_1200 {
    display: block;
  }
  footer .reserve_us {
    padding-bottom: 110px
  }
}
@media screen and (max-width: 360px) {
  .notice {
    left: -45%;
  }
}
/*----------------------------------------------*/
.contact_us_inner {
  position: relative;
  left: 0;
}
.reserve_us .title,
.contact_us .title {
    font-size: 18px;
    letter-spacing: 2.16px;
    margin-bottom: 60px;
}
.reserve_us .sub_title,
.contact_us .sub_title {
    font-size: 11px;
    letter-spacing: 1.32px;
    margin-bottom: 40px;
}
.reserve_contact_link {
    width: 288px;
    display: block;
    font-size: 12px;
    letter-spacing: 1.44px;
    padding-bottom: 18px;
    /*border-bottom: 1px solid;*/
    text-align: left;

    position: relative;
}
.reserve_contact_link::after {
    content: '';
    display: block;
    width: 8px;
    height: 16px;
    background-image: url(../img/common/arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
}

/*トップページのフッター余白調整-------*/
.top_footer .reserve_us .title,
.top_footer .contact_us .title {
    margin-bottom: 10px;
}
.top_footer .reserve_us .sub_title,
.top_footer .contact_us .sub_title {
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .top_footer .reserve_us_inner {
      position: relative;
      left: 0;
    }
    .top_footer .contact_us_inner {
      position: relative;
      left: 0;
    }
    .top_footer .reserve_us,
    .top_footer .contact_us {
      align-items: center;
    }
}


/*--------------------------*/

@media screen and (max-width: 1500px) {
    .reserve_contact_inner {
        /* padding-left: 0;*/
        /* padding-right: 0;*/
    }
    .reserve_us {
        padding-top: 70px;
        padding-bottom: 70px;

        align-items: center
    }
    .contact_us {
        padding-top: 70px;
        padding-bottom: 70px;

        align-items: center;
    }
    .reserve_us .sub_title,
    .contact_us .sub_title {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 768px) {
    .reserve_contact_inner {
        display: flex;
        flex-direction: column;
    }
    .reserve_us {
        width: 100%;
        border-right: unset;
        border-bottom: 1px solid #C1BEBE;
        padding-top: 55px;
        padding-bottom: 90px;
        margin-bottom: 0;
        align-items: center;
    }
    .contact_us {
        width: 100%;
        padding-top: 55px;
        padding-bottom: 55px;
        align-items: center;
    }
    .reserve_us .title,
    .contact_us .title {
        margin-bottom: 20px;
    }
    .reserve_us,
    .contact_us {
      align-items: center;
    }
    .reserve_contact_link {
        padding-bottom: 7px;
    }
}
@media screen and (max-width: 360px) {
    .contact_us a,
    .reserve_us a {
        width: 90%;
    }
    .reserve_contact_link {
        width: 100%;
    }
}


/*フッター下部*/
.footer_bottom {
    padding-top: 45px;
    padding-bottom: 45px;
    position: relative;
}
.footer_bottom_inner {
    display: flex;
    justify-content: space-between;
}
.privacy_link {
    font-size: 11px;
    letter-spacing: 1.32px;
    color: #353535;
    cursor: pointer;
}
.insta_link {
    font-size: 11px;
    letter-spacing: 1.32px;
    color: #353535;
    display: inline-block;
    margin-right: 50px;
}
.insta_link::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background-image: url('../img/common/icon1.svg');
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
footer .copyright {
    display: inline-block;
    font-size: 10px;
    color: #909090;
}
@media screen and (max-width: 1320px) {
    /*.reserve_us_inner {
      position: static;
      left: unset;
    }
    .contact_us_inner {
      position: static;
      left: unset;
    }*/
}
@media screen and (max-width: 1000px) {
    .megamenu_footer_inner{
      flex-direction: column;
      gap: 15px;
    }
    .footer_bottom .privacy_link {
/*        display: none;  */
    }
    .footer_bottom_right {
        width: 100%;
        display: flex;
        text-align: left;
        /* justify-content: space-between; */
        margin-left: 0;
    }
    .footer_bottom_inner{
      flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 500px) {
  .footer_bottom {
      padding-top: 20px;
      padding-bottom: 20px;
  }
  .megamenu_footer {
    padding-top: 45px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 420px) {
    .footer_bottom_right {
        /* display: block; */
    }
    .insta_link {
        /* width: 100%; */
        margin-right: 0;
    }
}

/* policy
------------------------------------ */
.modal-policy {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.modal-policy.active {
    z-index: 400;
    opacity: 1;
    visibility: visible;
}
.modal-container {
    width: 1100px;
    max-height: 74%;
    background-color: #fff;
    padding: 80px 80px 65px 80px;
    overflow: auto;
    position: relative;
}
.modal-button-wrap {
    position: absolute;
    top: 25px;
    right: 30px;
}
.close-button {
    width: 40px;
    height: 40px;
    position: fixed;
    margin-left: -35px;
}
.close-button::before,
.close-button::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #707070;
}
.close-button::before {
    transform: translate(5px, 0) rotate(45deg);
}
.close-button::after {
    transform: translate(5px, -2px) rotate(-45deg);
}
.policy-content {
    margin: 0 auto;
}
.policy-content h2 {
    font-size: 38px;
    line-height: 1.5;
    display: block;
    margin-bottom: 50px;
}
.policy-content h2 span {
    display: inline-block;
}
.policy-content h3 {
    font-size: 112.5%;
    margin-top: 30px;
    margin-bottom: 10px;
}
.policy-content p,
.policy-content ol {
    margin-bottom: 15px;
}
.policy-content li {
    padding-left: 1em;
    position: relative;
}
.policy-content li::before {
    content: "";
    width: .5em;
    height: 1px;
    background-color: #707070;
    position: absolute;
    left: 0;
    top: .95em;
}
.policy-content table {
    width: 100%;
    margin: 45px auto;
    border: 1px solid #393939;
    table-layout: fixed;
}
.policy-content th,
.policy-content td {
    line-height: 1.45;
    text-align: center;
    vertical-align: middle;
    padding: .45em;
}
.policy-content th {
    background-color: #393939;
    color: #fff;
}
.policy-content th:not(:first-of-type) {
    border-left: 1px solid #fff;
}
.policy-content td:not(:first-of-type) {
    border-left: 1px solid #393939;
}
.policy-content th span {
    display: inline-block;
}
@media screen and (max-width: 1260px) {
    .modal-container {
        width: 88%;
        padding: 60px 75px 45px 60px;
    }
    .modal-button-wrap {
        top: 20px;
        right: 25px;
    }
}
@media screen and (max-width: 850px) and (min-width: 769px) {
    .policy-content table {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .policy-content thead,
    .policy-content tbody {
        display: block;
        float: left;
        width: 50%;
    }
    .policy-content tr {
        display: block;
        float: left;
        width: 100%;
    }
    .policy-content th,
    .policy-content td {
        display: block;
    }
    .policy-content th:not(:first-of-type) {
        border-left: none;
        border-top: 1px solid #fff;
    }
    .policy-content td:not(:first-of-type) {
        border-left: none;
        border-top: 1px solid #393939;
    }
}
@media screen and (max-width: 600px) {
    .modal-container {
        padding: 40px 45px 25px 35px;
    }
    .modal-button-wrap {
        top: 15px;
    }
    .close-button {
        width: 30px;
        height: 30px;
        margin-left: -20px;
    }
    .close-button::before,
    .close-button::after {
        width: 23px;
    }
    .policy-content h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .policy-content h3 {
        margin-top: 26px;
        margin-bottom: 8px;
    }
    .policy-content p,
    .policy-content ol {
        font-size: 12px;
        margin-bottom: 13px;
    }
    .policy-content table {
        font-size: 12px;
        margin: 25px auto;
    }
}
@media screen and (max-width: 557px) {
    .policy-content th:last-of-type {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .policy-content td:last-of-type {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
} 
@media screen and (max-width: 373px) {
    .policy-content th:first-of-type {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .policy-content td:first-of-type {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* 予約確認事項 */

#reserve-guide .modal-container {
    max-width: 90%;
    width: 900px;
    max-height: 90%;
    background-color: #fff;
    padding: 60px 140px;
    overflow: auto;
    position: relative;
}

.reserve-guide-content {
    margin: 0 auto;
}
.reserve-guide-content h2 {
    font-size: 18px;
    line-height: 1.5;
    display: block;
    margin-bottom: 40px;
    text-align: center;
}
.reserve-guide-inner ul li{
    margin-bottom: 30px;
}
.reserve-guide-inner ul li:nth-child(2) p{
  padding-left: 1em;
}
.tel{
  text-decoration: underline;
}

.reserve-guide-inner ul li:last-child{
  margin-bottom: 20px;
}
.reserve-guide-image{
  max-width: 474px;
  margin-left: auto;
  margin-right: auto;
}
.reserve-guide-btn{
  margin-top: 45px;
  display: flex;
  justify-content: center;
}
.reserve-guide-btn a{
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  background-color: #6E6E6E;
  color: #FFF;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.reserve-guide-btn .checkinn-reservation-button button{
  color: #FFF;
  font-size: 16px;
}

.br_768{
  display: none;
}

@media screen and (max-width: 970px){
  .reserve-guide-inner ul li:nth-child(2) p{
    padding-left: 0;
  }
}

@media screen and (max-width: 840px){
  #reserve-guide .modal-container{
    padding: 60px 75px 45px 60px;
  }
  .reserve-guide-inner ul li:nth-child(2) p{
    padding-left: 1em;
  }
}

@media screen and (max-width: 810px){
  .reserve-guide-inner ul li:nth-child(2) p{
    padding-left: 0;
  }
}

@media screen and (max-width: 768px){
  #reserve-guide .modal-container{
    width: 88%;
    padding: 35px 27px 40px 27px;
  }
  .reserve-guide-content h2{
    margin-bottom: 25px;
  }
  .reserve-guide-inner ul li{
    margin-bottom: 20px;
    line-height: 1.66;
    font-size: 13px;
  }
  .reserve-guide-inner ul li:last-child{
  margin-bottom: 15px;
  }
  .reserve-guide-btn{
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px){
  .br_768{
    display: block;
  }
}
@media screen and (max-width: 415px){
  .reserve-guide-inner ul li{
    font-size: 12px;
  }
}


/*トップへ戻るボタン
-------------------------------*/
.scroll_top 
{
    position: fixed;
    right: 45px;
    bottom: 60px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;

    opacity: 0;
    transition: .7s;
    z-index: 5;
}
.scroll_top.active {
    opacity: 1;
}
.scroll_top_line {
    width: 1px;
    height: 35px;
    background-color: #333;
    margin-bottom: 10px;
    overflow: hidden;
 }
/*.scroll_top_line::after {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background-color: #bbb;
    animation: scrollAnime 4s ease infinite;
}*/
.scroll_top_text {
    font-size: 14px;
    letter-spacing: 2.8px;
    line-height: 1;
    transform: translateX(2.8px);
}
.scroll_top.active:hover {
    opacity: .5;
}
@media screen and (max-width: 768px) {
    .scroll_top {
        right: 20px;
        color: #333;
    }
    .scroll_top.active:hover {
        opacity: 1;
    }
}


/*ボタンの補正*/

.checkinn-reservation-button button{
    background: none !important;
    letter-spacing: 1.68px;
    letter-spacing: .12em;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 11px;
    text-transform: none;
    min-width: 0px;
    padding: 0;
    /* color: #000; */
    color: #333;
}

.reserve_contact_link button{
    font-size: 12px;
    justify-content: unset;
}

.mega_menu_item .checkinn-reservation-button button{
    font-size:24px;
}

/* ヘッダーインスタボタン */
.header_instagram_btn{
  padding-right: 20px;
  border-right: solid 1px #C1BEBE;
}
.header_instagram_btn a{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header_instagram_btn a span:first-of-type{
  font-size: 8px;
  letter-spacing: 0.1em;
}
.header_instagram_btn a div{
  line-height: 1;
}
.header_instagram_btn a div span{
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.header_instagram_btn a img{
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: 0;
  margin-right: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.visible_768{
  display: none;
}
@media screen and (max-width: 768px) {
  .visible_768{
    display: block;
  }
  .header_instagram_btn{
    position: absolute;
    right: 190px;
  }
}

@media screen and (max-width: 350px) {
  .header_instagram_btn{
    padding-right: 10px;
  }

  .header_instagram_btn{
    position: absolute;
    right: 170px;
  }
}

/* ヘッダー予約ボタン */
.header_reserve_btn {
  padding-right: 20px;
  border-right: solid 1px #C1BEBE;
  position: absolute;
  right: 80px;
  line-height: 1.4;
}

.header_reserve_btn .nav_item_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header_reserve_btn span {
  font-size: 10px;
}

.header_reserve_btn .reserve-open::before {
  display: none;
}

@media screen and (max-width: 350px) {
  .header_reserve_btn {
    padding-right: 10px;
  }
}
