@charset "UTF-8";
html {
  font-size: 62.5%;
}

*,*::before,*::after {
  box-sizing: border-box;
}

:root {
  --shippori-font:  "Shippori Mincho B1", serif;
	--mplus-font:  "M PLUS 1", sans-serif;
}

body {
  margin: 0;
  font-family: var(--shippori-font);
  font-size: 1.4rem;
  color: #1E0405;
  letter-spacing: .1em;
  position: relative;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

a{
  display: block;
}

img{
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

h1, h2, h3, h4{
  font-weight: normal;
  font-size: inherit;
  margin: 0;
}

ol, ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}


header {
	position: fixed;
	top: 0;
	left: 0;
  width: clamp(50px, 7.8125vw, 150px);
	height: 100%;
	z-index: 30;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); /* 影 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); /* 影 */
}

.top_header {
  background: rgba(255, 255, 255, 0.25); /* 透明背景色 */
  -webkit-backdrop-filter: blur(25px); /* ぼかし */
  backdrop-filter: blur(25px); /* ぼかし */
	transform: translateX(-100%);
	opacity: 0;
	animation:  slideDown 2s 0s cubic-bezier(.28,.97,.77,1.01) 1 normal forwards;
}

@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.header_inner {
	width: 100%;
	height: 100%;
	padding: clamp(10px, 2vw, 40px) 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.logo {
	position: relative;
	z-index: 50;
  transition: .3s;
  width: clamp(44px, 5vw, 100px);
  height: fit-content;
}

.logo:hover {
	opacity: 0.8;
}

.toggle {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .3s;
	z-index: 50;
}

.toggle span {
	display: block;
	width: 1px;
	height: 40px;
	background: #756365;
	position: absolute;
	left: 0;
	transition: .3s;
}

.top_header .toggle span {
	background: #fff;
}

.toggle span:first-child {
	left: 8px;
}

.toggle span:nth-child(2) {
	left: 16px
}

.toggle.open span {
	left: 3px;
}

.toggle.open span:first-child {
	left: 8px;
	transform: rotate(20deg);
}

.toggle.open span:nth-child(2) {
	left: 8px;
	transform: rotate(-20deg);
}

.toggle_txt {
  display: inline-block;
  font-size: 1.2rem;
  font-family: var(--mplus-font);
  color: #756365;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-left: 20px;
	transition: .3s;
}

.top_header .toggle_txt {
  color: #ffff;
}

/* スクロール後に適用されるスタイル */
.top_header .toggle.scrolled span , .toggle.open span {
	background: #756365;
}

/* スクロール後に適用されるスタイル */
.top_header .toggle.scrolled .toggle_txt , .toggle.open .toggle_txt {
  color: #756365;
}

.gnav {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 25;
	background: #DEE5E7;
	top: 0;
	left: 0;
	transition: .5s;
	padding: 20px 20px 20px clamp(50px, 7.8vw, 150px);
	overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gnav.open {
  opacity: 1;
  visibility: visible;
}

.gnav_inner {
  text-align: center;
}

.gnav_main-menu li a,.gnav_sub-menu li a {
  transition: .3s;
}

.gnav_main-menu {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.gnav_main-menu li a {
  font-size: 1.6rem;
}

.gnav_sub-menu {
  display: flex;
  column-gap: 20px;
  margin-top: 80px;
}

.gnav_sub-menu li a {
  font-size: 1.2rem;
	color: #756365;
}

.gnav ul li a:hover {
	opacity: .6;
}

a.footer_reservation_btn {
  background-color: #1e0405;
  padding: 10px;
  color: #fff;
  transition: .3s;
	position: fixed;
	z-index: 20;
	bottom: 0;
	right: 0;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 14px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity .4s ease,
    transform .4s ease,
    visibility .4s ease;
}

a.footer_reservation_btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

a.footer_reservation_btn:hover {
  opacity: .8;
}

.frb_icon {
  width: 28px;
}

.frb_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}

.frb_en {
  font-family: var(--mplus-font);
  font-weight: 300;
  font-size: 1rem;
}

.frb_jp {
  font-size: 1.2rem;
  letter-spacing: .2em;
}

.mv {
	position: relative;
  overflow: hidden;
}

.slider {
  overflow: hidden;
}

.main_slider img {
	width: 100%;
}

.mv_eyecatch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  max-width: 600px;
}

.mv_bg_txt {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: clamp(11.5rem, 12vw, 23rem);
  letter-spacing: 0;
  line-height: .9;
  font-family: var(--mplus-font);
  font-weight: 300;
  color: rgba(222, 229, 231, 0.2);
  z-index: 2;
  text-align: right;
}

.scroll{
  position: absolute;
  right: 1.25%;
  bottom: 120px;
  text-align: center;
  z-index: 3;
  display: flex;
  align-items: baseline;
  column-gap: 10px;
}

.scroll p{
  color: #fff;
  text-orientation: sideways;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  font-family: var(--mplus-font);
  font-weight: 300;
  line-height: 1;
}

.bar{
  display: inline-block;
  margin-bottom: 15px;
  width: 1px;
  height: 150px;
  position: relative;
  background: rgba(222, 229, 231, .45);
}

.bar span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
}

.bar_move {
  background: #fff;
  transform-origin: top;
  transform: scale(0);
  z-index: 2;
  animation: scrollBar 4s ease-in-out normal forwards infinite;
}

@keyframes scrollBar {
	0% {
		transform: scale(0);
		transform-origin: top;
	}
	50% {
		transform: scale(1);
		transform-origin: top;
	}
	50.1% {
		transform: scale(1);
		transform-origin: bottom;
	}
	100% {
		transform: scale(0);
		transform-origin: bottom;
	}
}

.bar_base {
  z-index: 3;
}

.mv::after {
  z-index: 4;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(18px, 5.21vw, 100px);
  background-image: url(img/mv_bottom.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.about {
  position: relative;
  background-image: url(img/about_bg.png);
  background-repeat: no-repeat;
  background-position: left 0 bottom -1px;
  background-size: 100%;
  overflow: hidden;
}

.about::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 260px;
  background: linear-gradient(to bottom,rgba(222, 229, 231, 0) 0%,rgba(222, 229, 231, .5) 27%,rgba(222, 229, 231, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.about_inner {
  padding: 48px 44px 120px;
  display: grid;
  grid-template-columns: 53% 1fr;
  column-gap: 60px;
  align-items: center;
}

.about_img_wrap {
  display: grid;
  gap: 20px; /* 画像間の余白 */
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  position: relative;
}

/* 中央の画像だけ2カラム分使う */
.about_img_wide {
  grid-column: span 2;
}

/* 画像の見え方調整 */
.about_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about_img_wrap::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: clamp(65px, 6.77vw, 130px);
  background: linear-gradient(to bottom,rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.about_txt_wrap {
  display: grid;
  place-items: center;
  z-index: 2;
}

.about_txt_inner {
  max-width: 580px;
  width: 100%;
}

.heading_h2 {
  margin-bottom: 80px;
  text-align: center;
  color: #756365;
}

.heading_h2 .en_title {
  font-family: var(--mplus-font);
  font-size: 9rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.heading_h2 h2 {
  font-size: 1.6rem;
  padding-top: 56px;
  position: relative;
}

.heading_h2 h2::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 20px;
  background: url(img/title_deco.svg) no-repeat center / contain;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.about .heading_h2 {
  text-align: right;
}

.about .heading_h2 h2::before {
  left: auto;
  right: 0;
  transform: translateX(0);
}

.about_txt_txt {
  max-width: 450px;
  margin: 0 auto;
}

.rl_mode_wrapper {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  margin: 0 auto;
  white-space: nowrap;
}

.top_h3 {
  font-size: 2.4rem;
  color: #756365;
  font-weight: 500;
  line-height: 1.73;
}

.about .top_h3 {
  letter-spacing: .2em;
}

.about_p {
  margin-top: 80px;
  line-height: 2.4;
}

a.readmore_btn_link {
  margin-top: 40px;
  position: relative;
  border-bottom: 1px solid #756365;
  color: #756365;
  font-family: var(--mplus-font);
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 18px 50px 18px 38px;
  max-width: 250px;
  transition: .3s;
}

a.readmore_btn_link:hover {
  opacity: .6;
}

.readmore_btn_link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url(img/arrow.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.about a.readmore_btn_link {
  margin-left: auto;
}

.room {
  background-color: #DEE5E7;
  padding-bottom: 200px;
  position: relative;
}

.room_head {
  position: relative;
}

.inner {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 150px;
}

.room .heading_h2 {
  position: relative;
  z-index: 3;
  padding: 140px 0;
  margin-bottom: 0;
}

.room_head .readmore_btn_link {
  margin: 44px auto 0;
}

/* 流れる文字 */
.txt_loop_wrap {
	position: absolute;
	display: flex;
	width: 100%;
	overflow: hidden;
  z-index: 2;
}

.tlw01 {
  top: 0;
}

.tlw02 {
  bottom: 0;
  padding-top: 480px;
}

.txt_loop_wrap div {
	flex: 0 0 auto;
	white-space: nowrap;
	font-family: var(--mplus-font);
	font-size: clamp(11.5rem, 12vw, 23rem);
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 300;
	overflow: hidden;
  line-height: 1;
}

.tlw01 div:nth-child(odd) {
	animation: loop 80s linear infinite;
}

.tlw01 div:nth-child(even) {
  animation: loop2 80s linear infinite;
}

@keyframes loop {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
  
@keyframes loop2 {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

.tlw02 div:nth-child(odd) {
	animation: loop3 80s linear infinite;
}

.tlw02 div:nth-child(even) {
  animation: loop4 80s linear infinite;
}

@keyframes loop3 {
	0% {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}
  
@keyframes loop4 {
	0% {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

.room_content_wrap {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 150px;
  display: grid;
  row-gap: 124px;
}

.room_content {
  display: flex;
  column-gap: 60px;
  align-items: center;
  justify-content: space-between;
}

div.room_content:nth-of-type(even) {
  flex-direction: row-reverse;
}

div.room_content:nth-of-type(even) a.readmore_btn_link {
  padding: 18px 38px 18px 50px;
}

div.room_content:nth-of-type(even) a.readmore_btn_link::after {
  right: auto;
  left: 26px;
  transform: translateY(-50%) rotate(180deg);
}

.room_h3 {
  color: #756365;
}

.room_h3 .en_title {
  font-family: var(--mplus-font);
  font-size: 6rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.room_h3 h3 {
  font-size: 1.6rem;
  padding-top: 25px;
}

.room_content_img {
  width: 60%;
}

/* スライダー全体 */
.css_slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}

/* スライド3枚のグループ */
.css_slider {
  animation: scroll-left 40s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
}

/* スライド */
.css_slide {
  width: 530px;
  height: 350px;
}

/* スライドの画像 */
.css_slide img {
  display: block;
  width: 100%;
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.reservation {
  padding: 180px 0;
  background: linear-gradient(to bottom,#dee5e7 0%,#fff 100%);
}

.reservation_top_p {
  text-align: center;
  line-height: 2;
}

.reservation_btn_wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

a.reservation_btn {
  text-align: center;
  max-width: 400px;
  width: 100%;
  background-color: #1e0405;
  padding: 36px 20px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  transition: .3s;
}

a.reservation_btn:hover {
  opacity: .8;
}

.reservation_btn span {
  position: relative;
  padding-right: 45px;
}

.reservation_btn span::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url(img/link_icon.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.access {
  position: relative;
  background: url(img/access_bg.jpg) no-repeat center / cover;
}

.access::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: clamp(18px, 5.21vw, 100px);
  background-image: url(img/access_top.svg);
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 2;
  background-size: cover;
}

.access::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(18px, 5.21vw, 100px);
  background-image: url(img/access_bottom.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 2;
  background-size: cover;
}

.access_inner {
  display: grid;
  grid-template-columns: 1fr 46%;
  column-gap: 60px;
  align-items: center;
}

.access_txt_wrap {
  padding: 150px 0 200px 150px;
  max-width: 805px;
  margin: 0 auto;
}

.access_img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 880px;
  position: relative;
  overflow: hidden;
}

.slider3,.slider4{
  height: 100%;
  width: calc(50% - 10px);
  position: absolute!important;
}

.slider3 {
  left: 0;
  top: 0;
}

.slider4 {
  left: calc(50% + 10px);
  top: 0;
}

/* スライドの動き等速 */
.slider3 .swiper-wrapper,.slider4 .swiper-wrapper {
	transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.slider3 .swiper-slide img,.slider4 .swiper-slide img {
  height: 100%;
  width: 150%;
  margin-left: -25%;
  max-width: none;
  object-fit: cover;
}

.access .heading_h2 {
  text-align: left;
}

.access .heading_h2 h2::before {
  left: 0;
  transform: translateX(0);
}

.access_p_wrap {
  margin-top: 40px;
  line-height: 2.4;
  display: grid;
  row-gap: 24px;
}

.faq {
  padding: 100px 0 180px;
}

.faq .heading_h2 {
  text-align: left;
  display: flex;
  align-items: flex-end;
}

.faq .heading_h2 h2 {
  padding-top: 0;
  padding-left: 56px;
}

.faq .heading_h2 h2::before {
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

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

.faq_card {
  border-bottom: 1px solid #756365;
}

.faq_card:first-child {
  border-top: 1px solid #756365;
}

.q_area {
  line-height: 2;
  position: relative;
  cursor: pointer;
  padding: 20px 50px 20px 36px;
  transition: .8s;
}

.q_area::before, .a_area::before {
  display: inline-block;
  position: absolute;
  left: 0;
  font-family: var(--mplus-font);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: #756365;
}

.q_area::before {
  content: "Q.";
  top: 15px;
}

.plus_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}

.plus_icon::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #756365;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.plus_icon::after {
  content: "";
  width: 2px;
  height: 20px;
  background: #756365;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: .3s;
}

.q_area.active .plus_icon::after {
  transform: scale(0);
}

.a_area::before {
  content: "A.";
  top: 0;
}

.a_area {
  display: none;
  line-height: 2;
  position: relative;
  padding: 0 0 20px 36px;
}


/* 仮 */

.pick-up {

  display: none;

  background-color: #dee5e7;
  padding: 80px 0 100px;
  margin-bottom: 120px;
}

.pick-up .heading_h2 {
  text-align: left;
  display: flex;
  align-items: flex-end;
  margin-bottom: 64px;
}

.pick-up .heading_h2 .en_title {
  font-size: 6rem;
}

.pick-up .heading_h2 h2 {
  padding-top: 0;
  padding-left: 56px;
  font-size: 1.5rem;
}

.pick-up .heading_h2 h2::before {
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.pick-up_content_wrap {
  display: flex;
  column-gap: 50px;
}

.pick-up_content {
  max-width: 450px;
}

.pick-up_name {
  margin-top: 20px;
  font-size: 2.4rem;
  color: #756365;
  font-weight: 500;
}

.pick-up_place {
  margin-top: 8px;
  font-size: 1.2rem;
}

.pick-up_p {
  margin-top: 14px;
  border-top: 1px solid #756365;
  padding-top: 16px;
  line-height: 2;
  text-align: justify;
}

a.pick-up_btn {
  font-family: var(--shippori-font);
  font-size: 1.6rem;
  margin: 10px auto 0;
  max-width: 200px;
}

/* 仮 */


.news {
  padding-bottom: 120px;
}

.news .heading_h2 {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 64px;
}

.news .heading_h2 .en_title {
  font-size: 6rem;
}

.news .heading_h2 h2 {
  padding-top: 0;
  padding-left: 56px;
  font-size: 1.5rem;
}

.news .heading_h2 h2::before {
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.news_list {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}

.news_list li {
  width: calc(100% / 3);
}

.news_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  column-gap: 30px;
  row-gap: 15px;
  transition: .3s;
}

.news_list a:hover {
  opacity: .8;
}

.news_list a figure {
  display: block;
  width: 100px;
}

.news_title_area {
  padding-right: 20px;
  position: relative;
  flex-basis: 100%;
}

.news_title_area > div {
  column-gap: 15px;
  margin-bottom: 10px;
}

.news_title_area time {
  font-family: var(--mplus-font);
  font-weight: 300;
  font-size: 2rem;
  color: #756365;
}

.news_arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 14px;
  background: url(img/arrow.svg) no-repeat center / contain;
}

.news a.readmore_btn_link {
  margin: 40px auto 0;
}

.footer_bg_txt_wrap {
  background: url(img/footer_bg.jpg) no-repeat center / cover;
  position: relative;
  overflow: hidden;
  height: clamp(140px, 21.35vw, 410px);
}

.footer_bg_txt {
  position: absolute;
  font-size: clamp(11.5rem, 12vw, 23rem);
  letter-spacing: 0;
  line-height: .9;
  font-family: var(--mplus-font);
  font-weight: 300;
  color: rgba(222, 229, 231, 0.2);
  z-index: 2;
}

.fbt_top {
  text-align: left;
  top: -20px;
  left: clamp(50px, 7.8125vw, 150px);
}

.fbt_bottom {
  text-align: right;
  bottom: -20px;
  right: 0;
}

footer {
  background-color: #1e0405;
  padding: 64px 0 36px;
  color: #fff;
}

.footer_inner {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 150px;
}

.footer_top {
  padding-bottom: 60px;
  border-bottom: 1px solid #dee5e7;
  margin-bottom: 24px;
}

.footer_logo {
  font-size: 4rem;
  font-family: var(--mplus-font);
  font-weight: 300;
  letter-spacing: 0;
}

.footer_top_flex {
  display: flex;
  justify-content: space-between;
  column-gap: 100px;
  margin-top: 44px;
}

footer address {
  line-height: 2;
  display: grid;
  row-gap: 24px;
}

.footer_contact_btn_wrap {
  margin-top: 44px;
}

a.footer_contact_btn {
  text-align: center;
  max-width: 240px;
  width: 100%;
  background-color: #fff;
  padding: 22px 20px;
  color: #1e0405;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  transition: .3s;
}

a.footer_contact_btn:hover {
  opacity: .8;
}

.footer_nav {
  display: flex;
  column-gap: 76px;
}

.footer_nav ul {
  display: grid;
  row-gap: 32px;
  align-self: flex-start;
  font-size: 1.8rem;
  font-weight: 500;
}

.footer_nav ul li a {
  transition: .3s;
}

.footer_nav ul li a:hover {
  opacity: .8;
}

.footer_bottom_ul {
  display: flex;
  column-gap: 32px;
  justify-content: flex-end;
}

.copy-right {
  margin-top: 28px;
  text-align: center;
  font-family: var(--mplus-font);
  font-size: 1.2rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.show {
  animation: fadeUp 1s linear 1 normal forwards;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.sp_br {
  display: none;
}


.subpage_space {
  padding-left: clamp(50px, 7.8125vw, 150px);
}

.subpage_heading_section {
  margin-bottom: 95px;
}

.subpage_head_bg {
  padding-top: 80px;
  background-image: url(img/subpage_heading_bg.png);
  background-repeat: no-repeat;
  background-position: right 0 bottom -1px;
  background-size: contain;
  overflow: hidden;
}

.subpage_inner {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 40px;
}

.subpage_heading_section .heading_h2 {
  text-align: left;
}

.subpage_heading_section .heading_h2 h2::before {
  left: 0;
  transform: translateX(0);
}

.subpage_heading_img {
  width: 100%;
  overflow: hidden;
  height: clamp(180px, 23.4375vw, 450px);
}

.shi_room {
  background: url(img/room_head.jpg) no-repeat center / cover;
}

.shi_about {
  background: url(img/about_head.jpg) no-repeat center / cover;
}

.shi_access {
  background: url(img/access_head.jpg) no-repeat center / cover;
}

.sub-room_intro .subpage_inner {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}

.sub-room_intro .top_h3 {
  min-width: 400px;
}

.sub-room_intro_p {
  max-width: 820px;
  width: 100%;
  line-height: 2;
  display: grid;
  row-gap: 32px;
}

.sub-room_all-room {
  margin-top: 160px;
}

.subpage_h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #756365;
  margin-bottom: 60px;
  line-height: 1.8;
}

.sub-room_all-room .subpage_h4,.sub-faq_section .subpage_h4 {
  text-align: center;
}

.dl_table {
  max-width: 950px;
  margin: 0 auto;
}

.dl_table > dl {
  display: flex;
  padding: 24px 0;
  line-height: 2;
  border-bottom: 1px solid #756365;
  column-gap: 50px;
}

.dl_table > dl:first-child {
  border-top: 1px solid #756365;
}

.dl_table > dl > dt {
  min-width: 250px;
}

.sub-room_select-room {
  margin-top: 160px;
}

.sub-room_select-room .subpage_inner {
  display: flex;
  column-gap: 30px;
  justify-content: center;
}

.select-room {
  max-width: 360px;
}

.select-room a {
  transition: .3s;
}

.select-room a:hover {
  opacity: .8;
}

.select-room_txt {
  position: relative;
  border-bottom: 1px solid #756365;
  color: #756365;
  letter-spacing: 0;
  line-height: 1;
  padding: 24px 44px 16px 0;
}

.select-room_en {
  font-family: var(--mplus-font);
  font-size: 2rem;
  letter-spacing: 0;
}

.select-room_txt::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url(img/arrow.svg) no-repeat center / contain;
  position: absolute;
  right: 18px;
  bottom: 16px;
  transform: rotate(90deg);
}

.select-room_jp {
  margin-top: 10px;
}

.sub-room_desc-room {
  padding-top: 160px;
}

.sub-room_desc-room .room_h3 {
  text-align: center;
}

.room_slider {
  margin-top: 80px;
  position: relative;
}

.controlls1_wrap {
  max-width: 790px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 90px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 22px !important;
}

.swiper-pagination .swiper-pagination-bullet {
  margin: 0 7px !important;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background: #756365;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: auto;
  bottom: 0;
  margin-top: 0;
  z-index: 10;
  color: #756365;
}

.sub-room_desc-room .dl_table {
  max-width: 500px;
  margin-top: 60px;
}

.sub-room_desc-room .dl_table > dl {
  column-gap: 0;
}

.sub-room_desc-room .dl_table > dl > dt {
  min-width: 145px;
}

.sub-room_reservation {
  position: relative;
  padding: 240px 0;
  background: linear-gradient(to bottom, rgba(222, 229, 231, 0) 0%, rgba(222, 229, 231, .5) 27%, rgba(222, 229, 231, 1) 100%);
}

.sub-room_reservation .top_h3 {
  text-align: center;
  margin-bottom: 80px;
}

.sub-room_reservation p {
  text-align: center;
  line-height: 2;
}

.sub-room_reservation .tlw01 {
  top: auto;
  bottom: 0;
}

.subpage_footer {
  padding-left: clamp(50px, 7.8125vw, 150px);
}


.sub-about_content {
  padding-top: 160px;
  position: relative;
  display: flex;
  align-items: center;
}

.sub-about_content::before {
  content: '';
  display: inline-block;
  width: 570px;
  height: 410px;
  background: url(img/tree-shade.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.sub-about_content_img {
  width: 56%;
}

.sub-about_content_txt {
  display: grid;
  place-items: center;
  padding: 0 40px;
  margin: 0 auto;
}

.sub-about_content_txt_inner {
  max-width: 500px;
  width: 100%;
}

.sub-room_intro_p ul li {
  padding-left: 24px;
  position: relative;
}

.sub-room_intro_p ul li::before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  background-image: url(img/check_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 8px;
  left: 0;
}

div.sub-about_content:nth-of-type(even) {
  flex-direction: row-reverse;
}

div.sub-about_content:nth-of-type(even)::before {
  right: auto;
  left: 0;
  transform: rotateY(180deg);
}


.sub-access_intro_p {
  line-height: 2;
}

.sub-access_section {
  margin-top: 120px;
}

.sub-access_section .subpage_h4 {
  margin-bottom: 32px;
}

.sub-access_p {
  line-height: 2;
}

.map {
  margin-top: 52px;
}

h5.sub-access_h5:not(:first-of-type),.cart_h5 {
  margin-top: 40px;
}

.sub-access_h5 {
  position: relative;
  padding-left: 32px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-access_h5::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 4px;
  left: 0;
}

.access_map_wrap {
  margin-top: 40px;
  display: flex;
  column-gap: 50px;
}

.access_map_building {
  max-width: 370px;
}

.access_map_map {
  max-width: 630px;
}

.icon_pin::before {
  width: 14px;
  height: 21px;
  background-image: url(img/pin_icon.svg);
}

.icon_car::before {
  width: 24px;
  height: 16px;
  background-image: url(img/pin_car.svg);
}

.icon_car::before {
  width: 24px;
  height: 16px;
  background-image: url(img/car_icon.svg);
}

.icon_parking::before {
  width: 20px;
  height: 26px;
  background-image: url(img/parking_icon.svg);
  top: 0;
}

.icon_cart::before {
  width: 22px;
  height: 21px;
  background-image: url(img/cart_icon.svg);
  top: 0;
}

.icon_meal::before {
  width: 22px;
  height: 21px;
  background-image: url(img/meal_icon.svg);
}

.sub-access_p {
  display: grid;
  row-gap: 28px;
}

.sub-access_p ol {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  row-gap: 28px;
}

.sub-access_section .css_slider-wrapper {
  margin-top: 120px;
}

.sub-access_column_wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 44px;
}

.sub-access_column {
  min-height: 320px;
  padding: 20px 9%;
  position: relative;
}

.sub-access_column.shopping01 {
  background: url(img/shopping01.jpg) no-repeat center / cover;
}

.sub-access_column.shopping02 {
  background: url(img/shopping02.jpg) no-repeat center / cover;
}

.sub-access_column.shopping03 {
  background: url(img/shopping03.jpg) no-repeat center / cover;
}

.sub-access_column.facility01 {
  background: url(img/facility01.jpg) no-repeat center / cover;
}

.sub-access_column.facility02 {
  background: url(img/facility02.jpg) no-repeat center / cover;
}

.sub-access_column.facility03 {
  background: url(img/facility03.jpg) no-repeat center / cover;
}

.sub-access_column::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.85);
  position: absolute;
  top: 0;
  left: 0;
}

.sub-access_column_inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  height: 100%;
  text-align: justify;
}

.sub-access_column_inner h6 {
  font-size: 1.6rem;
  font-weight: 700;
}

section.sub-access_section:last-of-type,
section.sub-faq_section:last-of-type {
  margin-bottom: 160px;
}


section.sub-faq_section:not(:first-of-type) {
  margin-top: 140px;
}

section.sub-faq_section:first-of-type {
  margin-top: 160px;
}

.sub-faq_section .top_h3 {
  text-align: center;
  margin-bottom: 40px;
}

.number_box_section p {
  line-height: 2;
}

.number_box_section_top_p {
  text-align: center;
}

.number_box {
  margin: 28px auto;
  padding: 28px 20px;
  border-radius: 10px;
  background-color: #ede6e8;
  text-align: center;
  display: grid;
  row-gap: 20px;
  max-width: 500px;
}

.number_box p {
  font-size: 1.8rem;
}

.number_box a {
  font-size: 3rem;
  font-weight: 700;
  text-decoration: underline;
}

.number_box_note_wrap {
  text-align: center;
}

.number_box_note {
  position: relative;
  padding-left: 16px;
  display: inline-block;
  font-size: 1.2rem;
}

.number_box_note::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 1;
}


.sub_news_section {
  margin-bottom: 160px;
}

.sub_news_section .news_list {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto 70px;
}

.sub_news_section .news_list li {
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #756365;
}

.sub_news_section .news_list a figure {
  max-width: 160px;
  width: 100%;
}

.page_nav {
  display: flex;
  justify-content: center;
  text-align: center;
}

.page-numbers {
  width: 30px;
  height: 30px;
  display: grid;
  justify-content: center;
  align-items: center;
}

.page-numbers.current {
  background: #756365;
  color: #fff;
  border-radius: 50%;
  pointer-events: none;
}

.prev.page-numbers, .next.page-numbers {
  position: relative;
}

.next.page-numbers {
  margin-left: 2rem;
}

.next.page-numbers::after {
  content: '〉';
}

.prev.page-numbers::before {
  content: '〈';
}


.article_wrapper {
  margin: 160px auto;
  max-width: 1000px;
}

.article_heading {
  padding-bottom: 28px;
  border-bottom: 1px solid #756365;
  margin-bottom: 80px;
  color: #756365;
}

.article_heading p {
  margin-bottom: 24px;
  font-family: var(--mplus-font);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0;
}

.article_heading h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
}

.article_body {
  padding-bottom: 100px;
  border-bottom: 1px solid #756365;
}

.article_body_p_wrap {
  display: grid;
  row-gap: 24px;
  line-height: 2;
}

.article_body_p_wrap {
  row-gap: 20px;
}

.article_img {
  margin: 88px auto 0;
  max-width: 500px;
}

a.back_btn {
  font-family: var(--shippori-font);
  font-size: 1.8rem;
  padding: 18px 38px 18px 50px;
  margin: 40px auto 0;
}

a.readmore_btn_link.back_btn::after {
  right: auto;
  left: 26px;
  transform: translateY(-50%) rotate(180deg);
}


a.sub-contact_btn {
  font-family: var(--shippori-font);
  font-size: 1.8rem;
  margin: 40px auto 0;
  max-width: 322px;
}

.sub-contact_section p {
  line-height: 2;
}

section.sub-contact_section:first-of-type {
  margin-top: 0;
}

.contact_form {
  margin: 52px auto 0;
  max-width: 900px;
}

.contact_form dl {
  margin-bottom: 28px;
}

.contact_form dt {
  padding-bottom: 12px;
}

.contact_form input, .contact_form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #c8cfc7;
  border-radius: 5px;
  padding: 16px 20px;
}

.contact_form .require {
  color: #fd4747;
  font-size: 1.2rem;
  padding: 2px 8px;
  border: 1px solid #fd4747;
  margin-left: 8px;
  line-height: 1;
}

.contact_privacy_txt {
  margin-top: 60px;
  text-align: center;
}

.contact_privacy_txt a {
  display: inline-block;
  text-decoration: underline;
}

.accept {
  margin-top: 40px;
  text-align: center;
}

.accept input {
  width: auto;
}

.accept_txt {
  padding-left: 10px;
}

.submit_btn {
  margin-top: 40px;
}

.submit_btn [type="submit"] {
  display: block;
  color: #fff;
  background: #1e0405;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 22px 15px;
  line-height: 1;
  transition: .3s;
  font-weight: 700;
  font-size: 1.6rem;
}

.submit_btn [type="submit"]:hover {
  opacity: .8;
}

.submit_note {
  margin-top: 20px;
  display: grid;
  justify-content: center;
  color: #acacac;
  font-size: 1.2rem;
}

.submit_note li {
  padding-left: 1.7rem;
  position: relative;
}

.submit_note li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

.submit_note a {
  display: inline;
  text-decoration: underline;
}


.sub-operating_company_section {
  margin-bottom: 160px;
}


.sub-privacy_section {
  margin-bottom: 160px;
}

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

.privacy_top_p {
  margin-bottom: 60px;
}

.sub-privacy_section section:not(:first-of-type) {
  margin-top: 48px;
}

.sub-privacy_section p,.sub-privacy_section ol {
  line-height: 2;
}

.sub-privacy_section h3 {
  font-size: 2.4rem;
  color: #756365;
  margin-bottom: 20px;
}

.sub-privacy_section ol {
  margin-top: 8px;
  padding-left: 20px;
  list-style: decimal;
}


ol.ol_iroha {
  padding-left: 32px;
  list-style: katakana-iroha;
  margin-bottom: 8px;
}

.terms_dl_h4 {
  margin-top: 30px;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

.dl_table.terms_dl_table > dl:first-child {
  border-top: none;
  font-weight: 700;
  padding-bottom: 8px;
}

.number_box_note_wrap.terms_dl_note {
  margin-top: 20px;
}


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

  .news_list {
    flex-direction: column;
    row-gap: 30px;
  }

  .news_list li {
    width: 100%;
  }

  .sub-about_content,div.sub-about_content:nth-of-type(even) {
    flex-direction: column-reverse;
    row-gap: 100px;
  }

  .sub-about_content::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: clamp(65px, 6.77vw, 130px);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }

}

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

  header {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .top_header {
    transform: translateY(-100%);
    opacity: 0;
    animation:  slideDown 2s 0s cubic-bezier(.28,.97,.77,1.01) 1 normal forwards;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header_inner {
    padding: 10px 17.5px;
    justify-content: space-between;
    flex-direction: row;
  }

  .toggle {
    width: 30px;
    height: 30px;
  }

  .toggle span {
    width: 30px;
    height: 1px;
    left: auto;
    top: 0;
  }

  .toggle span:first-child {
    left: auto;
    top: 8px;
  }

  .toggle span:nth-child(2) {
    left: auto;
    top: 16px;
  }

  .toggle.open span {
    left: auto;
    top: 3px;
  }

  .toggle.open span:first-child {
    left: auto;
    top: 8px;
    transform: rotate(20deg);
  }

  .toggle.open span:nth-child(2) {
    left: auto;
    top: 8px;
    transform: rotate(-20deg);
  }

  .toggle_txt {
    font-size: .86rem;
    -ms-writing-mode: lr-tb; /* IE向け */
    writing-mode: horizontal-tb; /* 標準 */
    transform: rotate(0deg);
    margin-left: auto;
    margin-top: 20px;
  }

  .gnav {
    padding: 80px 20px 20px;
  }
  
  a.footer_reservation_btn {
    width: 100px;
    height: 100px;
    row-gap: 5px;
  }

  .frb_icon {
    width: 22px;
  }

  .frb_txt {
    row-gap: 5px;
  }

  .frb_en {
    font-size: .8rem;
  }

  .frb_jp {
    font-size: 1rem;
  }

  .mv_bg_txt {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%,-50%);
    font-size: 8rem;
    text-align: center;
    line-height: 1.5;
  }

  .scroll {
    bottom: 20px;
    column-gap: 5px;
  }

  .bar {
    height: 100px;
  }

  .scroll p {
    font-size: 1.2rem;
  }

  .about {
    background-image: url(img/about_bg_sp.png);
  }

  .about_inner {
    grid-template-columns: 1fr;
    row-gap: 100px;
  }

  .about_img_wrap {
    order: 2;
  }

  .room_content {
    justify-content: space-between;
    flex-direction: column-reverse;
    row-gap: 40px;
  }

  div.room_content:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .room_content_txt {
    text-align: center;
  }

  div.room_content:nth-of-type(even) a.readmore_btn_link {
    padding: 18px 50px 18px 38px;
  }

  div.room_content:nth-of-type(even) a.readmore_btn_link::after {
    right: 26px;
    left: auto;
    transform: translateY(-50%);
  }

  .room_content_img {
    width: 100%;
  }

  /* スライド */
  .css_slide {
    width: 265px;
    height: 175px;
  }

  .access_inner {
    grid-template-columns: 1fr;
  }

  .access_txt_wrap {
    padding: 150px 0 100px;
    max-width: 805px;
    margin: 0 auto;
  }

  .access_img_wrap {
    height: 500px;
    margin: 0 auto;
  }

  .footer_top_flex {
    flex-direction: column;
    row-gap: 60px;
  }


  /* 仮 */

  .pick-up .heading_h2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .pick-up .heading_h2 h2 {
    padding-top: 56px;
    padding-left: 0;
  }

  .pick-up .heading_h2 h2::before {
    top: 25px;
    left: 0;
    transform: translateX(0);
  }

  /* 仮 */

  .fbt_top {
    left: 0;
  }


  .subpage_space {
    padding-left: 0;
  }

  .subpage_head_bg {
    padding-top: 120px;
    background-image: url(img/subpage_heading_bg_sp.png);
  }

  .sub-room_intro .subpage_inner {
    flex-direction: column;
    row-gap: 40px;
  }

  .sub-room_intro .top_h3 {
    min-width: auto;
    width: 100%;
  }

  .subpage_footer {
    padding-left: 0;
  }

}

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

  .sp_br {
    display: block;
  }

  .gnav_main-menu {
    row-gap: 40px;
  }

  .gnav_sub-menu {
    margin-top: 50px;
    flex-direction: column;
    row-gap: 16px;
  }

  .mv_eyecatch {
    width: 130%;
  }

  .about_inner {
    padding: 48px 20px 120px;
  }

  .heading_h2 {
    margin-bottom: 60px;
  }

  .heading_h2 .en_title {
    font-size: 6rem;
  }

  .heading_h2 h2 {
    padding-top: 36px;
  }

  .heading_h2 h2::before {
    width: 14.4px;
    height: 16px;
    top: 16px;
  }

  .top_h3 {
    font-size: 2rem;
  }

  .about_p {
    margin-top: 48px;
  }

  a.readmore_btn_link {
    margin-top: 28px;
    font-size: 2rem;
    max-width: 220px;
  }

  .about_img_wrap {
    gap: 10px;
  }

  .about_img_wrap::before {
    height: 40px
  }

  .about::after {
    height: 180px;
  }

  .inner {
    padding: 0 20px;
  }

  .room {
    padding-bottom: 120px;
  }

  .room_content_wrap {
    padding: 0 20px;
    row-gap: 80px;
  }

  .room .heading_h2 {
    padding: 100px 0;
  }

  .txt_loop_wrap div{
    font-size: 8rem;
  }

  .room_h3 .en_title {
    font-size: 4rem;
  }

  .room_h3 h3 {
    font-size: 1.4rem;
    padding-top: 15px;
  }

  .reservation {
    padding: 100px 0;
  }

  a.reservation_btn {
    max-width: 300px;
    padding: 24px 16px;
    font-size: 1.6rem;
  }

  .reservation_btn span {
    padding-right: 28px;
  }

  .reservation_btn span::after {
    width: 18px;
    height: 18px;
  }

  .access_txt_wrap {
    padding: 100px 20px;
  }

  .access_p_wrap {
    line-height: 2;
  }

  .q_area {
    padding: 20px 32px 20px 36px;
  }

  .plus_icon {
    width: 16px;
    height: 16px;
    right: 6px;
  }

  .plus_icon::before {
    width: 16px;
  }

  .plus_icon::after {
    height: 16px;
  }

  .faq {
    padding: 100px 0 120px;
  }


  /* 仮 */

  .pick-up {

    display: none;

    margin-bottom: 100px;
  }

  .pick-up .heading_h2 {
    margin-bottom: 44px;
  }

  .pick-up .heading_h2 .en_title {
    font-size: 4rem;
  }

  .pick-up .heading_h2 h2 {
    padding-top: 36px;
    font-size: 1.4rem;
  }

  .pick-up .heading_h2 h2::before {
    top: 16px;
  }

  .pick-up_content_wrap {
    flex-direction: column;
    row-gap: 50px;
  }

  a.pick-up_btn {
    font-size: 1.4rem;
    margin: 10px auto 0;
    max-width: 180px;
  }

  /* 仮 */


  .news {
    padding-bottom: 100px;
  }

  .news .heading_h2 {
    margin-bottom: 44px;
  }

  .news .heading_h2 .en_title {
    font-size: 4rem;
  }

  .news .heading_h2 h2 {
    padding-left: 36px;
    font-size: 1.4rem;
  }

  .news .heading_h2 h2::before {
    left: 16px;
  }

  .news_list a {
    column-gap: 18px;
  }

  .news_title_area > div {
    margin-bottom: 6px;
  }

  .news_title_area time {
    font-size: 1.6rem;
  }

  .footer_bg_txt {
    font-size: 8rem;
  }

  .fbt_top {
    top: -10px;
  }

  .fbt_bottom {
    bottom: 0;
  }

  .footer_inner {
    padding: 0 20px;
  }

  .footer_logo {
    font-size: 3rem;
  }

  .footer_top_flex {
    margin-top: 24px;
  }

  footer address {
    row-gap: 14px;
  }

  .footer_contact_btn_wrap {
    margin-top: 32px;
  }

  a.footer_contact_btn {
    max-width: 200px;
    padding: 16px;
    font-size: 1.4rem;
  }

  .footer_nav {
    flex-direction: column;
    row-gap: 28px;
  }

  .footer_nav ul {
    row-gap: 28px;
    font-size: 1.6rem;
  }

  .footer_bottom_ul {
    flex-direction: column;
    font-size: 1.2rem;
    row-gap: 6px;
  }


  .subpage_heading_section {
    margin-bottom: 70px;
  }

  .subpage_inner {
    padding: 0 20px;
  }

  .sub-room_all-room {
    margin-top: 100px;
  }

  .subpage_h4 {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  .dl_table > dl {
    flex-direction: column;
    row-gap: 20px;
  }

  .dl_table > dl > dt {
    text-align: center;
    min-width: auto;
    width: 100%;
  }

  .sub-room_select-room {
    margin-top: 100px;
  }

  .sub-room_select-room .subpage_inner {
    flex-direction: column;
    row-gap: 50px;
    align-items: center;
  }

  .select-room_img {
    width: 60%;
    margin: 0 auto;
  }

  .select-room_txt {
    padding: 16px 44px 16px 0;
  }

  .sub-room_desc-room {
    padding-top: 100px;
  }

  .room_slider {
    margin-top: 40px;
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }

  .swiper-pagination {
    flex-wrap: wrap;
    row-gap: 10px;
    max-width: 70%;
    bottom: 17px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2rem;
  }

  .controlls1_wrap {
    padding-bottom: 60px;
  }

  .sub-room_desc-room .dl_table > dl > dd {
    text-align: center;
  }

  .sub-room_desc-room .dl_table {
    margin-top: 40px;
  }

  .sub-room_reservation {
    padding: 140px 0;
  }

  .sub-room_reservation .top_h3 {
    margin-bottom: 60px;
  }


  .sub-about_content {
    padding-top: 100px;
  }

  .sub-about_content_txt {
    padding: 0 20px;
  }

  .sub-about_content, div.sub-about_content:nth-of-type(even) {
    row-gap: 60px;
  }

  .sub-about_content_img {
    width: 100%;
  }

  .sub-about_content::before {
    max-width: 285px;
    width: 100%;
    max-height: 205px;
  }

  .sub-about_content::after {
    display: none;
  }

  .sub-access_section {
    margin-top: 80px;
  }

  .sub-access_section .subpage_h4 {
    margin-bottom: 20px;
  }

  .map {
    margin-top: 40px;
  }

  .access_map_wrap {
    flex-direction: column;
    row-gap: 30px;
  }

  .sub-access_section .css_slider-wrapper {
    margin-top: 80px;
  }

  .sub-access_column_wrap {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }


  section.sub-faq_section:not(:first-of-type) {
    margin-top: 100px;
  }

  section.sub-faq_section:first-of-type {
    margin-top: 120px;
  }

  .number_box_section_top_p,
  .number_box_note_wrap {
    text-align: left;
  }

  section.sub-access_section:last-of-type,
  section.sub-faq_section:last-of-type {
    margin-bottom: 120px;
  }


  .sub_news_section .news_list {
    row-gap: 0;
    margin-bottom: 40px;
  }

  .sub_news_section .news_list a figure {
    max-width: 100px;
  }

  .sub_news_section {
    margin-bottom: 120px;
  }


  .article_wrapper {
    margin: 120px auto;
  }

  .article_heading {
    padding-bottom: 16px;
    margin-bottom: 40px;
  }

  .article_heading p {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }

  .article_heading h2 {
    font-size: 1.6rem;
  }

  .article_body {
    padding-bottom: 60px;
  }

  .article_img {
    margin: 44px auto 0;
  }

  a.back_btn {
    font-size: 1.6rem;
    padding: 18px 20px 18px 50px;
  }


  section.sub-contact_section:first-of-type {
    margin-top: 0;
  }

  a.sub-contact_btn {
    font-size: 1.6rem;
    padding: 18px 50px 18px 20px;
    max-width: 280px;
  }

  .contact_privacy_txt {
    margin-top: 40px;
  }


  .sub-operating_company_section {
    margin-bottom: 120px;
  }

  .sub-operating_company_section .dl_table > dl > dd {
    text-align: center;
  }


  .sub-privacy_section {
    margin-bottom: 120px;
  }

  .sub-privacy_section h3 {
    font-size: 2rem;
  }


  .dl_table.terms_dl_table > dl {
    flex-direction: row;
    column-gap: 0;
  }

  .dl_table.terms_dl_table > dl > dt {
    text-align: left;
    width: 50%;
  }

  .dl_table.terms_dl_table > dl:first-child {
    line-height: 1.5;
  }

}