@charset "UTF-8";
/***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
  width: 100%;
  height: auto;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/*color
-------------------------------------------------------*/
/*color
-------------------------------------------------------*/
/*メディアクエリ
-------------------------------------------------------*/
/*セクション タイトル
-------------------------------------------------------*/
/*ボタン
-------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 150%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header
-------------------------------------------------------*/
header {
  position: sticky;
  top: 0;
  padding-top: 16px;
  z-index: 999;
}
header .inner {
  position: relative;
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
}

.header_logo {
  width: 180px;
  height: auto;
}

.header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_nav {
  color: #E6E7E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1064px) {
  .header_nav {
    display: none;
  }
}
.header_nav a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_btn {
  color: #C18259;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  border: solid 1px #C18259;
  padding: 8px 16px;
  margin-left: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1064px) {
  .header_btn {
    margin-right: 60px;
  }
}
.header_btn:hover {
  background-color: #C18259;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.is-tab {
  display: none;
}
@media screen and (max-width: 1064px) {
  .is-tab {
    display: block;
  }
}

.drawer_icon {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 100;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer_icon.is-active {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  position: fixed;
}
.drawer_icon.is-active .drawer_icon_bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #C18259;
}
.drawer_icon.is-active .drawer_icon_bar2 {
  display: none;
}
.drawer_icon.is-active .drawer_icon_bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #C18259;
}

.drawer_icon_bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer_icon_bar1,
.drawer_icon_bar2,
.drawer_icon_bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #C18259;
  top: 0;
  left: 0;
}

.drawer_icon_bar1 {
  top: 0;
}

.drawer_icon_bar2 {
  top: 8px;
}

.drawer_icon_bar3 {
  top: 16px;
}

.drawer_content {
  width: 300px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #22223C;
  z-index: 99;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer_content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer_content_items {
  margin-top: 160px;
}

.drawer_content_item {
  text-align: center;
  color: #C18259;
}
.drawer_content_item + .drawer_content_item {
  margin-top: 32px;
}
.drawer_content_item a {
  display: inline;
  font-size: 18px;
}

.drawer_background {
  background: #444444;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer_background.is-active {
  display: block;
}

/* Mv
-------------------------------------------------------*/
.mv {
  width: 100%;
  height: 100svh;
  margin-top: -76px;
  position: relative;
  margin-top: -120px;
}
.mv::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: url("../img/mv.png") bottom/cover no-repeat;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1064px) {
  .mv::before {
    background-position: 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .mv::before {
    background-position: 20% bottom;
  }
}

.mv_contents {
  color: #E6E7E8;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1064px) {
  .mv_contents {
    width: 90%;
  }
}

.mv_contents-main {
  color: #FFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 28px;
  margin-bottom: 26px;
  line-height: 150%;
}
@media screen and (max-width: 600px) {
  .mv_contents-main {
    font-size: 24px;
  }
}

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

.mv_btn {
  display: inline-block;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 16px 40px;
  background-color: #C18259;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mv_btn:hover {
  background-color: #D59B76;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Concept
-------------------------------------------------------*/
.concept {
  background-color: #22223C;
  padding-top: 120px;
  padding-bottom: 80px;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  .concept {
    padding-top: 100px;
  }
}

.concept_text {
  color: #C18259;
  font-family: "Noto Serif JP", serif;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (min-width: 1065px) {
  .concept_text {
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
  }
}

.concept_text-head {
  font-size: 24px;
  margin-left: 64px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1064px) {
  .concept_text-head {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .concept_text-head {
    font-size: 20px;
  }
}

.concept_text-body {
  font-size: 20px;
  margin-top: 47px;
  line-height: 4;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1064px) {
  .concept_text-body {
    line-height: 2;
    font-size: 18px;
  }
}

.concept_img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .concept_img-wrapper {
    display: block;
  }
}

@media screen and (max-width: 1064px) {
  .concept_text-pc {
    display: none;
  }
}

.concept_text-sp {
  display: none;
}
@media screen and (max-width: 1064px) {
  .concept_text-sp {
    display: block;
  }
}

.concept_img-1, .concept_img-2, .concept_img-3 {
  width: 350px;
}
@media screen and (max-width: 600px) {
  .concept_img-1, .concept_img-2, .concept_img-3 {
    width: 100%;
  }
}

/* Contents
-------------------------------------------------------*/
.contents {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #22223C;
  margin: -1px;
}
@media screen and (max-width: 600px) {
  .contents {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.section_title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 120px;
}
@media screen and (max-width: 1064px) {
  .section_title-wrapper {
    display: block;
  }
}

.section_header {
  color: #C18259;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  letter-spacing: 0.1em;
  padding-left: 76px;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .section_header {
    font-size: 40px;
    padding-left: 56px;
  }
}
@media screen and (max-width: 600px) {
  .section_header {
    font-size: 32px;
  }
}
.section_header::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background: #C18259;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1064px) {
  .section_header::before {
    width: 48px;
  }
}
@media screen and (max-width: 600px) {
  .section_header::before {
    width: 40px;
  }
}

.section_title-text {
  color: #E6E7E8;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1064px) {
  .section_title-text {
    margin-top: 24px;
  }
}

.contents_wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .contents_wrapper {
    margin-top: 40px;
  }
}

.contents_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1064px) {
  .contents_box {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.contents_box:not(:first-of-type) {
  margin-top: 80px;
}

.contents_img {
  max-width: 550px;
}
@media screen and (max-width: 1064px) {
  .contents_img {
    max-width: 100%;
  }
}

.contents_text-wrapper {
  width: 40%;
}
@media screen and (max-width: 1064px) {
  .contents_text-wrapper {
    width: 100%;
    margin-top: 24px;
  }
}

.contents_numb {
  color: #C18259;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
@media screen and (max-width: 1064px) {
  .contents_numb {
    font-size: 24px;
  }
}

.contents_title {
  color: #C18259;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1064px) {
  .contents_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .contents_title {
    font-size: 24px;
  }
}

.contents_body {
  color: #E6E7E8;
  font-family: "Noto Serif JP", serif;
  line-height: 150%;
  letter-spacing: 0.1em;
}

.btn_saunasumatakyo {
  margin-top: 40px;
  color: #E6E7E8;
}
@media screen and (max-width: 1064px) {
  .btn_saunasumatakyo {
    margin-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  .btn_saunasumatakyo {
    margin-top: 16px;
  }
}
.btn_saunasumatakyo a {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 39px 30px 0;
  width: 240px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 260px;
}
.btn_saunasumatakyo a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #C18259;
  border-radius: 50%;
}
.btn_saunasumatakyo a::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E6E7E8;
  z-index: 1;
}
.btn_saunasumatakyo a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Flow
-------------------------------------------------------*/
.flow {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #22223C;
}
@media screen and (max-width: 600px) {
  .flow {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.flow .inner {
  max-width: 700px;
  margin: 0 auto;
}

.flow_wrapper {
  margin-top: 80px;
}

.flow_border {
  height: 100px;
  position: relative;
}
.flow_border::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #C18259;
  left: 0;
  top: 2px;
}
.flow_border::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background-color: #C18259;
  top: 10px;
  left: 9.5px;
}

.flow_parts-last {
  position: relative;
}
.flow_parts-last::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #C18259;
  left: 0;
  top: 2px;
}

.flow_text-wrapper {
  margin-left: 60px;
}
@media screen and (max-width: 600px) {
  .flow_text-wrapper {
    margin-left: 40px;
  }
}

.flow_text-head {
  color: #C18259;
  font-size: 18px;
}

.flow_text-time, .flow_hotel {
  font-size: 14px;
  color: #E6E7E8;
  margin-top: 8px;
}

.flow_hotel-btn {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 39px 30px 0;
  width: 240px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #E6E7E8;
  margin-top: 16px;
}
.flow_hotel-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #C18259;
  border-radius: 50%;
}
.flow_hotel-btn::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E6E7E8;
  z-index: 1;
}
.flow_hotel-btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Information
-------------------------------------------------------*/
.information {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #22223C;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  .information {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.information .inner {
  max-width: 800px;
}

.info_wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .info_wrapper {
    margin-top: 40px;
  }
}

.info_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-bottom: 1px solid #B4ACA4;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .info_row {
    display: block;
  }
}
.info_row:first-of-type {
  border-top: 1px solid #B4ACA4;
}

.info_row-head {
  color: #C18259;
  font-size: 14px;
  width: 200px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .info_row-head {
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.info_row-text {
  font-size: 14px;
  color: #E6E7E8;
  width: calc(100% - 200px);
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 600px) {
  .info_row-text {
    width: 100%;
    margin-top: 24px;
  }
}

/* Price
-------------------------------------------------------*/
.price {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #22223C;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  .price {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.price_table {
  width: 80%;
  margin: 80px auto 0;
}
@media screen and (max-width: 1064px) {
  .price_table {
    width: 100%;
    margin: 56px auto 0;
  }
}
@media screen and (max-width: 780px) {
  .price_table {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .price_table {
    width: 100%;
    margin: 40px auto 0;
  }
}
.price_table img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 780px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 780px) {
  .is-sp {
    display: block;
  }
}

.option_wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 1064px) {
  .option_wrapper {
    margin-top: 60px;
  }
}

.option_head {
  font-size: 22px;
  color: #C18259;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1064px) {
  .option_head {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 600px) {
  .option_head {
    margin-bottom: 16px;
  }
}

.option_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  padding: 40px;
  background-color: #FFF;
}
@media screen and (max-width: 1064px) {
  .option_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .option_box {
    gap: 16px;
    padding: 16px;
  }
}

.option_title {
  font-size: 16px;
  color: #C18259;
  font-family: "Noto Serif JP", serif;
  margin-top: 8px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .option_title {
    font-size: 14px;
  }
}

/* Access
-------------------------------------------------------*/
.access {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #22223C;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  .access {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.access_map-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 1064px) {
  .access_map-wrapper {
    display: block;
    margin-top: 60px;
  }
}

.map {
  width: 50%;
  background-color: #FFF;
}
@media screen and (max-width: 1064px) {
  .map {
    width: 100%;
  }
}
.map iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.map_info {
  margin-left: 60px;
}
@media screen and (max-width: 1064px) {
  .map_info {
    margin-left: 0;
    margin-top: 40px;
  }
}

.place {
  color: #C18259;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
}
@media screen and (max-width: 1064px) {
  .place {
    margin-bottom: 24px;
  }
}

.address {
  color: #E6E7E8;
  font-family: "Noto Serif JP", serif;
  line-height: 150%;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  font-size: 14px;
}
@media screen and (max-width: 1064px) {
  .address {
    margin-bottom: 16px;
  }
}

.map_btn {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 39px 30px 0;
  width: 240px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #E6E7E8;
  width: 220px;
}
.map_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #C18259;
  border-radius: 50%;
}
.map_btn::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E6E7E8;
  z-index: 1;
}
.map_btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.access_info-wrapper {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1064px) {
  .access_info-wrapper {
    display: block;
    margin-top: 40px;
  }
}

.access_info-head {
  color: #C18259;
  font-size: 16px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1064px) {
  .access_info-head {
    margin-bottom: 32px;
  }
}

.access_info-body {
  letter-spacing: 0.1em;
  color: #E6E7E8;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  line-height: 150%;
}

.access_car-btn {
  color: #E6E7E8;
  margin-top: 24px;
}
.access_car-btn a {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 39px 30px 0;
  width: 240px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 220px;
}
.access_car-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #C18259;
  border-radius: 50%;
}
.access_car-btn a::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E6E7E8;
  z-index: 1;
}
.access_car-btn a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.access_train {
  margin-left: 80px;
}
@media screen and (max-width: 1064px) {
  .access_train {
    margin-left: 0;
    margin-top: 40px;
  }
}

.access_train-btn {
  color: #E6E7E8;
  margin-top: 24px;
}
@media screen and (max-width: 1064px) {
  .access_train-btn {
    margin-top: 16px;
  }
}
.access_train-btn a {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 39px 30px 0;
  width: 240px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 240px;
}
.access_train-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #C18259;
  border-radius: 50%;
}
.access_train-btn a::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E6E7E8;
  z-index: 1;
}
.access_train-btn a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* 単体プラン&素泊まり可能ホテル
-------------------------------------------------------*/
.guide {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #444444;
}
@media screen and (max-width: 600px) {
  .guide {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}

.guide_head {
  padding-left: 16px;
  color: #C18259;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .guide_head {
    font-size: 16px;
  }
}
.guide_head::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #C18259;
  left: 0;
  top: 8px;
}

.guide_plan-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 40px;
}
@media screen and (max-width: 1064px) {
  .guide_plan-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .guide_plan-wrapper {
    display: block;
  }
}

.guide_plan {
  text-align: center;
  border: 1px solid #C18259;
  width: 30%;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .guide_plan {
    width: 80%;
    margin: 0 auto 16px;
  }
}

.guide_plan-head {
  font-size: 22px;
  color: #C18259;
  margin-bottom: 24px;
}
@media screen and (max-width: 1064px) {
  .guide_plan-head {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.guide_plan-text {
  font-size: 14px;
}
@media screen and (max-width: 1064px) {
  .guide_plan-text {
    margin-bottom: 8px;
  }
}

.guide_plan-time {
  font-size: 14px;
}

.guide_hotel {
  padding-top: 120px;
}
@media screen and (max-width: 1064px) {
  .guide_hotel {
    padding-top: 80px;
  }
}

.guide_hotel-head {
  font-size: 22px;
  color: #C18259;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1064px) {
  .guide_hotel-head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .guide_hotel-head {
    font-size: 18px;
  }
}

.guide_hotel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1064px) {
  .guide_hotel-wrapper {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .guide_hotel-wrapper {
    width: 100%;
  }
}

.guide_hotel-img {
  max-width: 500px;
}
@media screen and (max-width: 1064px) {
  .guide_hotel-img {
    max-width: 100%;
  }
}
.guide_hotel-img img {
  width: 100%;
}

.guide_hotel-info {
  margin-left: 60px;
}
@media screen and (max-width: 1064px) {
  .guide_hotel-info {
    margin-left: 0;
    margin-top: 32px;
  }
}

.guide_hotel-name {
  font-size: 22px;
  color: #C18259;
  padding-left: 16px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .guide_hotel-name {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.guide_hotel-name::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #C18259;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.guide_hotel-body {
  font-size: 14px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .guide_hotel-body {
    margin-bottom: 24px;
  }
}

.guide_hotel-btn {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 39px 30px 0;
  width: 200px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.guide_hotel-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #C18259;
  border-radius: 50%;
}
.guide_hotel-btn::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #444444;
  z-index: 1;
}
.guide_hotel-btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* FAQ
-------------------------------------------------------*/
.faq {
  padding-top: 120px;
  padding-bottom: 80px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1064px) {
  .faq {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .faq {
    padding-top: 80px;
    margin-bottom: 60px;
  }
}

.section_header {
  color: #C18259;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  letter-spacing: 0.1em;
  padding-left: 76px;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .section_header {
    font-size: 40px;
    padding-left: 56px;
  }
}
@media screen and (max-width: 600px) {
  .section_header {
    font-size: 32px;
  }
}
.section_header::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background: #C18259;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1064px) {
  .section_header::before {
    width: 48px;
  }
}
@media screen and (max-width: 600px) {
  .section_header::before {
    width: 40px;
  }
}

.faq_contents-wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .faq_contents-wrapper {
    margin-top: 60px;
  }
}

.faq_content {
  font-size: 14px;
  color: #444444;
  padding: 32px 40px;
  border-bottom: 1px solid #B4ACA4;
}
@media screen and (max-width: 1064px) {
  .faq_content {
    padding: 32px 16px;
  }
}
@media screen and (max-width: 600px) {
  .faq_content {
    padding: 24px 8px;
  }
}
.faq_content:first-of-type {
  border-top: 1px solid #B4ACA4;
}

.faq_q {
  margin-bottom: 40px;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 600px) {
  .faq_q {
    padding-left: 40px;
    margin-bottom: 32px;
  }
}
.faq_q::before {
  content: "Q";
  position: absolute;
  color: #C18259;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .faq_q::before {
    font-size: 20px;
  }
}

.faq_a {
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 600px) {
  .faq_a {
    padding-left: 40px;
  }
}
.faq_a::before {
  content: "A";
  position: absolute;
  color: #C18259;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  left: 0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .faq_a::before {
    font-size: 20px;
  }
}

/* CTA
-------------------------------------------------------*/
.cta {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(/img/cta.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.cta_contents-wrapper {
  text-align: center;
}

.cta_text {
  color: #C18259;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1064px) {
  .cta_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cta_text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.cta_btn {
  display: inline-block;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 16px 40px;
  background-color: #C18259;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 40px;
}
.cta_btn:hover {
  background-color: #D59B76;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cta_contact-wrapper {
  font-size: 14px;
  color: #E6E7E8;
}

.cta_contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.cta_contact-row:first-of-type {
  margin-top: 16px;
}

.cta_icon {
  width: 16px;
  height: 16px;
}

.cta_icon>img {
  width: 100%;
  height: 100%;
}

/* Footer
-------------------------------------------------------*/
footer {
  background-color: #22223C;
  padding-top: 40px;
  padding-bottom: 20px;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  footer {
    padding-top: 20px;
  }
}

.page-top_btn-wrapper {
  text-align: right;
}
.page-top_btn-wrapper a {
  display: inline-block;
  font-size: 12px;
  color: #C18259;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 66px;
  aspect-ratio: 1/1;
  border: 1px solid #C18259;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .page-top_btn-wrapper a {
    font-size: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 62px;
  }
}
.page-top_btn-wrapper a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #E6E7E8;
  background-color: #C18259;
}

.footer_contents-wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 1064px) {
  .footer_contents-wrapper {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .footer_contents-wrapper {
    margin-top: 24px;
  }
}

.footer-logo_wrapper {
  text-align: center;
}
.footer-logo_wrapper a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-logo_wrapper a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-logo_wrapper a img {
  height: auto;
  max-width: 250px;
}
@media screen and (max-width: 600px) {
  .footer-logo_wrapper a img {
    max-width: 250px;
  }
}

.sns_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 1064px) {
  .sns_wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sns_icon {
  width: 24px;
  height: 24px;
}
.sns_icon a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sns_icon a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer_nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E6E7E8;
}
@media screen and (max-width: 1064px) {
  .footer_nav-wrapper {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}
@media screen and (max-width: 600px) {
  .footer_nav-wrapper {
    font-size: 12px;
    gap: 24px;
  }
}
.footer_nav-wrapper a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_nav-wrapper a:hover {
  opacity: 0.7;
}

.copy {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  color: #E6E7E8;
}