@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  scroll-behavior: smooth;
}

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

video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

header {
  display: flex;
  justify-content: space-between;
  z-index: 99999;
  width: 80vw;
}
h1 {
  position: fixed;
  top: 10px;
  left: 1%;
  z-index: 99;
  width: 10%;
}
.center_logo {
  display: flex;
  font-size: 3em;
  position: absolute;
  top: 15%;
  left: 43%;
  justify-content: center;
  align-items: center;
}
nav ul {
  justify-content: space-between;

  width: 55vw;
  height: 5vh;
  align-items: center;
  display: flex;

  position: fixed;
  margin-bottom: 5%;
  top: 10px;
  left: 25%;
  padding: 2%;
  background-color: #fbb03b;
  z-index: 99999999;
}
ul li {
  list-style: none;
  align-items: center;
  font-size: 1.1em;

  color: black;
}

ul li a {
  color: #000;
  position: relative;
  display: inline-block;
}
ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.omotenashi {
  height: 100vh;
  z-index: 0;
}
.swiper {
  z-index: 1;
}

.modal__content h3 {
  writing-mode: vertical-rl;
  color: #fff;
}
.slide-text-box01 {
  position: absolute;
  height: 30vh;
  top: 15%;
  right: 15%;

  display: flex;
  flex-direction: row-reverse;
}
.slide-text-box02 p {
  writing-mode: vertical-rl;
  color: #fff;
}
.slide-text-box02 {
  position: absolute;
  top: 40%;

  height: 20vh;
  display: flex;
  flex-direction: row-reverse;
}
.slide-text-box03 p {
  writing-mode: vertical-rl;
  color: #fff;
}
.slide-text-box03 {
  position: absolute;
  height: 40vh;
  display: flex;
  flex-direction: row-reverse;
  left: 10%;
  bottom: 20%;
}
.slide-text-box04 p {
  writing-mode: vertical-rl;
  color: #fff;
}
.slide-text-box04 {
  position: absolute;
  height: 40vh;
  display: flex;
  flex-direction: row-reverse;
}
.slide-text-box05 p {
  writing-mode: vertical-rl;
  color: #000;
}
.slide-text-box05 {
  position: absolute;
  height: 19vh;
  display: flex;
  flex-direction: row-reverse;
  right: 25%;
  bottom: 6%;
}
.slide-text-box06 p {
  writing-mode: vertical-rl;
  color: #fff;
}
.slide-text-box06 {
  position: absolute;
  height: 40vh;
  display: flex;
  flex-direction: row-reverse;
  right: 10%;
}
.slide-text-box07 p {
  writing-mode: vertical-rl;
  color: #000;
}
.slide-text-box07 {
  position: absolute;
  height: 20vh;
  display: flex;
  flex-direction: row-reverse;
  right: 10%;
  bottom: 4%;
}

.title {
  color: #000;
}
.slide-text-box01 p {
  writing-mode: vertical-rl;
  color: #fff;
}
.swiper {
  position: relative;
  z-index: 1;
}
.swiper-container,
.swiper-slide {
  height: 100vh;
  position: relative;
}
.swiper-slide > img {
  object-fit: cover; /* IE: not support */
  width: 100%;
  height: 100%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.swiper-button-prev::after {
  background-image: url(/hotel/img/1099_ar_h.svg);
}
.swiper-button-next::after {
  background-image: url(/hotel/img/1099_ar_h_right.svg);
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
}
.room_name01 {
  justify-content: center;
  position: absolute;
  bottom: 20%;
  left: 35%;
  writing-mode: vertical-rl;
  font-size: 2.5em;
  height: fit-content;
  text-align: center;
}
.room_name01 span {
  font-size: 0.3em;
  letter-spacing: 0.2em;
}
.describe {
  height: 40%;
  width: 10%;
  position: absolute;
  right: 350px;
  bottom: 200px;
}
.describe p {
  writing-mode: vertical-rl;
  font-size: 2.5em;
}
.describe a:hover {
  color: #fbb03b;
  transition: 0.3s;
}
/*矢印と下線の形状*/
.describe a::before {
  content: url(/hotel/img/arrow.svg);
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -33px;
  left: 15%;
  /*下線の形状*/
  width: 85%;

  /*アニメーションの指定*/
  transition: all 0.3s;
}

.describe a::after {
  content: url(/hotel/img/arrow.svg);
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -3px;
  right: 0;
  /*矢印の形状*/

  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hoverした際の移動*/
.describe a:hover::before {
  left: 20%;
}
.describe a:hover::after {
  right: -5%;
}

.room_item {
  position: relative;
  width: 50%;
}
.box01 {
  position: absolute;
  top: 450px;
  left: 390px;
  width: 200px;
}
.box01 img {
  object-fit: cover;
  border-radius: 50%;
}
.box02 {
  position: absolute;
  top: 40px;
  width: 300px;
  left: 380px;
  top: 70px;
}
.box02 img {
  object-fit: cover;
  border-radius: 50%;
}

.box03 {
  position: absolute;
  width: 400px;

  top: 150px;
  left: 50px;
}
.box03 img {
  object-fit: cover;
  border-radius: 50%;
}

.slide-box p {
  position: absolute;
  bottom: 14%;
  left: 42%;
  color: #fff;
  font-size: 0.7em;
}
p.room_type {
  writing-mode: vertical-rl;
  position: absolute;
  right: 35%;
  bottom: 37%;
}
.border {
  width: 40%;
  border: 1px solid #ccc;
  writing-mode: vertical-lr;
  text-align: center;
  position: absolute;
  bottom: 17%;
  left: 30%;
}
.swiper ul.sub_info {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10%;
  gap: 2%;
}
.sub_info li {
  width: 40%;

  justify-content: baseline;
  align-items: flex-end;
  border: #ccc 1.8px solid;
  color: #fff;

  font-size: 0.5em;
  writing-mode: horizontal-tb;
}
.slide-box {
  position: relative;
  display: flex;
}
.onsen {
  width: 80%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.spa {
  width: fit-content;
  writing-mode: vertical-rl;
  position: absolute;
  top: 10px;
  left: 48%;
  font-size: 2em;
}
.spa span {
  font-size: 0.5em;
  writing-mode: horizontal-tb;
}
.onsen img {
  width: 100%;
  border-radius: 50%;
}

.onsen_box {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

.onsen_box a p {
  color: #000;
}

.onsen_box a:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.onsen_box span {
  border-top: 1.2px solid #ccc;
  writing-mode: vertical-lr;
  width: 70%;
  align-items: center;
}
.eigo {
  writing-mode: sideways-rl;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 0.8em;
  color: #000;
}
.onsen p {
  width: fit-content;
  writing-mode: vertical-rl;
  margin: 2%auto;
  font-family: "Times New Roman", Times, serif;
  font-size: 2em;
  padding: 3% 0%;
}

.dining {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(/hotel/img/eating.jpg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
}

.bf_dn {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15%;
}
.bf_dn a {
  width: 45%;
}

/* .dining_box {
  width: 25%;
  height: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;

  background-color: #fff;

  border-radius: 99999999px;
} */
/* 
.dining_box p {
  font-family: "Times New Roman", Times, serif;
  writing-mode: vertical-rl;
  justify-content: space-between;
  font-size: 2.8vw;
  border-radius: 50%;
  width: 100%;
}
.dining_box p span {
  writing-mode: horizontal-tb;
  font-size: 0.4em;
} */

.dining a {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  width: 25vw;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.709);
  border-radius: 50%;
}
.dining a span {
  writing-mode: horizontal-tb;
  font-size: 1.5vw;
}
.dining a p {
  font-size: 5vh;
  font-family: "Times New Roman", Times, serif;
  color: #fff;
}

.dining a:hover {
  transition: 0.2s;
  background-color: #000;
}

.spa01 {
  width: fit-content;
  writing-mode: vertical-rl;
  position: absolute;

  top: 80px;
  left: 48%;
  color: #ffffff;
  font-size: 2em;
  z-index: 99999;
}
.spa01 span {
  font-size: 0.5em;
  writing-mode: horizontal-tb;
}
.gallery {
  position: relative;
  height: 100vh;
}

.content {
  margin: 0 auto;
}
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  position: absolute;
  width: 100vw;
  z-index: 999999999999999999999999999999999;
  left: 0px;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 99999999999999;
}

.modal__content img .opem_content {
  object-fit: cover;
}

.gallery_container {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  margin: 5%auto;

  padding: 10%;
}
.gallery_container img {
  width: 22%;
  object-fit: cover;
  border-radius: 50%;
  padding: 1%;
  cursor: pointer;
}

.gallery_container img:hover {
  opacity: 0.8;
}
.content {
  text-align: center;
}
.content img a {
  width: 90%;
  margin: 0 auto;
  width: 30%;
  object-fit: cover;
  border-radius: 50%;
  padding: 1%;
  cursor: pointer;
}
.map {
  position: relative;
  height: 100vh;
}

/* .access_all {
  width: 70vw;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
} */

.direction {
  display: flex;
  gap: 3%;
  width: 50%;
  text-align: center;
}

.button {
  width: 33%;
  padding: 3%;

  cursor: pointer;
  color: #000;
  background-color: #fff;
}

.button a {
  width: 33%;
  padding: 3%;
  writing-mode: vertical-rl;
  font-size: 0.8em;
  text-align: center;
}

.button:hover {
  background-color: #fbb03b;
  color: black;
  transition: 0.3s;
}

.info_container {
  padding: 2%;
  width: 80%;
  height: 100%;
  display: flex;
  background-color: black;

  flex-direction: column;

  position: absolute;
  top: 0%;
  left: 10%;
  z-index: 3;
}

.info_box {
  width: 80%;
  margin: 0 auto;
  display: flex;

  justify-content: space-between;
  padding: 10%;
}

.info p {
  color: #fff;
}

strong {
  font-size: 1.5em;
}
figure.map {
  width: 100%;
  height: 60%;

  z-index: 0;
}

.map img {
  width: 100%;
  height: 50vh;
}

#openModal {
  width: 33%;
  display: flex;

  padding: 3%;
  writing-mode: vertical-rl;

  text-align: center;
  align-items: center;
  cursor: pointer;
}

#openModal:hover {
  background-color: #fbb03b;
  color: black;
  transition: 0.3s;
}

.modalContents {
  width: 100%;
  height: 60vh;
  background-image: url(/hotel/img/madal_background.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3%;
  padding: 8%;
}
.modalContents h1 {
  width: 95%;
  text-align: center;
  border-bottom: #565656 1px solid;
}
.modalContents p {
  margin-top: 3%;
}
.by_car {
  width: 40%;
  height: 30%;
  background-image: url(/hotel/img/madal_background.jpg);
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;

  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  background-color: #fff;
}

#openModal {
  width: 33%;
  display: flex;

  padding: 3%;
  writing-mode: vertical-rl;

  text-align: center;
  align-items: center;
  cursor: pointer;
}

#openModal:hover {
  background-color: #fbb03b;
  color: black;
  transition: 0.3s;
}

.modalContents {
  width: 100%;
  height: 60vh;
  background-image: url(/hotel/img/madal_background.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3%;
  padding: 8%;
}
.modalContents h1 {
  width: 95%;
  text-align: center;
  border-bottom: #565656 1px solid;
}
.modalContents p {
  margin-top: 3%;
}
.by_car {
  width: 40%;
  height: 30%;
  background-image: url(/hotel/img/madal_background.jpg);
}

/* モーダルCSS */
.modalArea01 {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg01 {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper01 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;

  background-color: #fff;
}

.closeModal01 {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  background-color: #fff;
}
ul.bus {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-decoration: underline;
}
ul.bus li {
  padding-top: 6%;
}
ul.bus li a {
  font-size: 0.7em;
}

/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
}
footer {
  background-color: #000;
  width: 100%;
}

.small {
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}
.ft_container {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  padding: 2% 10%;
  margin-top: 3%;
}

.footer_item {
  width: 60%;
}

.footer_item li {
  font-size: 2vw;
}

.footer_item li a {
  font-family: serif;
  color: #fff;
  font-size: 1.7vw;
}
.sns_icon {
  display: flex;
  justify-content: center;
  width: 10%;
  gap: 6%;
}
.sns_icon img {
  width: 100%;
}

/* 料金・予約 */

.spa02 {
  width: fit-content;

  writing-mode: vertical-rl;
  position: absolute;
  top: 10%;
  left: 48%;
  font-size: 2em;
}
.spa02 span {
  font-size: 0.5em;
  writing-mode: horizontal-tb;
}
.spa03 {
  width: fit-content;

  writing-mode: vertical-rl;
  position: absolute;
  top: 100px;
  left: 45%;
  font-size: 1em;
}
.spa03 span {
  font-size: 0.5em;
  writing-mode: horizontal-tb;
}
.reserve_container {
  width: 100%;
}
.reserve_box {
  width: 80%;
  display: flex;
  border: 1.3px solid #ccc;
  margin: 0 auto;
  justify-content: center;
  margin-top: 20%;
  padding: 3% 0%;
}

.reserve_box ul {
  width: 45%;
  margin: 0 auto;
}

.reserve_type {
  font-weight: bold;
  font-size: 3vw;
  font-family: sans-serif;
}

.phone_number {
  font-size: 2.5em;
}

a.plan {
  padding: 2%;
  background-color: #fbb03b;
}
.price_nav {
  display: flex;
  justify-content: space-around;
}

table {
  width: 80%;
  margin: 0 auto;
}

.price_list {
  font-family: sans-serif;
  font-size: 1.8em;
  width: 100%;
  text-align: center;
  margin-top: 3%;
  margin-top: 10%;
}
.price_nav {
  width: 80%;
  margin: 0 auto;
}
.price_nav li {
  border: #000 solid 1px;
  width: 100%;
}
.price_nav li a {
  width: 100%;
  text-align: center;
  cursor: pointer;
}
tr th {
  border-bottom: 1px solid #ccc;
}
tr td {
  text-align: center;
}

ul {
  list-style-type: none;
}
.tab-list {
  width: 80%;
  display: flex;
  margin: 0 auto;
}
.tab-list-item {
  width: 30%;
  text-align: center;

  background-color: #eee;
  padding: 10px 0;
  cursor: pointer;
}

.tab-contents-item ul {
  display: flex;
  width: 80%;
  justify-content: space-around;
  margin: 0 auto;
  text-align: center;
}
.tab-contents-item ul li {
  width: fit-content;
  margin: 0 auto;
}

.tab-list-item.active {
  background-color: #fbb03b;
}

.tab-contents-item {
  display: none;
}
.tab-contents-item.show {
  display: block;
}

.room_name {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-around;
  border-bottom: 1px solid #ccc;
}

.note {
  width: 80%;
  margin: 0 auto;
  margin-top: 1%;
}

.no_kids {
  border: 1px solid black;
}
.price_all {
  display: flex;
  width: 80%;
  margin: 0 auto;
  gap: 5%;
  justify-content: space-between;
  margin-top: 5%;
}
.price_detail {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.day_use {
  width: 50%;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: center;
}

.cancel_policy {
  width: 50%;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: center;
}
.day_use_all {
  width: 50%;
}

.day_use_spa {
  display: flex;
  gap: 30%;
  width: 100%;
}

.cancel_price {
  display: flex;
  gap: 3%;
}

/* 温泉　美肌の湯 */

table {
  width: 60%;
}
.detail img {
  width: 50%;
  height: 70vh;
  border-radius: 50%;
}

p.text_box {
  height: 50%;
  margin-top: 10%;
}

.onsen01 {
  width: 40%;
}

.onsen01 img {
  width: 100%;

  border-radius: 50%;
}

.detail_all {
  display: flex;
  width: 100%;

  margin: 0 auto;
  justify-content: space-between;
  padding: 0% 10%;
}

.about_onsen {
  writing-mode: horizontal-tb;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  margin: 5%;
}
.detail_list {
  width: 30%;

  display: grid;
  grid-template-columns: 25% 1fr;
}

.detail_list dt {
  font-family: sans-serif;
  width: 100%;
  font-weight: bolder;
}

/* 朝食・夕食 */
.breakfast_example {
  width: fit-content;
  writing-mode: vertical-rl;
  font-size: 2.5em;
  margin: 0 auto;
}

.note_breakfast {
  height: 250px;
  writing-mode: vertical-rl;
  font-size: 1.3em;
  text-align: center;
  margin: 0 auto;
  padding-top: 3%;
}
.breakfast {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.breakfast img {
  width: 50%;
  border-radius: 50%;
  padding: 2%;
}
.breakfast_note_all {
  width: fit-content;
  writing-mode: vertical-rl;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  button.btn {
    display: none;
  }
}
/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (max-width: 600px) {
  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide figure img {
    display: block;
    width: 30vw;
    height: 100vh;
    object-fit: cover;
  }
  .btn {
    display: none;
  }

  .room_item {
    position: relative;
    width: 50%;
  }
  .box01 {
    position: absolute;
    top: 370px;
    left: 170px;
    width: 100%;
  }
  .box01 img {
    object-fit: cover;
    border-radius: 50%;
  }
  .box02 {
    position: absolute;
    top: 40px;
    width: 200px;
    left: 160px;
    top: 150px;
  }
  .box02 img {
    object-fit: cover;
    border-radius: 50%;
  }

  .box03 {
    position: absolute;
    width: 200px;

    top: 220px;
    left: 0px;
  }
  .box03 img {
    object-fit: cover;
    border-radius: 50%;
  }

  .info_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0%;
  }

  .info {
    width: 45%;

    line-height: 0;
    letter-spacing: 0;

    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;

    height: 15%;
    margin: 0 auto;

    height: 70%;
    font-size: 2.5vw;
    margin: 3% auto;
  }

  .info p {
    height: 15%;
    padding-top: 10%;
  }

  .direction {
    width: 90%;
    margin: 0 auto;
  }

  .menu {
    position: fixed;
    transform: translateX(0);
    width: 100%;
    height: 100vh;
    /* メニューを横に */
    display: flex;
    flex-direction: row;
  }
  button.btn {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    border: 0;
    outline: 0;
    background: transparent;

    text-align: inherit;
    background-color: #fff;
  }

  button:hover {
    cursor: pointer;
  }

  /**************** 以下、ハンバーガーボタンのスタイリング ****************/
  .btn {
    /* ボタンの配置位置  */
    position: fixed;
    bottom: 30px;
    right: 16px;
    /* ボタンの大きさ  */
    width: 58px;
    height: 48px;
    /* バーガーの線をボタン範囲の中心に配置 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 最前面に */
    z-index: 99999999999999999999999;
  }

  /***** 真ん中のバーガー線 *****/
  .btn-line {
    /* 線の長さと高さ */
    width: 100%;
    height: 4px;
    /* バーガー線の色 */
    background-color: #000000;
    /* バーガー線の位置基準として設定 */
    position: relative;
    transition: 0.2s;
  }

  /***** 上下のバーガー線 *****/
  .btn-line::before,
  .btn-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: 0.2s;
  }

  .btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-16px);
  }

  .btn-line::after {
    /* 下の線の位置 */
    transform: translateY(16px);
  }

  /***** メニューオープン時 *****/
  .btn-line.open {
    /* 真ん中の線を透明に */
    background-color: transparent;
  }

  .btn-line.open::before,
  .btn-line.open::after {
    content: "";
    transition: 0.2s;
  }

  .btn-line.open::before {
    /* 上の線を傾ける */
    transform: rotate(45deg);
  }

  .btn-line.open::after {
    /* 上の線を傾ける */
    transform: rotate(-45deg);
  }

  /* .btn:focus .btn-line,
  .btn:focus .btn-line::before,
  .btn:focus .btn-line::after {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
  }

  .btn:focus .btn-line.open {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .btn:focus .btn-line.open::before,
  .btn:focus .btn-line.open::after {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
  } */
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/

  /**************** 以下、メニューのスタイリング ****************/
  .menu {
    position: fixed;
    /* メニューの位置マイナス指定で画面外に */
    transform: translateX(130%);
    width: 60%;
    height: 100vh;
    top: 0px;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #efefef;
    background-color: #fbb03b;
    transition: transform 0.3s;
    padding: 20% 0%;
  }

  .menu-list {
    width: 100%;
    height: 100vh;
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
  }
  ul.menu {
    align-items: center;
    display: flex;
    height: 100%;
    position: fixed;

    background-color: #fbb03b;
    z-index: 99999999;
  }
  ul li a {
    list-style: none;
    align-items: center;
    font-size: 1.1em;
    gap: 5%;
    color: rgb(0, 0, 0);
  }

  /***** メニューオープン時位置0にして画面内に *****/
  .menu.open {
    transform: translateX(30%);
  }
  .describe {
    height: 20%;
    width: 22%;
    position: absolute;
    right: 290px;
    bottom: 50px;
  }
  .describe p {
    writing-mode: vertical-rl;
    font-size: 5vw;
  }

  .describe a {
    padding-top: 10%;
    width: 100%;
  }

  .onsen {
    width: 90%;
    height: 100vh;
    gap: 10%;
  }
  .onsen_box {
    width: 90%;
    gap: 10%;
  }
  .onsen a:hover {
    opacity: 0.8;
    transition: 0.2s;
  }
  .bf_dn {
    display: flex;

    flex-direction: column;

    width: 80%;
    height: 60%;
    margin: 10% 0%;
  }
  .bf_dn a {
    width: 30%;
    height: 30%;
  }

  .gallery {
    height: 70vh;
  }
  .gallery_container {
    width: 100%;
    margin-top: 20%;
    height: 100vh;
  }
  .gallery_container img {
    width: 28%;
  }
  .day_use_all {
    width: 100%;
    margin-top: 5%;
  }

  h4 {
    font-weight: bold;
    font-family: sans-serif;
  }

  .day_use {
    width: fit-content;
    margin-bottom: 5%;
  }
  .day_use_spa {
    width: 100%;
    gap: 10%;
  }

  .price_all {
    display: flex;
    flex-direction: column;
  }

  .cancel_policy_all {
    margin-top: 5%;
  }
  .cancel_policy {
    margin-bottom: 5%;
  }

  .reserve_box {
    display: flex;
    flex-direction: column;
    margin-top: 30%;
  }
  .reserve_box ul {
    width: 90%;
    margin: 0 auto;
    padding: 5% 0%;
  }

  .spa01 {
    width: fit-content;
    writing-mode: vertical-rl;
    /* position: absolute;

    top: 80px;
    left: 45%; */
    color: #ffffff;
    font-size: 2em;
    z-index: 1;
    text-align: center;
  }
  .spa01 span {
    font-size: 0.5em;
    writing-mode: horizontal-tb;
  }
  .spa02 {
    width: fit-content;
    text-align: center;

    writing-mode: vertical-rl;
    position: absolute;
    top: -10px;
    left: 45%;
    font-size: 2em;
    margin-top: -10%;
  }
  .spa02 span {
    font-size: 0.5em;
    writing-mode: horizontal-tb;
  }
  .spa03 {
    width: fit-content;

    writing-mode: vertical-rl;
    position: absolute;
    top: 10px;
    left: 45%;
    font-size: 1.8em;
  }
  .spa03 span {
    font-size: 0.5em;
    writing-mode: horizontal-tb;
  }

  .detail {
    width: 80%;

    display: flex;
    flex-direction: column;

    margin: 0 auto;
    gap: 0px;
  }

  p.text_box {
    font-size: 1.5em;
  }
  .detail img {
    width: 80%;
    height: 80%;
  }

  .detail_all {
    display: flex;
    flex-direction: column-reverse;

    justify-content: center;
  }
  .about_onsen {
    writing-mode: horizontal-tb;
    font-weight: bold;
    font-size: 2em;
    margin-top: 20%;
  }
  .detail_list {
    width: 100%;

    display: grid;
    grid-template-columns: 25% 1fr;
    margin-top: 5%;
  }

  .detail_list dt {
    font-family: sans-serif;
    width: 100%;
    font-weight: bolder;
  }
  .onsen01 {
    width: 100%;
  }

  .onsen01 img {
    width: 100%;

    border-radius: 50%;
  }
}
