@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700&family=Marcellus&display=swap");
@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(32px);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
}

body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  min-height: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #222222;
  background-color: #F0E7D6;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .wrap {
    padding: 0 1.5rem;
  }
}

.wrap-narrow {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .wrap-narrow {
    padding: 0 1.5rem;
  }
}

.wrap-wide {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .wrap-wide {
    padding: 0 1.5rem;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

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

.mt0 {
  margin-top: 0 !important;
}

.site-header {
  position: relative;
  background-color: #F0E7D6;
  z-index: 100;
}
.site-header__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 9.6rem;
}
@media screen and (max-width: 600px) {
  .site-header__inner {
    height: 6.9rem;
  }
}

.site-header-logo {
  width: 200px;
  padding-left: 3.2rem;
}
@media screen and (max-width: 600px) {
  .site-header-logo {
    width: 160px;
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
.site-header-logo a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: #222222;
}
.site-header-logo__sub {
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .site-header-logo__sub {
    font-size: 1rem;
  }
}
.site-header-logo__img img {
  display: block;
  width: 16.1rem;
  height: 4rem;
}
@media screen and (max-width: 600px) {
  .site-header-logo__img img {
    width: 12.9rem;
    height: 3.2rem;
  }
}

.site-header-nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .site-header-nav {
    display: none;
  }
}
.site-header-nav__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header-nav__list a {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #222222;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-header-nav__list a:hover {
  opacity: 0.7;
}

.site-header-cta {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  background-color: #B23C3C;
  padding: 1.6rem 3.2rem;
  margin-left: 3.2rem;
}
@media screen and (max-width: 600px) {
  .site-header-cta {
    flex-direction: row;
    align-self: center;
    gap: 0.4rem;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0.8rem;
    margin-left: calc(100% - 160px - 60px - 2.8rem);
  }
}
.site-header-cta__item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-header-cta__item:hover {
  opacity: 0.8;
}
.site-header-cta__icon {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.site-header-cta__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header-cta__text {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .site-header-cta__text {
    display: none;
  }
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  z-index: 999;
  width: 6.4rem;
  height: 100%;
  padding: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .hamburger-menu {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
  }
}
.hamburger-menu__bar {
  display: block;
  width: 2.8rem;
  height: 2px;
  background-color: #B23C3C;
  transition: all 0.3s ease-in-out;
}
.is-open .hamburger-menu__bar:nth-child(1) {
  background-color: #FFFFFF;
  transform: translateY(0.8rem) rotate(45deg);
}
.is-open .hamburger-menu__bar:nth-child(2) {
  opacity: 0;
}
.is-open .hamburger-menu__bar:nth-child(3) {
  background-color: #FFFFFF;
  transform: translateY(-0.8rem) rotate(-45deg);
}

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #5A4333;
  z-index: 99;
  overflow-y: auto;
}
@media screen and (max-width: 600px) {
  .sp-nav {
    display: block;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
}
.is-open .sp-nav {
  transform: translateX(0);
}
.sp-nav__inner {
  position: relative;
  top: 6.9rem;
  padding: 3.2rem 1.6rem;
}
.sp-nav__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-nav__list a {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
}

.site-footer {
  position: relative;
  padding-top: 7.2rem;
  background-image: url(../img/common/bg-footer.webp);
  background-position: center;
  background-size: contain;
  background-repeat: repeat-y;
  color: #FFFFFF;
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding-top: 4.8rem;
  }
}
.site-footer__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.site-footer-media {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 600px) {
  .site-footer-media {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.site-footer-media__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer-media__item iframe {
  width: 100%;
  height: 100%;
}
.site-footer-media__item:first-of-type {
  width: calc(60% - 2rem);
  aspect-ratio: 16/9;
}
@media screen and (max-width: 600px) {
  .site-footer-media__item:first-of-type {
    width: 100%;
  }
}
.site-footer-media__item:last-of-type {
  width: calc(40% - 2rem);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 600px) {
  .site-footer-media__item:last-of-type {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.site-footer-info {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .site-footer-info {
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
  }
}

.site-footer-hours {
  flex-shrink: 0;
  width: calc(60% - 2rem);
  background-color: #F0E7D6;
  border-radius: 0.8rem;
  padding: 1.6rem 3.2rem;
  color: #5A4333;
}
@media screen and (max-width: 600px) {
  .site-footer-hours {
    width: 100%;
    padding: 1.6rem;
  }
}
.site-footer-hours__table {
  width: 100%;
  border-collapse: collapse;
}
.site-footer-hours__table th,
.site-footer-hours__table td {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 1rem 0.8rem;
  border-bottom: 1px solid #5A4333;
}
@media screen and (max-width: 600px) {
  .site-footer-hours__table th,
  .site-footer-hours__table td {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}
.site-footer-hours__table thead th {
  height: 3.2rem;
  vertical-align: middle;
}
.site-footer-hours__table thead th:last-child {
  width: 6.4rem;
  padding: 1rem 0;
}
@media screen and (max-width: 600px) {
  .site-footer-hours__table thead th:last-child {
    width: 4.8rem;
    padding: 0.8rem 0;
  }
}
.site-footer-hours__table tbody th {
  text-align: left;
}
.site-footer-hours__table tbody td {
  text-align: center;
  width: 4rem;
}
@media screen and (max-width: 600px) {
  .site-footer-hours__table tbody td {
    width: auto;
  }
}
.site-footer-hours__table tbody tr:last-child td {
  padding: 1.8rem 0;
}
.site-footer-hours__table__head {
  text-align: left;
}
.site-footer-hours__note {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .site-footer-hours__note {
    font-size: 1rem;
  }
}

.site-footer-contact {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem 0.8rem;
  position: relative;
  width: calc(40% - 2rem);
}
@media screen and (max-width: 600px) {
  .site-footer-contact {
    width: 100%;
  }
}
.site-footer-contact::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 63px;
  height: 80px;
  background-image: url(../img/common/footer_img02.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.site-footer-contact__addr, .site-footer-contact__parking, .site-footer-contact__access {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .site-footer-contact__addr, .site-footer-contact__parking, .site-footer-contact__access {
    font-size: 1.4rem;
  }
}
.site-footer-contact__addr i, .site-footer-contact__parking i, .site-footer-contact__access i {
  font-size: 2.4rem;
}
.site-footer-contact__tel {
  text-align: right;
}
.site-footer-contact__tel-label {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.5em;
  margin-bottom: 0;
  padding-right: 2rem;
}
@media screen and (max-width: 600px) {
  .site-footer-contact__tel-label {
    letter-spacing: 0.05em;
    padding-right: 1.2rem;
  }
}
.site-footer-contact__tel a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .site-footer-contact__tel a {
    font-size: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .site-footer-contact__tel a {
    font-size: 2.8rem;
  }
}
.site-footer-contact__tel a i {
  font-size: 2.8rem;
}
@media screen and (max-width: 600px) {
  .site-footer-contact__tel a i {
    font-size: 2.4rem;
  }
}

.site-footer-nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2rem 1.6rem 0;
  border-top: 1px solid #FFFFFF;
}
@media screen and (max-width: 600px) {
  .site-footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
.site-footer-nav__logo {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 600px) {
  .site-footer-nav__logo {
    align-items: center;
  }
}
.site-footer-nav__sub {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .site-footer-nav__sub {
    font-size: 1.2rem;
  }
}
.site-footer-nav__menu {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
@media screen and (max-width: 600px) {
  .site-footer-nav__menu {
    align-items: center;
  }
}
.site-footer-nav__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .site-footer-nav__list {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.6rem 2.4rem;
  }
}
.site-footer-nav__list a {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .site-footer-nav__list a {
    font-size: 1.4rem;
  }
}
.site-footer-nav__list a:hover {
  opacity: 0.7;
}
.site-footer-nav__sns {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #FFFFFF;
  text-decoration: none;
}
.site-footer-nav__sns i {
  font-size: 2.4rem;
}
.site-footer-nav__sns span {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .site-footer-nav__sns span {
    font-size: 1.4rem;
  }
}

.site-footer-gotop {
  position: absolute;
  top: -4.4rem;
  right: 2.4rem;
  width: 68px;
  height: 76px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .site-footer-gotop {
    top: -3.2rem;
    width: 48px;
    height: 53px;
  }
}
.site-footer-gotop:hover {
  transform: translateY(-0.4rem);
}

.site-footer-copyright {
  width: 100%;
  margin-top: 4rem;
  padding: 1.6rem 3.2rem;
  background-color: #222222;
  text-align: right;
}
.site-footer-copyright p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .site-footer-copyright p {
    font-size: 1rem;
    text-align: center;
  }
}

/* lower content
--------------------------------------------- */
.l-main-content {
  position: relative;
  overflow-x: hidden;
  background-image: url(../img/common/bg-paper.webp);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
}
.l-main-content .page-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 6.4rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .l-main-content .page-title {
    height: 250px;
    margin-bottom: 4rem;
  }
}
.l-main-content .page-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -17.5%;
  left: 0;
  z-index: 3;
  width: 33.59%;
  background-image: url(../img/common/cloud_page_left.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 43/20;
}
@media screen and (max-width: 600px) {
  .l-main-content .page-title::before {
    width: 43.78%;
    bottom: -12.5%;
  }
}
.l-main-content .page-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -19.75%;
  right: 0;
  left: auto;
  z-index: 3;
  width: 34.375%;
  background-image: url(../img/common/cloud_page_right.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 11/5;
}
@media screen and (max-width: 600px) {
  .l-main-content .page-title::after {
    width: 39.62%;
    bottom: -15%;
  }
}
.l-main-content .page-title h1 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 5%;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 600px) {
  .l-main-content .page-title h1 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
.l-main-content .page-title h1 .eng {
  display: block;
  margin-top: 2.4rem;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 600px) {
  .l-main-content .page-title h1 .eng {
    margin-top: 1.6rem;
    font-size: 1rem;
  }
}
.l-main-content__content {
  position: relative;
}
.l-main-content__content .sec-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 5%;
  writing-mode: vertical-rl;
}
.l-main-content__content .sec-title::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon-ofuro.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-main-content__content .sec-title .eng {
  margin-top: 1.6rem;
  color: #B23C3C;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
  writing-mode: horizontal-tb;
}
.l-main-content__content .sec-title-h {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  padding-left: 4rem;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .l-main-content__content .sec-title-h {
    font-size: 2.4rem;
  }
}
.l-main-content__content .sec-title-h::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon-ofuro.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-main-content__content .sec-title-h .eng {
  display: block;
  color: #B23C3C;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
}
.l-main-content__content .sec-title-center {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-main-content__content .sec-title-center {
    font-size: 2.4rem;
  }
}
.l-main-content__content .sec-title-center .eng {
  color: #B23C3C;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
}
.l-main-content__block {
  margin-top: 10.4rem;
  margin-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
.l-main-content__block .l-main-content__inner {
  padding: 5.6rem 4.8rem;
  background-color: #FBF8F3;
}
@media screen and (max-width: 600px) {
  .l-main-content__block .l-main-content__inner {
    padding: 2.4rem 1.6rem;
  }
}
.l-main-content__block h2 {
  position: relative;
  margin-top: 4rem;
  color: #B23C3C;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block h2 {
    font-size: 1.8rem;
  }
}
.l-main-content__block h2 {
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}
.l-main-content__block h3 {
  position: relative;
  margin-top: 3.2rem;
  padding: 0.8rem 1.6rem;
  background: #B23C3C;
  color: #FFFFFF;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block h3 {
    font-size: 1.8rem;
  }
}
.l-main-content__block h3 {
  font-weight: 500;
  line-height: 1.5;
}
.l-main-content__block h4 {
  margin-top: 3.2rem;
  padding-left: 1rem;
  border-left: 4px solid #B23C3C;
  color: #222222;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block h4 {
    font-size: 1.6rem;
  }
}
.l-main-content__block h4 {
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .l-main-content__block h4 {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}
.l-main-content__block p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block p {
    font-size: 1.4rem;
  }
}
.l-main-content__block p {
  color: #222222;
  line-height: 1.7;
}
.l-main-content__block p:first-child {
  margin-top: 0;
}
.l-main-content__block a {
  color: #222222;
  text-decoration: underline;
}
.l-main-content__block a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.l-main-content__block figure {
  width: 100%;
  margin-top: 2.4rem;
}
.l-main-content__block figure img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-main-content__block figure figcaption {
  margin-top: 0.8rem;
  color: #222222;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block figure figcaption {
    font-size: 1.2rem;
  }
}
.l-main-content__block figure figcaption {
  font-weight: 400;
  text-align: left;
}
.l-main-content__block ul {
  margin-top: 2.4rem;
}
.l-main-content__block ul li {
  margin: 1rem 0 0 1.5rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block ul li {
    font-size: 1.4rem;
  }
}
.l-main-content__block ul li {
  letter-spacing: 0;
}
.l-main-content__block ul li::marker {
  color: #B23C3C;
}
.l-main-content__block ol {
  margin-top: 2.4rem;
}
.l-main-content__block ol li {
  margin: 1rem 0 0 1.2rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block ol li {
    font-size: 1.4rem;
  }
}
.l-main-content__block ol li {
  letter-spacing: 0;
}
.l-main-content__block ol li::marker {
  color: #B23C3C;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__block ol li::marker {
    font-size: 1.4rem;
  }
}
.l-main-content__block ol li::marker {
  font-weight: 700;
}

/* post content
--------------------------------------------- */
.p-main-content {
  position: relative;
  overflow-x: hidden;
  background-image: url(../img/common/bg-paper.webp);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
}
.p-main-content .post-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 6.4rem;
  background-image: url(../img/common/fv-post.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-main-content .post-title {
    height: 250px;
    margin-bottom: 4rem;
  }
}
.p-main-content .post-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -17.5%;
  left: 0;
  z-index: 3;
  width: 33.59%;
  background-image: url(../img/common/cloud_page_left.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 43/20;
}
@media screen and (max-width: 600px) {
  .p-main-content .post-title::before {
    width: 43.78%;
    bottom: -12.5%;
  }
}
.p-main-content .post-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -19.75%;
  right: 0;
  left: auto;
  z-index: 3;
  width: 34.375%;
  background-image: url(../img/common/cloud_page_right.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 11/5;
}
@media screen and (max-width: 600px) {
  .p-main-content .post-title::after {
    width: 39.62%;
    bottom: -15%;
  }
}
.p-main-content .post-title h1 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 5%;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 600px) {
  .p-main-content .post-title h1 {
    font-size: 2.4rem;
  }
}
.p-main-content .post-title h1 .eng {
  display: block;
  margin-top: 2.4rem;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 600px) {
  .p-main-content .post-title h1 .eng {
    font-size: 1rem;
  }
}
.p-main-content__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  gap: 3.2rem 4.8rem;
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__inner {
    flex-direction: column;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.p-main-content__content {
  width: calc(100% - 260px - 4.8rem);
}
@media screen and (max-width: 600px) {
  .p-main-content__content {
    width: 100%;
  }
}
.p-main-content__content .sec-title-h {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  padding-left: 4rem;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .sec-title-h {
    font-size: 2.4rem;
  }
}
.p-main-content__content .sec-title-h::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon-ofuro.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-main-content__content .sec-title-h .eng {
  display: block;
  color: #B23C3C;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
}
.p-main-content__content .post-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2.4rem 1.6rem;
  width: 100%;
  margin-top: 4rem;
}
@media screen and (max-width: 960px) {
  .p-main-content__content .post-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-main-content__content .post-list {
    grid-template-columns: 1fr;
  }
}
.p-main-content__content .post-list__item {
  width: 100%;
  background-color: #FFFFFF;
  list-style: none;
}
.p-main-content__content .post-list__item-thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
}
.p-main-content__content .post-list__item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-main-content__content .post-list__item-thumb figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  background-color: #B23C3C;
  color: #FFFFFF;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .post-list__item-thumb figcaption {
    font-size: 1.2rem;
  }
}
.p-main-content__content .post-list__item-txt {
  padding: 1.6rem;
}
.p-main-content__content .post-list__item-txt h3 {
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .post-list__item-txt h3 {
    font-size: 1.4rem;
  }
}
.p-main-content__content .post-list__item-txt h3 {
  font-weight: 400;
}
.p-main-content__content .post-list__item-txt time {
  display: block;
  margin-top: 1.6rem;
  color: #8D7B6D;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .post-list__item-txt time {
    font-size: 1.2rem;
  }
}
.p-main-content__content .post-list__item-txt time {
  text-align: right;
}
.p-main-content__content .post-list__item a {
  display: block;
  color: #222222;
  text-decoration: none;
}
.p-main-content__content .entry-content__meta {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.4rem;
}
.p-main-content__content .entry-content__meta .category {
  position: relative;
  padding: 0.4rem 1.2rem;
  background: #B23C3C;
  color: #FFFFFF;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content__meta .category {
    font-size: 1.2rem;
  }
}
.p-main-content__content .entry-content__meta .category {
  font-weight: 500;
}
.p-main-content__content .entry-content__meta time {
  color: #8D7B6D;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content__meta time {
    font-size: 1.2rem;
  }
}
.p-main-content__content .entry-content__meta time {
  text-align: right;
}
.p-main-content__content .entry-content__thumb {
  width: 100%;
  margin-top: 2.4rem;
}
.p-main-content__content .entry-content__thumb img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-main-content__content .entry-content h2 {
  position: relative;
  margin-top: 4rem;
  color: #B23C3C;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content h2 {
    font-size: 1.8rem;
  }
}
.p-main-content__content .entry-content h2 {
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}
.p-main-content__content .entry-content h3 {
  position: relative;
  margin-top: 3.2rem;
  padding: 0.8rem 1.6rem;
  background: #B23C3C;
  color: #FFFFFF;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content h3 {
    font-size: 1.8rem;
  }
}
.p-main-content__content .entry-content h3 {
  font-weight: 500;
  line-height: 1.5;
}
.p-main-content__content .entry-content h4 {
  margin-top: 3.2rem;
  padding-left: 1rem;
  border-left: 4px solid #B23C3C;
  color: #222222;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content h4 {
    font-size: 1.6rem;
  }
}
.p-main-content__content .entry-content h4 {
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content h4 {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}
.p-main-content__content .entry-content p {
  margin-top: 1.6rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content p {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content p {
  line-height: 1.7;
  letter-spacing: 0;
}
.p-main-content__content .entry-content p:first-child {
  margin-top: 0;
}
.p-main-content__content .entry-content a {
  color: #222222;
  text-decoration: underline;
}
.p-main-content__content .entry-content a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.p-main-content__content .entry-content figure {
  width: 100%;
  margin-top: 2.4rem;
}
.p-main-content__content .entry-content figure img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-main-content__content .entry-content figure figcaption {
  margin-top: 0.8rem;
  color: #222222;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content figure figcaption {
    font-size: 1.2rem;
  }
}
.p-main-content__content .entry-content figure figcaption {
  font-weight: 400;
  text-align: left;
}
.p-main-content__content .entry-content ul {
  margin-top: 2.4rem;
}
.p-main-content__content .entry-content ul li {
  margin: 1rem 0 0 1.5rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content ul li {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content ul li {
  letter-spacing: 0;
}
.p-main-content__content .entry-content ul li::marker {
  color: #B23C3C;
}
.p-main-content__content .entry-content ol {
  margin-top: 2.4rem;
}
.p-main-content__content .entry-content ol li {
  margin: 1rem 0 0 1.2rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content ol li {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content ol li {
  letter-spacing: 0;
}
.p-main-content__content .entry-content ol li::marker {
  color: #B23C3C;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content ol li::marker {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content ol li::marker {
  font-weight: 700;
}
.p-main-content__content .entry-content table {
  width: 100%;
  margin: 2.4rem auto 0;
  border-collapse: collapse;
}
.p-main-content__content .entry-content table thead {
  border: none;
}
.p-main-content__content .entry-content table thead th {
  padding: 1.4rem 1rem 1.6rem 1rem;
  border: 1px solid #C7C0B2;
  background-color: #B23C3C;
  color: #FFFFFF;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content table thead th {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content table thead th {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content table thead th {
    padding: 0.8rem 1rem 1rem 1rem;
  }
}
.p-main-content__content .entry-content table tbody th {
  padding: 1.2rem 1.6rem;
  border: 1px solid #C7C0B2;
  background-color: #F4F4F4;
  color: #B23C3C;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content table tbody th {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content table tbody th {
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content table tbody th {
    padding: 0.8rem 1.2rem;
  }
}
.p-main-content__content .entry-content table tbody td {
  padding: 1.2rem 1.6rem;
  border: 1px solid #C7C0B2;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content table tbody td {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content table tbody td {
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content table tbody td {
    padding: 0.8rem 1.2rem;
  }
}
.p-main-content__content .entry-content blockquote {
  width: 100%;
  margin-top: 2.4rem;
  padding: 3.2rem 2.4rem;
  background-color: #F4F4F4;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content blockquote {
    padding: 2.4rem 1.6rem;
  }
}
.p-main-content__content .entry-content blockquote p {
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-main-content__content .entry-content blockquote p {
    font-size: 1.4rem;
  }
}
.p-main-content__content .entry-content blockquote p {
  font-weight: 400;
  line-height: 1.7;
}
.p-main-content__content .entry-content blockquote cite {
  margin-top: 2rem;
  color: #222222;
  font-size: 1.4rem;
  font-style: italic;
  text-align: left;
}

/* sidebar
--------------------------------------------- */
.site-sidebar {
  width: 100%;
  max-width: 260px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .site-sidebar {
    max-width: none;
  }
}
.site-sidebar .widget {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  list-style: none;
}
@media screen and (max-width: 600px) {
  .site-sidebar .widget {
    margin-top: 2.4rem;
  }
}
.site-sidebar .widget:first-of-type {
  margin-top: 0;
}
.site-sidebar .widget .wp-block-heading,
.site-sidebar .widget .widgettitle {
  position: relative;
  width: 100%;
  padding: 0.8rem 1.6rem;
  background: #B23C3C;
  color: #FFFFFF;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .site-sidebar .widget .wp-block-heading,
  .site-sidebar .widget .widgettitle {
    font-size: 1.4rem;
  }
}
.site-sidebar .widget .wp-block-heading,
.site-sidebar .widget .widgettitle {
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .site-sidebar .widget .wp-block-heading,
  .site-sidebar .widget .widgettitle {
    padding: 1.2rem 1.6rem;
  }
}
.site-sidebar .wp-block-categories-list,
.site-sidebar .wp-block-latest-posts {
  width: 100%;
}
.site-sidebar .wp-block-categories-list li,
.site-sidebar .wp-block-latest-posts li {
  width: 100%;
  list-style-type: none;
}
.site-sidebar .wp-block-categories-list li a,
.site-sidebar .wp-block-latest-posts li a {
  display: block;
  position: relative;
  padding: 1.6rem 2.4rem 1.6rem 0.8rem;
  color: #222222;
  border-bottom: 1px dashed #C7C0B2;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .site-sidebar .wp-block-categories-list li a,
  .site-sidebar .wp-block-latest-posts li a {
    padding: 1.2rem 0.8rem;
  }
}
.site-sidebar .wp-block-categories-list li a:hover,
.site-sidebar .wp-block-latest-posts li a:hover {
  background-color: rgba(199, 192, 178, 0.2);
}
.site-sidebar .wp-block-categories-list li a::after,
.site-sidebar .wp-block-latest-posts li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon-link-rd.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

/* Button
--------------------------------------------- */
.c-link {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid #B23C3C;
  color: #B23C3C;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .c-link {
    font-size: 1.4rem;
  }
}
.c-link {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.c-link:hover {
  opacity: 0.7;
}
.c-link::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  margin-left: 0.8rem;
  background-image: url(../img/common/icon-link-rd.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-link--white {
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.c-link--white::after {
  background-image: url(../img/common/icon-link-wh.svg);
}

/* snow monkery form
--------------------------------------------- */
.snow-monkey-form {
  width: 100%;
}
.snow-monkey-form .smf-item {
  padding: 1.6rem 1rem;
  border-bottom: 1px dashed #8D7B6D;
}
.snow-monkey-form .smf-item:last-of-type {
  border-bottom: none;
}
.snow-monkey-form .smf-item.must .smf-item__description {
  background-color: #B23C3C;
}
.snow-monkey-form .smf-item.option .smf-item__description {
  background-color: #8D7B6D;
}
.snow-monkey-form .smf-item__col--label {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1rem;
  width: 240px;
}
@media screen and (max-width: 600px) {
  .snow-monkey-form .smf-item__col--label {
    width: 100%;
  }
}
.snow-monkey-form .smf-item__label {
  color: #222222;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}
.snow-monkey-form .smf-item__description {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 !important;
  padding: 0.25rem 1rem;
  color: #FFFFFF;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .snow-monkey-form .smf-item__description {
    font-size: 1.2rem;
  }
}
.snow-monkey-form .smf-item__description {
  text-align: center;
  white-space: nowrap;
}
.snow-monkey-form .smf-item__controls {
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .snow-monkey-form .smf-item__controls {
    font-size: 1.4rem;
  }
}
.snow-monkey-form .smf-item__controls input[type=text],
.snow-monkey-form .smf-item__controls input[type=email],
.snow-monkey-form .smf-item__controls input[type=tel] {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid #999999;
  border-radius: 4px;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .snow-monkey-form .smf-item__controls input[type=text],
  .snow-monkey-form .smf-item__controls input[type=email],
  .snow-monkey-form .smf-item__controls input[type=tel] {
    font-size: 1.4rem;
  }
}
.snow-monkey-form .smf-item__controls .smf-textarea-control__control {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid #999999;
  border-radius: 4px;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .snow-monkey-form .smf-item__controls .smf-textarea-control__control {
    font-size: 1.4rem;
  }
}
.snow-monkey-form .smf-item__controls .smf-radio-button-control,
.snow-monkey-form .smf-item__controls .smf-checkbox-control {
  align-items: center !important;
}
.snow-monkey-form .smf-item__controls input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 0 !important;
  border-radius: 50%;
  vertical-align: -10px;
}
.snow-monkey-form .smf-item__controls input[type=radio]:checked {
  background: transparent;
}
.snow-monkey-form .smf-item__controls input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #B23C3C;
  transform: translate(-50%, -50%);
}
.snow-monkey-form .smf-item__controls .smf-checkboxes-control {
  margin-inline: auto;
  padding: 1.6rem 1rem;
  text-align: center;
}
.snow-monkey-form .smf-item__controls .smf-checkboxes-control input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 0 !important;
  border-radius: 4px;
}
.snow-monkey-form .smf-item__controls .smf-checkboxes-control input[type=checkbox]:checked {
  background: transparent;
}
.snow-monkey-form .smf-item__controls .smf-checkboxes-control input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 12px;
  border-right: 2px solid #B23C3C;
  border-bottom: 2px solid #B23C3C;
  transform: rotate(40deg) skewY(10deg) translateY(-50%);
  transform-origin: center right;
}
.snow-monkey-form .smf-item__controls .smf-select-control {
  width: 100%;
}
.snow-monkey-form .smf-item__controls .smf-select-control__control {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid #999999;
  border-radius: 4px;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .snow-monkey-form .smf-item__controls .smf-select-control__control {
    font-size: 1.4rem;
  }
}
.snow-monkey-form .smf-item__controls .wp-block-group {
  margin-bottom: 10px;
}
.snow-monkey-form .smf-item__controls .wp-block-group p {
  margin-top: 0 !important;
}

.smf-action .smf-button-control__control {
  display: block;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 1.6rem 2.4rem 1.8rem 2.4rem;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .smf-action .smf-button-control__control {
    font-size: 1.8rem;
  }
}
.smf-action .smf-button-control__control {
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  letter-spacing: 5%;
  transition: all 0.3s ease-in-out;
}
.smf-action .smf-button-control__control[data-action=confirm], .smf-action .smf-button-control__control[data-action=complete] {
  background: #B23C3C;
  color: #FFFFFF;
}
.smf-action .smf-button-control__control[data-action=confirm]:hover, .smf-action .smf-button-control__control[data-action=complete]:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.smf-action .smf-button-control__control[data-action=confirm]::after, .smf-action .smf-button-control__control[data-action=complete]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  margin-left: 0.8rem;
  background-image: url(../img/common/icon-link-wh.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* pager
--------------------------------------------- */
.p-pager-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.4rem;
  width: 100%;
  margin-top: 4rem;
}
.p-pager-list li {
  list-style: none;
}
.p-pager-list li .link-btn {
  width: 120px;
}
.p-pager-list li .link-btn:hover {
  opacity: 1;
  filter: opacity(100%);
}
.p-pager-list li a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid #B23C3C;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .p-pager-list li a {
    font-size: 1.4rem;
  }
}
.p-pager-list li a {
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.3s ease-in-out;
}
.p-pager-list li a:hover {
  background-color: #B23C3C;
  color: #FFFFFF;
}

.pagination {
  position: relative;
  width: 100%;
  margin: 4rem auto 0;
}
.pagination__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.6rem;
  width: 100%;
  margin: 0 auto;
  color: #B23C3C;
  list-style-type: none;
}
.pagination__list .current {
  display: block;
  justify-self: center;
  align-self: center;
  width: 32px;
  height: 32px;
  padding: 0.5rem 0;
  border: 1px solid #B23C3C;
  background: #B23C3C;
  color: #FFFFFF;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .pagination__list .current {
    font-size: 1.2rem;
  }
}
.pagination__list .current {
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.pagination__list a {
  display: block;
  justify-self: center;
  align-self: center;
  width: 32px;
  height: 32px;
  padding: 0.5rem 0;
  border: 1px solid #B23C3C;
  color: #B23C3C;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .pagination__list a {
    font-size: 1.2rem;
  }
}
.pagination__list a {
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.pagination__list a:hover {
  border: 1px solid #B23C3C;
  background-color: #B23C3C;
  color: #FFFFFF;
}

/*
@use "fixed-btn";
*/
/*
 * トップコンテンツ
 */
.f-main-content {
  background-image: url(../img/common/bg-paper.webp);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
}
.f-main-content .sec-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 5%;
  writing-mode: vertical-rl;
}
.f-main-content .sec-title::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon-ofuro.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.f-main-content .sec-title .eng {
  margin-top: 1.6rem;
  color: #B23C3C;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
  writing-mode: horizontal-tb;
}

/*
 * メインビジュアル
 */
.f-mv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 600px) {
  .f-mv {
    height: 75vh;
  }
}
.f-mv::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -7.5%;
  left: 0;
  z-index: 3;
  width: 33.51%;
  background-image: url(../img/front/cloud_mv_01.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 858/415;
}
@media screen and (max-width: 600px) {
  .f-mv::before {
    width: 37.78%;
    bottom: -5%;
  }
}
.f-mv::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -19.75%;
  right: 0;
  left: auto;
  z-index: 3;
  width: 34.76%;
  background-image: url(../img/front/cloud_mv_02.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 89/66;
}
@media screen and (max-width: 600px) {
  .f-mv::after {
    width: 46.62%;
    bottom: -13.5%;
  }
}
.f-mv-slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.f-mv-slide__item {
  inset: 0;
  opacity: 0;
  transition: opacity 6.4s ease;
}
.f-mv-slide__item.is-active {
  opacity: 1;
}
.f-mv-slide__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.f-mv-txt {
  position: relative;
  width: 100%;
  height: 100%;
  inset: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.f-mv-txt__copy {
  position: relative;
  top: -5vh;
  font-size: 4.2rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .f-mv-txt__copy {
    font-size: 3.4rem;
  }
}
.f-mv-txt__copy small {
  font-size: 3.4rem;
}
@media screen and (max-width: 600px) {
  .f-mv-txt__copy small {
    font-size: 2.6rem;
  }
}
.f-mv-txt__logo {
  position: relative;
  top: -5vh;
  width: 464px;
}
@media screen and (max-width: 600px) {
  .f-mv-txt__logo {
    width: 300px;
  }
}
.f-mv-txt__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-mv-scroll {
  display: inline-grid;
  place-items: start;
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.f-mv-scroll__txt {
  grid-column: 1;
  grid-row: 1;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .f-mv-scroll__txt {
    font-size: 1rem;
  }
}
.f-mv-scroll__txt {
  line-height: 1;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.f-mv-scroll__line {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 16px;
  height: 48px;
  margin: 2.4rem auto 0;
}
@media screen and (max-width: 600px) {
  .f-mv-scroll__line {
    margin: 2.4rem auto 0;
  }
}
.f-mv-scroll__line::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(-50%);
}
.f-mv-scroll__line-dot {
  display: block;
  width: 16px;
  height: 16px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
.f-mv-scroll__line-dot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * イントロセクション
 */
.f-intro {
  position: relative;
  width: 100%;
  background-image: url(../img/front/intro_01-pc.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 8/5;
}
@media screen and (max-width: 960px) {
  .f-intro {
    display: none;
    background-image: url(../img/front/intro_01-sp.webp);
    aspect-ratio: auto;
    height: auto;
  }
}
.f-intro__scroll-container {
  display: none;
}
@media screen and (max-width: 960px) {
  .f-intro__scroll-container {
    display: block;
    position: relative;
    z-index: 0;
    height: 400vh;
    background-color: #F0E7D6;
  }
}
@media screen and (max-width: 960px) {
  .f-intro__sticky-wrap {
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1;
    isolation: isolate;
    height: 100vh;
    height: 100svh;
    background-color: #F0E7D6;
  }
  .f-intro__sticky-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(../img/front/intro_01-sp.webp);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 960px) {
  .f-intro__horizontal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    will-change: transform;
  }
}
.f-intro__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 12%;
}
@media screen and (max-width: 960px) {
  .f-intro__inner {
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    padding-top: 10%;
    justify-content: center;
  }
}
.f-intro-txt {
  text-orientation: upright;
  font-feature-settings: "vrt2";
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .f-intro-txt {
    left: 0;
    right: 0;
    justify-content: center;
  }
}
.f-intro-txt p {
  margin-left: 4rem;
  color: #222222;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .f-intro-txt p {
    font-size: 1.6rem;
  }
}
.f-intro-txt p {
  font-weight: 500;
  line-height: 3.6;
  letter-spacing: 5%;
  filter: drop-shadow(0 0 2.5px #F0E7D7) drop-shadow(0 0 2.5px #F0E7D7);
}
.f-intro-txt p:last-child {
  margin-left: 0;
}
.f-intro-txt p .color-rd {
  color: #B23C3C;
}
.f-intro-txt p .text-medium {
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .f-intro-txt p .text-medium {
    font-size: 1.8rem;
  }
}
.f-intro-txt p .text-large {
  font-size: 2.8rem;
}
@media screen and (max-width: 600px) {
  .f-intro-txt p .text-large {
    font-size: 2.4rem;
  }
}

/*
 * お知らせセクション
 */
.f-news {
  position: relative;
  background-color: #E7DBC5;
  padding: 10.4rem 0;
}
@media screen and (max-width: 600px) {
  .f-news {
    padding: 6rem 0;
  }
}
.f-news::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -17.5%;
  left: 0;
  z-index: 3;
  width: 27.96%;
  background-image: url(../img/front/cloud_news_01.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 179/118;
}
@media screen and (max-width: 600px) {
  .f-news::before {
    top: -9.5%;
    width: 46.75%;
  }
}
.f-news::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -21.75%;
  right: 0;
  left: auto;
  z-index: 3;
  width: 36.5625%;
  background-image: url(../img/front/cloud_news_02.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 117/49;
}
@media screen and (max-width: 600px) {
  .f-news::after {
    top: -13.5%;
    width: 46.62%;
  }
}
.f-news__wrapper {
  background-color: #FBF8F3;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 4.8rem;
  padding: 5.6rem 4.8rem;
}
@media screen and (max-width: 600px) {
  .f-news__wrapper {
    flex-direction: column;
    gap: 3.2rem;
    padding: 2.4rem;
  }
}
.f-news__title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  position: relative;
  width: 30%;
  padding-top: 2.4rem;
}
@media screen and (max-width: 600px) {
  .f-news__title {
    width: 100%;
    padding-top: 0;
  }
}
.f-news__title-mascot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 116px;
}
@media screen and (max-width: 600px) {
  .f-news__title-mascot {
    right: 0;
    left: auto;
    width: 48px;
    height: 87px;
  }
}
.f-news__title-mascot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-news__content {
  width: calc(70% - 4.8rem);
}
@media screen and (max-width: 600px) {
  .f-news__content {
    width: 100%;
  }
}
.f-news__content .c-tab {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.6rem;
}
@media screen and (max-width: 600px) {
  .f-news__content .c-tab {
    justify-content: center;
  }
}
.f-news__content .c-tab__item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.4rem 1.6rem;
  border: 1px solid #B23C3C;
  color: #B23C3C;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.f-news__content .c-tab__item:hover {
  opacity: 0.7;
}
.f-news__content .c-tab__item-active {
  background-color: #B23C3C;
  color: #FFFFFF;
}
.f-news__content .c-tab__item-active::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -6px;
  left: 50%;
  background-color: #B23C3C;
  width: 12px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: translateX(-50%);
}
.f-news-list {
  margin-top: 2.4rem;
  list-style-type: none;
}
.f-news-list .c-news-item {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.6rem 0.8rem;
  border-bottom: 1px dashed #C7C0B2;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .f-news-list .c-news-item {
    padding: 1.2rem 0.8rem;
  }
}
.f-news-list .c-news-item:hover {
  background-color: rgba(199, 192, 178, 0.2);
}
.f-news-list .c-news-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon-link-rd.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.f-news-list .c-news-item:first-child {
  border-top: 1px dashed #C7C0B2;
}
@media screen and (max-width: 600px) {
  .f-news-list .c-news-item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px;
  }
}
.f-news-list .c-news-item time {
  color: #8D7B6D;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .f-news-list .c-news-item time {
    font-size: 1.2rem;
  }
}
.f-news-list .c-news-item time {
  white-space: nowrap;
}
.f-news-list .c-news-item a {
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .f-news-list .c-news-item a {
    font-size: 1.4rem;
  }
}
.f-news-list .c-news-item a {
  text-decoration: none;
  display: inline;
}
.f-news__more {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 1.6rem;
  padding-inline: 8px;
}

/*
 * お風呂セクション
 */
.f-bath {
  position: relative;
  padding: 0 0 10rem;
}
@media screen and (min-width: 1280px) {
  .f-bath {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .f-bath {
    padding: 0 0 8rem;
  }
}
.f-bath::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7.5%;
  right: 0;
  z-index: 0;
  width: 67.25%;
  background-image: url(../img/front/cloud_bath_01.webp);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 263/231;
}
@media screen and (max-width: 600px) {
  .f-bath::before {
    width: 87.25%;
    top: 10%;
  }
}
.f-bath::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 67.25%;
  background-image: url(../img/front/cloud_bath_02.webp);
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 362/309;
}
@media screen and (max-width: 600px) {
  .f-bath::after {
    width: 87.25%;
    bottom: 15%;
  }
}
.f-bath__wave {
  position: relative;
  background-color: #E7DBC5;
}
.f-bath__wave-img {
  width: 100%;
  margin: 0;
}
.f-bath__wave-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-bath__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 848px;
  margin-inline: auto;
}
.f-bath__inner p {
  margin-top: 4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .f-bath__inner p {
    font-size: 1.6rem;
  }
}
.f-bath__inner p {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .f-bath__inner p {
    margin-top: 5.2rem;
  }
}
.f-bath__title .sec-title {
  margin: 0 auto;
}
.f-bath-card {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 4.8rem;
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 600px) {
  .f-bath-card {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
.f-bath-card__item {
  position: relative;
  width: 100%;
}
.f-bath-card__item h3 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  position: absolute;
  top: -2.4rem;
  left: 4rem;
  z-index: 3;
  width: 56px;
  height: 200px;
  padding: 2.4rem 1.4rem;
  color: #FFFFFF;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .f-bath-card__item h3 {
    font-size: 2rem;
  }
}
.f-bath-card__item h3 {
  font-weight: 500;
  letter-spacing: 20%;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 600px) {
  .f-bath-card__item h3 {
    top: -2rem;
    left: 2.4rem;
    width: 48px;
    height: 172px;
  }
}
.f-bath-card__item h3.men {
  background-color: #3D4F7C;
}
.f-bath-card__item h3.women {
  background-color: #B23C3C;
}
.f-bath-card__item h3 .eng {
  padding-top: 1.6rem;
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 20%;
}
@media screen and (max-width: 600px) {
  .f-bath-card__item h3 .eng {
    font-size: 1rem;
  }
}
.f-bath-card__item a {
  display: block;
  text-decoration: none;
}
.f-bath-card__item a:hover figure::before {
  background: transparent;
}
.f-bath-card__item figure {
  position: relative;
}
.f-bath-card__item figure::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.f-bath-card__item figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-bath-card__item .c-link {
  display: inline-block;
  position: absolute;
  right: 0.8rem;
  bottom: 1.6rem;
}
.f-bath-manner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 4rem auto 0;
  transition: all 0.3s ease-in-out;
}
.f-bath-manner:hover {
  opacity: 0.85;
}

/*
 * お食事セクション
 */
.f-meal {
  position: relative;
  margin-top: 10.4rem;
  padding: 10.4rem 0 0;
}
@media screen and (min-width: 1280px) {
  .f-meal {
    margin-top: 10.4%;
    padding: 10.4% 0;
  }
}
@media screen and (max-width: 600px) {
  .f-meal {
    margin-top: 0;
    padding: 8rem 0;
  }
}
.f-meal__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62.5%;
  aspect-ratio: 200/137;
}
@media screen and (max-width: 600px) {
  .f-meal__bg {
    top: 0;
    bottom: auto;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.f-meal__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/front/meal_02.webp");
  background-position: center right;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .f-meal__bg::after {
    transform: rotate(270deg);
  }
}
.f-meal__wrapper {
  position: relative;
  z-index: 3;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0 9.6rem;
  width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 600px) {
  .f-meal__wrapper {
    width: 100%;
    flex-direction: column;
  }
}
.f-meal__title {
  width: 100%;
}
.f-meal__title .sec-title {
  margin: 0 auto;
}
.f-meal__media {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54.6875%;
  aspect-ratio: 700/467;
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .f-meal__media {
    position: relative;
    width: calc(100% + 3rem);
    margin-top: 4rem;
    margin-left: -1.5rem;
  }
}
.f-meal__media img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-meal__content {
  position: relative;
  bottom: -4.8rem;
  width: 100%;
  background-color: #FBF8F3;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4rem;
}
@media screen and (max-width: 600px) {
  .f-meal__content {
    gap: 1.6rem;
    top: -2.4rem;
    bottom: 0;
    padding: 3.2rem 2.4rem;
  }
}
.f-meal__content p {
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .f-meal__content p {
    font-size: 1.4rem;
  }
}
.f-meal__content p {
  line-height: 1.6;
}
.f-meal__content::after {
  content: "";
  display: inline-block;
  position: absolute;
  overflow: hidden;
  bottom: -1.6rem;
  right: -1.6rem;
  width: 100px;
  background-image: url(../img/front/meal_icon_01.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 100/149;
}
@media screen and (max-width: 600px) {
  .f-meal__content::after {
    bottom: -8px;
    right: -8px;
    width: 64px;
  }
}
.f-meal__content::after img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * 料金セクション
 */
.f-fee {
  position: relative;
  margin-top: 10.4rem;
  padding: 10.4rem 0;
}
@media screen and (min-width: 1280px) {
  .f-fee {
    margin-top: 10.4%;
    padding: 10.4% 0;
  }
}
@media screen and (max-width: 600px) {
  .f-fee {
    margin-top: 0;
    padding: 8rem 0;
  }
}
.f-fee__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62.5%;
  aspect-ratio: 8/5;
}
@media screen and (max-width: 600px) {
  .f-fee__bg {
    top: 0;
    bottom: auto;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.f-fee__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/front/fee_01.webp");
  background-position: center left;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .f-fee__bg::after {
    transform: rotate(90deg);
  }
}
.f-fee__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem 5.6rem;
  position: relative;
}
@media screen and (max-width: 600px) {
  .f-fee__inner {
    flex-direction: column;
  }
}
.f-fee__title {
  align-self: flex-start;
  width: 300px;
}
@media screen and (max-width: 600px) {
  .f-fee__title {
    width: 100%;
  }
}
.f-fee__title .sec-title {
  margin: 0 auto;
}
.f-fee__content {
  flex: 1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  width: calc(71.15% - 5.6rem);
}
@media screen and (max-width: 600px) {
  .f-fee__content {
    width: 100%;
  }
}
.f-fee__content figure {
  background-color: #FBF8F3;
  width: 100%;
  padding: 2.4rem 3.2rem;
}
@media screen and (max-width: 600px) {
  .f-fee__content figure {
    padding: 3.2rem 2.4rem;
  }
}
.f-fee__content figure figcaption {
  padding-top: 1.6rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .f-fee__content figure figcaption {
    font-size: 1rem;
  }
}
.f-fee__content figure figcaption {
  color: #8D7B6D;
  text-align: right;
}
.f-fee__content-tbl {
  width: 100%;
  border-collapse: collapse;
}
.f-fee__content-tbl th {
  padding: 1.6rem;
  border-bottom: 1px dashed #C7C0B2;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .f-fee__content-tbl th {
    font-size: 1.4rem;
  }
}
.f-fee__content-tbl th {
  font-weight: 400;
  text-align: left;
}
.f-fee__content-tbl td {
  width: 200px;
  padding: 1.6rem;
  border-bottom: 1px dashed #C7C0B2;
  color: #B23C3C;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .f-fee__content-tbl td {
    font-size: 1.4rem;
  }
}
.f-fee__content-tbl td {
  text-align: right;
}
@media screen and (max-width: 600px) {
  .f-fee__content-tbl td {
    width: 96px;
  }
}
.f-fee__more {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-inline: 16px;
  width: 100%;
}

/*
 * イントロセクション
 */
.l-bath-intro {
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-intro {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
.l-bath-intro__box {
  position: relative;
  background-color: #FBF8F3;
  width: 100%;
  padding: 2.4rem 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-intro__box {
    padding-right: 6.4rem;
  }
}
.l-bath-intro__box p {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-bath-intro__box p {
    font-size: 1.6rem;
  }
}
.l-bath-intro__box p {
  text-align: center;
  line-height: 1.7;
  color: #5A4333;
}
@media screen and (max-width: 600px) {
  .l-bath-intro__box p {
    text-align: left;
  }
}
.l-bath-intro__box-mascot {
  position: absolute;
  bottom: 1.6rem;
  right: 1.5rem;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .l-bath-intro__box-mascot {
    width: 64px;
    height: 64px;
    bottom: 0.8rem;
    right: 0.8rem;
  }
}
.l-bath-intro__box-mascot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * タブナビ
 */
.l-bath-tab {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-tab {
    padding-bottom: 4rem;
  }
}
.l-bath-tab__nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-tab__nav {
    gap: 1.6rem 0.8rem;
    flex-wrap: wrap;
  }
}
.l-bath-tab__btn {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  padding: 1.6rem 2.4rem;
  color: #FFFFFF;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-bath-tab__btn {
    font-size: 1.6rem;
  }
}
.l-bath-tab__btn {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.l-bath-tab__btn.large {
  width: 30%;
}
@media screen and (max-width: 600px) {
  .l-bath-tab__btn.large {
    width: calc(50% - 0.4rem);
    padding: 1.6rem;
  }
}
.l-bath-tab__btn.small {
  width: calc(20% - 2.4rem);
  background-color: #5A4333;
}
@media screen and (max-width: 600px) {
  .l-bath-tab__btn.small {
    flex-direction: row;
    width: calc(50% - 0.4rem);
    padding: 1.2rem 1.6rem;
  }
}
.l-bath-tab__btn.small.is-active::after {
  background-color: #5A4333;
}
.l-bath-tab__btn.men {
  background-color: #3D4F7C;
}
.l-bath-tab__btn.men.is-active::after {
  background-color: #3D4F7C;
}
.l-bath-tab__btn.woman {
  background-color: #B23C3C;
}
.l-bath-tab__btn.woman.is-active::after {
  background-color: #B23C3C;
}
.l-bath-tab__btn.manner {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.l-bath-tab__btn:hover {
  opacity: 1;
}
.l-bath-tab__btn.is-active::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: translateX(-50%);
}
.l-bath-tab__btn img {
  width: 24px;
  height: 24px;
}

/*
 * タブコンテンツ
 */
.l-bath-content {
  display: none;
}
.l-bath-content.is-active {
  display: block;
}

/*
 * 男湯・女湯タブ
 */
.l-bath-detail {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-detail {
    padding-bottom: 8rem;
  }
}
.l-bath-detail__head {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-detail__head {
    padding-bottom: 2.4rem;
  }
}
.l-bath-detail__head img {
  margin-inline: auto;
  margin-bottom: 0.8rem;
}
.l-bath-detail__head .men .eng {
  color: #3D4F7C;
}
.l-bath-detail__head .manner {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.l-bath-detail__head .manner .eng {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.l-bath-detail-main {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 4rem 4.8rem;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.l-bath-detail-main__item {
  position: relative;
  width: 100%;
}
.l-bath-detail-main__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-bath-detail-main__item figcaption {
  position: absolute;
  top: -1.6rem;
  left: 1.6rem;
  z-index: 3;
  width: 56px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2.4rem 1.4rem;
  background-color: #FFFFFF;
  color: #222222;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-main__item figcaption {
    font-size: 2rem;
  }
}
.l-bath-detail-main__item figcaption {
  font-weight: 500;
  letter-spacing: 20%;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-main__item figcaption {
    width: 52px;
  }
}
.l-bath-detail-sub {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4rem 4.8rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 960px) {
  .l-bath-detail-sub {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .l-bath-detail-sub {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 4rem;
  }
}
.l-bath-detail-sub__item {
  position: relative;
  width: 100%;
}
.l-bath-detail-sub__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-bath-detail-sub__item figcaption {
  position: absolute;
  top: -1.6rem;
  left: 1.6rem;
  z-index: 3;
  width: 52px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.6rem 1.4rem;
  background-color: #FFFFFF;
  color: #222222;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-sub__item figcaption {
    font-size: 1.8rem;
  }
}
.l-bath-detail-sub__item figcaption {
  font-weight: 500;
  letter-spacing: 20%;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-sub__item figcaption {
    width: 52px;
  }
}
.l-bath-detail-sv {
  position: relative;
  width: 100%;
  margin-top: 4.8rem;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-sv {
    margin-top: 4rem;
  }
}
.l-bath-detail-sv h3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 1.6rem 5rem 1.6rem 2.4rem;
  border-radius: 0 16px 16px 0;
  background-color: #5A4333;
  color: #FFFFFF;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .l-bath-detail-sv h3 {
    font-size: 1.8rem;
  }
}
.l-bath-detail-sv h3 {
  font-weight: 500;
  letter-spacing: 5%;
}
.l-bath-detail-sv h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -0.8rem;
  right: -1rem;
  width: 50px;
  height: 64px;
  background-image: url("../img/bath/sv_01.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-bath-detail-sv iframe {
  width: 100%;
  height: 100%;
}

/*
 * 炭酸泉セクション
 */
.l-bath-feature {
  position: relative;
  background-image: url(../img/bath/feature_01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.l-bath-feature__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5.6rem;
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-feature__inner {
    justify-content: center;
    flex-direction: column;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.l-bath-feature__title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  position: relative;
  width: 180px;
}
@media screen and (max-width: 600px) {
  .l-bath-feature__title {
    width: 100%;
  }
}
.l-bath-feature__title h2 {
  color: #FFFFFF;
  font-size: 2.8rem;
}
@media screen and (max-width: 600px) {
  .l-bath-feature__title h2 {
    font-size: 2.4rem;
  }
}
.l-bath-feature__title h2 {
  font-weight: 500;
  letter-spacing: 5%;
  writing-mode: vertical-rl;
}
.l-bath-feature__text {
  width: calc(100% - 5.6rem - 180px);
}
@media screen and (max-width: 600px) {
  .l-bath-feature__text {
    width: 100%;
  }
}
.l-bath-feature__text p {
  margin-top: 1.6rem;
  color: #FFFFFF;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-feature__text p {
    font-size: 1.4rem;
  }
}
.l-bath-feature__text p {
  line-height: 1.7;
}
.l-bath-feature__text p:first-child {
  margin-top: 0;
}
.l-bath-feature__tbl table {
  width: 100%;
  margin-top: 4rem;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.8);
}
.l-bath-feature__tbl table td {
  padding: 1.6rem;
  color: #5A4333;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-feature__tbl table td {
    font-size: 1.4rem;
  }
}
.l-bath-feature__tbl table td {
  line-height: 1.7;
}
.l-bath-feature__tbl table td .color-rd {
  color: #B23C3C;
}

/*
 * 効能セクション
 */
.l-bath-effect {
  position: relative;
  background-image: url(../img/bath/effect_01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.l-bath-effect__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 5.6rem;
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__inner {
    justify-content: center;
    flex-direction: column;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.l-bath-effect__title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  width: 180px;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__title {
    width: 100%;
  }
}
.l-bath-effect__title h2 {
  color: #B23C3C;
  font-size: 2.8rem;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__title h2 {
    font-size: 2.4rem;
  }
}
.l-bath-effect__title h2 {
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 5%;
  writing-mode: vertical-rl;
}
.l-bath-effect__title h2 span {
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__title h2 span {
    font-size: 1.8rem;
  }
}
.l-bath-effect__text {
  width: calc(100% - 5.6rem - 180px);
}
@media screen and (max-width: 600px) {
  .l-bath-effect__text {
    width: 100%;
  }
}
.l-bath-effect__text p {
  margin-top: 1.6rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__text p {
    font-size: 1.4rem;
  }
}
.l-bath-effect__text p {
  line-height: 1.7;
}
.l-bath-effect__text p:first-child {
  margin-top: 0;
}
.l-bath-effect__tbl table {
  width: 100%;
  margin-top: 4rem;
  border-collapse: collapse;
  background-color: #FFFFFF;
}
.l-bath-effect__tbl table th {
  min-width: 104px;
  padding: 1.6rem;
  border: 1px solid #8D7B6D;
  color: #8D7B6D;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__tbl table th {
    min-width: 64px;
  }
}
.l-bath-effect__tbl table td {
  padding: 1.6rem;
  border: 1px solid #8D7B6D;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-effect__tbl table td {
    font-size: 1.4rem;
  }
}
.l-bath-effect__tbl table td {
  line-height: 1.7;
}

/*
 * アメニティタブ
 */
.l-bath-amenity {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-amenity {
    padding-bottom: 8rem;
  }
}
.l-bath-amenity__txt {
  padding: 2.4rem 3.2rem;
  background-color: #FBF8F3;
}
@media screen and (max-width: 600px) {
  .l-bath-amenity__txt {
    padding: 1.6rem;
  }
}
.l-bath-amenity__txt ul li {
  padding: 1.6rem;
  padding-left: 2.2rem;
  border-bottom: 1px dashed #8D7B6D;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-amenity__txt ul li {
    font-size: 1.4rem;
  }
}
.l-bath-amenity__txt ul li {
  text-indent: -2.2rem;
  line-height: 1.7;
}
.l-bath-amenity__txt ul li:last-of-type {
  border-bottom: none;
}
.l-bath-amenity__txt ul li .color-rd {
  color: #B23C3C;
}
.l-bath-amenity-gallery {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  width: 100%;
  margin-top: 4.8rem;
}
@media screen and (max-width: 600px) {
  .l-bath-amenity-gallery {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-top: 4rem;
  }
}
.l-bath-amenity-gallery__item {
  width: 100%;
}
.l-bath-amenity-gallery__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * お風呂マナータブ
 */
.l-bath-manner {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-bath-manner {
    padding-bottom: 8rem;
  }
}
.l-bath-manner__wrap {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 960px) {
  .l-bath-manner__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .l-bath-manner__wrap {
    grid-template-columns: 1fr;
  }
}
.l-bath-manner__item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem;
  border-radius: 1.6rem;
  background-color: #FBF8F3;
  text-align: center;
}
.l-bath-manner__item img {
  width: auto;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .l-bath-manner__item img {
    height: 160px;
  }
}
.l-bath-manner__item figcaption {
  margin-top: 2.4rem;
  color: #5A4333;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-bath-manner__item figcaption {
    font-size: 1.4rem;
  }
}
.l-bath-manner__item figcaption {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.7;
}
.l-bath-manner__item.message {
  padding: 0;
  background-color: transparent;
}
.l-bath-manner__item.message img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * イントロセクション
 */
.l-meal-intro {
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-intro {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
.l-meal-intro__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.l-meal-intro__box {
  position: relative;
  background-color: #FBF8F3;
  width: 100%;
  padding: 2.4rem 1.6rem;
}
.l-meal-intro__box p {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__box p {
    font-size: 1.6rem;
  }
}
.l-meal-intro__box p {
  text-align: center;
  line-height: 1.7;
  color: #5A4333;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__box p {
    text-align: left;
  }
}
.l-meal-intro__box-mascot {
  position: absolute;
  bottom: 1.6rem;
  right: 1.5rem;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__box-mascot {
    width: 60px;
    height: 60px;
    bottom: -1.6rem;
    right: -1.4rem;
  }
}
.l-meal-intro__box-mascot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-meal-intro__time {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 4rem;
  border: 2px solid #8D7B6D;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__time {
    width: 100%;
    padding: 1.6rem;
  }
}
.l-meal-intro__time dl {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__time dl {
    gap: 1.6rem;
  }
}
.l-meal-intro__time dl dt {
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__time dl dt {
    font-size: 1.6rem;
  }
}
.l-meal-intro__time dl dt {
  color: #5A4333;
  line-height: 1.5;
}
.l-meal-intro__time dl dd {
  font-size: 3.2rem;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__time dl dd {
    font-size: 2.4rem;
  }
}
.l-meal-intro__time dl dd {
  color: #B23C3C;
  line-height: 1.5;
}
.l-meal-intro__time p {
  margin-top: 0.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__time p {
    font-size: 1.2rem;
  }
}
.l-meal-intro__time p {
  color: #5A4333;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-meal-intro__time p .block {
    display: none;
  }
}

/*
 * メニューセクション
 */
.l-meal-menu {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu {
    padding-bottom: 8rem;
  }
}
.l-meal-menu__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__inner {
    gap: 6rem;
  }
}
.l-meal-menu__category {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.l-meal-menu__category .food.sec-title-h::before {
  background-image: url(../img/common/icon-meal.svg);
}
.l-meal-menu__category .snack.sec-title-h::before {
  background-image: url(../img/common/icon-snack.svg);
}
.l-meal-menu__category .desert.sec-title-h::before {
  background-image: url(../img/common/icon-desert.svg);
}
.l-meal-menu__category .drink.sec-title-h::before {
  background-image: url(../img/common/icon-drink.svg);
}
.l-meal-menu__grid {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 1.6rem;
}
@media screen and (max-width: 960px) {
  .l-meal-menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .l-meal-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
.l-meal-menu__card {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
}
.l-meal-menu__card-img {
  width: 100%;
}
.l-meal-menu__card-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-meal-menu__card-body {
  padding: 0.8rem;
}
.l-meal-menu__card-body h3 {
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__card-body h3 {
    font-size: 1.4rem;
  }
}
.l-meal-menu__card-body p {
  margin-top: 0.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__card-body p {
    font-size: 1.2rem;
  }
}
.l-meal-menu__card-body p {
  color: #B23C3C;
}
.l-meal-menu__wrap {
  background-color: #FBF8F3;
  padding: 2.4rem 3.2rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__wrap {
    padding: 1.6rem;
  }
}
.l-meal-menu__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__list {
    grid-template-columns: 1fr;
  }
}
.l-meal-menu__list li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0.8rem;
  border-bottom: 1px dashed #8D7B6D;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__list li {
    font-size: 1.4rem;
  }
}
.l-meal-menu__list li {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__list li {
    padding: 1.2rem 0.8rem;
  }
}
.l-meal-menu__list li .price {
  width: 96px;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__list li .price {
    font-size: 1.4rem;
  }
}
.l-meal-menu__list li .price {
  color: #B23C3C;
  text-align: right;
}
.l-meal-menu__note {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__note {
    font-size: 1rem;
  }
}
.l-meal-menu__note {
  color: #8D7B6D;
  text-align: right;
  padding-top: 1.6rem;
}
.l-meal-menu__note.bor-top {
  border-top: 1px dashed #8D7B6D;
  padding-top: 0.8rem;
}
.l-meal-menu__caution {
  padding: 0 1.6rem;
  list-style: disc;
  margin-left: 2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-menu__caution {
    font-size: 1.2rem;
  }
}
.l-meal-menu__caution {
  color: #8D7B6D;
}
.l-meal-menu__caution li {
  line-height: 1.7;
}

/*
 * 座席・お子様セクション
 */
.l-meal-space {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-space {
    padding-bottom: 8rem;
  }
}
.l-meal-space__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
}
.l-meal-space__block {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-space__block {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
  }
}
.l-meal-space__block:first-of-type {
  margin-top: 0;
}
.l-meal-space__block-reverse .l-meal-space__media {
  order: 2;
  z-index: 0;
  margin-left: -4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-space__block-reverse .l-meal-space__media {
    order: 1;
    margin-left: -1.5rem;
  }
}
.l-meal-space__block-reverse .l-meal-space__content {
  order: 1;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .l-meal-space__block-reverse .l-meal-space__content {
    order: 2;
  }
}
.l-meal-space__media {
  width: calc(100% + 4rem);
  flex-shrink: 0;
  aspect-ratio: 56/37;
}
@media screen and (max-width: 600px) {
  .l-meal-space__media {
    width: calc(100% + 3rem);
    height: auto;
    margin-left: -1.5rem;
  }
}
.l-meal-space__media img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-meal-space__content {
  flex: 1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .l-meal-space__content {
    width: calc(100% - 1.5rem);
    margin-top: -2.4rem;
  }
}
.l-meal-space__content-inner {
  background-color: #FBF8F3;
  width: 100%;
  padding: 8rem 4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-meal-space__content-inner {
    width: 100%;
    padding: 3.2rem 2.4rem;
  }
}
.l-meal-space__content-inner h3 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-meal-space__content-inner h3 {
    font-size: 2rem;
  }
}
.l-meal-space__content-inner h3 {
  font-weight: 500;
  line-height: 1.2;
}
.l-meal-space__content-inner h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-meal-space__content-inner h3.room::before {
  background-image: url(../img/common/icon-room.svg);
}
.l-meal-space__content-inner h3.baby::before {
  background-image: url(../img/common/icon-baby.svg);
}
.l-meal-space__content-inner p {
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-meal-space__content-inner p {
    font-size: 1.4rem;
  }
}

/*
 * イントロセクション
 */
.l-facility-intro {
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-facility-intro {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
.l-facility-intro__box {
  position: relative;
  background-color: #FBF8F3;
  width: 100%;
  padding: 4rem 1.6rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-facility-intro__box {
    font-size: 1.6rem;
  }
}
.l-facility-intro__box {
  color: #5A4333;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-facility-intro__box {
    padding: 2.4rem 1.6rem;
    text-align: left;
  }
}
.l-facility-intro__box-mascot {
  position: absolute;
  bottom: 1.6rem;
  right: 1.5rem;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .l-facility-intro__box-mascot {
    width: 60px;
    height: 60px;
    bottom: -1.6rem;
    right: -1.4rem;
  }
}
.l-facility-intro__box-mascot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * お風呂・お食事処セクション
 */
.l-facility-section {
  position: relative;
  margin-bottom: 10.4rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 600px) {
  .l-facility-section {
    margin-bottom: 8rem;
    padding-top: 0;
  }
}
.l-facility-section.bath {
  background-image: url(../img/common/bg-wave-right.webp);
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .l-facility-section.bath {
    background-image: url(../img/common/bg-wave-bottom.webp);
    background-position: bottom center;
  }
}
.l-facility-section.meal {
  background-image: url(../img/common/bg-wave-left.webp);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .l-facility-section.meal {
    background-image: url(../img/common/bg-wave-bottom.webp);
    background-position: bottom center;
  }
}
.l-facility-section.meal .sec-title-h::before {
  background-image: url(../img/common/icon-meal.svg);
}
.l-facility-section__block {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .l-facility-section__block {
    flex-direction: column;
  }
}
.l-facility-section__block-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .l-facility-section__block-reverse {
    flex-direction: column;
  }
}
.l-facility-section__block-reverse .l-facility-section__content {
  right: auto;
  left: calc((100% - 1040px) / 2);
}
@media screen and (max-width: 960px) {
  .l-facility-section__block-reverse .l-facility-section__content {
    left: auto;
  }
}
.l-facility-section__media {
  position: relative;
  width: 54.6875%;
  aspect-ratio: 20/13;
}
@media screen and (max-width: 960px) {
  .l-facility-section__media {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}
.l-facility-section__media img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-facility-section__content {
  position: absolute;
  top: 50%;
  right: calc((100% - 1040px) / 2);
  z-index: 2;
  width: 100%;
  max-width: 520px;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .l-facility-section__content {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: -2.4rem;
    transform: none;
  }
}
.l-facility-section__content-inner {
  background-color: #FBF8F3;
  width: 100%;
  padding: 4.8rem 4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-facility-section__content-inner {
    padding: 3.2rem 2.4rem;
  }
}
.l-facility-section__content-inner p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-facility-section__content-inner p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  .l-facility-section__content-inner p {
    margin-top: 0;
  }
}

/*
 * 設備セクション
 */
.l-facility-grid {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-facility-grid {
    padding-bottom: 8rem;
  }
}
.l-facility-grid__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 600px) {
  .l-facility-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .l-facility-grid__list {
    grid-template-columns: 1fr;
  }
}
.l-facility-grid__item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
}
.l-facility-grid__item-img {
  position: relative;
  width: 100%;
}
.l-facility-grid__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-facility-grid__item-img figcaption {
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 1.6rem 0.8rem;
  background-color: #FFFFFF;
  color: #222222;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-facility-grid__item-img figcaption {
    font-size: 1.6rem;
  }
}
.l-facility-grid__item-img figcaption {
  font-weight: 500;
  line-height: 1.7;
}
.l-facility-grid__item-img figcaption h3 {
  font-weight: 500;
}
.l-facility-grid__item-content p {
  margin-top: 0.8rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-facility-grid__item-content p {
    font-size: 1.4rem;
  }
}
.l-facility-grid__item-content p {
  color: #222222;
  line-height: 1.7;
}
.l-facility-grid__item-content a {
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .l-facility-grid__item-content a {
    font-size: 1.2rem;
  }
}
.l-facility-grid__item-content a {
  color: #B23C3C;
  line-height: 1.7;
}

/*
 * イントロセクション
 */
.l-fee-intro {
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-fee-intro {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
.l-fee-intro__box {
  position: relative;
  background-color: #FBF8F3;
  width: 100%;
  padding: 2.4rem 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-intro__box {
    padding-right: 6.4rem;
  }
}
.l-fee-intro__box p {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-fee-intro__box p {
    font-size: 1.6rem;
  }
}
.l-fee-intro__box p {
  text-align: center;
  line-height: 1.7;
  color: #5A4333;
}
@media screen and (max-width: 600px) {
  .l-fee-intro__box p {
    text-align: left;
  }
}
.l-fee-intro__box p span {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-intro__box p span {
    font-size: 1rem;
  }
}
.l-fee-intro__box p span {
  color: #5A4333;
  line-height: 1.7;
}
.l-fee-intro__box-mascot {
  position: absolute;
  bottom: 1.6rem;
  right: 1.5rem;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .l-fee-intro__box-mascot {
    width: 64px;
    height: 64px;
    bottom: 0.8rem;
    right: 0.8rem;
  }
}
.l-fee-intro__box-mascot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * 料金共通セクション
 */
.l-fee-section {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-fee-section {
    padding-bottom: 4rem;
  }
}
.l-fee-section-shop, .l-fee-section-payment {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-fee-section-shop, .l-fee-section-payment {
    padding-bottom: 8rem;
  }
}
.l-fee-section__inner .set.sec-title-h::before {
  background-image: url(../img/common/icon-set.svg);
}
.l-fee-section__inner .ticket.sec-title-h::before {
  background-image: url(../img/common/icon-ticket.svg);
}
.l-fee-section__inner .shop.sec-title-h::before {
  background-image: url(../img/common/icon-shop.svg);
}
.l-fee-section__inner .payment.sec-title-h::before {
  background-image: url(../img/common/icon-payment.svg);
}
.l-fee-section__note {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-section__note {
    font-size: 1rem;
  }
}
.l-fee-section__note {
  color: #8D7B6D;
  text-align: right;
  padding-top: 0.8rem;
}

/*
 * 料金テーブルセクション
 */
.l-fee-table {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 2.4rem 3.2rem;
  background-color: #FBF8F3;
}
@media screen and (max-width: 600px) {
  .l-fee-table {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.4rem 1.6rem;
  }
}
.l-fee-table .sec-title-h {
  width: 300px;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 960px) {
  .l-fee-table .sec-title-h {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .l-fee-table .sec-title-h {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.l-fee-table__wrap {
  width: calc(100% - 4rem - 300px);
}
@media screen and (max-width: 960px) {
  .l-fee-table__wrap {
    width: calc(100% - 4rem - 240px);
  }
}
@media screen and (max-width: 600px) {
  .l-fee-table__wrap {
    width: 100%;
  }
}
.l-fee-table__list li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.6rem 0.8rem;
  border-bottom: 1px dashed #8D7B6D;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-table__list li {
    font-size: 1.4rem;
  }
}
.l-fee-table__list li {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .l-fee-table__list li {
    padding: 1.2rem 0.8rem;
  }
}
.l-fee-table__list li:last-of-type {
  border-bottom: none;
}
.l-fee-table__list li .price {
  width: 96px;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-table__list li .price {
    font-size: 1.4rem;
  }
}
.l-fee-table__list li .price {
  color: #B23C3C;
  text-align: right;
  line-height: 1.7;
}
.l-fee-table__list-set {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.8rem 2.4rem;
}
@media screen and (max-width: 960px) {
  .l-fee-table__list-set {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
.l-fee-table__list-set span {
  letter-spacing: 0;
}
.l-fee-table__note {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-table__note {
    font-size: 1rem;
  }
}
.l-fee-table__note {
  color: #8D7B6D;
  line-height: 1.7;
}
.l-fee-table__note.ticket {
  margin-top: -3.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-table__note.ticket {
    margin-top: -2.4rem;
  }
}

/*
 * 売店セクション
 */
.l-fee-shop {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-fee-shop {
    gap: 1.6rem;
  }
}
.l-fee-shop__wrap {
  background-color: #FBF8F3;
  padding: 2.4rem 3.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-shop__wrap {
    padding: 1.6rem;
  }
}
.l-fee-shop__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-shop__list {
    grid-template-columns: 1fr;
  }
}
.l-fee-shop__list li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0.8rem;
  border-bottom: 1px dashed #8D7B6D;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-shop__list li {
    font-size: 1.4rem;
  }
}
.l-fee-shop__list li {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .l-fee-shop__list li {
    padding: 1.2rem 0.8rem;
  }
}
.l-fee-shop__list li .price {
  width: 96px;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-shop__list li .price {
    font-size: 1.4rem;
  }
}
.l-fee-shop__list li .price {
  color: #B23C3C;
  text-align: right;
}
.l-fee-shop__note {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-shop__note {
    font-size: 1rem;
  }
}
.l-fee-shop__note {
  color: #8D7B6D;
  text-align: right;
  padding-top: 1.6rem;
}

/*
 * お支払い方法セクション
 */
.l-fee-payment {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-fee-payment {
    gap: 1.6rem;
  }
}
.l-fee-payment__content {
  background-color: #FBF8F3;
  padding: 2.4rem 3.2rem;
}
@media screen and (max-width: 600px) {
  .l-fee-payment__content {
    padding: 1.6rem;
  }
}
.l-fee-payment__content p {
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-fee-payment__content p {
    font-size: 1.4rem;
  }
}

/*
 * こうしんの湯について
 */
.l-company-about {
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 18.4rem;
}
@media screen and (max-width: 600px) {
  .l-company-about {
    padding-top: 4.8rem;
    padding-bottom: 8rem;
  }
}
.l-company-about__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  gap: 14.4rem;
}
@media screen and (max-width: 600px) {
  .l-company-about__inner {
    gap: 6rem;
  }
}
.l-company-about__block {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .l-company-about__block {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
  }
}
.l-company-about__block-reverse .l-company-about__media {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .l-company-about__block-reverse .l-company-about__media {
    margin-right: 0;
  }
}
.l-company-about__block-reverse .l-company-about__content {
  right: auto;
  bottom: 0;
  left: 0;
  padding: 4.8rem 4.8rem 4.8rem 12rem;
}
@media screen and (max-width: 960px) {
  .l-company-about__block-reverse .l-company-about__content {
    position: relative;
    width: calc(100% - 3.2rem);
    margin-top: -2.4rem;
    margin-bottom: 0;
    margin-inline: auto;
    padding: 4.8rem 4rem;
  }
}
@media screen and (max-width: 600px) {
  .l-company-about__block-reverse .l-company-about__content {
    padding: 3.2rem 2.4rem;
  }
}
.l-company-about__block-reverse .l-company-about__content-inner {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .l-company-about__block-reverse .l-company-about__content-inner {
    margin-inline: auto;
  }
}
.l-company-about__block-title {
  position: absolute;
  top: 8rem;
  left: calc((100% - 1040px) / 2);
  z-index: 3;
}
@media screen and (max-width: 1280px) {
  .l-company-about__block-title {
    top: 10%;
    left: 10%;
    transform: none;
  }
}
@media screen and (max-width: 960px) {
  .l-company-about__block-title {
    top: 25%;
    left: 50%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    width: 100%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .l-company-about__block-title {
    top: 17.5%;
  }
}
@media screen and (max-width: 480px) {
  .l-company-about__block-title {
    top: 12.5%;
  }
}
.l-company-about__block-title .sec-title {
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .l-company-about__block-title .sec-title {
    flex-direction: column;
    writing-mode: horizontal-tb;
  }
}
.l-company-about__block-title .sec-title::before {
  background-image: url(../img/common/icon-ofuro-wh.svg);
}
.l-company-about__block-title .sec-title .eng {
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .l-company-about__block-title .sec-title .eng {
    margin-top: 0;
  }
}
.l-company-about__media {
  position: relative;
  width: 70.3125%;
  aspect-ratio: 9/6;
}
@media screen and (max-width: 960px) {
  .l-company-about__media {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    aspect-ratio: 375/250;
  }
}
.l-company-about__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-company-about__content {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 70.3125%;
  margin-bottom: -8rem;
  margin-left: auto;
  padding: 4.8rem 12rem 4.8rem 4.8rem;
  background-color: #FBF8F3;
}
@media screen and (max-width: 960px) {
  .l-company-about__content {
    position: relative;
    width: calc(100% - 3.2rem);
    margin-top: -2.4rem;
    margin-bottom: 0;
    margin-inline: auto;
    padding: 4.8rem 4rem;
  }
}
@media screen and (max-width: 600px) {
  .l-company-about__content {
    padding: 3.2rem 2.4rem;
  }
}
.l-company-about__content-inner {
  width: 100%;
  max-width: 780px;
}
@media screen and (max-width: 960px) {
  .l-company-about__content-inner {
    margin-inline: auto;
  }
}
.l-company-about__content-inner h3 {
  color: #B23C3C;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .l-company-about__content-inner h3 {
    font-size: 1.8rem;
  }
}
.l-company-about__content-inner h3 {
  line-height: 1.2;
  margin-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  .l-company-about__content-inner h3 {
    margin-bottom: 2.4rem;
  }
}
.l-company-about__content-inner p {
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-company-about__content-inner p {
    font-size: 1.4rem;
  }
}
.l-company-about__content-inner p {
  line-height: 1.7;
}
.l-company-about__content-inner p + p {
  margin-top: 1.6rem;
}
.l-company-about__more {
  margin-top: 2.4rem;
}

/*
 * 代表挨拶セクション
 */
.l-company-message {
  position: relative;
  padding: 10.4rem 0;
  background-image: url(../img/common/bg-wave-right.webp);
  background-position: center right;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .l-company-message {
    padding: 8rem 0;
  }
}
.l-company-message__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 4rem 6.4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .l-company-message__inner {
    flex-direction: column;
  }
}
.l-company-message__media {
  width: 400px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .l-company-message__media {
    width: calc(100% - 3.2rem);
    height: auto;
    margin-inline: auto;
  }
}
.l-company-message__media img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-company-message__title {
  width: 100%;
  margin-bottom: 2.4rem;
}
.l-company-message__content {
  width: calc(61.53% - 6.4rem);
}
@media screen and (max-width: 600px) {
  .l-company-message__content {
    width: 100%;
  }
}
.l-company-message__content p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-company-message__content p {
    font-size: 1.4rem;
  }
}
.l-company-message__content p {
  line-height: 1.7;
  text-align: justify;
}
.l-company-message__sign {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 2.4rem;
}
.l-company-message__sign .position {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .l-company-message__sign .position {
    font-size: 1rem;
  }
}
.l-company-message__sign .position {
  line-height: 1.7;
}
.l-company-message__sign .name {
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-company-message__sign .name {
    font-size: 1.4rem;
  }
}
.l-company-message__sign .name {
  line-height: 1.7;
}

/*
 * 会社概要セクション
 */
.l-company-guide {
  padding: 10.4rem 0;
}
@media screen and (max-width: 600px) {
  .l-company-guide {
    padding: 8rem 0;
  }
}
.l-company-guide__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 600px) {
  .l-company-guide__inner {
    gap: 3.2rem;
  }
}
.l-company-guide__title img {
  margin-inline: auto;
  margin-bottom: 0.8rem;
}
.l-company-guide__tbl {
  background-color: #FBF8F3;
  width: 100%;
  padding: 2.4rem 3.2rem;
}
@media screen and (max-width: 600px) {
  .l-company-guide__tbl {
    padding: 2.4rem 1.6rem;
  }
}
.l-company-guide__tbl table {
  width: 100%;
  border-collapse: collapse;
}
.l-company-guide__tbl table th {
  width: 254px;
  padding: 2rem 1.6rem;
  border-bottom: 1px dashed #8D7B6D;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-company-guide__tbl table th {
    font-size: 1.4rem;
  }
}
.l-company-guide__tbl table th {
  font-weight: 500;
  color: #8D7B6D;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  .l-company-guide__tbl table th {
    display: block;
    width: 100%;
    padding: 1.6rem 0.8rem 0;
    border-bottom: none;
  }
}
.l-company-guide__tbl table td {
  padding: 2rem 1.6rem;
  border-bottom: 1px dashed #8D7B6D;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-company-guide__tbl table td {
    font-size: 1.4rem;
  }
}
.l-company-guide__tbl table td {
  font-weight: 500;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  .l-company-guide__tbl table td {
    display: block;
    width: 100%;
    padding: 0.4rem 0.8rem 1.6rem;
  }
}
.l-company-guide__tbl table tr:last-child th,
.l-company-guide__tbl table tr:last-child td {
  border-bottom: none;
}
.l-company-guide__tbl table .map-link {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  color: #222222;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .l-company-guide__tbl table .map-link {
    font-size: 1.4rem;
  }
}
.l-company-guide__tbl table .map-link {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.l-company-guide__tbl table .map-link:hover {
  opacity: 0.7;
}
.l-company-guide__tbl table .map-link img {
  width: 16px;
  height: 16px;
}

/*
 * イントロセクション
 */
.l-contact-intro {
  padding-top: 10.4rem;
}
@media screen and (max-width: 600px) {
  .l-contact-intro {
    padding-top: 4.8rem;
  }
}
.l-contact-intro__box {
  position: relative;
  border: 1px solid #5A4333;
  background-color: #FBF8F3;
  width: 100%;
  padding: 3.2rem 2.4rem;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__box {
    padding: 3.2rem 1.6rem;
  }
}
.l-contact-intro__box p {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__box p {
    font-size: 1.6rem;
  }
}
.l-contact-intro__box p {
  text-align: center;
  color: #5A4333;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__box p {
    text-align: left;
  }
}
.l-contact-intro__box p.warning {
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__box p.warning {
    text-align: center;
  }
}
.l-contact-intro__box p span {
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__box p span {
    font-size: 1.2rem;
  }
}
.l-contact-intro__box p span {
  color: #5A4333;
}
.l-contact-intro__box-mascot {
  position: absolute;
  bottom: 1.6rem;
  right: 1.5rem;
  width: 95px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__box-mascot {
    width: 56px;
    height: 71px;
    top: -1.6rem;
    bottom: auto;
  }
}
.l-contact-intro__box-mascot img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-contact-intro__tel {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.6rem auto;
  text-align: right;
}
.l-contact-intro__tel-label {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.5em;
  margin: 0 0 0 auto;
  padding-right: 2rem;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__tel-label {
    letter-spacing: 0.05em;
    padding-right: 1.2rem;
  }
}
.l-contact-intro__tel a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #B23C3C;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .l-contact-intro__tel a {
    font-size: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .l-contact-intro__tel a {
    font-size: 2.8rem;
  }
}
.l-contact-intro__tel a i {
  font-size: 2.8rem;
}
@media screen and (max-width: 600px) {
  .l-contact-intro__tel a i {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */