@charset "UTF-8";

/*
Theme Name: zh-hk-bettei-shiki
Description: This is zh-hk-bettei-shiki site original theme.
Author: BookingResort
*/
* {
  /* scroll-margin-top: 80px; */
}

@media only screen and (max-width: 896px) {
  * {
    scroll-margin-top: 60px;
  }
}

html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Noto Serif TC", "Noto Serif HK", serif;
  position: relative;
}

html,
body {
  width: 100%;
}

.top-wrapper {
  background: -moz-linear-gradient(top, #2e4738 0%, #c3cac6 100%);
  background: -webkit-linear-gradient(top, #2e4738 0%, #c3cac6 100%);
  background: linear-gradient(to bottom, #2e4738 0%, #c3cac6 100%);
}

.wrapper {
  background: #e9eae9;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 3.6rem;
  color: #222;
  text-align: center;
}

h4 {
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

.color_w {
  color: #fff;
}

@media screen and (max-width: 896px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 1.8rem;
  color: #222;
}

p {
  line-height: 1.7;
  font-size: 1.5rem;
  color: #333;
}

p.image-text {
  padding: 10px 0;
  text-align: center;
}

.text_c {
  text-align: center;
}

ul li {
  font-size: 1.5rem;
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

a.white {
  color: #fff;
}

a:hover {
  opacity: 0.8;
}

a:hover>img {
  opacity: 0.8;
}

img {
  display: block;
}

@media screen and (max-width: 896px) {
  img {
    display: block;
    max-width: 100%;
  }
}

i.fa {
  display: inline;
}

header {
  display: block;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  transition: all 0.5s ease;
}

.hidden {
  background: none;
  transition: all 0.5s ease;
}

@media screen and (max-width: 896px) {
  header {
    display: flex;
    height: 60px;
  }
}

header h1,
header h2 {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  text-align: left;
}

@media screen and (max-width: 896px) {

  header h1,
  header h2 {
    height: 60px;
  }
}

header h1 img,
header h2 img {
  padding: 6px 0 5px 3px;
  width: 125px;
  height: auto;
  display: inline;
  margin-top: 0%;
}

header h1 .logo_image,
header h2 .logo_image {
  position: relative;
}

header h1 .logo_image a,
header h2 .logo_image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

@media screen and (max-width: 896px) {

  header h1 img,
  header h2 img {
    width: 100px;
    padding: 0px 0 0px 3px;
    margin-top: 0.5%;
  }

  header h1 .logo_image,
  header h2 .logo_image {
    position: static;
  }

  header h1 .logo_image a,
  header h2 .logo_image a {
    position: static;
  }
}

/* メニューボタン */
nav {
  position: absolute;
  right: 0;
  top: 0;
}

/*.menu_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 100px;
	padding: 0 2em;
	background: #5d87b7;
	margin-left: auto;
	cursor: pointer;
}

@media screen and (max-width:896px) {
.menu_btn {
	height: 60px;
}
}*/
.navbar_toggle {
  z-index: 20;
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 52px;
  background: #fff;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

@media screen and (max-width: 896px) {
  .navbar_toggle_icon {
    width: 30px;
  }
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 14px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu_list {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 250;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
}

.menu_list li {
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
}

.menu_list li a {
  display: block;
  padding: 30px;
}

@media screen and (max-width: 896px) {
  .menu_list li a {
    padding: 24px;
  }
}

.menu_list.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  top: 100px;
}

@media screen and (max-width: 896px) {
  .menu_list.open {
    top: 60px;
  }
}

/* 共通項目 */
.container {
  /*max-width: 1060px;*/
  max-width: 1200px;
  margin: 0 auto;
}

.br_sp {
  display: none;
}

.br_pc {
  display: block;
}

@media screen and (max-width: 896px) {
  .container {
    width: 94%;
  }

  .br_sp {
    display: block;
  }

  .br_pc {
    display: none;
  }
}

a.a_link {
  text-decoration: underline;
  word-break: break-all;
}

a.scroll_point {
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  display: block;
}

@media screen and (max-width: 896px) {
  a.scroll_point {
    display: block;
    margin-top: 0;
    padding-top: 0;
  }
}

h2.btm_border {
  position: relative;
}

h2.btm_border:before,
h2.btm_border:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 51px;
  height: 2px;
}

h2.btm_border:before {
  left: 50%;
  margin-left: -51px;
  background: #cccccc;
}

h2.btm_border:after {
  right: 50%;
  margin-right: -51px;
  background: #ffffff;
}

h2.btm_stripe {
  position: relative;
}

h2.btm_stripe:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: auto;
  height: 8px;
  background: url(img/stripe.png) no-repeat;
}

.mincho {
  font-family: "Noto Serif TC", "Noto Serif HK", serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

h2.top {
  font-size: 2.6rem;
  margin: 0 auto 30px;
  line-height: 1.4;
  color: #ffffff;
}

h2.color {
  font-size: 2.6rem;
  margin: 45px 0 30px;
  line-height: 1.4;
  color: #2e4738;
}

@media screen and (max-width: 896px) {
  h2.color {
    font-size: 2.2rem;
  }
}

span.en {
  letter-spacing: 0.1em;
  font-family: "Yu Gothic UI", "游ゴシック", YuGothic, "ヒラギノゴシック Pro W3", "Hiragino Gothic Pro", "HGゴシックE", "MS Pゴシック", "MS ゴシック", sans-serif;
  font-weight: normal;
  font-size: 1.5rem;
  color: #808080;
}

span.en2 {
  letter-spacing: 0.1em;
  font-family: "Yu Gothic UI", "游ゴシック", YuGothic, "ヒラギノゴシック Pro W3", "Hiragino Gothic Pro", "HGゴシックE", "MS Pゴシック", "MS ゴシック", sans-serif;
  font-weight: normal;
  font-size: 1.5rem;
  color: #c9cdc7;
}

span.tax_in {
  font-size: 1.4rem;
  color: #555;
}

.btn_orange {
  text-align: center;
}

.btn_orange p {
  text-align: center;
  display: inline-block;
  margin: 25px auto 0;
  line-height: 1.5 !important;
}

.btn_orange p a {
  color: #fff;
  background: #808080;
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  /*  border: 1px solid #5d87b7;*/
}

.btn_link p a {
  width: 200px;
  color: #2e4738;
  font-weight: bold;
  background: #fff;
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  border: #808080 1px solid;
}

.btn_link p a:hover {
  color: #fff;
  background: #2e4738;
}

.btn_link_color p a {
  width: 150px;
  padding: 10px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  border-radius: 27px;
  border: #bcb7ad 1px solid;
  /*color: #fff;*/
}

.btn_link_color.btn_link_white p a {
  border: #fff 1px solid;
  color: #fff;
}

.btn_link_color p a:hover {
  background: #bcb7ad;
  color: #fff;
  opacity: 1;
}

.pad_80 {
  padding: 80px 0;
}

.pt_40 {
  padding-top: 40px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pl_25 {
  padding-left: 25px;
}

.mr_5 {
  margin-right: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_60 {
  margin-top: 60px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_120 {
  margin-top: 120px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_120 {
  margin-bottom: 120px;
}

.ta_c {
  text-align: center;
}

.wid_ful {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 896px) {
  .sp_mb_40 {
    margin-bottom: 40px;
  }
}

/* フッター  */
/*近隣グループ*/
.top_faq_box.shiga_box {
  flex-direction: row-reverse;
}

@media screen and (max-width: 896px) {

  .top_faq_box,
  .top_faq_box.shiga_box {
    flex-direction: column;
  }
}

/*リゾグラ*/
#resort-rg {
  background: #888888;
  padding: 10px 0 40px;
}

.rg_group h2 {
  color: #fff;
  margin: 20px auto 25px;
}

.rg_group h4.rg_group {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 0;
  color: #fff;
}

.rg_group .box {
  display: flex;
  flex-direction: column;
}

.rg_group .box ul {
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
}

@media screen and (max-width: 896px) {
  .rg_group .box ul {
    flex-direction: column;
  }
}

.rg_group .box p.type {
  text-align: center;
  padding: 8px 0;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.rg_group .box li {
  display: flex;
  margin-bottom: 32px;
  margin-left: 8px;
  width: 32%;
}

@media screen and (max-width: 896px) {
  .rg_group .box li {
    width: 100%;
    margin-left: 0;
  }
}

.rg_group .box li img {
  width: 65px;
  height: 45px;
  object-fit: cover;
}

.rg_group .box li .txt {
  padding: 5px 0 0 10px;
  width: 100%;
}

.rg_group .box li .txt p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #fff;
}

.rg_group .box li .txt h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

footer {
  text-align: right;
  padding: 80px 0 0;
  background: #385c58;
}

footer .f_menu {
  display: flex;
  justify-content: space-between;
  padding-bottom: 140px;
}

@media screen and (max-width: 896px) {
  footer {
    text-align: center;
    padding: 68px 0 68px;
  }

  footer .f_menu {
    flex-direction: column;
    padding-bottom: 80px;
  }
}

#footer-menu a {
  color: #ffffff;
  display: block;
}

#menu-item-891 {
  display: block;
}

#menu-item-1961 {
  width: 43px;
}

#menu-item-1674 {
  background: #030705;
  border-radius: 20px;
  border: 1px solid #030705;
  color: #fff;
}

#menu-item-1674 a {
  color: #fff;
}

#menu-item-1674:hover {
  background: #fff;
  border: 1px solid #fff;
}

#menu-item-1674 a:hover {
  color: #575757;
  font-weight: bold;
  opacity: 1;
}

footer h2 {
  text-align: left;
  font-size: 32px;
  color: #575757;
}

footer p {
  text-align: left;
  color: #ffffff;
}

footer p a {
  color: #ffffff;
}

#footer-menu ul {
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 897px) {
  #menu-item-1960 {
    width: 43px;
  }
}

@media screen and (max-width: 896px) {
  footer h2 {
    text-align: center;
  }

  footer p {
    text-align: center;
  }

  #footer-menu ul li {
    padding: 10px 20px;
    margin-bottom: 10px;
  }

  #menu-item-1961 {
    width: 129px;
  }
}

@media screen and (max-width: 896px) {
  footer .info .logo_image {
    margin: 20px auto;
  }
}

footer .info .logo_image img {
  width: 230px;
  /* margin: 0 auto; */
}

@media screen and (max-width: 896px) {
  footer .info .logo_image img {
    width: 200px;
    margin: 0px auto;
  }
}

footer .info p.tel {
  font-size: 2.2rem;
}

footer .info p.time {
  font-size: 1.8rem;
}

footer .btn_link p a {
  margin: 0;
}

footer .info .btn_orange a {
  border-radius: 0;
  padding: 12px 50px;
}

footer p.address {
  margin-bottom: 20px;
}

footer p.company {
  font-size: 13px;
  text-align: center;
}

footer .form_btn {
  border: solid 1px #fff;
  width: 275px;
}

footer .form_btn a {
  display: block;
  padding: 6px 13px;
  text-align: center;
}

@media screen and (max-width: 896px) {
  footer .form_btn {
    margin: 5px auto;
  }

  footer .btn_link p a {
    margin: 0 auto;
  }
}

.reserve_pc {
  position: fixed;
  bottom: 70px;
  right: 0;
  width: 250px;
  z-index: 98;
  background: #030705;
  text-align: center;
}

.reserve_pc p {
  background: #9e998e;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 7px;
}

@media screen and (max-width: 896px) {
  .reserve_pc {
    display: none;
  }
}

.reserve_pc p {
  background: #030705;
  font-size: 2rem;
  color: #aaa;
  padding-top: 10px;
}

.reserve_pc a.infomail {
  font-size: 1.6rem;
  color: #fff;
  padding: 7px 18px;
  border: 1px solid;
  border-radius: 24px;
}

.reserve_pc a.to489 {
  font-size: 1.6rem;
  color: #fff;
  padding: 12px 0 12px;
  display: block;
}

.reserve_pc a.to489:hover {
  color: #aaa;
}

.reserve_pc .reserve_to489 {
  background: #030705;
}

.reserve_pc p span {
  display: block;
  font-size: 60%;
}

.reserve_mail {
  background: #333;
  padding: 1px 0px;
}

.reserve_mail a {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  height: 10%;
  color: white;
  margin: 5px 0px;
  display: block;
}

#footer_sp {
  display: none;
}

.reserve_teltext {
  font-size: 1.7rem;
  background-color: #fff;
  height: 49px;
  padding-top: 5px;
}

.reserve_teltext a {
  display: block;
}

.reserve_teltext1 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 896px) {
  #footer_sp {
    display: block;
  }

  .reserve_sp {
    width: 100%;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: #030705;
    color: #fff;
    text-align: center;
  }

  .reserve_sp p {
    padding-top: 10px;
    text-align: center;
  }

  .reserve_sp p a {
    color: #fff;
    display: block;
  }

  .reserve_web,
  .reserve_tel,
  .reserve_btn {
    width: 34%;
  }

  .reserve_web,
  .reserve_tel,
  .reserve_btn {
    border-right: #fff solid 1px;
  }

  .reserve_btn:last-of-type {
    border-right: none;
  }

  .reserve_btn {
    background: #808080;
  }

  .drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /* min-width: 300px; */
    height: 100%;
    padding: 50px 20px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
    z-index: 999 !important;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
  }

  .drawer-menu .menu {
    overflow-y: auto;
    height: 100%;
  }

  .menu-item {
    display: block;
  }

  .header .drawer-menu #menu-top-1 #menu-item-288 {
    /* background: #030705; */
    display: none !important;
  }

  /* #menu-item-288:hover {
    background: #fff;
  }

  #menu-item-288 a {
    color: #fff;
  }

  #menu-item-288 a:hover {
    color: #808080;
  } */

  .drawer-menu li {
    text-align: left;
    margin-left: 3rem;
  }

  .drawer-menu li a {
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    color: white;
  }

  .drawer-menu li a:after {
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 5%;
    transform: translateY(-10%);
  }

  .drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
  }

  /* ------------------------------------------------ checkbox */
  .check {
    display: none;
  }

  /* ------------------------------------------------ menu button スマホ版メニューの位置*/
  .menu-btn {
    position: fixed;
    display: block;
    top: 12px;
    right: 3%;
    width: 10%;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
  }

  .bar {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 3px;
    background: #cbcbcb;
    /*box-shadow: 1px 1px 1px #666;*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }

  .bar.middle {
    top: 15px;
    opacity: 1;
  }

  .bar.bottom {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  .menu-btn:hover .bar {
    background: #999;
  }

  .close-menu {
    position: fixed;
    top: 0;
    /* right: 30%; */
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
  }

  /* ------------------------------------------------ checked */
  .check:checked~.drawer-menu {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2;
    overflow: auto;
  }

  .check:checked~.contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
  }

  .check:checked~.menu-btn .bar.top {
    width: 40px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .check:checked~.menu-btn .bar.middle {
    opacity: 0;
  }

  .check:checked~.menu-btn .bar.bottom {
    width: 40px;
    top: 68%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .check:checked~.menu-btn>span {
    background: #fff;
  }

  .check:checked~.close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    /* background: rgba(0, 0, 0, 0.5); */
    visibility: visible;
    opacity: 1;
    z-index: 3;
    /* background: rgb(227 218 218 / 47%);
    backdrop-filter: blur(4px); */
  }

  /*SPメニュー内バナー*/
  .spmenubnr {
    margin: 30px 10px;
  }

  .spmenubnr p {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
  }
}

/*注意！！以下PC用ヘッダーメニュー*/
@media screen and (min-width: 897px) {
  .drawer-menu {
    width: 100%;
    height: 80px;
  }

  .menu {
    max-width: 1200px;
    float: right;
    /* margin-right: 20px; */
  }

  .menu-top-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  #menu-item-891 {
    display: none;
  }

  #menu-item-288 {
    border-radius: 20px;
    border: 1px solid #030705;
    background-color: #030705;
  }

  #menu-item-288 a {
    color: #fff;
  }

  #menu-item-288:hover {
    background: #fff;
    border: 1px solid #575757;
  }

  #menu-item-288 a {
    color: #fff;
  }

  #menu-item-288 a:hover {
    color: #575757;
  }

  .menu-item {
    display: inline-block;
    padding: 20px 38px 10px;
    text-align: center;
    margin: 24px auto 0;
    position: relative;
  }

  .menu-item#menu-item-288,
  .menu-item#menu-item-1674 {
    padding: 19px 60px 10px;
  }

  #menu-item-3019 {
    padding: 13px 20px 30px;
    margin: 0px 20px;
  }

  #menu-item-3019 img {
    width: 100%;
  }

  .menu-item a {
    color: #575757;
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: bold;
  }

  .check,
  .menu-btn {
    display: none;
  }
}

@media screen and (max-width: 896px) {

  .drawer-menu .menu-top-container .menu>li.menu-item-3019 {
    border-bottom: unset;
  }

  .drawer-menu li.menu-item-3019 a {
    padding: 10px 0;
  }

  .drawer-menu .menu-top-container .menu>li.menu-item-3019 img {
    margin: 0 auto;
    width: auto;
    height: 70%;
    padding: 10px 0;
  }

  .drawer-menu li.menu-item-3019 a::after {
    content: "";
  }
}

/* 下層ページ */
.pankuzu {
  background: #cccccc;
  padding: 8px 0 8px 5px;
  font-size: 1.3rem;
  color: #030705;
  margin-top: 80px;
}

.page_top_view {
  padding: 45px 0 60px;
}

@media screen and (max-width: 896px) {
  .pankuzu {
    margin-top: 60px;
  }

  .page_top_view {
    padding: 0 0 8%;
  }
}

.page_top_view img {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 896px) {
  .page_top_view img {
    width: 100%;
    height: 240px;
  }
}

.page_top_view img.page_top {
  margin: 0 auto 40px;
}

.page_top_view .ttl_area {
  text-align: center;
}

.page_top_view .ttl_area h2 {
  padding: 0 0 24px;
}

.page_top_view .ttl_area .en {
  color: #444;
}

.page_top_view .ttl_area p.msg {
  margin-top: 50px;
  font-size: 1.6rem;
}

ul.room_slide li img {
  margin-bottom: 15px;
}

ul.cate_btn {
  margin: 45px 0 0;
  display: flex;
  justify-content: space-around;
}

ul.cate_btn li {
  text-align: center;
}

ul.cate_btn li a {
  background: #fff;
  border: 1px solid #ccc;
  padding: 18px 0 16px;
  display: block;
}

ul.cate_btn li.btn_2 {
  width: 346px;
}

ul.cate_btn li.btn_3 {
  width: 310px;
}

ul.cate_btn li.btn_4 {
  width: 240px;
}

h3.stripe {
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 896px) {
  h3.stripe {
    font-size: 2rem;
  }
}

h3.stripe span {
  padding: 0 25px;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 896px) {
  h3.stripe span {
    padding: 0 0;
  }
}

h3.border {
  color: #5d87b7;
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 896px) {
  h3.border {
    font-size: 2rem;
  }
}

h3.border span {
  background: #f1f4f4;
  padding: 0 25px;
  position: relative;
  z-index: 20;
}

h3.border:before {
  content: "";
  display: block;
  position: absolute;
  height: 8px;
  width: 100%;
  border-top: 1px solid #ccc;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}

#group_plan {
  padding: 80px 0;
}

ul.plan_list {
  display: flex;
  justify-content: space-between;
}

ul.plan_list li {
  width: 100%;
}

.plan_item {
  width: 478px;
  margin-bottom: 50px;
}

.plan_item .photo {
  position: relative;
}

.plan_item .photo img {
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.plan_item .photo p.plan_num {
  background: #648bb8;
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.plan_item .txt {
  background: #fff;
  padding: 2% 4% 3%;
}

.plan_item .txt .ttl {
  border-bottom: 1px solid #5d87b7;
  padding: 10px 0 20px;
  text-align: center;
}

.plan_item .txt .ttl h4 {
  font-size: 2.4rem;
  margin: 15px 0 0;
}

.plan_item .txt .sub p {
  font-size: 1.4rem;
  margin-top: 15px;
}

.plan_item .txt .sub p.gray {
  background: #ededed;
  padding: 2%;
}

.plan_item .txt .sub .btn_orange {
  margin-top: 5px;
}

.plan_large {
  width: 100%;
  margin-bottom: 65px;
}

#check_place {
  padding: 40px 0;
}

#check_place p.msg {
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
  text-align: center;
}

#check_place p.caution {
  color: #444;
  text-align: center;
  margin-bottom: 60px;
}

#without_meals {
  padding: 80px 0;
}

.detail {
  width: 776px;
  margin: 0 auto;
}

.name {
  display: flex;
  margin-bottom: 30px;
}

.name p {
  font-size: 1.6rem;
}

.name p.green {
  background: #19a495;
  border: 1px solid #19a495;
  color: #fff;
  width: 25%;
  text-align: center;
  padding: 25px 0;
}

.name p.white {
  background: #fff;
  border: 1px solid #999;
  width: 75%;
  padding: 25px;
  box-sizing: border-box;
}

#with_meals {
  padding: 80px 0;
}

#day_plan {
  padding: 80px 0;
}

#option {
  padding: 80px 0;
}

.plan_content p.msg {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
}

#menu .menu_detail {
  width: 800px;
  margin: 0 auto;
}

#menu .menu_detail .txt {
  background: #fff;
  padding: 5px;
}

#menu .menu_detail .inner {
  border: 1px solid #a5c9c2;
  padding: 30px 0;
}

#menu .menu_detail li {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
  font-size: 1.6rem;
}

#menu .menu_detail p {
  text-align: center;
}

.glamping_content p.msg {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
}

.glamping_content .sche_head {
  display: flex;
  justify-content: space-around;
  margin-bottom: 70px;
}

.glamping_content .sche_head .txt {
  background: #fff;
  width: 554px;
  padding: 5px;
}

.glamping_content .sche_head .txt .inner {
  border: 1px solid #eec9af;
  padding: 40px 50px 35px;
  box-sizing: border-box;
  height: 100%;
}

.glamping_content .sche_head .txt .inner.night {
  border: 1px solid #adc2d5;
}

.glamping_content .sche_head .txt .inner.morning {
  border: 1px solid #a0c7b5;
}

.glamping_content .sche_head .txt h3 {
  font-size: 4rem;
  text-align: center;
}

.glamping_content .sche_head .txt h3.day {
  color: #bd806c;
}

.glamping_content .sche_head .txt h3.night {
  color: #6c808e;
}

.glamping_content .sche_head .txt h3.morning {
  color: #648bb8;
}

.glamping_content .sche_head .txt .time {
  text-align: center;
  margin: 10px auto 20px;
  width: 200px;
}

.glamping_content .sche_head .txt .time p {
  padding: 5px 0;
}

.glamping_content .sche_head .txt .time p.en {
  border-bottom: 2px solid #eec9af;
}

.glamping_content .sche_head .txt .time p.en.night {
  border-bottom: 2px solid #adc2d5;
}

.glamping_content .sche_head .txt .time p.en.morning {
  border-bottom: 2px solid #a0c7b5;
}

.glamping_content .sche_head .txt p.under {
  line-height: 2;
}

.glamping_content .sche_head.reverse {
  flex-direction: row-reverse;
}

.glamping_content .slides {
  width: 900px;
  margin: 0 auto;
}

.glamping_content .slides .slide {
  margin-bottom: 20px;
}

.glamping_content .slides ul.slide_pager {
  display: flex;
}

.container.news_single {
  background: #fff;
  padding: 80px 100px 100px;
  min-height: 500px;
}

@media screen and (max-width: 896px) {
  .container.news_single {
    background: #fff;
    padding: 10% 5%;
    min-height: 300px;
    box-sizing: border-box;
  }
}

.container.news_single p.date {
  text-align: center;
}

.container.news_single h2,
.container.news_single h1 {
  padding: 15px 0 25px;
  margin-bottom: 55px;
  font-size: 2.4rem;
  text-align: center;
}

.container.news_single .article_content img {
  margin: 0 auto 45px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 896px) {
  .container.news_single .article_content img {
    height: 240px;
    object-fit: cover;
  }
}

.container.news_single .article_content p {
  line-height: 2;
  word-break: break-word;
}

.container.news_list p.news_list {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

ul.news_list li {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5;
}

ul.news_list li .cate {
  color: #5d87b7;
  font-size: 1.4rem;
}

.qa_dl {
  font-size: 1.6rem;
  line-height: 1.7em;
  margin-bottom: 50px;
}

.qa_dl dd {
  text-indent: 1em;
}

@media screen and (max-width: 896px) {
  .qa_dl dd {
    text-indent: 0;
  }
}

.qa_green_text {
  color: #5d87b7;
  font-size: 2rem;
  font-weight: bold;
}

.qa_orange_text {
  color: #5d87b7;
  font-size: 2rem;
  font-weight: bold;
}

.qa_mb {
  margin-bottom: 20px;
}

/* ------------------------------
   20190428追記
------------------------------ */
/* フッタ
--------------------------- */
footer .info {
  margin-bottom: 2em;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 896px) {
  footer .info {
    padding: 0;
    margin: 0px auto 50px;
  }
}

footer p.checkin a {
  color: #fff;
  padding-right: 1em;
}

.checkin_box {
  margin-bottom: 1em;
}

/* 矢印アイコン
--------------------------- */
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.external::before {
  width: 12px;
  height: 2px;
  background: #808080;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.external::after {
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #808080;
  border-right: 2px solid #808080;
}

.wrapper_video {
  margin: 0 auto;
  width: 800px;
  text-align: left;
  position: relative;
  visibility: hidden;
}

#video {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #000;
}

.video_box {
  width: 800px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.video_box video {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* TOPへ戻るボタン */
#fixedTop {
  right: 10px;
  bottom: 32%;
  color: #fff;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  vertical-align: middle;
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.5);
  position: fixed;
  z-index: 98;
  font-size: 20px;
}

#fixedTop:hover {
  background: rgba(50, 50, 50, 1);
}

@media screen and (max-width: 896px) {
  #fixedTop {
    display: none !important;
  }
}

/* 404
=============*/
#content h2 {
  font-size: 4rem;
  text-align: center;
  padding: 10rem 0 6rem;
  margin: 0 auto;
}

#content p {
  text-align: center;
  padding: 3rem 0;
}

.pc {
  display: none !important;
}

/* swiper */
/* 全体のスタイル */
.swiper-wrapper {
  width: 100%;
  height: 250px;
}

/* 全スライド共通スタイル */
.swiper-slide {
  width: 100%;
  height: 650px;
}

.swiper-slide img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

@media screen and (max-width: 896px) {
  .swiper-slide img {
    height: auto;
  }
}

/*ページネーション*/
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  color: #000;
}

@media screen and (max-width: 600px) {
  div .n2-ss-slide-active {
    height: 300px !important;
  }
}

/* ↓250123追加↓ */
.key-visual {
  padding: 80px 0;
  margin-bottom: 50px;
}

.key-visual>.en-ttl {
  font-size: 5.6rem;
  font-weight: 700;
  font-family: "Yu Gothic UI", "游ゴシック", YuGothic, "ヒラギノゴシック Pro W3", "Hiragino Gothic Pro", "HGゴシックE", "MS Pゴシック", "MS ゴシック", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 5px;
}

.key-visual>h1 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 80px;
}

.key-visual>.img-box {
  position: relative;
  padding-bottom: 40%;
}

.key-visual>.img-box>img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.key-visual>.img-box.-stay>img {
  -o-object-position: 50% 30%;
  object-position: 50% 30%;
}

@media only screen and (max-width: 896px) {
  .key-visual {
    padding: 50px 0;
  }

  .key-visual>.en-ttl {
    font-size: 4rem;
  }

  .key-visual>h1 {
    font-size: 1.4rem;
  }
}

.sub-text {
  margin-bottom: 80px;
}

.scroll-event-content {
  margin-bottom: 100px;
}

.scroll-event-content>*+* {
  margin-top: 250px;
}

.scroll-event-content>.item {
  position: relative;
  box-sizing: border-box;
}

.scroll-event-content>.item .img-box .img>img {
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.scroll-event-content>.item .txt-box {
  width: 40%;
  background: #fff;
  padding: 70px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  margin-left: 60%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.scroll-event-content>.item .txt-box>.ttl {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.scroll-event-content>.item .txt-box>.txt {
  font-size: 2rem;
  line-height: 2;
}

.scroll-event-content>.item:nth-of-type(2n) .txt-box {
  margin-left: 0;
}

.scroll-event-content>.item.-first .img-box {
  margin-bottom: 10%;
}

.scroll-event-content>.item.-first .img-box>.img {
  width: 38%;
}

.scroll-event-content>.item.-first .img-box>.img:nth-of-type(1) {
  width: 35%;
  margin-left: 65%;
}

.scroll-event-content>.item.-first .img-box>.img:nth-of-type(2) {
  width: 33%;
  position: absolute;
  top: 32%;
  left: 46%;
  transform: translate(-50%, -50%);
}

.scroll-event-content>.item.-first .img-box>.img:nth-of-type(3) {
  width: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.scroll-event-content>.item.-next .img-box {
  margin-bottom: -30px;
}

.scroll-event-content>.item.-next .img-box .img:nth-of-type(1) {
  width: 40%;
  margin-left: 50%;
}

.scroll-event-content>.item.-next .img-box .img:nth-of-type(2) {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 15%;
}

.scroll-event-content>.item.-third .img-box>.img {
  width: 50%;
  position: absolute;
  left: 0;
  top: -10%;
}

.scroll-event-content>.item.-forth .img-box>.img {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: -25%;
}

.scroll-event-content>.item.-fifth .img-box>.img {
  width: 47%;
}

.scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(2n - 1) {
  margin-bottom: 100px;
}

.scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(2n) {
  width: 45%;
  position: absolute;
}

.scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(1) {
  margin-left: 40%;
}

.scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(2) {
  top: 24%;
  right: 2%;
}

.scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(4) {
  right: 0;
  bottom: -5%;
}

.scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(5) {
  width: 40%;
  margin-left: 10%;
}

.scroll-event-content>.item.animation-triger>.img-box>.img {
  transition: 0.5s;
  opacity: 0;
}

.scroll-event-content>.item.animation-triger>.img-box>.img:nth-of-type(2) {
  transition-delay: 0.2s;
}

.scroll-event-content>.item.animation-triger>.img-box>.img:nth-of-type(3) {
  transition-delay: 0.4s;
}

.scroll-event-content>.item.animation-triger>.img-box>.img:nth-of-type(4) {
  transition-delay: 0.6s;
}

.scroll-event-content>.item.animation-triger>.img-box>.img:nth-of-type(5) {
  transition-delay: 0.8s;
}

.scroll-event-content>.item.animation-triger.-animation>.img-box>.img {
  opacity: 1;
}

@media only screen and (max-width: 896px) {
  .scroll-event-content {
    margin-bottom: 80px;
  }

  .scroll-event-content>*+* {
    margin-top: 64%;
  }

  .scroll-event-content>.item .txt-box {
    width: 90%;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .scroll-event-content>.item .txt-box>.txt {
    font-size: 1.6rem;
  }

  .scroll-event-content>.item:nth-of-type(2n)>.txt-box {
    margin: 0 auto;
  }

  .scroll-event-content>.item.-first>.img-box {
    margin-bottom: -15px;
  }

  .scroll-event-content>.item.-first>.img-box>.img:nth-of-type(1) {
    position: relative;
    width: 50%;
    margin-left: 50%;
    z-index: 3;
  }

  .scroll-event-content>.item.-first>.img-box>.img:nth-of-type(2) {
    width: 40%;
    top: 33px;
    left: 0;
    transform: translate(0, 0);
    z-index: 3;
  }

  .scroll-event-content>.item.-first>.img-box>.img:nth-of-type(3) {
    width: 95%;
    left: 50%;
    top: 90%;
    bottom: unset;
    transform: translateX(-50%);
    z-index: 1;
  }

  .scroll-event-content>.item.-next .img-box>.img {
    position: relative;
    z-index: 3;
  }

  .scroll-event-content>.item.-next .img-box>.img:nth-of-type(1) {
    width: 50%;
  }

  .scroll-event-content>.item.-next .img-box>.img:nth-of-type(2) {
    left: 0;
    right: unset;
    top: 92%;
  }

  .scroll-event-content>.item.-third {
    margin-top: 30%;
  }

  .scroll-event-content>.item.-third .img-box {
    margin-bottom: -20px;
  }

  .scroll-event-content>.item.-third .img-box>.img {
    width: 100%;
    position: static;
  }

  .scroll-event-content>.item.-forth {
    margin-top: 10%;
  }

  .scroll-event-content>.item.-forth .img-box {
    margin-bottom: -20px;
  }

  .scroll-event-content>.item.-forth .img-box>.img {
    width: 100%;
    position: static;
  }

  .scroll-event-content>.item.-fifth {
    margin-top: 10%;
  }

  .scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(2n - 1) {
    margin-bottom: 6%;
  }

  .scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(1) {
    width: 60%;
    margin-left: 20%;
  }

  .scroll-event-content>.item.-fifth .img-box>.img:nth-of-type(2) {
    top: 45%;
  }
}

.spa-main-content {
  padding-bottom: 200px;
}

.spa-main-content>.img-box {
  width: 100%;
  padding-bottom: 45%;
  position: relative;
  margin-bottom: 40px;
}

.spa-main-content>.img-box>img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.spa-main-content>.txt-box {
  max-width: 800px;
  margin: 0 auto;
}

.spa-main-content>.txt-box>.ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.spa-main-content>.flow-img-box {
  display: flex;
  gap: 0 4%;
}

.spa-main-content>.flow-img-box>.item {
  width: 48%;
  padding-bottom: 30%;
  position: relative;
}

.spa-main-content>.flow-img-box>.item>img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 896px) {
  .spa-main-content {
    padding-bottom: 100px;
  }

  .spa-main-content>.txt-box>.ttl {
    font-size: 2rem;
  }
}

.table01 {
  width: 100%;
  border-bottom: 1px solid #fff;
}

.table01>tbody>tr>th,
.table01>tbody>tr>td {
  font-size: 1.6rem;
  line-height: 1.6;
  border-top: 1px solid #fff;
  padding: 30px 20px;
}

.table01>tbody>tr>th {
  font-weight: 700;
}

@media only screen and (max-width: 896px) {
  .table01 {
    box-sizing: border-box;
  }

  .table01>tbody>tr>th,
  .table01>tbody>tr>td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    text-align: left;
    padding: 20px;
  }

  .table01>tbody>tr>th {
    padding-bottom: 5px;
  }

  .table01>tbody>tr>td {
    font-size: 1.4rem;
    padding-top: 5px;
    border-top: 0;
  }
}

@media only screen and (min-width: 897px) {
  .tb {
    display: none !important;
  }
}

.stay-main {
  padding-bottom: 120px;
}

.stay-main>*+* {
  margin-top: 20%;
}

.stay-main .stay-content img {
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.stay-main .stay-content .top-box {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
  gap: 0 5%;
}

.stay-main .stay-content .top-box>.txt-box {
  width: 45%;
  background: #edeae2;
  padding: 50px 40px;
  box-sizing: border-box;
}

.stay-main .stay-content .top-box>.txt-box .ttl {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Noto Serif TC", "Noto Serif HK", serif;
  line-height: 1.5;
  padding: 0 0 0 40px;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 40px;
}

.stay-main .stay-content .top-box>.txt-box .ttl:before {
  content: "";
  width: 30px;
  height: 5px;
  background: #030705;
  position: absolute;
  top: 18px;
  left: 0;
}

.stay-main .stay-content .top-box>.txt-box .txt {
  font-size: 2rem;
  line-height: 2;
}

.stay-main .stay-content .top-box>.img-box {
  width: 50%;
}

.stay-main .stay-content .top-box>.img-box.animation-triger {
  opacity: 0;
  animation-delay: 0.3s;
  transition: 0.5s;
}

.stay-main .stay-content .top-box>.img-box.animation-triger.-animation {
  opacity: 1;
}

.stay-main .stay-content .bt-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stay-main .stay-content .bt-box>.img-box:nth-of-type(1) {
  width: 65%;
  padding-bottom: 32%;
  position: relative;
}

.stay-main .stay-content .bt-box>.img-box:nth-of-type(1)>img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.stay-main .stay-content .bt-box>.img-box:nth-of-type(2) {
  width: 40%;
  margin-top: 10%;
  margin-left: 60%;
}

.stay-main .stay-content .bt-box>.img-box.animation-triger {
  opacity: 0;
  animation-delay: 0.2s;
  transition: 0.5s;
}

.stay-main .stay-content .bt-box>.img-box.animation-triger.-animation {
  opacity: 1;
}

.stay-main .stay-content>.btn-box {
  margin-top: 10%;
}

.stay-main .stay-content:nth-of-type(2n) .top-box,
.stay-main .stay-content:nth-of-type(2n) .bt-box {
  flex-direction: row-reverse;
}

.stay-main .stay-content:nth-of-type(2n) .bt-box>.img-box:nth-of-type(2) {
  margin-left: 0;
  margin-right: 60%;
}

@media only screen and (max-width: 896px) {
  .stay-main .stay-content .top-box {
    justify-content: center;
    flex-direction: column-reverse;
  }

  .stay-main .stay-content .top-box>.txt-box {
    width: 85%;
    padding: 50px 25px;
    margin-top: -20px;
    position: relative;
    z-index: 3;
  }

  .stay-main .stay-content .top-box>.txt-box>.ttl {
    font-size: 2rem;
    padding: 0 0 0 40px;
    margin-bottom: 25px;
  }

  .stay-main .stay-content .top-box>.txt-box>.ttl:before {
    width: 25px;
    height: 3px;
    top: 13px;
  }

  .stay-main .stay-content .top-box>.txt-box>.txt {
    font-size: 1.6rem;
  }

  .stay-main .stay-content .top-box>.img-box {
    width: 100%;
  }

  .stay-main .stay-content .bt-box {
    margin-top: -25px;
    position: relative;
    z-index: 3;
  }

  .stay-main .stay-content .bt-box>.img-box:nth-of-type(2) {
    margin-top: -10px;
    position: relative;
    z-index: 2;
  }

  .stay-main .stay-content:nth-of-type(2n) .top-box {
    flex-direction: column-reverse;
  }
}

.top-bnr {
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0 60px;
  justify-content: space-between;
  height: 600px;
}

.top-bnr>li {
  width: 24%;
  position: relative;
  transition: 0.3s;
}

.top-bnr>li .img-box>img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}

.top-bnr>li .txt-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 7px 20px;
  box-sizing: border-box;
}

.top-bnr>li .txt-box>p {
  font-size: 3.8rem;
  color: #fff;
  text-shadow: 1px 1px 15px #fff;
}

.top-bnr>li:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 896px) {
  .top-bnr {
    padding: 30px 0 10px;
    height: auto;
  }

  .top-bnr>li {
    width: 100%;
  }

  .top-bnr>li .img-box {
    padding-bottom: 60%;
  }

  .top-bnr>li .img-box>img {
    height: 200px;
  }

  .top-bnr>li .txt-box {
    padding: 5px 15px;
  }
}

.gallery-box {
  padding: unset;
  overflow: hidden;
}

.gallery-box .sub-txt {
  font-size: 1.6rem;
  text-align: center;
}

.gallery-box .photo-gallery .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery-box .photo-gallery .swiper-wrapper .swiper-slide {
  width: 33%;
  height: auto;
}

.gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item {
  position: relative;
}

.gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item .img-box {
  width: 100%;
  padding-bottom: 70%;
  box-sizing: border-box;
  position: relative;
}

.gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item .img-box>img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item .txt-box {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  bottom: 0;
  padding: 7px 20px;
  box-sizing: border-box;
}

.gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item .txt-box>p {
  font-size: 1.8rem;
  color: #fff;
}

@media only screen and (max-width: 896px) {
  .gallery-box .sub-txt {
    font-size: 1.4rem;
  }

  .gallery-box h2.top {
    font-size: 2.2rem;
  }

  .gallery-box .photo-gallery .swiper-wrapper .swiper-slide {
    width: 84%;
    margin: 0 2px;
  }

  .gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item .txt-box {
    padding: 5px 15px;
  }

  .gallery-box .photo-gallery .swiper-wrapper .swiper-slide .item .txt-box>p {
    font-size: 1.6rem;
  }
}

/* ↑250124追加↑ */
/* 250307追加　スマホのhamburgerメニュー */
.drawer-menu .logo_image {
  width: 80%;
  margin: 1.5rem auto 4rem;
}

.btn-flex {
  display: flex;
  margin-bottom: 2.5rem;
  /* gap: 0 4%; */
  justify-content: space-around;
}

.drawer-menu .btn_link {
  /* width: 48%; */
}

.drawer-menu .btn_link p a {
  width: 100%;
  border-radius: 0%;
  /* padding: 12px 0px; */
  padding: 12px 7px;
  border-radius: 4%;
  margin: 0;
}

@media only screen and (max-width: 896px) {
  .drawer-menu .btn_link p a i {
    margin-left: 5px;
  }

  .drawer-menu .btn_link:first-child a {
    color: #fff;
    background: unset;
    border: 1px solid #fff;
  }

  .drawer-menu .btn-black p a {
    background: #030705;
    color: white;
  }

  .drawer-menu .menu-top-container {
    margin-bottom: 30px;
  }

  .drawer-menu .menu-top-container .menu {
    border-top: 1px solid #fff;
  }

  .drawer-menu .menu-top-container .menu>li {
    margin: 0;
    border-bottom: 1px solid #fff;
  }

  .drawer-menu .menu-top-container .menu>li>a {
    position: relative;
  }

  .drawer-menu .menu-top-container .menu>li>a:after {
    top: 50%;
    transform: translateY(-50%);
  }

  .drawer-menu .menu-top-container .menu>li.menu-item-288 {
    display: none;
  }

  .drawer-menu .btn-box {
    text-align: center;
  }
}

.button01 {
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  border: 1px solid #fff;
  padding: 20px;
  position: relative;
  border-radius: 50px;
}

.button01.-others:before {
  content: "\f35d";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

/*　フッターグループ施設 */
.f-group {
  background-color: #ABB5AF;
}

.f-group .white {
  color: white;
}

/*　フッターグループ施設END */
/* ギャラリー */
#gallary {
  padding: 80px 0;
}

.gallery_wrap {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.gallery_wrap .gallery_list {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gallery_wrap .gallery_list .swiper-wrapper {
  width: 100%;
  transition-timing-function: linear !important;
}

.gallery_wrap .gallery_list .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.gallery_wrap .gallery_list .gl_slide {
  width: 37rem;
  height: 25rem;
  overflow: hidden;
}

.gallery_wrap .gallery_list .gl_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hide_slide {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  background: #f9f8f7;
  cursor: pointer;
}

#hide_slide span {
  width: 32px;
  height: 2px;
  position: absolute;
  top: 14px;
  right: 0;
  background: #a7c2c0;
}

#hide_slide span:nth-of-type(1) {
  transform: rotate(135deg);
}

#hide_slide span:nth-of-type(2) {
  transform: rotate(-135deg);
}

#toggle_slide {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#toggle_slide.on {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.toggle_slide_wrap {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}

.toggle_slide_wrap .left_slide {
  width: 65%;
  padding: 60px;
  box-sizing: border-box;
  background: #f9f8f7;
}

.toggle_slide_wrap .right_slide {
  width: 35%;
  height: 100%;
  padding: 60px;
  box-sizing: border-box;
  overflow-y: scroll;
}

.gallery_slide_main {
  width: 100%;
}

.gallery_slide_main .swiper-button-next,
.gallery_slide_main .swiper-button-prev {
  top: 50% !important;
}

.gallery_slide_main .swiper-slide .gl_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_slide_thumbnail {
  width: 100%;
}

.gallery_slide_main .swiper-slide {
  width: 100% !important;
}

.gallery_slide_thumbnail .swiper-wrapper {
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery_slide_thumbnail .swiper-slide {
  width: 33% !important;
  margin: 1px 0;
}

.gallery_slide_thumbnail .swiper-slide .gl_slide {
  width: 100%;
  height: 100%;
}

.gallery_slide_thumbnail .swiper-slide .gl_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_slide_thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
}

@media screen and (max-width: 980px) {
  .toggle_slide_wrap {
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .toggle_slide_wrap .left_slide {
    width: 100%;
    padding: 40px 20px 20px;
  }

  .toggle_slide_wrap .right_slide {
    width: 100%;
    height: 360px;
    padding: 20px;
    overflow-y: scroll;
  }

  .gallery_wrap .gallery_list .gl_slide {
    width: 16rem;
    height: 11.6rem;
  }
}

/* ギャラリーEND */

/*言語切り替え*/
.language {
  z-index: 998;
  position: absolute;
  right: 15px;
  top: 22px;
  width: 130px;
  height: 20px;
}

@media screen and (min-width: 897px) and (max-width: 1480px) {
  .language {
    right: 15px;
    top: 90px;
  }
}

.language>li {
  /*親階層のみ幅を25%にする*/
  width: 100%;
}

/*全てのリスト・リンク共通*/
.language li {
  list-style: none;
  position: relative;
}

.language li p.lan-en,
.language li a {
  background: #eee;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 5px 0;
  border-radius: 18px;
}

/*子階層以降共通*/
.language li li {
  height: 0;
  overflow: hidden;
  transition: .5s;
  margin-top: 1px;
  margin-bottom: 6px;
}

.language li:hover>ul>li {
  height: 2rem;
  overflow: visible;
}

@media screen and (max-width:896px) {
  .language {
    left: 115px;
    top: 10px;
    width: 110px;
  }
}

/*言語切り替え END*/

/*フッターのリゾグラバナー*/
.rgbnr {
  padding: 30px 0;
}

.rgbnr {
  width: 38%;
  margin: 0 auto;
}

.rgbnr img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .rgbnr {
    width: 90%;
    margin: 20px auto 0;
  }
}

/*フッターのリゾグラバナー　END*/