@charset "UTF-8";
/* ==========================================================================//
//
// 客室について
// ※客室ipadに表示するページ
// ========================================================================== */
/* コンテンツが少なくてもfooterを画面下部に固定する */
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ヘッダー
---------------------------------------------------------- */
.header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header .logo a .guest {
  font-size: 11px;
}
.header .official {
  position: relative;
  padding-right: 15px;
}
.header .official::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/ico_external.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9.6px;
  height: 8px;
  right: 0;
}

/* フッター
---------------------------------------------------------- */
.footer.for_guest {
  margin-top: 100px;
  padding: 50px 0;
  background-color: #F2EDE9;
}
.footer.for_guest .others {
  padding-bottom: 50px;
}
.footer.for_guest .others .others_title {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer.for_guest .others .other_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer.for_guest .others .other_list li {
  width: 47.5%;
  border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}
.footer.for_guest .others .other_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}
.footer.for_guest .others .other_list li a .post_title {
  font-weight: normal;
  font-size: 15px;
}
.footer.for_guest .others .other_list li a .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: block;
  overflow: hidden;
  top: 49%;
  right: 0;
  width: 12px;
  height: 3px;
}
.footer.for_guest .others .other_list li a .arrow::before, .footer.for_guest .others .other_list li a .arrow::after {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ico_arrow.svg);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.footer.for_guest .others .other_list li a .arrow::after {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.footer.for_guest .others .other_list li a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #202020;
  opacity: 0.8;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.footer.for_guest .copyright {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.03em;
}

/* アーカイブページ
---------------------------------------------------------- */
.page_archive .post_area .post_list {
  border-top: 1px solid #E6E6E6;
}
.page_archive .post_area .post_list li {
  border-bottom: 1px solid #E6E6E6;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-animation: fadeInLeft 0.6s ease-out forwards;
          animation: fadeInLeft 0.6s ease-out forwards;
}
.page_archive .post_area .post_list li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.page_archive .post_area .post_list li:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.page_archive .post_area .post_list li:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.page_archive .post_area .post_list li:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.page_archive .post_area .post_list li:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page_archive .post_area .post_list li:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.page_archive .post_area .post_list li:nth-child(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.page_archive .post_area .post_list li:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.page_archive .post_area .post_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
}
.page_archive .post_area .post_list li a .post_title {
  font-weight: normal;
  font-size: 15px;
}
.page_archive .post_area .post_list li a .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: block;
  overflow: hidden;
  top: 49%;
  right: 0;
  width: 12px;
  height: 3px;
}
.page_archive .post_area .post_list li a .arrow::before, .page_archive .post_area .post_list li a .arrow::after {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ico_arrow.svg);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.page_archive .post_area .post_list li a .arrow::after {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.page_archive .post_area .post_list li a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #202020;
  opacity: 0.8;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* 詳細ページ
---------------------------------------------------------- */
.page_post .post_title {
  margin: 160px 0 60px;
  font-size: 25px;
  font-weight: 500;
}
.page_post .post_content {
  /* 枠線つきの文章 */
}
.page_post .post_content .border_group {
  margin-bottom: 60px;
}
.page_post .post_content .border {
  border: 1px solid #E6E6E6;
  padding: 15px 20px;
}
.page_post .post_content .border:not(:last-child) {
  margin-bottom: 10px;
}
.page_post .post_content {
  /* 見出し */
}
.page_post .post_content h2, .page_post .post_content h3, .page_post .post_content h4, .page_post .post_content h5, .page_post .post_content h6 {
  line-height: 1.7;
  font-weight: 500;
}
.page_post .post_content h2 {
  margin: 50px 0 22px;
  font-size: 18px;
}
.page_post .post_content h3 {
  margin: 22px 0 10px;
  font-size: 15px;
}
.page_post .post_content {
  /* リスト */
}
.page_post .post_content ul, .page_post .post_content ol {
  margin: 10px 0;
  padding-left: 1.5em;
}
.page_post .post_content ul li, .page_post .post_content ol li {
  margin-bottom: 0.4em;
  line-height: 1.8;
}
.page_post .post_content ul {
  list-style-type: disc;
  list-style: disc;
}
.page_post .post_content ul li {
  list-style: disc;
}
.page_post .post_content ul li::marker {
  color: #202020;
}
.page_post .post_content ol {
  list-style-type: decimal;
  list-style: decimal;
}
.page_post .post_content ol li {
  list-style: decimal;
}
.page_post .post_content ol li::marker {
  color: #202020;
}
.page_post .post_content {
  /* 客室設備操作方法 */
}
.page_post .post_content .operation_block {
  margin-bottom: 25px;
  gap: 35px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page_post .post_content .operation_block .wp-block-image {
  width: 40%;
  max-width: 295px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.page_post .post_content .operation_block h3:first-child {
  margin-top: 0;
}
.page_post .post_content {
  /* 貸出備品リスト */
}
.page_post .post_content .rental_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page_post .post_content .rental_items li {
  width: 50%;
}
.page_post .back_area {
  margin-top: 100px;
  text-align: center;
}
.page_post .back_area .back {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 16px;
  padding: 8px 6px;
  text-decoration: underline;
}