@charset "UTF-8";

/* 全体の設定 */
/* 全体のレイアウト設定 */
* {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
  color: #dcdcdc;
  font-size: 16px;
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #331500;
}

header {
  text-align: center;
  width: 100%;
}

main {
  margin: 0 20px 30px;
}

footer {
  background-color: #66564C;
  background-image:
    radial-gradient(closest-side,
      transparent 98%, rgba(51, 20, 0, 1) 100%),
    radial-gradient(closest-side,
      transparent 98%, rgba(51, 20, 0, 1) 100%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  padding-top: 20px;
}

#footer .address {
  margin: 0 0 10px 30px;
}

img {
  width: 100%;
}

/* 全体のレイアウト設定ここまで */

/* 全体header要素の設定 */
/* ハンバーガーメニューの設定 */
.menu-btn {
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #331500;
  z-index: 2;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  height: 5px;
  border-radius: 3px;
  background-color: #dcdcdc;
}

.menu-btn span::before {
  bottom: 15px;
}

.menu-btn span::after {
  top: 15px;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu {
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.menu::-webkit-scrollbar {
  display: none;
}

.header_nav {
  border-bottom: 1px solid transparent;
}

.header_nav .menu {
  background-color: #331500;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  transition: all 0.5s;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 1;
  text-align: left;
}

.header_nav #menu-btn-check:checked~.menu {
  left: 0%;
}

#main_top li img,
#top li img {
  margin: 20px 0;
}

#main_top li .menu-a,
#top li .menu-a {
  position: relative;
  display: inline-block;
  width: 30%;
  margin-left: 20px;
}

#main_top li .menu-a::after,
#top li .menu-a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 300%;
  height: 2px;
  background: #dcdcdc;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

#main_top li .menu-a:hover::after,
#top li .menu-a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

#main_top li .menu-a span,
#top li .menu-a span {
  font-size: 15px;
}

#main_top .list_top img,
#top .list_top img {
  width: 120px;
  height: 60px;
  margin: 0;
}

#menu-btn-check {
  display: none;
}

/* ハンバーガーメニューの設定ここまで */

/* パンくずリストの設定 */
#path {
  margin: 15px 0 15px 20px;
  text-align: left;
}

#path ol {
  padding: 0;
}

#path ol li {
  display: inline;
}

#path ol li a {
  padding-right: 15px;
}

#path ol li a::after {
  content: "\003e";
  /* &gt; */
  margin-left: 20px;
}

/* パンくずリストの設定ここまで */

#top h1 {
  text-align: left;
}

#top h1 img {
  width: 120px;
  height: 60px;
}

/* 全体header要素の設定ここまで */

/* 全体main要素の設定 */
#spa_contents .h,
#room_contents .h,
#access_contents .h,
#reserve_contents .h {
  text-align: center;
}

#spa_contents .txt,
#room_contents .txt {
  text-align: center;
}

#spa_contents .h_txt,
#room_contents .h_txt {
  display: inline-block;
  text-align: left;
}

#spa_contents .h img,
#room_contents .h img,
#access_contents .h img,
#reserve_contents .h img {
  height: 65px;
  margin: 40px 0;
}

#spa_contents .sub_h,
#access_contents .sub_h,
#reseve_contents .sub_h {
  font-size: 40px;
  text-align: center;
  margin: 40px 0 30px;
}

/* 全体main要素の設定ここまで */

/* 全体footer要素の設定 */
#footer p {
  text-align: center;
  padding-bottom: 5px;
}

.footer_menu {
  display: none;
}

.pagetop {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
}

.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  padding-top: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
}

.pagetop a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #331500;
}

.pagetop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1px solid #331500;
  border-right: 1px solid #331500;
  transform: rotate(-45deg);
}

/* 全体footer要素ここまで */
/* 全体の設定ここまで */

/* index.html の設定*/
#main_top {
  height: calc(100vh);
  background-image: url(../img/topimage1@2x.jpg);
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#main_top h1 img {
  width: 90%;
  max-width: 350px;
}

#main_contents section {
  text-align: center;
  margin: 40px 0;
}

#main_contents article p {
  font-size: 16px;
}

#main_contents .h img {
  width: 80%;
  max-width: 400px;
}

#main_contents .img {
  margin: 20px 0;
}

#main_contents #access .img {
  width: 60%;
}

#main_contents .link {
  margin: 20px auto;
  border: 2px solid #dcdcdc;
  width: 60%;
}

#main_contents .link a::before {
  content: "\02192";
}

#main_contents .link a {
  font-size: 20px;
  display: block;
  padding: 15px;
}

/* index.html の設定ここまで*/

/* spa.html の設定*/
#spa_contents h4 {
  text-align: center;
  font-size: 25px;
  margin: 40px 0 15px;
}

#spa_contents figcaption {
  margin: 10px 0;
  text-align: justify;
}

#spa_contents article section div {
  text-align: center;
  /* padding: 10px 0; */
  margin: 20px auto;
  /* width: 330px; */
  width: 100%;
}

#spa_contents article section .text_box {
  border: 2px dotted #dcdcdc;
  padding: 10px 0;
  margin: 20px 2.5px;
}

#spa_contents article section div>p+p {
  margin-top: 20px;
}

#spa_contents article section p {
  font-size: 20px;
  position: relative;
}

#spa_contents article section p::after {
  position: absolute;
  content: "";
  background-color: #dcdcdc;
  width: 200px;
  height: 2px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

#spa_contents article section p:last-child::after {
  content: none;
}

/* spa.html の設定ここまで*/

/* room.html の設定*/
#room_contents .sub_h {
  font-size: 40px;
  text-align: center;
  margin: 40px 0 15px;
}

#room_contents dl {
  margin: 10px 0;
}

#room_contents dt {
  font-size: 22px;
  margin: 10px 0 0;
  padding-bottom: 5px;
  border-bottom: 2px dotted #dcdcdc;
}

#room_contents dd,
#room_contents dd li {
  font-size: 18px;
  margin: 7px 0 0;
}

#room_contents dd li {
  display: inline;
}

#room_contents dd li::after {
  content: ",";
  margin: 0 10px 0 5px;
}

#room_contents dd li:last-child::after {
  content: "";
}

/* room.html の設定ここまで*/

/* access.html の設定*/
#access_contents div {
  text-align: center;
}

#access_contents .map_img {
  margin: 0 auto 20px;
}

iframe {
  margin: 20px 0;
  width: 100%;
  height: 350px;
}

#access_contents .sub_h {
  font-size: 30px;
  margin: 40px 0 20px;
}

#access_contents h4 {
  font-size: 20px;
  margin: 30px 0 10px;
}

#access_contents ul li {
  margin: 20px 0;
}

/* access.html の設定ここまで*/

/* reserve.html の設定*/
#reserveForm {
  background-color: #66564C;
  margin-bottom: 40px;
}

#reserveForm dl {
  display: flex;
  flex-wrap: wrap;
}

#reserveForm div {
  margin: 10px 0;
}

#reserveForm .SelectForm {
  width: 100%;
}

#reserveForm .SelectForm input {
  width: 100%;
  height: 45px;
}

#reserveForm .SelectForm select {
  width: 100%;
  height: 45px;
  background-color: #fff;
  color: #000;
}

#reserveForm .SelectForm option {
  color: #000;
  font-size: 23px;
}

#reserveForm .InputForm {
  width: 50%;
}

#reserveForm .InputForm input {
  width: 80%;
  height: 45px;
  margin-right: 10px;
}

#reserveForm label,
#reserveForm dd {
  font-size: 23px;
}

#reserveForm input {
  font-size: 25px;
  background-color: #fff;
  color: #000;
}

#reserveForm .Formbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="reset"],
input[type="submit"] {
  width: 50%;
  height: 45px;
  text-align: center;
  margin: 20px 0;
  border-radius: 30px;
}

#reserveForm input[type="submit"] {
  background-color: #CE9B0E;
  color: #fff;
}

#reserveForm input[type="reset"]:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: rgba(0, 0, 0, 0.5);
}

#reserveForm input[type="submit"]:hover {
  background-color: #fac73c;
  color: #fff;
}


::placeholder {
  color: rgba(125, 125, 125, 0.5);
}

/* reserve.html の設定ここまで*/

/* prp.html の設定*/
#prp_contents .h {
  font-size: 30px;
  text-align: center;
}

#prp_contents .right {
  text-align: right;
}

#prp_contents .text {
  margin: 20px 0;
}

#prp_contents section+section {
  margin-bottom: 20px;
}

#prp_contents .sub_h {
  margin-top: 20px;
}

/* prp.html の設定ここまで*/

/* 641px以上のメディアクエリ*/
@media screen and (min-width: 641px) {

  /* 全体の設定 */
  /* 全体のレイアウト設定 */
  main {
    margin-left: 40px;
    margin-right: 40px;
  }

  /* 全体のレイアウト設定ここまで */

  /* ハンバーガーメニュー */
  .menu-btn {
    width: 70px;
    height: 70px;
  }

  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    width: 55px;
    height: 6px;
  }

  .menu-btn span::before {
    bottom: 18px;
  }

  .menu-btn span::after {
    top: 18px;
  }

  #main_top .list_top img,
  #top .list_top img,
  #top h1 img {
    width: 130px;
    height: 70px;
  }

  #main_top li .menu-a,
  #top li .menu-a {
    width: 20%;
  }

  #main_top li img,
  #top li img {
    width: 80%;
  }

  .header_nav #menu-btn-check:checked~.menu {
    left: 50%;
  }

  /* ハンバーガーメニューここまで */

  #path {
    margin-left: 40px;
  }

  #main_contents article p,
  #spa_contents p,
  #room_contents p,
  #access_contents p,
  #reserve_contents label {
    font-size: 18px;
  }

  .footer_menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer_menu li {
    margin: 10px 0;
    width: 16%;
    text-align: center;
  }

  .footer_menu a {
    display: block;
  }

  /* topに戻るボタン */
  .pagetop {
    width: 60px;
    height: 60px;
    margin-bottom: 95px;
  }

  .pagetop a {
    width: 60px;
    height: 60px;
    font-size: 18px;
    padding-top: 15px;
  }

  /* topに戻るボタンここまで */
  /* 全体の設定ここまで */

  /* index.html の設定*/
  #main_contents .link {
    margin: 20px auto;
    border: 2px solid #dcdcdc;
    width: 50%;
  }

  #main_contents .link a {
    font-size: 25px;
    display: block;
    padding: 15px;
  }

  #main_contents section {
    margin: 60px 0;
  }

  /* index.html の設定ここまで*/

  /* spa.html の設定*/
  #spa_contents .sub_h {
    font-size: 45px;
  }

  #spa_contents h4 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  #spa_contents section img {
    width: 60%;
    margin: 10px 0 0 0;
    float: left;
    margin-right: 10px;
  }

  #spa_contents .fig-img {
    overflow: auto;
  }

  #spa_contents .text_box {
    clear: both;
    margin-top: 20px;
  }

  #spa_contents article section p {
    font-size: 22px;
    margin: 10px 0;
    text-align: center;
  }

  #spa_contents figcaption {
    font-size: 18px;
    margin: 0 0 0 10px;
  }

  #spa_contents article section div {
    /* width: 360px; */
    padding: 0;
  }

  #spa_contents article section .text_box {
    width: 360px;
    margin: 20px auto 0;
    padding: 0;
  }

  /* spa.html の設定ここまで*/

  /* room.html の設定*/
  #room_contents dl {
    display: flex;
    flex-wrap: wrap;
  }

  #room_contents dt {
    border-bottom: none;
    width: 30%;
  }

  #room_contents dd {
    width: 70%;
    display: flex;
    align-items: center;
    font-size: 20px;
  }

  #room_contents dd li {
    font-size: 20px;
  }

  /* room.html の設定ここまで*/

  /* access.html の設定*/
  #access_contents .map_img {
    width: 80%;
  }

  iframe {
    height: 450px;
  }

  #access_contents .sub_h {
    font-size: 35px;
  }

  #access_contents h4 {
    font-size: 25px;
  }

  #access_contents article ul {
    display: flex;
    flex-wrap: wrap;
  }

  #access_contents article li {
    width: 46%;
    margin: 15px 2%;
  }

  /* access.html の設定ここまで*/

  /* reserve.html の設定*/
  #reserveForm dl {
    margin: 0 20px;
  }

  #reserveForm label,
  #reserveForm dd,
  #reserveForm .SelectForm option {
    font-size: 25px;
  }

  input[type="reset"],
  input[type="submit"] {
    max-width: 320px;
    height: 50px;
  }

  /* reserve.html の設定ここまで*/
}

/* 641px以上のメディアクエリここまで*/

/* 961px以上のメディアクエリ*/
@media screen and (min-width: 961px) {

  /* 全体の設定 */
  /* 全体のレイアウト設定 */
  main {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 80px;
  }

  #path {
    margin-left: 80px;
  }

  #footer .address {
    font-size: 17px;
    margin-left:80px;
  }

  .footer_menu a {
    font-size: 17px;
  }

  /* 全体のレイアウト設定ここまで */

  /* ハンバーガーメニュー */
  #main_top li .menu-a,
  #top li .menu-a {
    width: 15%;
  }

  #main_top li .menu-a span,
  #top li .menu-a span {
    font-size: 14px;
  }

  /* ハンバーガーメニューここまで */

  /* topに戻るボタンここまで */
  /* 全体の設定ここまで */

  /* index.html の設定*/
  #main_contents p {
    font-size: 18px;
  }

  /* index.html の設定ここまで*/

  /* spa.html の設定*/
  #spa_contents section img {
    width: 94%;
    margin: 0 auto;
    float: none;
  }

  #spa_contents .fig-img {
    text-align: center;
  }

  #spa_contents figcaption {
    margin: 0 5px;
  }

  #spa_contents .r_spa .sub_r_spa {
    display: flex;
    text-align: center;
    justify-content: space-between;
  }

  #spa_contents .r_spa .sub_r_spa section {
    width: 33%;
    background-color: #66564C;
  }

  #spa_contents .r_spa .sub_r_spa section .text_box,
  #spa_contents .op_spa .sub_op_spa section .text_box,
  #spa_contents .other .sub_other section .text_box {
    width: 95%;
    margin-top: auto;
    margin-bottom: 5px;
  }

  #spa_contents .op_spa .sub_op_spa {
    display: flex;
    text-align: center;
    gap: 0 6px;
  }

  #spa_contents .op_spa .sub_op_spa section {
    width: 33%;
    background-color: #66564C;
    display: flex;
    flex-direction: column;
  }

  #spa_contents .other .sub_other {
    display: flex;
    gap: 0 6px;
  }

  #spa_contents .other .sub_other section {
    width: 33%;
    display: flex;
    flex-direction: column;
    background-color: #66564C;
  }

  /* spa.html の設定ここまで*/

  /* room.html の設定*/
  #room_contents .txt {
    margin-bottom: 30px;
  }

  #room_contents .all_room {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #room_contents .all_room section {
    width: 32%;
    background-color: #66564C;
    padding: 0 10px;
    margin: 10px 0;
  }

  #room_contents .sub_h {
    font-size: 30px;
  }

  #room_contents dt {
    font-size: 15px;
  }

  #room_contents dd,
  #room_contents dd li {
    font-size: 15px;
  }

  /* room.html の設定ここまで*/

  /* access.html の設定*/
  #access_contents .map_img {
    width: 60%;
  }

  #access_contents article ul {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  #access_contents article li {
    margin: 0 10px;
  }

  /* access.html の設定ここまで*/

  /* reserve.html の設定*/
  /* reserve.html の設定ここまで*/
}

/* 961px以上のメディアクエリここまで*/

/* スクロール フェードイン
---------------------------------*/

/* 初期状態は透明にしておく */
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: 0.5s;
}

/* 上がる */
.fade-in-up {
  transform: translate(0, 10px);
}

/* 下がる */
.fade-in-down {
  transform: translate(0, -10px);
}

/* 左へ */
.fade-in-left {
  transform: translate(10px, 0);
}

/* 右へ */
.fade-in-right {
  transform: translate(-10px, 0);
}

/* スクロールして画面内に入った時 */
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* デュレイ（アニメーションの開始を遅らせる） */
.delay01 {
  transition-delay: 0.1s;
}

.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}