@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Shippori Mincho", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(39, 39, 39, 0.7);
  transition: background-color 0.5s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 19px 0;
  position: relative;
}

.header__logo {
  width: 300px;
  height: 100%;
  position: relative;
  z-index: 1001;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 240px;
    height: 52px;
  }
}

.header__right {
  background-color: #272727;
  padding: 10px 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  position: relative;
  z-index: 1001;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.header__right:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.header__yoyaku-top {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: white;
}

.header__yoyaku-bottom {
  font-size: 25px;
  letter-spacing: 0.05em;
  color: white;
}

.header-nav {
  display: flex;
  align-items: center;
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
}
@media screen and (max-width: 630px) {
  .header-nav {
    display: none !important;
  }
}

.header-nav.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.header-nav__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-nav__lists {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.header-nav__item {
  position: relative;
}

.header-nav__link {
  display: inline-block;
  position: relative;
  perspective: 800px;
  transform-style: preserve-3d;
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: all 0.4s ease;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .header-nav__link {
    font-size: 14px;
  }
}
.header-nav__link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.header-nav__link:hover::after {
  width: 100%;
}
.header-nav__link .text-jp {
  display: inline-block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-origin: top center;
  transition: transform 0.4s ease;
  z-index: 1;
}
.header-nav__link::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotateX(-90deg);
  width: auto;
  white-space: nowrap;
  display: inline-block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-origin: bottom center;
  transition: transform 0.4s ease;
  z-index: 2;
}
.header-nav__link:hover .text-jp {
  transform: rotateX(90deg);
}
.header-nav__link:hover::before {
  transform: translateX(-50%) rotateX(0deg);
}

.header-nav__item.current-menu-item .header-nav__link,
.header-nav__item.current-page-ancestor .header-nav__link {
  font-weight: 600;
}
.header-nav__item.current-menu-item .header-nav__link::after,
.header-nav__item.current-page-ancestor .header-nav__link::after {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
}

.header.scrolled {
  background-color: rgba(39, 39, 39, 0.98);
}
.header.scrolled .header__logo {
  transform: scale(0.85);
  transform-origin: left center;
}

.header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.header.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(74, 57, 47, 0.85) 0%, rgba(39, 39, 39, 0.9) 50%, rgba(74, 57, 47, 0.85) 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 4000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}
.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-animation: fade-in 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: fade-in 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  max-width: 380px;
  height: 100vh;
  z-index: 5000;
  background: linear-gradient(180deg, rgba(245, 242, 235, 0.98) 0%, rgba(232, 226, 214, 0.96) 50%, rgba(245, 242, 235, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  visibility: visible;
  display: block;
  transition: right 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  box-shadow: -12px 0 40px rgba(74, 57, 47, 0.15), -4px 0 20px rgba(74, 57, 47, 0.1), inset 1px 0 0 rgba(255, 255, 255, 0.2);
}
.drawer-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(185, 147, 91, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(155, 126, 89, 0.05) 0%, transparent 50%), linear-gradient(45deg, transparent 49%, rgba(185, 147, 91, 0.01) 50%, transparent 51%);
  pointer-events: none;
  border-radius: inherit;
}
.drawer-menu::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(185, 147, 91, 0.3) 20%, rgba(185, 147, 91, 0.6) 50%, rgba(185, 147, 91, 0.3) 80%, transparent 100%);
  box-shadow: 0 1px 2px rgba(185, 147, 91, 0.1);
}

@-webkit-keyframes slide-in-right {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

@keyframes slide-in-right {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}
.drawer-menu.is-visible {
  -webkit-animation: slide-in-right 0.5s ease forwards;
          animation: slide-in-right 0.5s ease forwards;
}

.drawer-menu.is-shown {
  display: block;
}

.drawer-menu__inner {
  position: relative;
  padding: 80px 40px 40px;
  height: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .drawer-menu__inner {
    padding: 70px 32px 30px;
  }
}

.drawer-header {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}

.drawer-menu__lists {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 4px;
  flex: 1;
}

.drawer-menu__item {
  position: relative;
  width: 100%;
  margin-bottom: 2px;
  opacity: 0;
  transform: translateX(30px);
  -webkit-animation: slideInStagger 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: slideInStagger 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.drawer-menu__item:nth-child(1) {
  -webkit-animation-delay: calc(0.1s + 1 * 0.08s);
          animation-delay: calc(0.1s + 1 * 0.08s);
}
.drawer-menu__item:nth-child(2) {
  -webkit-animation-delay: calc(0.1s + 2 * 0.08s);
          animation-delay: calc(0.1s + 2 * 0.08s);
}
.drawer-menu__item:nth-child(3) {
  -webkit-animation-delay: calc(0.1s + 3 * 0.08s);
          animation-delay: calc(0.1s + 3 * 0.08s);
}
.drawer-menu__item:nth-child(4) {
  -webkit-animation-delay: calc(0.1s + 4 * 0.08s);
          animation-delay: calc(0.1s + 4 * 0.08s);
}
.drawer-menu__item:nth-child(5) {
  -webkit-animation-delay: calc(0.1s + 5 * 0.08s);
          animation-delay: calc(0.1s + 5 * 0.08s);
}
.drawer-menu__item:nth-child(6) {
  -webkit-animation-delay: calc(0.1s + 6 * 0.08s);
          animation-delay: calc(0.1s + 6 * 0.08s);
}
.drawer-menu__item:nth-child(7) {
  -webkit-animation-delay: calc(0.1s + 7 * 0.08s);
          animation-delay: calc(0.1s + 7 * 0.08s);
}
.drawer-menu__item:nth-child(8) {
  -webkit-animation-delay: calc(0.1s + 8 * 0.08s);
          animation-delay: calc(0.1s + 8 * 0.08s);
}
.drawer-menu__item:nth-child(9) {
  -webkit-animation-delay: calc(0.1s + 9 * 0.08s);
          animation-delay: calc(0.1s + 9 * 0.08s);
}
.drawer-menu__item:nth-child(10) {
  -webkit-animation-delay: calc(0.1s + 10 * 0.08s);
          animation-delay: calc(0.1s + 10 * 0.08s);
}
.drawer-menu__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(185, 147, 91, 0.15) 20%, rgba(185, 147, 91, 0.3) 50%, rgba(185, 147, 91, 0.15) 80%, transparent 100%);
}

@-webkit-keyframes slideInStagger {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInStagger {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.drawer-menu__link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: #4A392F;
  text-decoration: none;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-weight: 400;
  position: relative;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}
.drawer-menu__link i {
  font-size: 18px;
  width: 26px;
  margin-right: 18px;
  color: #B9935B;
  transition: all 0.3s ease;
}
.drawer-menu__link .drawer-menu__text-en {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(74, 57, 47, 0.6);
  margin-bottom: 3px;
  transition: all 0.3s ease;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.drawer-menu__link .drawer-menu__text-jp {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #4A392F;
  transition: all 0.3s ease;
}
.drawer-menu__link .drawer-menu__text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.drawer-menu__link:hover {
  background: linear-gradient(135deg, rgba(185, 147, 91, 0.08) 0%, rgba(185, 147, 91, 0.12) 50%, rgba(185, 147, 91, 0.08) 100%);
  transform: translateX(8px) scale(1.02);
  box-shadow: 4px 4px 12px rgba(185, 147, 91, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.2);
}
.drawer-menu__link:hover i {
  color: #9e7943;
  transform: scale(1.1);
}
.drawer-menu__link:hover .drawer-menu__text-en {
  color: rgba(74, 57, 47, 0.8);
  transform: translateY(-1px);
}
.drawer-menu__link:hover .drawer-menu__text-jp {
  color: #3a2d25;
  transform: translateY(1px);
}
.drawer-menu__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(185, 147, 91, 0.6) 50%, transparent 100%);
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 1px;
}
.drawer-menu__link:hover::before {
  height: 100%;
}

.drawer-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(245, 242, 235, 0.8) 0%, rgba(232, 226, 214, 0.9) 100%);
  border: 1px solid rgba(185, 147, 91, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 4600;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(74, 57, 47, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.drawer-close:hover {
  background: linear-gradient(135deg, rgba(232, 226, 214, 0.9) 0%, rgba(216, 204, 186, 0.95) 100%);
  transform: scale(1.05) rotate(90deg);
  box-shadow: 0 6px 16px rgba(74, 57, 47, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(185, 147, 91, 0.4);
}
.drawer-close:active {
  transform: scale(0.98) rotate(90deg);
}

.drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(74, 57, 47, 0.8) 20%, rgba(74, 57, 47, 0.9) 50%, rgba(74, 57, 47, 0.8) 80%, transparent 100%);
  transform-origin: center;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.drawer-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-footer {
  margin-top: auto;
  padding: 16px 20px 16px;
  border-top: 1px solid rgba(185, 147, 91, 0.15);
  position: relative;
}
.drawer-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(185, 147, 91, 0.4) 50%, transparent 100%);
}

.drawer-cta {
  display: block;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(185, 147, 91, 0.9) 0%, rgba(155, 126, 89, 0.95) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(185, 147, 91, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.drawer-cta:hover {
  background: linear-gradient(135deg, rgb(185, 147, 91) 0%, rgb(155, 126, 89) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 147, 91, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.drawer-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(185, 147, 91, 0.1);
  color: rgba(74, 57, 47, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(185, 147, 91, 0.2);
}
.drawer-social__icon i {
  font-size: 14px;
}
.drawer-social__icon:hover {
  background: rgba(185, 147, 91, 0.2);
  color: rgba(74, 57, 47, 0.9);
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(185, 147, 91, 0.4);
  box-shadow: 0 4px 12px rgba(185, 147, 91, 0.15);
}

.drawer-menu {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 147, 91, 0.3) transparent;
}

.drawer-menu::-webkit-scrollbar {
  width: 6px;
}

.drawer-menu::-webkit-scrollbar-track {
  background: transparent;
}

.drawer-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(185, 147, 91, 0.2) 0%, rgba(185, 147, 91, 0.4) 50%, rgba(185, 147, 91, 0.2) 100%);
  border-radius: 3px;
  border: 1px solid rgba(185, 147, 91, 0.1);
}

.drawer-menu::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(185, 147, 91, 0.3) 0%, rgba(185, 147, 91, 0.5) 50%, rgba(185, 147, 91, 0.3) 100%);
}

@media screen and (max-width: 375px) {
  .drawer-menu {
    width: 90vw;
    max-width: 320px;
  }
  .drawer-menu::after {
    left: 24px;
    right: 24px;
  }
  .drawer-menu__inner {
    padding: 60px 24px 30px;
  }
  .drawer-header {
    margin-bottom: 16px;
  }
  .drawer-menu__link {
    padding: 12px 16px;
  }
  .drawer-menu__link i {
    font-size: 15px;
    width: 20px;
    margin-right: 12px;
  }
  .drawer-menu__link .drawer-menu__text-en {
    font-size: 12px;
  }
  .drawer-menu__link .drawer-menu__text-jp {
    font-size: 15px;
  }
  .drawer-close {
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
  }
  .drawer-close span {
    width: 14px;
    height: 1px;
  }
  .drawer-footer {
    padding: 20px 16px 16px;
  }
  .drawer-cta {
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.mv {
  width: 100%;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0;
  left: 0;
}

.top__mv-img {
  width: 100%;
  height: 80vh;
  position: relative;
}

@media screen and (max-width: 630px) {
  .top__mv-img {
    height: 615px;
  }
}
.top__mv-image {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title-wrap {
  position: absolute;
  top: 60%;
  left: 20%;
  transform: translate(-20%, -60%);
  z-index: 2;
}

.mv__title {
  font-size: 30px;
  color: white;
  line-height: 2.14;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
}

.mv__title-wrap-sp {
  position: absolute;
  top: 55%;
  left: 8%;
  transform: translate(-8%, -55%);
  z-index: 2;
}

.mv__title-sp {
  font-size: 28px;
  color: white;
  line-height: 2.14;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
}

.mv__top-text {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -7%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv__otoiawase {
  color: white;
  letter-spacing: 0.05em;
  font-size: 14px;
  padding-bottom: 8px;
}

.mv__tel {
  color: white;
  font-size: 25px;
  letter-spacing: 0.05em;
}

.mv__page-btn-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}

.mv__page-btn-sub-box {
  padding-bottom: 20px;
  padding-left: 600px;
}

.mv__page-btn {
  border-left: 2px solid #fff;
  /*線の設定*/
  padding: 2px 30px;
  /*余白の設定*/
  color: white;
  font-size: 17px;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.mv__page-btn-sub {
  color: white;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding-left: 30px;
}

.mv__page-btn:last-child {
  border-right: 2px solid #fff;
  /*線の設定*/
  padding: 2px 30px;
  /*余白の設定*/
}

.mv__black-box {
  background-color: black;
}

.mv__black-box {
  background-color: #000;
  position: relative;
}

.mv__black-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  z-index: 1;
}

.mv__black-box #search_489ban {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
}

@media screen and (max-width: 768px) {
  .mv__black-box #search_489ban {
    padding: 20px 15px;
  }
}
.mv__black-box #search_489ban script {
  display: none;
}

.mv__black-box #search_489ban form[name=searchForm489ban] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

@media screen and (max-width: 768px) {
  .mv__black-box #search_489ban form[name=searchForm489ban] {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.mv__black-box #search_489ban dl {
  margin: 0;
  flex: 0 0 auto;
}

.mv__black-box #search_489ban dl dt {
  font-size: 14px;
  color: white;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.mv__black-box #search_489ban dl dt label {
  position: relative;
  padding-left: 18px;
}

.mv__black-box #search_489ban dl dt label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(218, 165, 32, 0.6), rgba(255, 215, 0, 0.4));
}

.mv__black-box #search_489ban dl dd {
  margin: 0;
  position: relative;
}

.mv__black-box #search_489ban .date_489ban {
  min-width: 250px;
  flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .mv__black-box #search_489ban .date_489ban {
    width: 100%;
    max-width: 300px;
  }
}
.mv__black-box #search_489ban .date_489ban input[type=date] {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(218, 165, 32, 0.4);
  border-radius: 2px;
  padding: 12px 15px;
  font-size: 14px;
  width: 100%;
  color: #333;
  font-family: inherit;
  height: 44px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.mv__black-box #search_489ban .date_489ban input[type=date]:focus {
  outline: none;
  border-color: rgba(218, 165, 32, 0.8);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
  background-color: rgb(255, 255, 255);
}

.mv__black-box #search_489ban .date_489ban input[type=date]:hover {
  border-color: rgba(218, 165, 32, 0.6);
}

.mv__black-box #search_489ban .date_489ban label {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  margin-top: 10px;
  padding: 6px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mv__black-box #search_489ban .date_489ban label:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(218, 165, 32, 0.3);
}

.mv__black-box #search_489ban .date_489ban label input[type=checkbox] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #d5b05f;
  transform: scale(1.2);
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mv__black-box #search_489ban .date_489ban label input[type=checkbox]:checked {
  background-color: #d5b05f;
  border-color: #d5b05f;
}

.mv__black-box #search_489ban .date_489ban label input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.mv__black-box #search_489ban .date_489ban label input[type=checkbox]:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.15);
}

.mv__black-box #search_489ban .date_489ban label input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.4);
}

.mv__black-box #search_489ban .inbox_489ban {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media screen and (max-width: 768px) {
  .mv__black-box #search_489ban .inbox_489ban {
    width: 100%;
    max-width: 300px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.mv__black-box #search_489ban .inbox_489ban input[type=hidden] {
  display: none;
}

.mv__black-box #search_489ban .stay_489ban {
  min-width: 140px;
  flex: 0 0 auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mv__black-box #search_489ban .stay_489ban {
    width: 100%;
    max-width: 180px;
  }
}
.mv__black-box #search_489ban .stay_489ban select#numberOfNights {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(218, 165, 32, 0.4);
  border-radius: 2px;
  padding: 12px 40px 12px 15px;
  font-size: 14px;
  width: 100%;
  color: #333;
  font-family: inherit;
  height: 44px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M6 8L0 0h12L6 8z' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mv__black-box #search_489ban .stay_489ban select#numberOfNights:focus {
  outline: none;
  border-color: rgba(218, 165, 32, 0.8);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
  background-color: rgb(255, 255, 255);
}

.mv__black-box #search_489ban .stay_489ban select#numberOfNights:hover {
  border-color: rgba(218, 165, 32, 0.6);
}

.mv__black-box #search_489ban .stay_489ban select#numberOfNights option {
  padding: 8px 12px;
  background-color: #fff;
  color: #333;
}

.mv__black-box #search_489ban button[name=searchButton489ban] {
  background: linear-gradient(135deg, #d5b05f 0%, #c09a55 50%, #a58e6e 100%);
  color: #fff;
  border: none;
  padding: 13px 35px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  height: 44px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .mv__black-box #search_489ban button[name=searchButton489ban] {
    width: 100%;
    max-width: 240px;
    padding: 15px 35px;
  }
}
.mv__black-box #search_489ban button[name=searchButton489ban]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.mv__black-box #search_489ban button[name=searchButton489ban]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.mv__black-box #search_489ban button[name=searchButton489ban]:hover {
  background: linear-gradient(135deg, #cda03f 0%, #ac8640 50%, #917a5a 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.mv__black-box #search_489ban button[name=searchButton489ban]:hover::before {
  left: 100%;
}

.mv__black-box #search_489ban button[name=searchButton489ban]:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.mv__black-box #search_489ban button[name=searchButton489ban]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3), 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mv-right-wrapper {
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 34%;
  right: 70px;
  z-index: 10;
}

@media screen and (max-width: 630px) {
  .mv-right-wrapper {
    right: 10px;
  }
}
.mv-right-instagram,
.mv-right-x {
  background-color: #5d5e60;
  width: 36px;
  height: 36px;
  border-radius: 17px;
}

.mv-right-instagram {
  margin-bottom: 20px;
}

.mv-right-instagram-box,
.mv-right-x-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.mv-right-instagram-link,
.mv-right-x-link {
  width: 18px;
  height: 18px;
}

.mv-instagram-img,
.mv-x-img {
  width: 18px;
  height: 18px;
}

.mv-scrol-img {
  width: 95px;
  height: 160px;
}

.concept {
  background-image: url(../images/concept__bg-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 1440/920;
  max-height: 920px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(39, 39, 39, 0.8);
  pointer-events: none;
}

.concept .container {
  position: relative;
  z-index: 1;
}

.concept__title-area {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .concept__title-area {
    margin-bottom: 40px;
  }
}

.concept__title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.concept__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(191, 161, 74, 0.3), rgba(191, 161, 74, 0.7));
}

@media screen and (max-width: 1024px) {
  .concept__title-line {
    margin: 0 auto;
  }
}
.concept__title-circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(191, 161, 74, 0.7);
  margin-left: 8px;
}

.concept__title-number,
.concept__title-main,
.concept__title-sub {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.concept__title-number {
  font-size: 15px;
  color: #bfa14a;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 1px;
  position: relative;
}

.concept__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: rgba(191, 161, 74, 0.3);
}

@media screen and (max-width: 1024px) {
  .concept__title-number::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.concept__title-main {
  font-size: 40px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 12px;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.2;
  background: linear-gradient(to right, #2c2c2c, #bfa14a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.concept__title-sub {
  font-size: 15px;
  color: #bfa14a;
  letter-spacing: 2px;
  font-weight: 300;
}

.concept-photo__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 50vh;
}
@media screen and (max-width: 1400px) {
  .concept-photo__wrapper {
    height: 70vh;
  }
}
@media screen and (max-width: 1600px) {
  .concept-photo__wrapper {
    height: 67vh;
  }
}

.concept-photo__center {
  display: flex;
}

.concept__img1 {
  width: 12%;
  height: 19%;
  position: absolute;
  top: 27%;
  left: 6%;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept__img2 {
  width: 10%;
  height: 17%;
  position: absolute;
  left: 21%;
  top: 46%;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept__img3 {
  width: 13%;
  height: 29%;
  top: 67%;
  left: 10%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept__img4 {
  width: 17%;
  height: 37%;
  top: 36%;
  left: 33%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .concept__img4 {
    width: 40%;
    height: 64%;
    left: 10%;
    top: 43%;
  }
}

.concept__img5 {
  width: 17%;
  height: 37%;
  position: absolute;
  top: 32%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .concept__img5 {
    width: 40%;
    height: 64%;
  }
}

.concept__img6 {
  width: 12%;
  height: 25%;
  position: absolute;
  top: 17%;
  right: 9%;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept__img7 {
  width: 10%;
  height: 17%;
  top: 44%;
  right: 16%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept__img8 {
  width: 10%;
  height: 17%;
  position: absolute;
  top: 65%;
  right: 9%;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept-more {
  width: 97px;
  height: 64px;
  position: absolute;
  top: 91%;
  left: 48%;
}
@media screen and (max-width: 1024px) {
  .concept-more {
    top: 83%;
    left: 70%;
  }
}

.concept__text {
  position: absolute;
  top: 77%;
  left: 57%;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .concept__text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .concept__text {
    top: 45%;
  }
}

.concept__text-left,
.concept__text-right {
  color: white;
  font-size: 24px;
  line-height: 2.14;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-indent: -1em;
}

@media screen and (max-width: 1024px) {
  .concept__text-left,
.concept__text-right {
    font-size: 45px;
  }
}
@media screen and (max-width: 768px) {
  .concept__text-left,
.concept__text-right {
    font-size: 30px;
  }
}
.concept__text-right {
  padding-left: 40px;
}

.onsen {
  position: relative;
  background-color: #f9f9f7;
  padding: 140px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .onsen {
    padding: 70px 0;
  }
}

.onsen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  z-index: 1;
}

.onsen__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b2846f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.onsen__bg-element {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 132, 111, 0.05) 0%, rgba(178, 132, 111, 0) 70%);
  z-index: 0;
}

.onsen__bg-element::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -80%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 132, 111, 0.03) 0%, rgba(178, 132, 111, 0) 70%);
}

.onsen__luxurious-accent {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, rgba(178, 132, 111, 0), rgba(178, 132, 111, 0.3) 50%, rgba(178, 132, 111, 0));
}

.onsen__luxurious-accent::before,
.onsen__luxurious-accent::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: -3px;
  background-color: rgba(178, 132, 111, 0.15);
}

.onsen__luxurious-accent::before {
  left: 30%;
}

.onsen__luxurious-accent::after {
  left: 70%;
}

.onsen__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .onsen__inner {
    padding: 0 20px;
  }
}
.onsen__content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 80px;
}

@media screen and (max-width: 1024px) {
  .onsen__content-container {
    flex-direction: column;
    gap: 40px;
  }
}
.onsen__text-container {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .onsen__text-container {
    width: 100%;
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}
.onsen__title-area {
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .onsen__title-area {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .onsen__title-area {
    order: 1;
  }
}
.onsen__title-decoration {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.onsen__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(178, 132, 111, 0.3), rgba(178, 132, 111, 0.7));
}

@media screen and (max-width: 1024px) {
  .onsen__title-line {
    margin: 0 auto;
  }
}
.onsen__title-circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(178, 132, 111, 0.7);
  margin-left: 8px;
}

.onsen__title-number {
  font-size: 15px;
  color: #b2846f;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 1px;
  position: relative;
}

.onsen__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: rgba(178, 132, 111, 0.3);
}

@media screen and (max-width: 1024px) {
  .onsen__title-number::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.onsen__title-main {
  font-size: 40px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 12px;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.2;
  background: linear-gradient(to right, #2c2c2c, #544a47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.onsen__title-sub {
  font-size: 15px;
  color: #555;
  letter-spacing: 2px;
  font-weight: 300;
}

.onsen__description {
  max-width: 480px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .onsen__description {
    margin: 0 auto;
    order: 3;
  }
}
.onsen__text {
  font-size: 17px;
  line-height: 2;
  color: #404040;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .onsen__text {
    font-size: 16px;
    line-height: 1.9;
  }
}
.onsen__floating-kanji {
  position: absolute;
  bottom: -70px;
  right: 30px;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 120px;
  color: rgba(178, 132, 111, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .onsen__floating-kanji {
    right: auto;
    left: 10%;
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .onsen__floating-kanji {
    font-size: 80px;
  }
}
.onsen__btn-wrapper {
  margin-top: 50px;
}

.onsen__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 42px;
  background-color: transparent;
  color: #B9935B;
  border: 1px solid #B9935B;
  font-size: 15px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.onsen__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d3b7a1, #b2846f);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.onsen__btn:hover {
  color: white;
  box-shadow: 0 8px 25px rgba(178, 132, 111, 0.2);
}

.onsen__btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.onsen__btn:hover .onsen__btn-arrow {
  background-color: white;
}

.onsen__btn:hover .onsen__btn-arrow::before,
.onsen__btn:hover .onsen__btn-arrow::after {
  background-color: white;
}

.onsen__btn-text {
  margin-right: 15px;
  position: relative;
  z-index: 1;
}

.onsen__btn-arrow {
  position: relative;
  width: 22px;
  height: 1px;
  background-color: #B9935B;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.onsen__btn-arrow::before,
.onsen__btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #B9935B;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.onsen__btn-arrow::before {
  top: -3px;
  transform: rotate(45deg);
}

.onsen__btn-arrow::after {
  bottom: -3px;
  transform: rotate(-45deg);
}

.onsen__decorative-element {
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 100px;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='49.5' stroke='%23B2846F' stroke-opacity='0.2'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.7;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .onsen__decorative-element {
    bottom: -50px;
    right: 10%;
  }
}
.onsen__image-wrapper {
  width: 60%;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .onsen__image-wrapper {
    width: 90%;
    margin: 0 auto;
    order: 2;
  }
}
.onsen__image-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(178, 132, 111, 0.1);
  z-index: 1;
  pointer-events: none;
}

.onsen__image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.onsen__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.onsen__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
  filter: brightness(1.02) saturate(1.05);
}

.onsen__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' x='0.5' y='0.5' width='79' height='79' stroke='%23B2846F'/%3E%3Crect opacity='0.1' x='20.5' y='20.5' width='39' height='39' stroke='%23B2846F'/%3E%3C/svg%3E") no-repeat center/contain;
}

@media screen and (max-width: 1024px) {
  .onsen__image-accent {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
  }
}
.onsen__image-corner-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  z-index: 3;
  background-color: rgba(178, 132, 111, 0.05);
  border-radius: 50%;
}

.onsen__image-corner-accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(178, 132, 111, 0.15);
}

.onsen__geometric-elements {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}

.onsen__geo-element {
  position: absolute;
  background-color: rgba(178, 132, 111, 0.07);
}

.onsen__geo-element--1 {
  width: 40px;
  height: 1px;
  bottom: 0;
  left: 10%;
}

.onsen__geo-element--2 {
  width: 1px;
  height: 40px;
  bottom: -20px;
  left: 15%;
}

.onsen__geo-element--3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 10px;
  left: 20%;
}

.onsen__image-container:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.onsen__image-container:hover .onsen__image {
  transform: scale(1.03);
}

.onsen__image-container:hover .onsen__image-overlay {
  opacity: 1;
}

.onsen__image-container:hover .onsen__image-accent {
  transform: rotate(10deg) scale(1.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room {
  position: relative;
  background-color: #f8f8f6;
  padding: 140px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .room {
    padding: 70px 0;
  }
}

.room::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  z-index: 1;
}

.room__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c8c78' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: overlay;
}

.room__bg-element {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 140, 120, 0.04) 0%, rgba(108, 140, 120, 0) 70%);
  z-index: 0;
  filter: blur(40px);
}

.room__bg-element::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -80%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 140, 120, 0.025) 0%, rgba(108, 140, 120, 0) 70%);
  filter: blur(30px);
}

.room__luxurious-accent {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, rgba(108, 140, 120, 0), rgba(108, 140, 120, 0.25) 50%, rgba(108, 140, 120, 0));
}

.room__luxurious-accent::before,
.room__luxurious-accent::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: -3px;
  background-color: rgba(108, 140, 120, 0.12);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.room__luxurious-accent::before {
  left: 30%;
}

.room__luxurious-accent::after {
  left: 70%;
}

.room__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .room__inner {
    padding: 0 20px;
  }
}

.room__content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .room__content-container {
    flex-direction: column;
    gap: 40px;
  }
}

.room__text-container {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .room__text-container {
    width: 100%;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}

.room__title-area {
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .room__title-area {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .room__title-area {
    order: 1;
  }
}

.room__title-decoration {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.room__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(185, 147, 91, 0.3), rgba(185, 147, 91, 0.7));
}
@media screen and (max-width: 1024px) {
  .room__title-line {
    margin: 0 auto;
  }
}

.room__title-circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(185, 147, 91, 0.7);
  margin-left: 8px;
}

.room__title-number {
  font-size: 15px;
  color: #B9935B;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 1px;
  position: relative;
  opacity: 0.85;
}
.room__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: rgba(108, 140, 120, 0.3);
}
@media screen and (max-width: 1024px) {
  .room__title-number::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.room__title-main {
  font-size: 42px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 12px;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.1;
  background: linear-gradient(to right, #2c2c2c, #445a4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transform-origin: left center;
}
@media screen and (max-width: 1024px) {
  .room__title-main {
    transform-origin: center;
  }
}

.room__title-sub {
  font-size: 15px;
  color: #555;
  letter-spacing: 2.5px;
  font-weight: 300;
  opacity: 0.85;
  transform: translateY(2px);
}

.room__description {
  max-width: 480px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .room__description {
    margin: 0 auto;
    order: 3;
  }
}

.room__text {
  font-size: 17px;
  line-height: 2;
  color: #404040;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .room__text {
    font-size: 16px;
    line-height: 1.9;
  }
}

.room__floating-kanji {
  position: absolute;
  bottom: -82px;
  left: 190px;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 130px;
  color: rgba(108, 140, 120, 0.045);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 1024px) {
  .room__floating-kanji {
    left: auto;
    right: 10%;
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .room__floating-kanji {
    font-size: 80px;
  }
}

.room__btn-wrapper {
  margin-top: 50px;
}

.room__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 42px;
  background-color: transparent;
  color: #B9935B;
  border: 1px solid #B9935B;
  font-size: 15px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.room__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #B9935B, #B9935B);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.room__btn:hover {
  color: white;
  box-shadow: 0 8px 25px rgba(108, 140, 120, 0.15);
}
.room__btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.room__btn:hover .room__btn-arrow {
  background-color: white;
  transform: translateX(3px);
}
.room__btn:hover .room__btn-arrow::before, .room__btn:hover .room__btn-arrow::after {
  background-color: white;
}

.room__btn-text {
  margin-right: 15px;
  position: relative;
  z-index: 1;
}

.room__btn-arrow {
  position: relative;
  width: 22px;
  height: 1px;
  background-color: #B9935B;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}
.room__btn-arrow::before, .room__btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #B9935B;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.room__btn-arrow::before {
  top: -3px;
  transform: rotate(45deg);
}
.room__btn-arrow::after {
  bottom: -3px;
  transform: rotate(-45deg);
}

.room__decorative-element {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100px;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='49.5' stroke='%236c8c78' stroke-opacity='0.2'/%3E%3Ccircle cx='50' cy='50' r='35' stroke='%236c8c78' stroke-opacity='0.1'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.8;
  pointer-events: none;
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .room__decorative-element {
    bottom: -50px;
    left: 10%;
  }
}

.room__image-wrapper {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .room__image-wrapper {
    width: 90%;
    margin: 0 auto;
    order: 2;
  }
}

.room__image-frame {
  position: absolute;
  top: -15px;
  right: -15px;
  left: 15px;
  bottom: 15px;
  border: 1px solid rgba(108, 140, 120, 0.08);
  z-index: 1;
  pointer-events: none;
  transition: all 0.8s ease;
}

.room__image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
}
.room__image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(108, 140, 120, 0.03), rgba(108, 140, 120, 0));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.room__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.room__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
  filter: brightness(1.02) saturate(1.05) contrast(1.02);
  will-change: transform;
}

.room__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' x='0.5' y='0.5' width='79' height='79' stroke='%236c8c78'/%3E%3Crect opacity='0.1' x='20.5' y='20.5' width='39' height='39' stroke='%236c8c78'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1024px) {
  .room__image-accent {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
  }
}

.room__image-corner-accent {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  z-index: 3;
  background-color: rgba(108, 140, 120, 0.04);
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.room__image-corner-accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(108, 140, 120, 0.15);
}

.room__geometric-elements {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 100%;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}

.room__geo-element {
  position: absolute;
  background-color: rgba(108, 140, 120, 0.07);
  opacity: 0.7;
  transition: all 0.5s ease;
}
.room__geo-element--1 {
  width: 40px;
  height: 1px;
  bottom: 0;
  right: 10%;
}
.room__geo-element--2 {
  width: 1px;
  height: 40px;
  bottom: -20px;
  right: 15%;
}
.room__geo-element--3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 10px;
  right: 20%;
}

.room__image-container:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.room__image-container:hover::before {
  opacity: 1;
}
.room__image-container:hover .room__image {
  transform: scale(1.03);
}
.room__image-container:hover .room__image-overlay {
  opacity: 1;
}
.room__image-container:hover .room__image-accent {
  transform: rotate(10deg) scale(1.1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.room__image-container:hover .room__image-corner-accent {
  transform: scale(1.1);
}
.room__image-container:hover .room__image-frame {
  border-color: rgba(108, 140, 120, 0.12);
}
.room__image-container:hover .room__geo-element {
  opacity: 1;
}

.cuisine {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background-color: #f9f9f7;
}
@media screen and (max-width: 768px) {
  .cuisine {
    padding: 70px 0;
  }
}
.cuisine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  z-index: 1;
}
.cuisine__bg-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f6f0;
  z-index: -2;
}
.cuisine__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b8a576' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}
.cuisine__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.cuisine__luxurious-accent {
  position: absolute;
  top: 60px;
  right: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, rgba(187, 157, 85, 0) 0%, rgba(187, 157, 85, 0.6) 50%, rgba(187, 157, 85, 0) 100%);
}
.cuisine__luxurious-accent::before, .cuisine__luxurious-accent::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(187, 157, 85, 0.5);
  top: -2px;
}
.cuisine__luxurious-accent::before {
  right: 30%;
}
.cuisine__luxurious-accent::after {
  right: 70%;
}
.cuisine__content-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cuisine__content-container {
    flex-direction: column;
    gap: 40px;
  }
}
.cuisine__text-container {
  flex: 1;
  position: relative;
  padding: 0 30px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cuisine__text-container {
    max-width: 100%;
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}
.cuisine__title-decoration .cuisine__title-line {
  background-color: #B9935B;
}
.cuisine__title-decoration .cuisine__title-circle {
  background-color: #B9935B;
}
.cuisine__title-number {
  color: #B9935B;
}
.cuisine__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: rgba(185, 147, 91, 0.3);
}
@media screen and (max-width: 1024px) {
  .cuisine__title-number::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.cuisine__title-main {
  background: linear-gradient(90deg, #333 0%, #000 100%);
}
.cuisine__title-sub {
  color: #666;
}
@media screen and (max-width: 768px) {
  .cuisine__description {
    order: 3;
  }
}
.cuisine__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .cuisine__text {
    font-size: 15px;
    text-align: center;
  }
}
.cuisine__btn-wrapper {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .cuisine__btn-wrapper {
    text-align: center;
  }
}
.cuisine__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: transparent;
  border: 1px solid #B9935B;
  color: #B9935B;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cuisine__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9935B;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.cuisine__btn:hover {
  color: white;
}
.cuisine__btn:hover::before {
  transform: translateX(0);
}
.cuisine__btn:hover .cuisine__btn-arrow {
  transform: translateX(3px);
}
.cuisine__btn-text {
  position: relative;
  z-index: 1;
}
.cuisine__btn-arrow {
  position: relative;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  z-index: 1;
}
.cuisine__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}
.cuisine__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.cuisine__decorative-element {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(187, 157, 85, 0.3);
  transform: rotate(45deg);
  z-index: -1;
}
.cuisine__floating-kanji {
  position: absolute;
  font-size: 160px;
  color: rgba(0, 0, 0, 0.03);
  right: -60px;
  bottom: -40px;
  font-weight: 600;
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cuisine__floating-kanji {
    font-size: 120px;
    right: -30px;
    bottom: auto;
    top: -20px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine__floating-kanji {
    font-size: 90px;
  }
}
.cuisine__image-wrapper {
  position: relative;
  width: 60%;
  max-width: none;
  aspect-ratio: auto;
}
@media screen and (max-width: 1024px) {
  .cuisine__image-wrapper {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .cuisine__image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    order: 2;
  }
}
.cuisine__image-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(187, 157, 85, 0.2);
  z-index: -1;
}
.cuisine__image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cuisine__image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.cuisine__image-container:hover .cuisine__image-overlay {
  opacity: 1;
}
.cuisine__image-container:hover .cuisine__image {
  transform: scale(1.03);
}
.cuisine__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.cuisine__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
  filter: brightness(1.02) saturate(1.05);
}
.cuisine__image-accent {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.cuisine__image-corner-accent {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: #B9935B;
  opacity: 0.7;
  z-index: 2;
}
.cuisine__geometric-elements {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}
.cuisine__geo-element {
  position: absolute;
  background-color: rgba(187, 157, 85, 0.07);
}
.cuisine__geo-element--1 {
  width: 40px;
  height: 1px;
  bottom: 0;
  left: 10%;
}
.cuisine__geo-element--2 {
  width: 1px;
  height: 40px;
  bottom: -20px;
  left: 15%;
}
.cuisine__geo-element--3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 10px;
  left: 20%;
}
@media screen and (max-width: 768px) {
  .cuisine__title-area {
    order: 1;
  }
}

.facility {
  position: relative;
  background-color: #f8f6f2;
  padding: 140px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .facility {
    padding: 70px 0;
  }
}
.facility::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  z-index: 1;
}
.facility__bg-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f6f2;
  z-index: -2;
}
.facility__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c8c78' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: overlay;
}
.facility__luxurious-accent {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(108, 140, 120, 0) 0%, rgba(108, 140, 120, 0.1) 25%, rgba(108, 140, 120, 0.1) 75%, rgba(108, 140, 120, 0) 100%);
  z-index: 1;
}
.facility__luxurious-accent::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(108, 140, 120, 0.07);
}
.facility__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.facility__content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facility__content-container {
    flex-direction: column;
    gap: 40px;
  }
}
.facility__text-container {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .facility__text-container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}
.facility__title-area {
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facility__title-area {
    order: 1;
  }
}
.facility__title-decoration .facility__title-line {
  background-color: #6c8c78;
}
.facility__title-decoration .facility__title-circle {
  background-color: #6c8c78;
}
.facility__title-number {
  color: #6c8c78;
}
.facility__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: rgba(108, 140, 120, 0.3);
}
@media screen and (max-width: 1024px) {
  .facility__title-number::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.facility__title-main {
  background: linear-gradient(90deg, #333 0%, #000 100%);
}
.facility__title-sub {
  color: #666;
}
.facility__description {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .facility__description {
    order: 3;
  }
}
.facility__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .facility__text {
    font-size: 15px;
  }
}
.facility__btn-wrapper {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .facility__btn-wrapper {
    text-align: center;
  }
}
.facility__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: transparent;
  border: 1px solid #B9935B;
  color: #B9935B;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.facility__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9935B;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.facility__btn:hover {
  color: white;
}
.facility__btn:hover::before {
  transform: translateX(0);
}
.facility__btn:hover .facility__btn-arrow {
  transform: translateX(3px);
}
.facility__btn-text {
  position: relative;
  z-index: 1;
}
.facility__btn-arrow {
  position: relative;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  z-index: 1;
}
.facility__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}
.facility__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.facility__decorative-element {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(108, 140, 120, 0.3);
  transform: rotate(45deg);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .facility__decorative-element {
    bottom: auto;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}
.facility__floating-kanji {
  position: absolute;
  font-size: 160px;
  color: rgba(0, 0, 0, 0.03);
  right: 20%;
  bottom: -40px;
  font-weight: 600;
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .facility__floating-kanji {
    font-size: 120px;
    right: -30px;
    bottom: auto;
    top: -20px;
  }
}
@media screen and (max-width: 375px) {
  .facility__floating-kanji {
    font-size: 90px;
  }
}
.facility__image-wrapper {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facility__image-wrapper {
    width: 90%;
    margin: 0 auto;
    order: 2;
  }
}
.facility__image-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(108, 140, 120, 0.1);
  z-index: 1;
  pointer-events: none;
}
.facility__image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}
.facility__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.facility__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
  filter: brightness(1.02) saturate(1.05);
}
.facility__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' x='0.5' y='0.5' width='79' height='79' stroke='%236C8C78'/%3E%3Crect opacity='0.1' x='20.5' y='20.5' width='39' height='39' stroke='%236C8C78'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  .facility__image-accent {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
  }
}
.facility__image-corner-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  z-index: 3;
  background-color: rgba(108, 140, 120, 0.05);
  border-radius: 50%;
}
.facility__image-corner-accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(108, 140, 120, 0.15);
}
.facility__geometric-elements {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}
.facility__geo-element {
  position: absolute;
  background-color: rgba(108, 140, 120, 0.07);
}
.facility__geo-element--1 {
  width: 40px;
  height: 1px;
  bottom: 0;
  left: 10%;
}
.facility__geo-element--2 {
  width: 1px;
  height: 40px;
  bottom: -20px;
  left: 15%;
}
.facility__geo-element--3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 10px;
  left: 20%;
}
.facility__image-container:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.facility__image-container:hover .facility__image {
  transform: scale(1.03);
}
.facility__image-container:hover .facility__image-overlay {
  opacity: 1;
}
.facility__image-container:hover .facility__image-accent {
  transform: rotate(10deg) scale(1.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===============================
RECOMMENDED
================================ */
.recommended {
  position: relative;
  padding: 140px 0;
  background-color: #faf9f7;
  color: #2c2c2c;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recommended {
    padding: 70px 0;
  }
}
@media screen and (max-width: 375px) {
  .recommended {
    padding: 60px 0;
  }
}
.recommended__bg-element {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 46, 46, 0.04) 0%, rgba(207, 46, 46, 0) 70%);
  z-index: 0;
  filter: blur(40px);
}
.recommended__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cf2e2e' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: overlay;
}
.recommended__luxurious-accent {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, rgba(207, 46, 46, 0), rgba(207, 46, 46, 0.25) 50%, rgba(207, 46, 46, 0));
}
.recommended__luxurious-accent::before, .recommended__luxurious-accent::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: -3px;
  background-color: rgba(207, 46, 46, 0.12);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.recommended__luxurious-accent::before {
  left: 30%;
}
.recommended__luxurious-accent::after {
  left: 70%;
}
.recommended__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recommended__inner {
    padding: 0 20px;
  }
}
.recommended__title-area {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recommended__title-area {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 375px) {
  .recommended__title-area {
    margin-bottom: 50px;
  }
}
.recommended__title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.recommended__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(207, 46, 46, 0.3), rgba(207, 46, 46, 0.7));
}
.recommended__title-circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(207, 46, 46, 0.7);
  margin-left: 8px;
}
.recommended__title-number {
  font-size: 15px;
  color: #cf2e2e;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 1px;
  position: relative;
  opacity: 0.85;
}
.recommended__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background-color: rgba(207, 46, 46, 0.3);
}
.recommended__title-main {
  font-size: 42px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 12px;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.1;
  background: linear-gradient(to right, #2c2c2c, #cf2e2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .recommended__title-main {
    font-size: 36px;
  }
}
@media screen and (max-width: 375px) {
  .recommended__title-main {
    font-size: 32px;
  }
}
.recommended__title-sub {
  font-size: 15px;
  color: #555;
  letter-spacing: 2.5px;
  font-weight: 300;
  opacity: 0.85;
  transform: translateY(2px);
}
@media screen and (max-width: 375px) {
  .recommended__title-sub {
    font-size: 14px;
  }
}
.recommended__cards-container {
  position: relative;
  padding-bottom: 40px;
}
.recommended__floating-kanji {
  position: absolute;
  right: -5%;
  top: 20%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 180px;
  color: rgba(207, 46, 46, 0.06);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .recommended__floating-kanji {
    font-size: 140px;
    right: 5%;
  }
}
@media screen and (max-width: 375px) {
  .recommended__floating-kanji {
    font-size: 100px;
    right: 10%;
  }
}
.recommended__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recommended__cards {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
.recommended__card {
  flex: 1;
  max-width: 380px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
@media screen and (max-width: 768px) {
  .recommended__card {
    max-width: 450px;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .recommended__card {
    max-width: 320px;
  }
}
.recommended__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.recommended__card:hover .recommended__card-image {
  transform: scale(1.05);
}
.recommended__card:hover .recommended__card-image-overlay {
  opacity: 0.3;
}
.recommended__card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recommended__card-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recommended__card-image-container {
    height: 220px;
  }
}
.recommended__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
  filter: saturate(0.9) brightness(0.95);
}
.recommended__card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
  z-index: 1;
}
.recommended__card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(165, 142, 110, 0.8);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}
.recommended__card-content {
  padding: 25px 20px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(165, 142, 110, 0.1);
}
.recommended__card-title {
  margin-bottom: 15px;
  line-height: 1.4;
}
.recommended__card-title-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #d5c5a9;
}
@media screen and (max-width: 768px) {
  .recommended__card-title-main {
    font-size: 20px;
  }
}
.recommended__card-title-sub {
  display: block;
  font-size: 14px;
  color: #a58e6e;
  font-weight: normal;
}
.recommended__card-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 20px;
  flex-grow: 1;
}
.recommended__card-footer {
  margin-top: auto;
}
.recommended__card-btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #d5c5a9;
  padding: 8px 20px;
  border: 1px solid #a58e6e;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
}
.recommended__card-btn:hover {
  background-color: rgba(165, 142, 110, 0.2);
}
.recommended__card-btn:hover .recommended__card-btn-arrow {
  transform: translateX(3px);
}
.recommended__card-btn-text {
  margin-right: 10px;
}
.recommended__card-btn-arrow {
  position: relative;
  width: 16px;
  height: 10px;
  transition: transform 0.3s ease;
}
.recommended__card-btn-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.recommended__card-btn-arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.recommended__card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #a58e6e;
}
.recommended__decorative-elements {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.recommended__decorative-line {
  position: absolute;
  background-color: rgba(165, 142, 110, 0.1);
}
.recommended__decorative-line--1 {
  top: -150px;
  left: 10%;
  width: 1px;
  height: 300px;
  transform: rotate(35deg);
}
.recommended__decorative-line--2 {
  bottom: -100px;
  right: 15%;
  width: 1px;
  height: 200px;
  transform: rotate(-25deg);
}
.recommended__decorative-circle {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(165, 142, 110, 0.1);
}

.access {
  position: relative;
  padding: 120px 0 120px;
  background-color: #f8f8f8;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 60px 0 60px;
  }
}
.access__bg-element {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.06) 0%, rgba(200, 169, 126, 0) 70%);
  z-index: 0;
  filter: blur(40px);
}
.access__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a97e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: overlay;
}
.access__luxurious-accent {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, rgba(200, 169, 126, 0), rgba(200, 169, 126, 0.35) 50%, rgba(200, 169, 126, 0));
}
.access__luxurious-accent::before, .access__luxurious-accent::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: -3px;
  background-color: rgba(200, 169, 126, 0.18);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.access__luxurious-accent::before {
  left: 30%;
}
.access__luxurious-accent::after {
  left: 70%;
}
.access__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding: 0 20px;
  }
}
.access__floating-kanji {
  position: absolute;
  left: -5%;
  top: 30%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 180px;
  color: rgba(200, 169, 126, 0.08);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .access__floating-kanji {
    font-size: 140px;
    left: 5%;
  }
}
@media screen and (max-width: 375px) {
  .access__floating-kanji {
    font-size: 100px;
    left: 10%;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .access__map {
    height: 300px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  .access__map {
    height: 250px;
    margin-bottom: 40px;
  }
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.access__title-area {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access__title-area {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .access__title-area {
    margin-bottom: 50px;
  }
}

.accordion__container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion__item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion__item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.accordion__title {
  background: linear-gradient(135deg, #c8a97e 0%, #b8956d 100%);
  padding: 20px 30px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(200, 169, 126, 0.2);
}
.accordion__title:hover {
  background: linear-gradient(135deg, #b8956d 0%, #a88558 100%);
  box-shadow: 0 4px 12px rgba(200, 169, 126, 0.3);
  transform: translateY(-1px);
}
.accordion__title.is-open {
  background: linear-gradient(135deg, #a88558 0%, #987548 100%);
  box-shadow: 0 3px 10px rgba(200, 169, 126, 0.25);
}
.accordion__title.is-open .accordion__arrow {
  transform: rotate(90deg);
}

.accordion__title-text {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .accordion__title-text {
    font-size: 14px;
  }
}

.accordion__content {
  display: none;
  transition: max-height 0.3s ease;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  background-color: #2A2E33;
  border-top: 1px solid rgba(200, 169, 126, 0.2);
}

.accordion__img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 309px;
  margin: 0 auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.information {
  position: relative;
  padding: 120px 0 120px;
  overflow: hidden;
  background-color: #fafafa;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 60px 0 60px;
  }
}

.information__bg-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f6f3;
  z-index: -2;
}

.information__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.information__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.information__luxurious-accent {
  position: absolute;
  top: 60px;
  left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, rgba(187, 157, 85, 0) 0%, rgba(187, 157, 85, 0.6) 50%, rgba(187, 157, 85, 0) 100%);
}

.information__luxurious-accent::before,
.information__luxurious-accent::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(187, 157, 85, 0.5);
  top: -2px;
}

.information__luxurious-accent::before {
  left: 30%;
}

.information__luxurious-accent::after {
  left: 70%;
}

.information__content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.information__title-area {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information__title-area {
    margin-bottom: 40px;
  }
}

.information__title-decoration {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}

.information__title-decoration .information__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #B9935B;
  margin: 0 auto;
}

.information__title-decoration .information__title-circle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #B9935B;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.information__title-number {
  font-size: 18px;
  color: #B9935B;
  margin-bottom: 10px;
  font-weight: 500;
}

.information__title-main {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #333 0%, #000 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .information__title-main {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .information__title-main {
    font-size: 28px;
  }
}
.information__title-sub {
  font-size: 18px;
  color: #666;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .information__title-sub {
    font-size: 16px;
  }
}
.information__news-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

@media screen and (max-width: 768px) {
  .information__news-container {
    padding: 20px 15px;
  }
}
.information__floating-kanji {
  position: absolute;
  font-size: 160px;
  color: rgba(0, 0, 0, 0.03);
  right: -60px;
  top: -40px;
  font-weight: 600;
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .information__floating-kanji {
    font-size: 120px;
    right: -30px;
  }
}
@media screen and (max-width: 375px) {
  .information__floating-kanji {
    font-size: 90px;
    top: -20px;
  }
}
.information__items {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.information__item {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.information__item.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

.information__item-inner {
  display: flex;
  align-items: flex-start;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .information__item-inner {
    flex-direction: column;
  }
}

.information__item-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.information__item-date-container {
  min-width: 120px;
  margin-right: 20px;
  position: relative;
}

@media screen and (max-width: 375px) {
  .information__item-date-container {
    min-width: 90px;
    margin-right: 15px;
  }
}
.information__item-date {
  display: block;
  font-size: 14px;
  color: #B9935B;
  font-weight: 500;
  margin-bottom: 10px;
}

@media screen and (max-width: 375px) {
  .information__item-date {
    font-size: 12px;
  }
}
.information__item-line {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #B9935B;
}

.information__item-content {
  flex: 1;
}

.information__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.information__item-link:hover {
  color: #B9935B;
}

.information__item-link:hover .information__item-arrow {
  transform: translateX(3px);
}

.information__item-title {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 375px) {
  .information__item-title {
    font-size: 14px;
  }
}
.information__item-arrow {
  position: relative;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.information__item-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}

.information__item-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.information__item--empty .information__item-inner {
  justify-content: center;
  padding: 40px;
}

.information__empty-message {
  font-size: 16px;
  color: #999;
  text-align: center;
}

.information__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.information__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: transparent;
  border: 1px solid #B9935B;
  color: #B9935B;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.information__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9935B;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.information__btn:hover {
  color: white;
}

.information__btn:hover::before {
  transform: translateX(0);
}

.information__btn:hover .information__btn-arrow {
  transform: translateX(3px);
}

.information__btn-text {
  position: relative;
  z-index: 1;
}

.information__btn-arrow {
  position: relative;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.information__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}

.information__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.information__decorative-element {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(187, 157, 85, 0.3);
  transform: rotate(45deg);
  z-index: -1;
}

.information__geometric-elements {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.information__geo-element {
  position: absolute;
  background-color: rgba(187, 157, 85, 0.05);
}

.information__geo-element--1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.information__geo-element--2 {
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  bottom: 20%;
  left: 10%;
}

.information__geo-element--3 {
  width: 120px;
  height: 120px;
  border-radius: 30%;
  opacity: 0.03;
  bottom: 10%;
  right: 20%;
}

.fade-in,
.slide-up,
.slide-right,
.slide-left,
.scale-in {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.fade-in {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slide-right.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

.onsen__btn.hover-effect .onsen__btn-text {
  -webkit-animation: pulse 0.5s ease-in-out;
          animation: pulse 0.5s ease-in-out;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
body.page-loaded .fade-in {
  transition-delay: 0.3s;
}
body.page-loaded .slide-up {
  transition-delay: 0.5s;
}
body.page-loaded .slide-left, body.page-loaded .slide-right {
  transition-delay: 0.7s;
}

.onsen__title-line {
  transition-delay: 0.1s;
}

.onsen__title-number {
  transition-delay: 0.2s;
}

.onsen__title-main {
  transition-delay: 0.3s;
}

.onsen__title-sub {
  transition-delay: 0.4s;
}

.onsen__text {
  transition-delay: 0.5s;
}

.onsen__btn {
  transition-delay: 0.6s;
}

.onsen__image-container {
  transition-delay: 0.3s;
}

.onsen__decorative-element {
  transition-delay: 0.8s;
}

.onsen__bg-element {
  transition-delay: 0.2s;
}

.onsen__image-accent {
  transition-delay: 0.7s;
}

.onsen__image-container:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.onsen__image-container:hover .onsen__image-accent {
  transform: rotate(10deg) scale(1.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-effect {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.cursor-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 9999;
}
.cursor-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-effect.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.skeleton-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f6;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
.skeleton-loading.loaded {
  opacity: 0;
}
.skeleton-loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(108, 140, 120, 0.2);
  border-top-color: rgba(108, 140, 120, 0.8);
  -webkit-animation: skeleton-spin 1s infinite linear;
          animation: skeleton-spin 1s infinite linear;
}

@-webkit-keyframes skeleton-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes skeleton-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-loaded .fade-in, .page-loaded .slide-up, .page-loaded .slide-right, .page-loaded .slide-left, .page-loaded .scale-in {
  transition-delay: 0.2s;
}

/* ===============================
RECOMMENDED
================================ */
.recommended {
  position: relative;
  padding: 140px 0;
  background-color: #1a1a1a;
  color: #f5f5f5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recommended {
    padding: 70px 0;
  }
}
.recommended__bg-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(40, 40, 40, 0.8) 0%, rgb(26, 26, 26) 70%);
  z-index: 1;
}
.recommended__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h-40v-40H40v40zM20 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20zm0 0a10 10 0 1 1 0 20 10 10 0 0 1 0-20z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 2;
}
.recommended__luxurious-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #a58e6e, #d5c5a9, #a58e6e);
  z-index: 3;
}
.recommended__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  z-index: 10;
}
.recommended__title-area {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.recommended__title-decoration {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.recommended__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #8c7d64, #a58e6e);
  margin: 0 auto 8px;
}
.recommended__title-circle {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a58e6e;
  margin: 0 auto;
}
.recommended__title-number {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 15px;
  color: #a58e6e;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
}
.recommended__title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background-color: rgba(165, 142, 110, 0.3);
}
.recommended__title-main {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.2;
  background: linear-gradient(to right, #2c2c2c, #a58e6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .recommended__title-main {
    font-size: 40px;
  }
}
.recommended__title-sub {
  font-size: 15px;
  color: #a58e6e;
  letter-spacing: 2px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .recommended__title-sub {
    font-size: 16px;
  }
}
.recommended__cards-container {
  position: relative;
  padding-bottom: 40px;
}
.recommended__floating-kanji {
  position: absolute;
  right: -11%;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 180px;
  color: rgba(165, 142, 110, 0.08);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  bottom: -30%;
}
@media screen and (max-width: 768px) {
  .recommended__floating-kanji {
    font-size: 240px;
    top: -100px;
  }
}
.recommended__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recommended__cards {
    flex-direction: column;
    gap: 30px;
  }
}
.recommended__card {
  width: 100%;
  background-color: rgba(35, 35, 35, 0.7);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(165, 142, 110, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .recommended__card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.recommended__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.recommended__card:hover .recommended__card-image {
  transform: scale(1.05);
}
.recommended__card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recommended__card-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recommended__card-image-container {
    height: 220px;
  }
}
.recommended__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
  filter: saturate(0.9) brightness(0.95);
}
.recommended__card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
  z-index: 1;
}
.recommended__card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(165, 142, 110, 0.8);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}
.recommended__card-content {
  padding: 25px 20px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(165, 142, 110, 0.1);
}
.recommended__card-title {
  margin-bottom: 15px;
  line-height: 1.4;
}
.recommended__card-title-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #d5c5a9;
}
@media screen and (max-width: 768px) {
  .recommended__card-title-main {
    font-size: 20px;
  }
}
.recommended__card-title-sub {
  display: block;
  font-size: 14px;
  color: #a58e6e;
  font-weight: normal;
}
.recommended__card-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 20px;
  flex-grow: 1;
}
.recommended__card-footer {
  margin-top: auto;
}
.recommended__card-btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #d5c5a9;
  padding: 8px 20px;
  border: 1px solid #a58e6e;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
}
.recommended__card-btn:hover {
  background-color: rgba(165, 142, 110, 0.2);
}
.recommended__card-btn:hover .recommended__card-btn-arrow {
  transform: translateX(3px);
}
.recommended__card-btn-text {
  margin-right: 10px;
}
.recommended__card-btn-arrow {
  position: relative;
  width: 16px;
  height: 10px;
  transition: transform 0.3s ease;
}
.recommended__card-btn-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.recommended__card-btn-arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.recommended__card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #a58e6e;
}
.recommended__decorative-elements {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.recommended__decorative-line {
  position: absolute;
  background-color: rgba(165, 142, 110, 0.1);
}
.recommended__decorative-line--1 {
  top: -150px;
  left: 10%;
  width: 1px;
  height: 300px;
  transform: rotate(35deg);
}
.recommended__decorative-line--2 {
  bottom: -100px;
  right: 15%;
  width: 1px;
  height: 200px;
  transform: rotate(-25deg);
}
.recommended__decorative-circle {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(165, 142, 110, 0.1);
}

/* ===============================
ACCESS
================================ */
.access {
  position: relative;
  padding: 120px 0 120px;
  background-color: #1c1f26;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 60px 0 60px;
  }
}
.access__bg-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(40, 44, 52, 0.8) 0%, rgb(28, 31, 38) 70%);
  z-index: 1;
}
.access__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 2;
}
.access::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #906c39, #c09a5b, #906c39);
  z-index: 3;
}
.access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 10;
}
.access__title-area {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.access__title-decoration {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.access__title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #906c39, #c09a5b);
  margin: 0 auto 8px;
}
.access__title-circle {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #906c39;
  margin: 0 auto;
}
.access__title-number {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #a18167;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.access__title-main {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #c09a5b, #e0bf85);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .access__title-main {
    font-size: 40px;
  }
}
.access__title-sub {
  font-size: 14px;
  color: #a18167;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .access__title-sub {
    font-size: 16px;
  }
}
.access__map {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
  position: relative;
}
.access__map::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid rgba(161, 129, 103, 0.3);
  z-index: 1;
  pointer-events: none;
}
.access__map::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid rgba(192, 154, 91, 0.5);
  z-index: 2;
  pointer-events: none;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
  filter: grayscale(20%) contrast(1.1);
}

/* モバイルレイアウト調整用のスタイル */
.onsen__title-area.mobile-style, .room__title-area.mobile-style, .cuisine__title-area.mobile-style, .facility__title-area.mobile-style {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  padding: 0;
}
.onsen__image-wrapper.mobile-style, .room__image-wrapper.mobile-style, .cuisine__image-wrapper.mobile-style, .facility__image-wrapper.mobile-style {
  width: 90%;
  margin: 0 auto 40px;
}
.onsen__description.mobile-style, .room__description.mobile-style, .cuisine__description.mobile-style, .facility__description.mobile-style {
  width: 100%;
  text-align: center;
  max-width: 100%;
  padding: 0 20px;
  margin-bottom: 40px;
}
.onsen__description.mobile-style p, .room__description.mobile-style p, .cuisine__description.mobile-style p, .facility__description.mobile-style p {
  margin: 0 auto 25px;
}
.onsen__description.mobile-style .btn-wrapper, .room__description.mobile-style .btn-wrapper, .cuisine__description.mobile-style .btn-wrapper, .facility__description.mobile-style .btn-wrapper {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .onsen__content-container, .room__content-container, .cuisine__content-container, .facility__content-container {
    gap: 30px;
  }
}
/* モバイルレイアウト調整用のスタイル */
.onsen, .room, .cuisine, .facility {
  /* ボタンのスタイル調整 */
}
.onsen__content-container.mobile-layout, .room__content-container.mobile-layout, .cuisine__content-container.mobile-layout, .facility__content-container.mobile-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.onsen__text-container.mobile-hidden, .room__text-container.mobile-hidden, .cuisine__text-container.mobile-hidden, .facility__text-container.mobile-hidden {
  display: none !important;
}
.onsen__title-area.mobile-style, .room__title-area.mobile-style, .cuisine__title-area.mobile-style, .facility__title-area.mobile-style {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
  order: 1;
}
.onsen__image-wrapper.mobile-style, .room__image-wrapper.mobile-style, .cuisine__image-wrapper.mobile-style, .facility__image-wrapper.mobile-style {
  width: 90%;
  margin: 0 auto 30px;
  order: 2;
}
.onsen__description.mobile-style, .room__description.mobile-style, .cuisine__description.mobile-style, .facility__description.mobile-style {
  width: 100%;
  text-align: center;
  max-width: 100%;
  padding: 0 20px;
  margin-bottom: 30px;
  order: 3;
}
.onsen__description.mobile-style p, .room__description.mobile-style p, .cuisine__description.mobile-style p, .facility__description.mobile-style p {
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .onsen__btn-wrapper, .room__btn-wrapper, .cuisine__btn-wrapper, .facility__btn-wrapper {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .onsen__content-container, .room__content-container, .cuisine__content-container, .facility__content-container {
    gap: 30px;
  }
}
.accordion__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 8px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #a58e6e;
  transition: transform 0.3s ease;
}

.accordion__title.is-open .accordion__arrow {
  transform: rotate(90deg);
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.98) 0%, rgb(26, 26, 26) 50%, rgb(20, 20, 20) 100%);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(185, 147, 91, 0.02) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(155, 126, 89, 0.03) 0%, transparent 50%), linear-gradient(45deg, transparent 49%, rgba(185, 147, 91, 0.005) 50%, transparent 51%);
  pointer-events: none;
}

.footer__main {
  position: relative;
  padding: 80px 0 40px;
}
@media screen and (max-width: 768px) {
  .footer__main {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 375px) {
  .footer__main {
    padding: 50px 0 25px;
  }
}

.footer__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 57, 47, 0.1) 0%, transparent 50%, rgba(39, 39, 39, 0.1) 100%);
  pointer-events: none;
}

.footer__pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(185, 147, 91, 0.01) 1px, rgba(185, 147, 91, 0.01) 2px);
  pointer-events: none;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 375px) {
  .footer__inner {
    padding: 0 20px;
  }
}

.footer__logo-section {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer__logo-section {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  .footer__logo-section {
    margin-bottom: 40px;
  }
}

.footer__logo {
  margin-bottom: 20px;
}
.footer__logo-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer__logo-img:hover {
  filter: brightness(1.2) contrast(1.1);
  transform: scale(1.02);
}
@media screen and (max-width: 375px) {
  .footer__logo-img {
    max-width: 280px;
  }
}

.footer__tagline-text {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.8);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 375px) {
  .footer__tagline-text {
    font-size: 14px;
  }
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .footer__content {
    gap: 40px;
    margin-bottom: 40px;
  }
}

.footer__section-title {
  margin-bottom: 24px;
  position: relative;
}
.footer__section-title-en {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(185, 147, 91, 0.8);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.footer__section-title-jp {
  display: block;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 235, 0.9);
}
@media screen and (max-width: 375px) {
  .footer__section-title-jp {
    font-size: 16px;
  }
}
.footer__section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 147, 91, 0.6) 0%, transparent 100%);
}
@media screen and (max-width: 1024px) {
  .footer__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1024px) {
  .footer__info-section {
    order: 1;
  }
}

.footer__info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__address-text {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.8);
  letter-spacing: 0.05em;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .footer__contact-item {
    align-items: center;
  }
}
.footer__contact-label {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 12px;
  color: rgba(185, 147, 91, 0.8);
  letter-spacing: 0.1em;
}
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(245, 242, 235, 0.9);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 1024px) {
  .footer__contact-link {
    justify-content: center;
  }
}
.footer__contact-link i {
  font-size: 14px;
  color: rgba(185, 147, 91, 0.8);
  transition: all 0.3s ease;
}
.footer__contact-link:hover {
  color: rgba(185, 147, 91, 0.9);
  transform: translateX(4px);
}
.footer__contact-link:hover i {
  color: rgb(185, 147, 91);
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .footer__nav-section {
    order: 2;
  }
}

.footer__nav-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__nav-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media screen and (max-width: 375px) {
  .footer__nav-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 8px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer__nav-link {
    align-items: center;
  }
}
.footer__nav-link-en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(185, 147, 91, 0.6);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.footer__nav-link-jp {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 235, 0.8);
  transition: all 0.3s ease;
}
.footer__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 147, 91, 0.8) 0%, transparent 100%);
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 1024px) {
  .footer__nav-link::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer__nav-link:hover {
  transform: translateX(4px);
}
@media screen and (max-width: 1024px) {
  .footer__nav-link:hover {
    transform: translateY(-2px);
  }
}
.footer__nav-link:hover .footer__nav-link-en {
  color: rgba(185, 147, 91, 0.9);
}
.footer__nav-link:hover .footer__nav-link-jp {
  color: rgb(245, 242, 235);
}
.footer__nav-link:hover::before {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .footer__social-section {
    order: 3;
  }
}

.footer__social-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .footer__social-content {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(185, 147, 91, 0.2);
  border-radius: 8px;
  background: rgba(185, 147, 91, 0.05);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 1024px) {
  .footer__social-link {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
    min-width: 80px;
  }
}
.footer__social-link i {
  font-size: 18px;
  color: rgba(185, 147, 91, 0.8);
  transition: all 0.3s ease;
}
.footer__social-link span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 242, 235, 0.8);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background: rgba(185, 147, 91, 0.1);
  border-color: rgba(185, 147, 91, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 147, 91, 0.1);
}
.footer__social-link:hover i {
  color: rgb(185, 147, 91);
  transform: scale(1.1);
}
.footer__social-link:hover span {
  color: rgb(245, 242, 235);
}

.footer__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 375px) {
  .footer__decoration {
    margin-bottom: 30px;
  }
}
.footer__decoration-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent 0%, rgba(185, 147, 91, 0.3) 20%, rgba(185, 147, 91, 0.6) 50%, rgba(185, 147, 91, 0.3) 80%, transparent 100%);
}
@media screen and (max-width: 375px) {
  .footer__decoration-line {
    width: 80px;
  }
}
.footer__decoration-symbol {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(185, 147, 91, 0.4);
  margin: 0 20px;
  position: relative;
}
.footer__decoration-symbol::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(185, 147, 91, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.footer__copyright {
  background: linear-gradient(180deg, rgb(20, 20, 20) 0%, rgb(15, 15, 15) 100%);
  border-top: 1px solid rgba(185, 147, 91, 0.1);
  position: relative;
}
.footer__copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(185, 147, 91, 0.3) 50%, transparent 100%);
}
.footer__copyright-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
}
@media screen and (max-width: 768px) {
  .footer__copyright-inner {
    padding: 20px 32px;
  }
}
@media screen and (max-width: 375px) {
  .footer__copyright-inner {
    padding: 18px 20px;
  }
}
.footer__copyright-text {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 235, 0.6);
  text-align: center;
  line-height: 1.6;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer__logo-section,
.footer__info-section,
.footer__nav-section,
.footer__social-section {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.footer__logo-section:nth-child(1),
.footer__info-section:nth-child(1),
.footer__nav-section:nth-child(1),
.footer__social-section:nth-child(1) {
  -webkit-animation-delay: calc(0.1s + 1 * 0.1s);
          animation-delay: calc(0.1s + 1 * 0.1s);
}
.footer__logo-section:nth-child(2),
.footer__info-section:nth-child(2),
.footer__nav-section:nth-child(2),
.footer__social-section:nth-child(2) {
  -webkit-animation-delay: calc(0.1s + 2 * 0.1s);
          animation-delay: calc(0.1s + 2 * 0.1s);
}
.footer__logo-section:nth-child(3),
.footer__info-section:nth-child(3),
.footer__nav-section:nth-child(3),
.footer__social-section:nth-child(3) {
  -webkit-animation-delay: calc(0.1s + 3 * 0.1s);
          animation-delay: calc(0.1s + 3 * 0.1s);
}
.footer__logo-section:nth-child(4),
.footer__info-section:nth-child(4),
.footer__nav-section:nth-child(4),
.footer__social-section:nth-child(4) {
  -webkit-animation-delay: calc(0.1s + 4 * 0.1s);
          animation-delay: calc(0.1s + 4 * 0.1s);
}

.onsen-page {
  position: relative;
}

.washi-texture {
  position: relative;
}
.washi-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: -1;
}

.japanese-accent {
  position: relative;
  color: #c8a97e;
  font-weight: normal;
  font-style: italic;
}

.onsen-mv__img {
  width: 100vw;
  height: auto;
  aspect-ratio: 16/3;
  transition: transform 10s ease;
}
.onsen-mv__img:hover {
  transform: scale(1.03);
}
@media screen and (max-width: 630px) {
  .onsen-mv__img {
    aspect-ratio: 4/3;
  }
}

.onsen-main__title {
  position: relative;
  color: #303030;
  padding: 120px 0 120px;
  background-color: #f8f8f8;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .onsen-main__title {
    padding: 60px 0 60px;
  }
}
.onsen-main__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}
@media screen and (max-width: 630px) {
  .onsen-main__title {
    flex-direction: column;
  }
}

.onsen-main__title__inner {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 630px) {
  .onsen-main__title__inner {
    flex-direction: column;
  }
}

.onsen-main__title-wrapper {
  padding-right: 100px;
  position: relative;
}

.onsen-main__title-top {
  font-size: 22px;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.onsen-main__title-bottom {
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.onsen-main__title-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 630px) {
  .onsen-main__title-text {
    padding-top: 17px;
  }
}
.onsen-main__title-text span.emphasis {
  color: rgba(207, 46, 46, 0.8);
  font-weight: normal;
}

.onsen-floating-kanji {
  position: absolute;
  font-family: "Yu Mincho", "YuMincho", serif;
  color: rgba(0, 0, 0, 0.03);
  font-size: 120px;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}
.onsen-floating-kanji--right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.onsen-section__title {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .onsen-section__title {
    padding-top: 60px;
  }
}

.onsen-section__title-number {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(207, 46, 46, 0.7);
  padding-bottom: 25px;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.onsen-section__title-main {
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #333;
  padding-bottom: 25px;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.onsen-section__title-sub {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333;
  padding-bottom: 40px;
  position: relative;
}

.onsen-text-revers {
  color: #333;
  position: relative;
}
.onsen-text-revers.onsen-section__title-main {
  color: #333;
}
.onsen-text-revers.onsen-section__title-sub {
  color: #333;
}

.onsen-container {
  background-color: #000;
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .onsen-container {
    padding-bottom: 60px;
  }
}
.onsen-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}
.onsen-container .onsen-section__title-main {
  color: white;
}
.onsen-container .onsen-section__title-sub {
  color: white;
}

.onsen-btn-items {
  display: flex;
  padding-bottom: 120px;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .onsen-btn-items {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 800px) {
  .onsen-btn-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 630px) {
  .onsen-btn-items {
    gap: 20px;
    padding-bottom: 60px;
  }
}

.onsen-btn-item {
  flex: 1;
  max-width: 300px;
}
@media screen and (max-width: 800px) {
  .onsen-btn-item {
    max-width: none;
  }
}

.onsen-btn-item .btn-modern {
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.onsen-btn-item .btn-modern:hover {
  transform: translateY(-2px);
}

.onsen-btn__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.onsen-btn-item .btn-modern-wrapper {
  position: relative;
  background-color: #272727;
  padding: 15px 0 50px 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 630px) {
  .onsen-btn-item .btn-modern-wrapper {
    padding: 10px 0 25px 0;
  }
}

.onsen-btn-item .btn-modern-text {
  font-size: 16px;
}
@media screen and (max-width: 630px) {
  .onsen-btn-item .btn-modern-text {
    font-size: 12px;
  }
}

.onsen-btn-item .btn-modern-arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.onsen-btn-item .btn-modern-arrow::before, .onsen-btn-item .btn-modern-arrow::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 1px;
  height: 12px;
}
@media screen and (max-width: 375px) {
  .onsen-btn-item .btn-modern-arrow::before, .onsen-btn-item .btn-modern-arrow::after {
    height: 10px;
  }
}
.onsen-btn-item .btn-modern-arrow::before {
  transform: rotate(-45deg);
  left: -3px;
}
.onsen-btn-item .btn-modern-arrow::after {
  transform: rotate(45deg);
  right: -3px;
}

.onsen-navigation-zen-symbol {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .onsen-navigation-zen-symbol {
    font-size: 70px;
    top: 20px;
    right: 20px;
  }
}

.onsen-information {
  background-color: #f8f8f8;
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}
.onsen-information::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.onsen-information__wrapper {
  position: relative;
  z-index: 1;
}

.onsen-information__content {
  color: #333;
  padding: 60px 0;
}

.onsen-information__kaneiro-box {
  display: flex;
  padding: 40px 20px;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .onsen-information__kaneiro-box {
    flex-direction: column;
    padding: 40px 0;
  }
}

.onsen-information__kaneiro-img {
  width: 48%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}
.onsen-information__kaneiro-img:hover {
  transform: scale(1.02);
}
@media screen and (max-width: 800px) {
  .onsen-information__kaneiro-img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.onsen-information__kaneiro {
  width: 48%;
}
@media screen and (max-width: 800px) {
  .onsen-information__kaneiro {
    width: 100%;
  }
}

.onsen-information__kaneiro-title {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-family: "Yu Mincho", "YuMincho", serif;
}
@media screen and (max-width: 1024px) {
  .onsen-information__kaneiro-title {
    font-size: 22px;
  }
}

.onsen-information__kaneiro-text {
  letter-spacing: 0.05em;
  line-height: 2;
  font-size: 15px;
  font-family: "Yu Mincho", "YuMincho", serif;
}
@media screen and (max-width: 1024px) {
  .onsen-information__kaneiro-text {
    line-height: 1.8;
  }
}

.onsen-information__goannai-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .onsen-information__goannai-box {
    flex-direction: column-reverse;
  }
}

.onsen-information__goannai {
  width: 48%;
  padding: 20px;
  background-color: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 800px) {
  .onsen-information__goannai {
    width: 100%;
  }
}

.onsen-information__goannai-title {
  font-size: 22px;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #c8a97e;
  font-family: "Yu Mincho", "YuMincho", serif;
}
@media screen and (max-width: 1024px) {
  .onsen-information__goannai-title {
    font-size: 20px;
  }
}

.onsen-information__goannai-text {
  letter-spacing: 0.05em;
  line-height: 2;
  padding-bottom: 20px;
  font-size: 15px;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.onsen-information__goannai-text:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .onsen-information__goannai-text {
    line-height: 1.8;
  }
}

.onsen-information__goannai-img {
  width: 48%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}
.onsen-information__goannai-img:hover {
  transform: scale(1.02);
}
@media screen and (max-width: 800px) {
  .onsen-information__goannai-img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.onsen-information-zen-symbol {
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .onsen-information-zen-symbol {
    font-size: 70px;
    top: 20px;
    left: 20px;
  }
}

.goannai-label {
  display: inline-block;
  color: #c8a97e;
  margin-right: 10px;
  font-weight: bold;
  position: relative;
}
.goannai-label::before {
  content: "—";
  padding-right: 5px;
  font-weight: normal;
}

.notice-text {
  display: block;
  font-size: 0.9em;
  margin-top: 8px;
  padding-left: 15px;
  border-left: 2px solid rgba(207, 46, 46, 0.7);
  color: #303030;
}

.highlight-text {
  background-color: rgba(200, 169, 126, 0.1);
  padding: 10px;
  border-radius: 3px;
  border-left: 3px solid #c8a97e;
}

.onsen-yayama {
  position: relative;
  background-position: 60% 30%;
  padding-bottom: 80px;
  overflow: hidden;
}
.onsen-yayama::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.onsen-yayama__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .onsen-yayama__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

.onsen-yayama__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.onsen-yayama__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 25px;
  background-color: rgba(0, 0, 0, 0.2);
}

.onsen-bath__content {
  padding-bottom: 40px;
  margin-bottom: 40px;
  width: 76%;
}
.onsen-bath__content:last-child {
  margin-bottom: 0;
}

.onsen-bath__title {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #333;
  padding-bottom: 20px;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.onsen-bath__text {
  color: #333;
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.onsen-bath__text strong, .onsen-bath__text em {
  color: rgba(207, 46, 46, 0.8);
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .onsen-bath__text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.onsen-swiper {
  max-width: 660px;
  width: 100%;
  position: relative;
}
.onsen-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  pointer-events: none;
  z-index: 1;
}
.onsen-swiper .swiper-slide {
  overflow: hidden;
}
.onsen-swiper .swiper-slide img {
  transition: transform 0.8s ease;
}
.onsen-swiper .swiper-slide:hover img {
  transform: scale(1.03);
}

.onsen-yayama-zen-symbol {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .onsen-yayama-zen-symbol {
    font-size: 70px;
    top: 20px;
    right: 20px;
  }
}

.onsen-daiyokuzyou {
  position: relative;
  background-position: 23% 20%;
  padding-bottom: 80px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.onsen-daiyokuzyou::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.onsen-daiyokuzyou__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .onsen-daiyokuzyou__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

.onsen-daiyokuzyou__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: #333;
  width: 100%;
  position: relative;
}
.onsen-daiyokuzyou__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}
.onsen-daiyokuzyou__text-box .onsen-bath__title {
  color: #333;
}
.onsen-daiyokuzyou__text-box .onsen-bath__text {
  color: #333;
}

.onsen-daiyokuzyou-zen-symbol {
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .onsen-daiyokuzyou-zen-symbol {
    font-size: 70px;
    top: 20px;
    left: 20px;
  }
}

.onsen-kazokuburo {
  position: relative;
  background-position: 23% 20%;
  padding-bottom: 80px;
  overflow: hidden;
}
.onsen-kazokuburo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.onsen-kazokuburo__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .onsen-kazokuburo__wrapper {
    display: flex;
    flex-direction: column;
  }
}

.onsen-kazokuburo__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.onsen-kazokuburo__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}
.onsen-kazokuburo__text-box::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url("../images/japanese-pattern-small.webp");
  background-size: contain;
  opacity: 0.1;
}
@media screen and (max-width: 1024px) {
  .onsen-kazokuburo__text-box::after {
    display: none;
  }
}
.onsen-kazokuburo__text-box .onsen-bath__title {
  color: #333;
}
.onsen-kazokuburo__text-box .onsen-bath__text {
  color: #333;
}

.onsen-kazokuburo-zen-symbol {
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .onsen-kazokuburo-zen-symbol {
    font-size: 70px;
    top: 20px;
    left: 20px;
  }
}

.onsen-hatimen {
  position: relative;
  background-color: #f8f8f8;
  background-position: 23% 20%;
  padding-bottom: 80px;
  overflow: hidden;
}
.onsen-hatimen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}
.onsen-hatimen .onsen-section__title-main {
  color: #333;
}
.onsen-hatimen .onsen-section__title-sub {
  color: #333;
}

.onsen-hatimen__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .onsen-hatimen__wrapper {
    display: flex;
    flex-direction: column;
  }
}

.onsen-hatimen__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.onsen-hatimen__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}
.onsen-hatimen__text-box .onsen-bath__title {
  color: #333;
}
.onsen-hatimen__text-box .onsen-bath__text {
  color: #333;
}
.onsen-hatimen__text-box .onsen-bath__text strong, .onsen-hatimen__text-box .onsen-bath__text em {
  color: rgba(207, 46, 46, 0.8);
  font-weight: normal;
}

.onsen-hatimen__time-info {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 4px;
  width: 100%;
}

.onsen-hatimen__time-label {
  font-size: 16px;
  color: #c8a97e;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.onsen-hatimen__time-details {
  color: #333;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.time-period {
  display: inline-block;
  color: rgba(200, 169, 126, 0.9);
  font-weight: normal;
  position: relative;
}
.time-period::before {
  content: "◉";
  padding-right: 5px;
  font-size: 0.8em;
}

.onsen-hatimen-zen-symbol {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .onsen-hatimen-zen-symbol {
    font-size: 70px;
    top: 20px;
    right: 20px;
  }
}

.facility-facility__img {
  max-height: 600px;
}

.facility-main__title {
  color: #333333;
  padding: 120px 0 120px;
  background-color: #F4F1EA;
  border-bottom: 1px solid #D3CEC4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .facility-main__title {
    padding: 60px 0 60px;
  }
}
.facility-main__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.facility-main__title__inner {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 630px) {
  .facility-main__title__inner {
    flex-direction: column;
  }
}

.facility-main__title-wrapper {
  padding-right: 100px;
}

.facility-main__title-top {
  font-size: 25px;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  color: #333333;
}

.facility-main__title-bottom {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333333;
}

.facility-main__title-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #333333;
}
@media screen and (max-width: 630px) {
  .facility-main__title-text {
    padding-top: 17px;
  }
}
@media screen and (max-width: 375px) {
  .facility-main__title-text {
    font-size: 14px;
  }
}

.facility-onsenkan {
  background-color: #F8F4E6;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .facility-onsenkan {
    padding: 50px 0;
  }
}

.facility-onsenkan__wrapper {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 800px) {
  .facility-onsenkan__wrapper {
    flex-direction: column;
  }
  .facility-onsenkan__wrapper .facility-onsenkan__imgs-sp {
    margin-bottom: 30px;
  }
}

.facility-onsenkan__left {
  color: #333333;
  letter-spacing: 0.05em;
  padding: 0 30px;
  padding: 100px 30px 0px 0;
}
@media screen and (max-width: 800px) {
  .facility-onsenkan__left {
    padding-right: 0;
    padding-top: 20px;
  }
}

.facility-onsenkan__title {
  font-size: 21px;
  padding-bottom: 30px;
  color: #333333;
}

.facility-onsenkan__text {
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 3px double #888888;
  padding-bottom: 30px;
  color: #333333;
}
@media screen and (max-width: 375px) {
  .facility-onsenkan__text {
    font-size: 14px;
  }
}

.facility-onsenkan__imgs {
  display: flex;
  padding-top: 30px;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.facility-onsenkan__img-box {
  max-width: 350px;
}

.facility-onsenkan__img {
  width: 100%;
  height: 100%;
  max-width: 350px;
}

.facility-onsenkan__right {
  max-height: 500px;
}

.facility-onsenkan__img-right {
  height: 80%;
}

.facility-kouroan {
  background-color: #E8DCCA;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .facility-kouroan {
    padding: 50px 0;
  }
}

.facility-kouroan__wrapper {
  display: flex;
  align-items: end;
  flex-direction: row-reverse;
  max-width: 1400px;
}
@media screen and (max-width: 800px) {
  .facility-kouroan__wrapper {
    flex-direction: column;
  }
  .facility-kouroan__wrapper .facility-kouroan__imgs-sp {
    margin-bottom: 30px;
  }
}

.facility-kouroan__left {
  color: #333333;
  letter-spacing: 0.05em;
  padding: 0 30px;
  padding: 100px 0px 0px 30px;
  width: 60%;
}
@media screen and (max-width: 800px) {
  .facility-kouroan__left {
    padding-right: 0;
    width: 100%;
    padding-top: 20px;
  }
}

.facility-kouroan__title {
  font-size: 21px;
  padding-bottom: 30px;
  color: #333333;
}

.facility-kouroan__text {
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 3px double #888888;
  padding-bottom: 30px;
  color: #333333;
}
@media screen and (max-width: 375px) {
  .facility-kouroan__text {
    font-size: 14px;
  }
}

.facility-kouroan__imgs {
  display: flex;
  padding-top: 30px;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.facility-kouroan__img-box {
  max-width: 350px;
}

.facility-kouroan__img {
  width: 100%;
  height: 100%;
  max-width: 350px;
}

.facility-kouroan__right {
  max-height: 400px;
  max-width: 550px;
  width: 40%;
}

.facility-kouroan__img-right {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-sumibi {
  background-color: #E0DAD3;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .facility-sumibi {
    padding: 50px 0;
  }
}

.facility-sumibi__wrapper {
  display: flex;
  align-items: end;
  max-width: 1400px;
}
@media screen and (max-width: 800px) {
  .facility-sumibi__wrapper {
    flex-direction: column;
  }
  .facility-sumibi__wrapper .facility-sumibi__imgs-sp {
    margin-bottom: 30px;
  }
}

.facility-sumibi__left {
  color: #333333;
  letter-spacing: 0.05em;
  padding: 0 30px;
  padding: 100px 30px 0px 0;
  width: 60%;
}
@media screen and (max-width: 800px) {
  .facility-sumibi__left {
    padding-right: 0;
    width: 100%;
    padding-top: 20px;
  }
}

.facility-sumibi__title {
  font-size: 21px;
  padding-bottom: 30px;
  color: #333333;
}

.facility-sumibi__text {
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 3px double #888888;
  padding-bottom: 30px;
  color: #333333;
}
@media screen and (max-width: 375px) {
  .facility-sumibi__text {
    font-size: 14px;
  }
}

.facility-sumibi__imgs {
  display: flex;
  padding-top: 30px;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.facility-sumibi__img-box {
  max-width: 350px;
}

.facility-sumibi__img {
  width: 100%;
  height: 100%;
  max-width: 350px;
}

.facility-sumibi__right {
  max-height: 400px;
  max-width: 550px;
  width: 40%;
}

.facility-sumibi__img-right {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-oyado {
  background-color: #FFFAF0;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .facility-oyado {
    padding: 50px 0;
  }
}

.facility-oyado__wrapper {
  display: flex;
  align-items: end;
  max-width: 1400px;
}
@media screen and (max-width: 800px) {
  .facility-oyado__wrapper {
    flex-direction: column-reverse;
  }
  .facility-oyado__wrapper .facility-oyado__left {
    margin-top: 30px;
  }
}

.facility-oyado__left {
  color: #333333;
  letter-spacing: 0.05em;
  padding: 0 30px;
  padding: 100px 0px 0px 30px;
  width: 60%;
}
@media screen and (max-width: 800px) {
  .facility-oyado__left {
    padding-left: 0;
    width: 100%;
    padding-top: 20px;
  }
}

.facility-oyado__title {
  font-size: 21px;
  padding-bottom: 30px;
  color: #333333;
}

.facility-oyado__text {
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 3px double #888888;
  padding-bottom: 30px;
  color: #333333;
}
@media screen and (max-width: 375px) {
  .facility-oyado__text {
    font-size: 14px;
  }
}

.facility-oyado__imgs {
  display: flex;
  padding-top: 30px;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.facility-oyado__img-box {
  max-width: 350px;
}

.facility-oyado__img {
  width: 100%;
  height: 100%;
  max-width: 350px;
}

.facility-oyado__right {
  max-height: 400px;
  max-width: 550px;
  width: 40%;
}

.facility-oyado__img-right {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-zari {
  background-color: #F2EAE0;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .facility-zari {
    padding: 50px 0;
  }
}

.facility-zari__wrapper {
  display: flex;
  align-items: end;
  flex-direction: row-reverse;
  max-width: 1400px;
}
@media screen and (max-width: 800px) {
  .facility-zari__wrapper {
    flex-direction: column-reverse;
  }
  .facility-zari__wrapper .facility-zari__left {
    margin-top: 30px;
  }
}

.facility-zari__left {
  color: #333333;
  letter-spacing: 0.05em;
  padding: 0 30px;
  padding: 100px 30px 0px 0;
  width: 60%;
}
@media screen and (max-width: 800px) {
  .facility-zari__left {
    padding-left: 0;
    width: 100%;
    padding-top: 20px;
  }
}

.facility-zari__title {
  font-size: 21px;
  padding-bottom: 30px;
  color: #333333;
}

.facility-zari__text {
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 3px double #888888;
  padding-bottom: 30px;
  color: #333333;
}
@media screen and (max-width: 375px) {
  .facility-zari__text {
    font-size: 14px;
  }
}

.facility-zari__imgs {
  display: flex;
  padding-top: 30px;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.facility-zari__img-box {
  max-width: 350px;
}

.facility-zari__img {
  width: 100%;
  height: 100%;
  max-width: 350px;
}

.facility-zari__right {
  max-height: 400px;
  max-width: 550px;
  width: 40%;
}

.facility-zari__img-right {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-saron {
  background-color: #F5F0E8;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .facility-saron {
    padding: 50px 0;
  }
}

.facility-saron__wrapper {
  display: flex;
  max-width: 1400px;
}
@media screen and (max-width: 800px) {
  .facility-saron__wrapper {
    flex-direction: column-reverse;
  }
  .facility-saron__wrapper .facility-saron__right {
    margin-bottom: 30px;
  }
}

.facility-saron__left {
  color: #333333;
  letter-spacing: 0.05em;
  padding: 0 30px;
  padding: 100px 0px 50px 30px;
  width: 60%;
}
@media screen and (max-width: 800px) {
  .facility-saron__left {
    padding-left: 0;
    width: 100%;
    padding-top: 20px;
  }
}

.facility-saron__title {
  font-size: 21px;
  padding-bottom: 30px;
  color: #333333;
}

.facility-saron__text {
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 3px double #888888;
  padding-bottom: 30px;
  color: #333333;
}
@media screen and (max-width: 375px) {
  .facility-saron__text {
    font-size: 14px;
  }
}

.facility-saron__right {
  max-height: 400px;
  max-width: 550px;
  width: 40%;
}
@media screen and (max-width: 800px) {
  .facility-saron__right {
    width: 100%;
    max-width: none;
  }
}

.facility-saron__img-right {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-saron__text__item th,
.facility-saron__text__item td {
  color: #333333;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.table th,
.table td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
}
.table th {
  background-color: #f5f5f5;
  font-weight: bold;
}
.table tr:nth-child(even) {
  background-color: #fafafa;
}

.q-a-q-a__img {
  max-height: 600px;
}

.q-a__title {
  padding: 20px 0px;
  background-color: #1a1a2e; /* 和モダンな雰囲気の深い藍色 */
}

.q-a__title-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.q-a__title-text {
  color: white;
  letter-spacing: 0.05em;
  font-size: 22px;
  padding-bottom: 30px;
}
@media screen and (max-width: 630px) {
  .q-a__title-text {
    padding-bottom: 40px;
  }
}

.q-a__title-btns,
.q-a__title-btns-sp {
  text-align: center;
}

.q-a__title-btn,
.q-a__title-btn-sp {
  color: white;
  letter-spacing: 0.05em;
  font-size: 16px;
  border-bottom: solid white 1px;
  text-align: center;
  margin: 0px 15px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .q-a__title-btn,
.q-a__title-btn-sp {
    border-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  .q-a__title-btn-sp {
    font-size: 23px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 375px) {
  .q-a__title-btn-sp {
    font-size: 20px;
  }
}

.q-a__yoyaku,
.q-a__service,
.q-a__syokuzi,
.q-a__onsen,
.q-a__sonota,
.q-a__sisetu {
  background-color: #1a1a2e; /* 和モダンな雰囲気の深い藍色 */
  padding: 120px 0 120px;
}
@media screen and (max-width: 768px) {
  .q-a__yoyaku,
.q-a__service,
.q-a__syokuzi,
.q-a__onsen,
.q-a__sonota,
.q-a__sisetu {
    padding: 60px 0 60px;
  }
}

.q-a__yoyaku-title,
.q-a__sisetu-title,
.q-a__syokuzi-title,
.q-a__onsen-title,
.q-a__sonota-title,
.q-a__service-title {
  font-size: 16px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
  color: white;
}

.q-a__yoyaku-box,
.q-a__sisetu-box,
.q-a__syokuzi-box,
.q-a__onsen-box,
.q-a__sonota-box,
.q-a__service-box {
  padding: 30px 0;
  border-bottom: solid 1px white;
}

.q-a__yoyaku-top,
.q-a__sisetu-top,
.q-a__syokuzi-top,
.q-a__onsen-top,
.q-a__sonota-top,
.q-a__service-top {
  display: flex;
  align-items: baseline;
}

.q-a__yoyaku-q,
.q-a__sisetu-q,
.q-a__syokuzi-q,
.q-a__onsen-q,
.q-a__sonota-q,
.q-a__service-q {
  font-size: 25px;
  color: white;
  margin-right: 20px;
}

.q-a__yoyaku-q-text,
.q-a__sisetu-q-text,
.q-a__syokuzi-q-text,
.q-a__onsen-q-text,
.q-a__sonota-q-text,
.q-a__service-q-text {
  letter-spacing: 0.05em;
  color: white;
  font-size: 16px;
  padding-bottom: 30px;
}

.q-a__yoyaku-bottom,
.q-a__sisetu-bottom,
.q-a__syokuzi-bottom,
.q-a__onsen-bottom,
.q-a__sonota-bottom,
.q-a__service-bottom {
  display: flex;
}

.q-a__yoyaku-a,
.q-a__sisetu-a,
.q-a__syokuzi-a,
.q-a__onsen-a,
.q-a__sonota-a,
.q-a__service-a {
  font-size: 25px;
  color: red;
  margin-right: 20px;
}

.q-a__yoyaku-a-text,
.q-a__sisetu-a-text,
.q-a__syokuzi-a-text,
.q-a__onsen-a-text,
.q-a__sonota-a-text,
.q-a__service-a-text {
  letter-spacing: 0.05em;
  color: white;
  line-height: 1.7;
  font-size: 16px;
}

.q-a__yoyaku-a-text-item,
.q-a__sisetu-a-text-item,
.q-a__syokuzi-a-text-item,
.q-a__onsen-a-text-item,
.q-a__sonota-a-text-item,
.q-a__service-a-text-item {
  letter-spacing: 0.05em;
  color: white;
  line-height: 1.7;
  font-size: 16px;
  list-style: disc;
  margin-left: 20px;
}

.q-a__yoyaku-a-text-item,
.q-a__sisetu-a-text-item,
.q-a__onsen-a-text-item,
.q-a__syokuzi-a-text-item,
.q-a__sonota-a-text-item,
.q-a__service-a-text-item:first-child {
  padding-bottom: 15px;
}

.washi-bg {
  position: relative;
}
.washi-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/textures/light-washi-texture.jpg");
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.kankou-title {
  background-color: #F5F2EB;
  position: relative;
}
.kankou-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #9B7E59;
  z-index: 1;
}
.kankou-title__inner {
  position: relative;
  z-index: 1;
}

.kankou-main-title {
  font-size: 32px;
  color: #4A392F;
  letter-spacing: 0.05em;
  padding: 120px 0 120px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .kankou-main-title {
    padding: 60px 0 60px;
  }
}
.kankou-main-title::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #9B7E59;
}

.kankou-text {
  font-size: 16px;
  color: #4A392F;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.kankou {
  background-color: #F5F2EB;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.kankou__inner {
  position: relative;
  z-index: 1;
}

.kankou-item {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.kankou-item:hover {
  transform: translateY(-5px);
}

.kankou-item-box {
  display: flex;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
.kankou-item-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
  .kankou-item-box {
    justify-content: center;
  }
}
@media screen and (max-width: 630px) {
  .kankou-item-box {
    flex-direction: column;
  }
}

.kankou-item-wrapper {
  background-color: #E8E2D6;
  width: 60%;
  border-left: 3px solid #9B7E59;
  position: relative;
  z-index: 1;
}
.kankou-item-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #9B7E59;
  border-right: 1px solid #9B7E59;
  opacity: 0.6;
  z-index: 2;
}
.kankou-item-wrapper::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #9B7E59;
  border-right: 1px solid #9B7E59;
  opacity: 0.6;
  z-index: 2;
}
@media screen and (max-width: 630px) {
  .kankou-item-wrapper {
    width: 100%;
    border-left: none;
    border-top: 3px solid #9B7E59;
  }
}

.kankou-item-title {
  color: #4A392F;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 20px 15px;
  position: relative;
  z-index: 2;
}
.kankou-item-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #9B7E59;
  position: absolute;
  bottom: -8px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .kankou-item-title {
    font-size: 16px;
  }
}

.kankou-item-text {
  color: #4A392F;
  letter-spacing: 0.05em;
  font-size: 16px;
  padding: 5px 15px 20px 15px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .kankou-item-text {
    font-size: 14px;
  }
}

.kankou-item-saito {
  color: #9B7E59;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 15px 15px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  z-index: 2;
}
.kankou-item-saito::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.kankou-item-saito:hover {
  color: #7b6446;
}
.kankou-item-saito:hover::after {
  transform: translateX(5px);
}
@media screen and (max-width: 800px) {
  .kankou-item-saito {
    font-size: 14px;
  }
}

.kankou__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  position: relative;
  z-index: 1;
}
.kankou__items::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #9B7E59, transparent);
  opacity: 0.3;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .kankou__items {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.kankou-item-img {
  max-width: 320px;
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 630px) {
  .kankou-item-img {
    width: 100%;
    max-width: none;
  }
}

.concept-concept__img {
  max-height: 600px;
}

.concept-top {
  background-color: #000;
}

.concept-top-container {
  display: flex;
  padding: 120px 0 80px 0;
}

.concept-top-img {
  max-width: 400px;
  max-height: 600px;
  border-radius: 20px;
  width: 40%;
}

.concept-top-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 80px;
}
@media screen and (max-width: 800px) {
  .concept-top-wrapper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 375px) {
  .concept-top-wrapper {
    padding: 0;
  }
}

.concept-top-title-number {
  color: #cf2e2e;
  font-size: 13px;
  text-align: center;
}

.concept-top-title-main {
  font-size: 32px;
  color: white;
  text-align: center;
}

.concept-top-title-text-box {
  display: flex;
}

.concept-top-title-text-r,
.concept-top-title-text-l {
  font-size: 26px;
  color: white;
  line-height: 2.14;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  padding-top: 70px;
  text-indent: -1em;
}

.concept-top-title-text-r {
  padding-right: 15px;
}

.concept-top-title-text-l {
  padding-left: 15px;
}

.concept-top-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: white;
  padding-top: 50px;
  text-align: center;
}

.concept-center-container {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  width: 100%;
  padding-bottom: 50px;
}

.concept-center-container-sp {
  padding-bottom: 50px;
}

.concept-center-img {
  max-width: 420px;
  width: 33%;
}

.concept-bottom {
  padding-top: 80px;
  background-color: #000;
}

.concept-bottom-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept-bottom-title-main {
  color: white;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.concept-bottom-title-texts {
  display: flex;
  padding: 30px 0 50px 0;
}
@media screen and (max-width: 768px) {
  .concept-bottom-title-texts {
    flex-direction: column;
  }
}

.concept-bottom-title-text-r,
.concept-bottom-title-text-c,
.concept-bottom-title-text-l {
  color: white;
  font-size: 18px;
  line-height: 2.14;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .concept-bottom-title-text-r,
.concept-bottom-title-text-c,
.concept-bottom-title-text-l {
    writing-mode: horizontal-tb;
    padding: 20px 0;
    line-height: 1.7;
    text-align: center;
  }
}

.concept-bottom-title-text-c {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .concept-bottom-title-text-c {
    padding: 0;
  }
}

.saiyou-mv {
  background-color: #000;
}

.saiyou-imgs {
  display: flex;
  max-width: 1440px;
  width: 100%;
  padding-top: 80px;
}

.saiyou-img {
  width: 33.3%;
}
@media screen and (max-width: 630px) {
  .saiyou-img {
    width: 50%;
  }
}

.saiyou {
  background-color: #000;
}

.saiyou-text__top-title {
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  padding: 80px 0 50px 0;
  text-align: center;
}
@media screen and (max-width: 630px) {
  .saiyou-text__top-title {
    font-size: 20px;
    text-align: left;
  }
}

.saiyou-text {
  font-size: 21px;
  color: white;
  padding-bottom: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 300;
}
@media screen and (max-width: 630px) {
  .saiyou-text {
    font-size: 20px;
    text-align: left;
  }
}

.saiyou-text-right {
  font-size: 16px;
  color: white;
  text-align: right;
  letter-spacing: 0.05em;
  font-weight: 300;
  padding-right: 30px;
}

.saiyou-text-box {
  text-align: center;
}
@media screen and (max-width: 630px) {
  .saiyou-text-box {
    text-align: left;
  }
}

.saiyou-text-bottom__seisyain {
  font-size: 43px;
  letter-spacing: 0.05em;
  color: white;
  padding-top: 100px;
}
@media screen and (max-width: 630px) {
  .saiyou-text-bottom__seisyain {
    font-size: 26px;
  }
}

.saiyou-text-bottom__toiawase {
  font-size: 26px;
  letter-spacing: 0.05em;
  color: white;
  padding: 40px 0;
}
@media screen and (max-width: 630px) {
  .saiyou-text-bottom__toiawase {
    font-size: 20px;
  }
}

.saiyou-text-bottom-container {
  text-align: right;
  width: 67%;
  padding-bottom: 80px;
}
@media screen and (max-width: 630px) {
  .saiyou-text-bottom-container {
    width: 100%;
    text-align: left;
  }
}

.saiyou-text-bottom__zinzi,
.saiyou-text-bottom__tel {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: white;
  line-height: 1.7;
}
@media screen and (max-width: 630px) {
  .saiyou-text-bottom__zinzi,
.saiyou-text-bottom__tel {
    font-size: 14px;
  }
}

@media screen and (max-width: 630px) {
  .saiyou-text-br {
    display: none;
  }
}

.saiyou-saiyou__img {
  max-height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}

.otoiawase {
  background-color: #272727;
  padding: 120px 0 120px;
}
@media screen and (max-width: 768px) {
  .otoiawase {
    padding: 60px 0 60px;
  }
}

.otoiawase-top-wrapper {
  text-align: center;
}
@media screen and (max-width: 630px) {
  .otoiawase-top-wrapper {
    text-align: left;
  }
}

.otoiawase-title {
  font-size: 32px;
  letter-spacing: 0.05em;
  color: white;
  padding-bottom: 40px;
}

.otoiawase-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: white;
  padding-bottom: 30px;
  line-height: 2;
}

/* Contact Form 7用スタイル */
.wpcf7 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  /* エラーメッセージの表示スタイル */
}
@media screen and (max-width: 375px) {
  .wpcf7 {
    padding: 0;
  }
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 5px;
}
.wpcf7 .wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 4px;
  text-align: center;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
  color: white;
}

/* フォーム全体 */
/* 和モダンなContact Form 7 フォームCSS */
/* 全体背景・外枠 */
.wpcf7 form {
  max-width: 520px;
  margin: 48px auto;
  background: linear-gradient(135deg, #f8f5f1 90%, #ede7dd 100%);
  padding: 36px 28px 32px 28px;
  border-radius: 18px;
  border: 2.5px solid #e5dac2;
  box-shadow: 0 6px 28px rgba(163, 138, 107, 0.09);
  font-family: "Noto Sans JP", "Yu Mincho", "游明朝", serif;
  position: relative;
  overflow: hidden;
}

/* 和柄・和紙風テクスチャを角に重ねたい場合（SVGや画像推奨。ここでは装飾例）*/
.wpcf7 form::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background: url("https://www.transparenttextures.com/patterns/fancy-deboss.png");
  opacity: 0.13;
  z-index: 1;
}

.wpcf7 form::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: url("https://www.transparenttextures.com/patterns/fancy-deboss.png");
  opacity: 0.09;
  z-index: 1;
}

/* グループごとの余白 */
.form-group {
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

/* ラベル */
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  color: #6b5432;
  letter-spacing: 0.04em;
  font-size: 1.08em;
  font-family: "Yu Mincho", "游明朝", serif;
}

/* テキスト、メール、電話入力 */
.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.8px solid #d8c3a5;
  border-radius: 8px;
  font-size: 1.02em;
  background: #f9f6f1;
  color: #50412a;
  box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.2s;
  font-family: "Noto Sans JP", "Yu Mincho", "游明朝", serif;
  box-shadow: 0 1px 2px rgba(180, 160, 120, 0.03);
}

.form-input:focus,
.form-textarea:focus {
  border-color: #b8975c;
  box-shadow: 0 0 0 1.5px rgba(218, 195, 141, 0.231372549);
  outline: none;
}

/* テキストエリア */
.form-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

/* チェックボックスグループ */
.checkbox-group {
  display: flex;
  gap: 26px;
  z-index: 2;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 400;
  font-size: 1em;
  color: #5e4e34;
  font-family: "Noto Sans JP", "Yu Mincho", serif;
  cursor: pointer;
  transition: color 0.2s;
  position: relative; /* 位置の基準点を設定 */
  padding-left: 25px; /* チェックボックスのスペースを確保 */
}

.checkbox-label:hover {
  color: #b8975c;
}

/* Contact Form 7のチェックボックス対応 */
.wpcf7-list-item {
  margin: 0 15px 0 0;
  display: inline-block;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  color: #5e4e34;
}

.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1.5px solid #bfa76b;
  border-radius: 3px;
  background-color: #fff;
}

.wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #bfa76b;
  border-bottom: 2px solid #bfa76b;
}

/* 送信ボタン */
.form-button {
  text-align: center;
  z-index: 2;
}

.submit-btn,
.wpcf7-submit {
  background: linear-gradient(90deg, #bfa76b 60%, #e5dac2 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 14px 38px;
  font-size: 1.13em;
  font-family: "Noto Sans JP", "Yu Mincho", serif;
  box-shadow: 0 2px 12px rgba(191, 167, 107, 0.09);
  cursor: pointer;
  letter-spacing: 0.09em;
  transition: background 0.25s, transform 0.15s;
}

.submit-btn:hover,
.wpcf7-submit:hover {
  background: linear-gradient(90deg, #927940 0%, #dac38d 100%);
  transform: translateY(-2px) scale(1.03);
}

/* 追加：レスポンシブ調整（スマホ） */
@media (max-width: 600px) {
  .wpcf7 form {
    max-width: 98%;
    padding: 18px 6vw 22px 6vw;
  }
  .form-label {
    font-size: 1em;
  }
  .submit-btn,
.wpcf7-submit {
    padding: 12px 12vw;
    font-size: 1em;
  }
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.active {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease, transform 1s ease;
}
.slide-right.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}
.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

.cuisine-mv {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cuisine-mv {
    height: 60vh;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-mv {
    height: 50vh;
  }
}

.cuisine-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.cuisine-mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cuisine-mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.cuisine-mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 80%;
}

.cuisine-mv__title {
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .cuisine-mv__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-mv__title {
    font-size: 30px;
  }
}

.cuisine-mv__subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .cuisine-mv__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-mv__subtitle {
    font-size: 18px;
  }
}

.cuisine-main__title {
  color: #333;
  padding: 120px 0 120px;
  background-color: #f5f2e9;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cuisine-main__title {
    padding: 60px 0 60px;
  }
}
.cuisine-main__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/textures/washi-texture.webp);
  opacity: 0.1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cuisine-main__title {
    padding: 70px 0;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-main__title {
    padding: 50px 0;
  }
}

.cuisine-main__title__inner {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cuisine-main__title-content {
  text-align: center;
  max-width: 800px;
  position: relative;
}

.cuisine-main__title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.cuisine-main__title-line {
  width: 40px;
  height: 1px;
  background-color: #cf2e2e;
  display: inline-block;
}

.cuisine-main__title-symbol {
  margin: 0 15px;
  font-size: 18px;
  color: #cf2e2e;
  display: inline-block;
}

.cuisine-main__title-top {
  font-size: 36px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 400;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-main__title-top {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-main__title-top {
    font-size: 28px;
  }
}

.cuisine-main__title-bottom {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  font-weight: 400;
}
@media screen and (max-width: 375px) {
  .cuisine-main__title-bottom {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.cuisine-main__title-text-wrapper {
  position: relative;
  display: inline-block;
}
.cuisine-main__title-text-wrapper::before, .cuisine-main__title-text-wrapper::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(207, 46, 46, 0.5);
  pointer-events: none;
}
.cuisine-main__title-text-wrapper::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}
.cuisine-main__title-text-wrapper::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.cuisine-main__title-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 10px;
}
@media screen and (max-width: 375px) {
  .cuisine-main__title-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.cuisine-gokan {
  background-image: url(../images/cuisine-mv-gokandetanosimu.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0 120px;
}
@media screen and (max-width: 768px) {
  .cuisine-gokan {
    padding: 60px 0 60px;
  }
}
.cuisine-gokan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(230, 223, 208, 0.8), rgba(214, 205, 183, 0.9));
  pointer-events: none;
}

.cuisine-gokan__inner {
  position: relative;
  z-index: 1;
}

.cuisine-gokan-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cuisine-gokan-header {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .cuisine-gokan-header {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-gokan-header {
    margin-bottom: 30px;
  }
}

.cuisine-gokan-subtitle {
  display: block;
  font-size: 18px;
  color: #cf2e2e;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (max-width: 375px) {
  .cuisine-gokan-subtitle {
    font-size: 16px;
  }
}

.cuisine-gokan__title {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-gokan__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-gokan__title {
    font-size: 28px;
  }
}

.cuisine-gokan-separator {
  width: 60px;
  height: 1px;
  background-color: #333;
  margin: 0 auto;
}

.cuisine-gokan-content {
  position: relative;
}

.cuisine-gokan-text {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .cuisine-gokan-text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-gokan-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}

.cuisine-gokan-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .cuisine-gokan-icons {
    gap: 30px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-gokan-icons {
    gap: 20px;
  }
}

.cuisine-gokan-icon {
  text-align: center;
  transition: transform 0.3s ease;
}
.cuisine-gokan-icon:hover {
  transform: translateY(-5px);
}

.cuisine-gokan-icon-img {
  width: 70px;
  height: 70px;
  background-color: #cf2e2e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 10px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-gokan-icon-img {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-gokan-icon-img {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

.cuisine-gokan-icon-text {
  color: #333;
  font-size: 14px;
}
@media screen and (max-width: 375px) {
  .cuisine-gokan-icon-text {
    font-size: 12px;
  }
}

.cuisine-kaiseki {
  background-color: #e6dfd0;
  padding: 120px 0 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki {
    padding: 60px 0 60px;
  }
}
.cuisine-kaiseki::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/textures/japanese-pattern.webp);
  opacity: 0.1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki {
    padding: 80px 0;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki {
    padding: 60px 0;
  }
}

.cuisine-kaiseki__inner {
  position: relative;
  z-index: 1;
}

.cuisine-kaiseki-top-wrapper {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-top-wrapper {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-top-wrapper {
    margin-bottom: 40px;
  }
}

.cuisine-kaiseki-number-wrapper {
  margin-bottom: 15px;
}

.cuisine-kaiseki-number {
  display: inline-block;
  font-size: 18px;
  color: #cf2e2e;
  letter-spacing: 0.1em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  position: relative;
}
.cuisine-kaiseki-number::before, .cuisine-kaiseki-number::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #cf2e2e;
  top: 50%;
}
.cuisine-kaiseki-number::before {
  left: -40px;
}
.cuisine-kaiseki-number::after {
  right: -40px;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-number {
    font-size: 16px;
  }
  .cuisine-kaiseki-number::before, .cuisine-kaiseki-number::after {
    width: 20px;
  }
  .cuisine-kaiseki-number::before {
    left: -30px;
  }
  .cuisine-kaiseki-number::after {
    right: -30px;
  }
}

.cuisine-kaiseki-title {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-title {
    font-size: 28px;
  }
}

.cuisine-kaiseki-separator {
  width: 60px;
  height: 1px;
  background-color: #333;
  margin: 0 auto 40px;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-separator {
    margin-bottom: 30px;
  }
}

.cuisine-kaiseki-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-description {
    font-size: 14px;
    line-height: 1.7;
  }
}

.cuisine-kaiseki-items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-items {
    gap: 80px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-items {
    gap: 60px;
  }
}

.cuisine-kaiseki-item {
  display: flex;
  width: 100%;
  gap: 40px;
  position: relative;
}
.cuisine-kaiseki-item::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-item::after {
    bottom: -40px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-item::after {
    bottom: -30px;
  }
}
.cuisine-kaiseki-item:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-item {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-item {
    gap: 20px;
  }
}
.cuisine-kaiseki-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-item--reverse {
    flex-direction: column;
  }
}

.cuisine-kaiseki-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0; /* flexboxのmin-width問題を解決 */
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-content {
    order: 1;
    flex: none;
    width: 100%;
  }
}

.cuisine-kaiseki-content-inner {
  padding: 20px;
  position: relative;
}
.cuisine-kaiseki-content-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 1px solid rgba(207, 46, 46, 0.6);
  border-left: 1px solid rgba(207, 46, 46, 0.6);
}
.cuisine-kaiseki-content-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid rgba(207, 46, 46, 0.6);
  border-right: 1px solid rgba(207, 46, 46, 0.6);
}

.cuisine-kaiseki-item-title {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-item-title {
    font-size: 20px;
  }
}

.cuisine-kaiseki-item-separator {
  width: 40px;
  height: 1px;
  background-color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-item-separator {
    margin-bottom: 20px;
  }
}

.cuisine-kaiseki-item-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-item-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

.cuisine-kaiseki-button-wrapper {
  margin-top: auto;
  text-align: center;
}

.cuisine-kaiseki-button, .btn {
  display: inline-block;
  min-width: 200px;
  padding: 14px 36px;
  font-size: 18px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
  color: #b84b36;
  background: linear-gradient(90deg, #f5f2e9 60%, #e6dfd0 100%);
  border: 2px solid #b84b36;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(140, 94, 42, 0.08);
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cuisine-kaiseki-button:hover, .cuisine-kaiseki-button:focus, .btn:hover, .btn:focus {
  background: linear-gradient(90deg, #b84b36 60%, #a67c52 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(140, 94, 42, 0.18);
  transform: translateY(-3px) scale(1.04);
  outline: 2px solid #b84b36;
  outline-offset: 2px;
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-button, .btn {
    min-width: 180px;
    font-size: 16px;
    padding: 12px 18px;
  }
}

.cuisine-swiper {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .cuisine-swiper {
    order: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-swiper {
    max-width: 100%;
    min-height: 200px;
  }
}

.cuisine-kaiseki-image {
  max-width: 655px;
  width: 100%;
  height: auto;
  aspect-ratio: 655/436;
  position: relative;
  overflow: hidden;
  /* アスペクト比サポートされていない場合のフォールバック */
}
@media screen and (max-width: 768px) {
  .cuisine-kaiseki-image {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-kaiseki-image {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
}
@supports not (aspect-ratio: 1) {
  .cuisine-kaiseki-image::before {
    content: "";
    display: block;
    padding-top: 66.67%; /* 436/655 * 100% */
  }
  @media screen and (max-width: 768px) {
    .cuisine-kaiseki-image::before {
      padding-top: 62.5%; /* 10/16 * 100% */
    }
  }
  @media screen and (max-width: 375px) {
    .cuisine-kaiseki-image::before {
      padding-top: 75%; /* 3/4 * 100% */
    }
  }
}

.cuisine-kaiseki-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@supports not (aspect-ratio: 1) {
  .cuisine-kaiseki-img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.cuisine-swiper .swiper-button-next,
.cuisine-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  transition: background-color 0.3s ease;
  margin-top: -25px;
}
.cuisine-swiper .swiper-button-next:hover,
.cuisine-swiper .swiper-button-prev:hover {
  background-color: rgba(207, 46, 46, 0.8);
}
@media screen and (max-width: 768px) {
  .cuisine-swiper .swiper-button-next,
.cuisine-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    margin-top: -22.5px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-swiper .swiper-button-next,
.cuisine-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
}
.cuisine-swiper .swiper-button-next::after,
.cuisine-swiper .swiper-button-prev::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}
@media screen and (max-width: 375px) {
  .cuisine-swiper .swiper-button-next::after,
.cuisine-swiper .swiper-button-prev::after {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
}
.cuisine-swiper .swiper-button-prev::after {
  transform: rotate(-135deg);
}
.cuisine-swiper .swiper-pagination {
  bottom: 10px;
}
@media screen and (max-width: 375px) {
  .cuisine-swiper .swiper-pagination {
    bottom: 8px;
  }
}
.cuisine-swiper .swiper-pagination-bullet {
  background-color: white;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 375px) {
  .cuisine-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.cuisine-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #cf2e2e;
}

.cuisine-breakfast {
  padding: 100px 0;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}
.cuisine-breakfast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/textures/washi-texture.webp);
  opacity: 0.1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cuisine-breakfast {
    padding: 80px 0;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast {
    padding: 60px 0;
  }
}

.cuisine-breakfast__inner {
  position: relative;
  z-index: 1;
}

.cuisine-breakfast-top {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-top {
    margin-bottom: 50px;
  }
}

.cuisine-breakfast-number-wrapper {
  margin-bottom: 15px;
}

.cuisine-breakfast-number {
  display: inline-block;
  font-size: 18px;
  color: #cf2e2e;
  letter-spacing: 0.1em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  position: relative;
}
.cuisine-breakfast-number::before, .cuisine-breakfast-number::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #cf2e2e;
  top: 50%;
}
.cuisine-breakfast-number::before {
  left: -40px;
}
.cuisine-breakfast-number::after {
  right: -40px;
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-number {
    font-size: 16px;
  }
  .cuisine-breakfast-number::before, .cuisine-breakfast-number::after {
    width: 20px;
  }
  .cuisine-breakfast-number::before {
    left: -30px;
  }
  .cuisine-breakfast-number::after {
    right: -30px;
  }
}

.cuisine-breakfast-title {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-breakfast-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-title {
    font-size: 28px;
  }
}

.cuisine-breakfast-separator {
  width: 60px;
  height: 1px;
  background-color: #000;
  margin: 0 auto 30px;
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-separator {
    margin-bottom: 20px;
  }
}

.cuisine-breakfast-subtitle {
  font-size: 18px;
  color: #000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-subtitle {
    font-size: 16px;
  }
}

.cuisine-breakfast-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cuisine-breakfast-content {
    flex-direction: column;
    gap: 40px;
  }
}
.cuisine-breakfast-content::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url(../images/textures/brush-stroke.webp);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  top: -50px;
  right: -50px;
  z-index: -1;
  transform: rotate(45deg);
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-content::before {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }
}

.cuisine-breakfast-image-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.cuisine-breakfast-image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(207, 46, 46, 0.3);
  transform: scale(0.95);
  pointer-events: none;
  z-index: 1;
}

.cuisine-breakfast-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.cuisine-breakfast-image:hover {
  transform: scale(1.05);
}

.cuisine-breakfast-text-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.cuisine-breakfast-text-inner {
  position: relative;
  padding: 30px;
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-text-inner {
    padding: 20px;
  }
}

.cuisine-breakfast-text-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cuisine-breakfast-text-decoration::before, .cuisine-breakfast-text-decoration::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(207, 46, 46, 0.5);
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-text-decoration::before, .cuisine-breakfast-text-decoration::after {
    width: 30px;
    height: 30px;
  }
}
.cuisine-breakfast-text-decoration::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.cuisine-breakfast-text-decoration::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.cuisine-breakfast-text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000;
  position: relative;
}
@media screen and (max-width: 375px) {
  .cuisine-breakfast-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.cuisine-day-trip {
  padding: 100px 0;
  background-color: #f0f0f0;
  position: relative;
}
.cuisine-day-trip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/textures/japanese-paper.webp);
  opacity: 0.15;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cuisine-day-trip {
    padding: 80px 0;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip {
    padding: 60px 0;
  }
}

.cuisine-day-trip__inner {
  position: relative;
  z-index: 1;
}

.cuisine-day-trip-header {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-header {
    margin-bottom: 50px;
  }
}

.cuisine-day-trip-number-wrapper {
  margin-bottom: 15px;
}

.cuisine-day-trip-number {
  display: inline-block;
  font-size: 18px;
  color: #cf2e2e;
  letter-spacing: 0.1em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  position: relative;
}
.cuisine-day-trip-number::before, .cuisine-day-trip-number::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #cf2e2e;
  top: 50%;
}
.cuisine-day-trip-number::before {
  left: -40px;
}
.cuisine-day-trip-number::after {
  right: -40px;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-number {
    font-size: 16px;
  }
  .cuisine-day-trip-number::before, .cuisine-day-trip-number::after {
    width: 20px;
  }
  .cuisine-day-trip-number::before {
    left: -30px;
  }
  .cuisine-day-trip-number::after {
    right: -30px;
  }
}

.cuisine-day-trip-title {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-day-trip-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-title {
    font-size: 28px;
  }
}

.cuisine-day-trip-separator {
  width: 60px;
  height: 1px;
  background-color: #000;
  margin: 0 auto 30px;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-separator {
    margin-bottom: 20px;
  }
}

.cuisine-day-trip-description {
  font-size: 18px;
  color: #000;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-description {
    font-size: 16px;
  }
}

.cuisine-day-trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .cuisine-day-trip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .cuisine-day-trip-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.cuisine-day-trip-item {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
  position: relative;
}
.cuisine-day-trip-item::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-image: url(../images/textures/japanese-pattern-red.webp);
  background-size: cover;
  opacity: 0.15;
  border-radius: 50%;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-item::after {
    width: 25px;
    height: 25px;
  }
}
.cuisine-day-trip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.cuisine-day-trip-item:hover .cuisine-day-trip-item-image {
  transform: scale(1.05);
}

.cuisine-day-trip-item-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cuisine-day-trip-item-image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(207, 46, 46, 0.3);
  z-index: 1;
  pointer-events: none;
}

.cuisine-day-trip-item-image {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.cuisine-day-trip-item-content {
  padding: 20px;
  text-align: center;
  position: relative;
}
.cuisine-day-trip-item-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 30px;
  height: 2px;
  background-color: rgba(207, 46, 46, 0.4);
  transform: translateX(-50%);
}

.cuisine-day-trip-item-title {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-item-title {
    font-size: 16px;
  }
}

.cuisine-day-trip-item-price {
  font-size: 16px;
  color: #cf2e2e;
}
@media screen and (max-width: 375px) {
  .cuisine-day-trip-item-price {
    font-size: 14px;
  }
}

.cuisine-restaurant {
  background-color: #d6cdb7;
}

.cuisine-restaurant-wrapper {
  display: flex;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cuisine-restaurant-wrapper {
    flex-direction: column;
  }
}

.cuisine-restaurant-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cuisine-restaurant-image {
    order: 0;
    height: 400px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-restaurant-image {
    height: 300px;
  }
}

.cuisine-restaurant-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cuisine-restaurant-image-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  }
}

.cuisine-restaurant-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.cuisine-restaurant-img:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .cuisine-restaurant-img {
    -o-object-position: center;
       object-position: center;
  }
}

.cuisine-restaurant-content {
  flex: 1;
  background-color: #d6cdb7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 50px;
  position: relative;
}
.cuisine-restaurant-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/textures/japanese-pattern.webp);
  opacity: 0.1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cuisine-restaurant-content {
    order: 1;
    padding: 60px 30px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-restaurant-content {
    padding: 40px 20px;
  }
}

.cuisine-restaurant-content-inner {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cuisine-restaurant-decoration {
  position: relative;
  margin-bottom: 30px;
}

.cuisine-restaurant-decoration-line {
  display: block;
  width: 60px;
  height: 1px;
  background-color: #cf2e2e;
  margin-bottom: 15px;
  position: relative;
}

.cuisine-restaurant-subtitle {
  display: block;
  font-size: 18px;
  color: #cf2e2e;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 375px) {
  .cuisine-restaurant-subtitle {
    font-size: 16px;
  }
}

.cuisine-restaurant-title {
  font-size: 32px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .cuisine-restaurant-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .cuisine-restaurant-title {
    font-size: 24px;
  }
}

.cuisine-restaurant-separator {
  width: 60px;
  height: 1px;
  background-color: #333;
  margin-bottom: 30px;
  position: relative;
}
.cuisine-restaurant-separator::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #cf2e2e;
}
@media screen and (max-width: 375px) {
  .cuisine-restaurant-separator {
    margin-bottom: 20px;
  }
}

.cuisine-restaurant-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 10px;
}
.cuisine-restaurant-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, #cf2e2e, transparent);
}
@media screen and (max-width: 375px) {
  .cuisine-restaurant-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.cuisine-kaiseki-item--reverse {
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .cuisine-kaiseki-item--reverse {
    flex-direction: column;
  }
}
.information {
  background-color: #e9e4d4;
  padding: 120px 0 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 60px 0 60px;
  }
}

.information__header {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information__header {
    margin-bottom: 40px;
  }
}

.information__header-line {
  width: 60px;
  height: 1px;
  background-color: #c36248;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .information__header-line {
    width: 40px;
  }
}

.information__title {
  display: flex;
  flex-direction: column;
  position: relative;
}

.information__title-en {
  font-size: 42px;
  font-weight: 400;
  color: #c36248;
  letter-spacing: 0.08em;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 768px) {
  .information__title-en {
    font-size: 36px;
  }
}

.information__title-ja {
  font-size: 16px;
  font-weight: 500;
  color: #1a1512;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .information__title-ja {
    font-size: 14px;
    margin-top: 5px;
  }
}

.information-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .information-wrapper {
    flex-direction: column;
  }
}

.information-left-box {
  width: 70%;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .information-left-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
}

.information-left-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px 30px;
}
@media screen and (max-width: 630px) {
  .information-left-items {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}

.information-left-item {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.information-left-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.information-left-item:hover .information-left-item-overlay {
  opacity: 0.3;
}
.information-left-item:hover .information-left-more {
  color: #c36248;
}
.information-left-item:hover .information-left-more::after {
  transform: translateX(5px);
}

.information-left-item--empty {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #776b68;
  font-size: 16px;
}

.information-left-item-link {
  display: block;
  text-decoration: none;
}

.information-left-item-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.information-left-item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.information-left-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c36248;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.information-left-texts {
  padding: 20px 25px 25px;
}

.information-left-date {
  display: inline-block;
  font-size: 14px;
  color: #c36248;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.information-left-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1512;
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.information-left-text {
  font-size: 14px;
  color: #776b68;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.information-left-more {
  display: inline-block;
  font-size: 14px;
  color: #1a1512;
  position: relative;
  padding-right: 20px;
  transition: color 0.3s ease;
}
.information-left-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.information-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.information-pagination-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  color: #776b68;
  border: 1px solid #d3c7b8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.information-pagination-links .page-numbers:hover {
  background-color: #d3c7b8;
  color: #1a1512;
}
.information-pagination-links .page-numbers.current {
  background-color: #c36248;
  color: white;
  border-color: #c36248;
}
.information-pagination-links .pagination-arrow {
  font-size: 20px;
}

.information-right-box {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .information-right-box {
    width: 100%;
  }
}

.information-right-inner {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 4px;
  position: relative;
}

.information-category-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1512;
  margin-bottom: 5px;
  position: relative;
}

.information-category-title-en {
  display: block;
  font-size: 14px;
  color: #c36248;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.information-category-decoration {
  width: 40px;
  height: 1px;
  background-color: #c36248;
  margin-bottom: 25px;
}

.information-category-links {
  display: flex;
  flex-direction: column;
}

.information-right-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #1a1512;
  text-decoration: none;
  border-bottom: 1px dashed #d3c7b8;
  transition: color 0.3s ease;
}
.information-right-link:hover {
  color: #c36248;
}
.information-right-link:last-child {
  border-bottom: none;
}

.information-right-link-text {
  font-size: 15px;
}

.information-right-link-count {
  font-size: 14px;
  color: #776b68;
}

.information-right-empty {
  color: #776b68;
  font-size: 15px;
  text-align: center;
  padding: 20px 0;
}

.wa-decoration {
  position: absolute;
  z-index: 1;
}
.wa-decoration--left {
  top: 60px;
  left: 0;
}
.wa-decoration--right {
  bottom: 60px;
  right: 0;
}

.wa-decoration__line {
  width: 100px;
  height: 1px;
  background-color: #c36248;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .wa-decoration__line {
    width: 60px;
  }
}

.wa-decoration__symbol {
  width: 20px;
  height: 20px;
  border: 1px solid #c36248;
  border-radius: 50%;
  margin-top: 30px;
  margin-left: 40px;
  position: relative;
  opacity: 0.5;
}
.wa-decoration__symbol::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #c36248;
  border-radius: 50%;
}
.wa-decoration__symbol--small {
  width: 15px;
  height: 15px;
}
.wa-decoration__symbol--small::before {
  width: 6px;
  height: 6px;
}

.blog-blog__img {
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog {
  padding: 50px 0;
  width: 100%;
}

.blog__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .blog__inner {
    flex-direction: column;
  }
}

.blog-left-box {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .blog-left-box {
    width: 100%;
  }
}

.blog-section-title {
  font-size: 32px;
  color: #000;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-bottom: 50px;
}

.blog-main-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #333333;
  padding-bottom: 50px;
}

.blog-konokizi {
  background-color: #f7f7f7;
  margin-bottom: 50px;
}

.blog-konokizi-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 19px 29px;
  border-bottom: 1px solid white;
}

.blog-konokizi-text {
  padding: 80px 29px;
}

.blog-huruitoukou {
  max-width: 430px;
  height: 115px;
  position: relative;
}
.blog-huruitoukou::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.blog-huruitoukou-link {
  width: 430px;
  height: 115px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.blog-huruitoukou-img {
  width: 430px;
  height: 115px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-huruitoukou-text {
  font-size: 18px;
  color: white;
  letter-spacing: 0.05em;
  position: absolute;
  top: 40%;
  left: 43%;
  transform: translate(-40%, -43%);
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.blog-huruitoukou-span {
  font-size: 12px;
  padding-bottom: 10px;
  z-index: 2;
  pointer-events: none;
}
.blog-huruitoukou:hover::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.blog-kanrenkizi-title {
  font-size: 21px;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}
.blog-kanrenkizi-title::before, .blog-kanrenkizi-title::after {
  content: "";
  height: 1px;
  background-color: #000;
  flex-grow: 1;
}
.blog-kanrenkizi-title::before {
  margin-right: 20px;
}
.blog-kanrenkizi-title::after {
  margin-left: 20px;
}

.blog-kanren-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 630px) {
  .blog-kanren-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.blog-kanren-item-img {
  height: 150px;
  margin-bottom: 20px;
}

.blog-kanren-item-title {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #333333;
}

.blog-right-box {
  width: 30%;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .blog-right-box {
    width: 100%;
    padding: 50px 0 0 0;
  }
}

.blog-left-recent-posts,
.blog-left-recent-comments,
.blog-left-archives,
.blog-left-categories {
  padding-bottom: 20px;
}

.blog-left-recent-posts-title,
.blog-left-recent-comments-title,
.blog-left-archives-title,
.blog-left-categories-title {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
}
.blog-left-recent-posts-title::before, .blog-left-recent-posts-title::after,
.blog-left-recent-comments-title::before,
.blog-left-recent-comments-title::after,
.blog-left-archives-title::before,
.blog-left-archives-title::after,
.blog-left-categories-title::before,
.blog-left-categories-title::after {
  content: "";
  height: 1px;
  background-color: #333333;
  flex-grow: 1;
}
.blog-left-recent-posts-title::before,
.blog-left-recent-comments-title::before,
.blog-left-archives-title::before,
.blog-left-categories-title::before {
  margin-right: 15px;
}
.blog-left-recent-posts-title::after,
.blog-left-recent-comments-title::after,
.blog-left-archives-title::after,
.blog-left-categories-title::after {
  margin-left: 15px;
}

.blog-left-recent-posts-link,
.blog-left-archives-link,
.blog-left-categories-link {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333333;
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
}

.kozinzyouhou {
  background-color: #000;
}

.kozinnzyouhou__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kozinnzyouhou-main-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  padding: 80px 0 30px 0px;
  font-size: 30px;
}
@media screen and (max-width: 375px) {
  .kozinnzyouhou-main-title {
    font-size: 24px;
  }
}

.kozinzyouhou-top-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: white;
  text-align: center;
}

.kozinzyouhou-wrapper {
  font-size: 16px;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding: 60px 0;
  max-width: 740px;
}

.kozinzyouhou-items {
  list-style-type: decimal;
  padding-left: 1.5em;
}
.kozinzyouhou-items li {
  margin-bottom: 10px;
}

.kozinzyouhou-item {
  padding-bottom: 30px;
}

.riyoukiyaku {
  background-color: #000;
}

.riyoukiyaku__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.riyoukiyaku-main-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  padding: 80px 0 30px 0px;
  font-size: 30px;
}
@media screen and (max-width: 375px) {
  .riyoukiyaku-main-title {
    font-size: 24px;
  }
}

.riyoukiyaku-top-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: white;
  text-align: center;
  padding-bottom: 40px;
}

.riyoukiyaku-texts {
  max-width: 740px;
}

.riyoukiyaku-text {
  font-size: 16px;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-bottom: 30px;
}

.riyoukiyaku-syukuhaku {
  background-color: #000;
}

.riyoukiyaku-syukuhaku-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.riyoukiyaku-syukuhaku-main-title {
  background-color: #36374a;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: white;
  width: 100%;
  max-width: 740px;
  padding: 10px 0;
  text-align: center;
  margin: 100px 0 30px 0;
}

.riyoukiyaku-syukuhaku-wrapper {
  max-width: 740px;
  padding-bottom: 50px;
}

.riyoukiyaku-syukuhaku-title {
  color: white;
  font-size: 25px;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}

.riyoukiyaku-syukuhaku-text,
.riyoukiyaku-syukuhaku-item,
.riyoukiyaku-syukuhaku-item-ten {
  color: white;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.riyoukiyaku-syukuhaku-text {
  padding-bottom: 20px;
}

.riyoukiyaku-syukuhaku-items,
.riyoukiyaku-riyoukiyaku-items {
  list-style-type: decimal;
  padding-left: 1.5em;
}
.riyoukiyaku-syukuhaku-items li,
.riyoukiyaku-riyoukiyaku-items li {
  margin-bottom: 10px;
}

.riyoukiyaku-syukuhaku-items-ten {
  list-style-type: disc;
  padding-left: 1.5em;
}
.riyoukiyaku-syukuhaku-items-ten li {
  margin-bottom: 10px;
}

.riyoukiyaku-top-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.riyoukiyaku-top-table th,
.riyoukiyaku-top-table td {
  border: 1px solid #595959;
  padding: 10px 15px;
  text-align: center;
  color: white;
}
@media screen and (max-width: 630px) {
  .riyoukiyaku-top-table th,
.riyoukiyaku-top-table td {
    padding: 8px 10px;
  }
}
.riyoukiyaku-top-table th {
  background: #36374a;
  white-space: nowrap;
}

.riyoukiyaku-bottom-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.riyoukiyaku-bottom-table th,
.riyoukiyaku-bottom-table td {
  border: 1px solid #595959;
  padding: 10px 15px;
  text-align: center;
  color: white;
}
@media screen and (max-width: 630px) {
  .riyoukiyaku-bottom-table th,
.riyoukiyaku-bottom-table td {
    padding: 8px 10px;
  }
}
.riyoukiyaku-bottom-table th {
  background: #36374a;
  white-space: nowrap;
}

.riyoukiyaku-riyoukiyaku {
  background-color: #000;
}

.riyoukiyaku-riyoukiyaku__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.riyoukiyaku-riyoukiyaku-main-title {
  background-color: #36374a;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: white;
  width: 100%;
  max-width: 740px;
  padding: 10px 0;
  text-align: center;
  margin: 100px 0 30px 0;
}

.riyoukiyaku-riyoukiyaku-top-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: white;
  padding-bottom: 40px;
  max-width: 740px;
}

.riyoukiyaku-riyoukiyaku-wrapper {
  max-width: 740px;
  padding-bottom: 50px;
}

.riyoukiyaku-riyoukiyaku-title {
  color: white;
  font-size: 25px;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}

.riyoukiyaku-riyoukiyaku-text,
.riyoukiyaku-riyoukiyaku-item {
  color: white;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.riyoukiyaku-riyoukiyaku-text {
  padding-bottom: 20px;
}

.tokuten-mv {
  position: relative;
}

.tokuten-tokuten__img {
  max-height: 400px;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 70%;
     object-position: center 70%;
}

.tokuten-mv-text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  writing-mode: horizontal-tb;
  width: 100%;
}
@media screen and (max-width: 630px) {
  .tokuten-mv-text-box {
    top: 60%;
  }
}

.tokuten-mv-text {
  font-size: 36px;
  color: white;
  letter-spacing: 0.05em;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 630px) {
  .tokuten-mv-text {
    font-size: 18px;
  }
}

.tokuten-mv-text-br {
  display: none;
}
@media screen and (max-width: 630px) {
  .tokuten-mv-text-br {
    display: block;
  }
}

.kousikiyoyakutokuten {
  background-color: #36374A;
  padding: 100px 0;
}
@media screen and (max-width: 375px) {
  .kousikiyoyakutokuten {
    padding: 70px 0;
  }
}

.kousikiyoyakutokuten-top-text {
  font-size: 13px;
  color: white;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 375px) {
  .kousikiyoyakutokuten-top-text {
    padding-bottom: 20px;
  }
}

.kousikiyoyakutokuten-bottom-text {
  font-size: 32px;
  color: white;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 630px) {
  .kousikiyoyakutokuten-bottom-text {
    font-size: 25px;
  }
}
@media screen and (max-width: 375px) {
  .kousikiyoyakutokuten-bottom-text {
    padding-bottom: 50px;
  }
}

.tokuten-main {
  background-color: #000;
  padding: 100px 0;
}

.tokuten-main-item-title {
  background-color: #7d1a01;
  font-size: 25px;
  letter-spacing: 0.05em;
  color: white;
  padding: 7px 0 7px 5px;
  margin-bottom: 30px;
}

.tokuten-main-item-text {
  font-size: 16px;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-bottom: 20px;
}

.tokuten-main-item-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px 0;
  color: white;
}
.tokuten-main-item-table th, .tokuten-main-item-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}
.tokuten-main-item-table th {
  background-color: #000;
  font-weight: bold;
  width: 80%;
  text-align: center;
}
.tokuten-main-item-table td {
  width: 20%;
}
@media (max-width: 768px) {
  .tokuten-main-item-table th, .tokuten-main-item-table td {
    padding: 10px;
    font-size: 14px;
  }
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-title__main {
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: white;
  display: flex;
  align-items: center;
  /* 垂直中心 */
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .section-title__main {
    font-size: 18px;
  }
}

.section-title__top {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #cf2e2e;
  display: flex;
  align-items: center;
  /* 垂直中心 */
  justify-content: center;
  padding-bottom: 30px;
}

.section-title__bottom {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: white;
  display: flex;
  align-items: center;
  /* 垂直中心 */
  justify-content: center;
}

.btn {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  border: 1px solid white;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 77px;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn:hover {
  color: #333;
  background-color: white;
}
@media screen and (max-width: 630px) {
  .btn {
    font-size: 14px;
    padding: 8px 60px;
  }
}
@media screen and (max-width: 375px) {
  .btn {
    font-size: 12px;
    padding: 6px 55px;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .md1-none {
    display: none;
  }
}

.md1-show {
  display: none;
}
@media screen and (max-width: 800px) {
  .md1-show {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

@media screen and (max-width: 630px) {
  .md2-none {
    display: none;
  }
}

.md2-show {
  display: none;
}
@media screen and (max-width: 630px) {
  .md2-show {
    display: block;
  }
}

.room-text-revers {
  color: #303030;
}

.title-area {
  margin-bottom: 50px;
  position: relative;
}

.title-decoration {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .title-decoration {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.title-line {
  display: block;
  width: 40px;
  height: 1px;
}
@media screen and (max-width: 1024px) {
  .title-line {
    margin: 0 auto;
  }
}

.title-circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 8px;
}

.title-number {
  font-size: 15px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 1px;
  position: relative;
}
.title-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15px;
  height: 1px;
}
@media screen and (max-width: 1024px) {
  .title-number::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.title-main {
  font-size: 40px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 12px;
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.title-sub {
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 300;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: transparent;
  border: 1px solid #B9935B;
  color: #B9935B;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9935B;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-modern:hover {
  color: white;
}

.btn-modern:hover::before {
  transform: translateX(0);
}

.btn-modern:hover .btn-modern-arrow {
  transform: translateX(3px);
}

.btn-modern-text {
  position: relative;
  z-index: 1;
}

.btn-modern-arrow {
  position: relative;
  width: 20px;
  height: 10px;
  margin-left: 10px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.btn-modern-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}

.btn-modern-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.washi-texture {
  position: relative;
}
.washi-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: -1;
}

.japanese-accent {
  position: relative;
  display: inline-block;
}

.room-room__mv {
  position: relative;
  overflow: hidden;
}
.room-room__mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
  z-index: 1;
}
.room-room__mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(207, 46, 46, 0.7);
  z-index: 2;
}

.room-room-mv__inner {
  position: relative;
}
.room-room-mv__inner::before {
  content: "客室";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Yu Mincho", "YuMincho", serif;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .room-room-mv__inner::before {
    font-size: 70px;
  }
}
@media screen and (max-width: 375px) {
  .room-room-mv__inner::before {
    font-size: 50px;
  }
}

.room-room__img {
  max-height: 600px;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 10s ease;
}
.room-room__img:hover {
  transform: scale(1.03);
}

.room-decorative-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("/images/japanese-pattern.webp");
  background-size: contain;
  opacity: 0.15;
  z-index: 2;
}
.room-decorative-element--top-right {
  top: 20px;
  right: 20px;
}
.room-decorative-element--bottom-left {
  bottom: 20px;
  left: 20px;
  transform: rotate(180deg);
}

.room-main__title {
  position: relative;
  color: white;
  padding: 80px 0;
  background-color: #000;
  overflow: hidden;
}
.room-main__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}
@media screen and (max-width: 630px) {
  .room-main__title {
    flex-direction: column;
  }
}

.room-main__title__inner {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 630px) {
  .room-main__title__inner {
    flex-direction: column;
  }
}

.room-main__title-wrapper {
  padding-right: 100px;
  position: relative;
}

.room-main__title-top {
  font-size: 22px;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.room-main__title-bottom {
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.room-main__title-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 630px) {
  .room-main__title-text {
    padding-top: 17px;
  }
}
.room-main__title-text span.emphasis {
  color: rgba(207, 46, 46, 0.8);
  font-weight: normal;
}

.room-floating-kanji {
  position: absolute;
  font-family: "Yu Mincho", "YuMincho", serif;
  color: rgba(255, 255, 255, 0.03);
  font-size: 120px;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}
.room-floating-kanji--right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.room-hanare {
  position: relative;
  background-position: 60% 30%;
  padding-bottom: 80px;
  overflow: hidden;
}
.room-hanare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.room-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.room-section__title-number {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(207, 46, 46, 0.7);
  padding-bottom: 25px;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.room-section__title-main {
  font-size: 26px;
  letter-spacing: 0.1em;
  color: white;
  padding-bottom: 25px;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.room-section__title-sub {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: white;
  padding-bottom: 40px;
  position: relative;
}

.room-hanare-btn {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 70px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.room-hanare-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}
.room-hanare-btn:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
}
.room-hanare-btn:hover::before {
  left: 100%;
}

.room-hanare__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.room-hanare__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
}

.room-hanare__top-text {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: white;
  width: 76%;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-hanare__bottom-text {
  color: white;
  padding: 20px 0;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
  width: 76%;
  position: relative;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.room-hanare__wrapper {
  display: flex;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .room-hanare__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

.room-swiper {
  max-width: 660px;
  width: 100%;
  position: relative;
}
.room-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  pointer-events: none;
  z-index: 1;
}
.room-swiper .swiper-slide {
  overflow: hidden;
}
.room-swiper .swiper-slide img {
  transition: transform 0.8s ease;
}
.room-swiper .swiper-slide:hover img {
  transform: scale(1.03);
}

@media screen and (max-width: 1024px) {
  .room-hanare__img {
    padding-bottom: 30px;
  }
}

.room-hanare-zen-symbol {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .room-hanare-zen-symbol {
    font-size: 70px;
    top: 20px;
    right: 20px;
  }
}

.room-wayousitu {
  position: relative;
  background-position: 23% 20%;
  padding-bottom: 80px;
  overflow: hidden;
}
.room-wayousitu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.room-wayousitu-btn {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 70px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.room-wayousitu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}
.room-wayousitu-btn:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
}
.room-wayousitu-btn:hover::before {
  left: 100%;
}

.room-wayousitu__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .room-wayousitu__wrapper {
    display: flex;
    flex-direction: column;
  }
}

.room-wayousitu__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.room-wayousitu__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}
.room-wayousitu__text-box::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url("../images/japanese-pattern-small.webp");
  background-size: contain;
  opacity: 0.1;
}
@media screen and (max-width: 1024px) {
  .room-wayousitu__text-box::after {
    display: none;
  }
}

.room-wayousitu__top-text {
  padding-top: 20px;
  padding-bottom: 25px;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 76%;
  color: white;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-wayousitu__bottom-text {
  padding: 25px 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  width: 76%;
  color: white;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-wayousitu__img {
  transition: transform 1s ease, filter 0.5s ease;
}
.room-wayousitu__img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
@media screen and (max-width: 1024px) {
  .room-wayousitu__img {
    padding-bottom: 30px;
  }
}

.room-wayousitu-zen-symbol {
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .room-wayousitu-zen-symbol {
    font-size: 70px;
    top: 20px;
    left: 20px;
  }
}

.room-yousitu {
  position: relative;
  background-position: 60% 30%;
  padding-bottom: 80px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.room-yousitu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.room-yousitu-btn {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  border: 1px solid #303030;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 70px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.room-yousitu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}
.room-yousitu-btn:hover {
  color: white;
  background-color: #000;
}
.room-yousitu-btn:hover::before {
  left: 100%;
}

.room-text-revers {
  color: #333;
  position: relative;
}
.room-text-revers.room-section__title-main::before, .room-text-revers.room-section__title-main::after {
  background-color: #cf2e2e;
}

.room-yousitu__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .room-yousitu__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

.room-yousitu__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: #303030;
  width: 100%;
  position: relative;
}
.room-yousitu__text-box::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url("../images/japanese-pattern-small.webp");
  background-size: contain;
  opacity: 0.1;
}
@media screen and (max-width: 1024px) {
  .room-yousitu__text-box::after {
    display: none;
  }
}

.room-yousitu__top-text {
  padding-top: 20px;
  padding-bottom: 25px;
  font-size: 15px;
  letter-spacing: 0.05em;
  width: 76%;
  color: #303030;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-yousitu__bottom-text {
  padding: 25px 0;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
  width: 76%;
  color: #303030;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-yousitu__img {
  transition: transform 1s ease, filter 0.5s ease;
}
.room-yousitu__img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
@media screen and (max-width: 1024px) {
  .room-yousitu__img {
    padding-bottom: 30px;
  }
}

.room-yousitu-zen-symbol {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .room-yousitu-zen-symbol {
    font-size: 70px;
    top: 20px;
    right: 20px;
  }
}

.room-wasitu {
  position: relative;
  background-position: 23% 20%;
  padding-bottom: 80px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.room-wasitu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.room-wasitu-btn {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  border: 1px solid #303030;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 70px;
  display: inline-block;
  color: #303030;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.room-wasitu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}
.room-wasitu-btn:hover {
  color: white;
  background-color: #000;
}
.room-wasitu-btn:hover::before {
  left: 100%;
}

.room-wasitu__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .room-wasitu__wrapper {
    display: flex;
    flex-direction: column;
  }
}

.room-wasitu__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.room-wasitu__text-box::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url("../images/japanese-pattern-small.webp");
  background-size: contain;
  opacity: 0.1;
}
@media screen and (max-width: 1024px) {
  .room-wasitu__text-box::after {
    display: none;
  }
}

.room-wasitu__top-text {
  padding-top: 20px;
  padding-bottom: 25px;
  font-size: 15px;
  letter-spacing: 0.05em;
  width: 76%;
  color: #303030;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-wasitu__bottom-text {
  padding: 25px 0;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
  width: 76%;
  color: #303030;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
}

.room-wasitu__img {
  transition: transform 1s ease, filter 0.5s ease;
}
.room-wasitu__img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
@media screen and (max-width: 1024px) {
  .room-wasitu__img {
    padding-bottom: 30px;
  }
}

.room-wasitu-zen-symbol {
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .room-wasitu-zen-symbol {
    font-size: 70px;
    top: 20px;
    left: 20px;
  }
}

.room-chekkuin-out {
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.room-chekkuin-out::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/washi-texture.webp");
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.room-chekkuin-out__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .room-chekkuin-out__wrapper {
    flex-direction: column-reverse;
  }
}

.room-chekkuin-out__white {
  background-color: #CECEB9;
  width: 35%;
  position: relative;
  overflow: hidden;
}
.room-chekkuin-out__white::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) rotate(15deg);
}
.room-chekkuin-out__white::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-image: url("../images/japanese-pattern-small.webp");
  background-size: contain;
  opacity: 0.2;
}

.room-chekkuin-out__text-boxs {
  padding: 100px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 62%;
  position: relative;
}
.room-chekkuin-out__text-boxs::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 30px;
  width: 50px;
  height: 1px;
  background-color: #cf2e2e;
}
@media screen and (max-width: 1024px) {
  .room-chekkuin-out__text-boxs {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .room-chekkuin-out__text-boxs {
    padding: 50px 30px;
  }
}

.room-chekkuin-out__text-box {
  padding-bottom: 30px;
  position: relative;
}
.room-chekkuin-out__text-box::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.room-chekkuin-out__text-title {
  font-size: 17px;
  color: white;
  letter-spacing: 0.05em;
  font-family: "Yu Mincho", "YuMincho", serif;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.room-chekkuin-out__text-title::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.room-chekkuin-out__text {
  font-size: 15px;
  color: white;
  letter-spacing: 0.05em;
  line-height: 2;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.room-accordion__container {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.room-accordion__item {
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
}
.room-accordion__item:hover {
  transform: translateY(-2px);
}

.room-accordion__title {
  padding: 20px 60px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  background-color: white;
  position: relative;
  transition: all 0.3s ease;
}
.room-accordion__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: rgba(207, 46, 46, 0.7);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.room-accordion__title:hover {
  background-color: rgba(248, 248, 248, 0.9);
}
.room-accordion__title:hover::before {
  transform: scaleY(1);
}
@media screen and (max-width: 375px) {
  .room-accordion__title {
    padding: 18px 33px;
  }
}

.room-accordion__title-text {
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Yu Mincho", "YuMincho", serif;
}
@media screen and (max-width: 375px) {
  .room-accordion__title-text {
    font-size: 14px;
  }
}

.room-accordion__title.is-open .accordion__arrow {
  transform: rotate(90deg);
}

.room-accordion__content {
  display: none;
  transition: max-height 0.3s ease;
  overflow: hidden;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.room-chekkuin-out__kyannseru-title,
.room-chekkuin-out__kyannseru-text {
  color: white;
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 1.7;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.room-chekkuin-out__kyannseru-title {
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 2px solid #cf2e2e;
}

.room-chekkuin-out__img {
  height: 100%;
  max-height: 630px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 5s ease;
}
.room-chekkuin-out__img:hover {
  transform: scale(1.03);
}

.room-chekkuin-out__imgs {
  position: relative;
  overflow: hidden;
}
.room-chekkuin-out__imgs::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.table-room {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: white;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.table-room th,
.table-room td {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}
.table-room th {
  background-color: rgba(0, 0, 0, 0.3);
}

.floating-cta {
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .floating-cta {
    display: none;
  }
}

.floating-cta__button {
  background-color: transparent;
  color: white;
  border: none;
  padding: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  line-height: 1.5;
  overflow: visible;
  text-decoration: none;
}
.floating-cta__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(82, 58, 31, 0.95));
  box-shadow: 0 4px 20px rgba(218, 165, 32, 0.2);
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.floating-cta__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50%;
  border: 1px dashed rgba(218, 165, 32, 0.4);
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.floating-cta__button:hover {
  transform: translateY(-3px) scale(1.02);
}
.floating-cta__button:hover::before {
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.95), rgba(92, 68, 36, 0.98));
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.25), 0 0 0 10px rgba(218, 165, 32, 0.05);
}
.floating-cta__button:hover::after {
  opacity: 0.8;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.floating-cta__text {
  position: relative;
  z-index: 2;
  font-family: "Yu Mincho", "YuMincho", serif;
  display: inline-block;
  background: linear-gradient(to right, rgba(218, 165, 32, 0.9), rgba(255, 215, 0, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.floating-cta__accent {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  z-index: 1;
}
.floating-cta__accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.3) 0%, rgba(255, 215, 0, 0) 70%);
  mix-blend-mode: overlay;
}
.floating-cta__accent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  background: linear-gradient(to right, transparent 45%, rgba(255, 215, 0, 0.7) 45%, rgba(255, 215, 0, 0.7) 55%, transparent 55%), linear-gradient(to bottom, transparent 45%, rgba(255, 215, 0, 0.7) 45%, rgba(255, 215, 0, 0.7) 55%, transparent 55%);
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.floating-cta__ink {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(218, 165, 32, 0.1);
  transform: scale(0);
  pointer-events: none;
  z-index: 0;
}

.sp-fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(39, 39, 39, 0.95);
  z-index: 999;
  height: 60px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .sp-fixed-menu {
    display: flex;
    justify-content: space-between;
  }
}

.sp-fixed-menu__button {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sp-fixed-menu__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.sp-fixed-menu__button i {
  font-size: 18px;
  margin-bottom: 4px;
}
.sp-fixed-menu__button span {
  transition: transform 0.3s ease;
  font-family: "Yu Mincho", "YuMincho", serif;
}
.sp-fixed-menu__button:hover, .sp-fixed-menu__button:active {
  background-color: rgba(52, 52, 52, 0.95);
}
.sp-fixed-menu__button:hover span, .sp-fixed-menu__button:active span {
  transform: translateY(-2px);
}

.sp-fixed-menu__reserve {
  background-color: rgba(26, 26, 26, 0.98);
  position: relative;
  overflow: hidden;
}
.sp-fixed-menu__reserve::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  -webkit-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.sp-fixed-menu__reserve:hover, .sp-fixed-menu__reserve:active {
  background-color: rgba(19, 19, 19, 0.98);
}

.sp-fixed-menu__menu {
  background: none;
  border: none;
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sp-fixed-menu__menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  -webkit-animation: shine 3s infinite 1s;
          animation: shine 3s infinite 1s;
}
.sp-fixed-menu__menu:hover, .sp-fixed-menu__menu:active {
  background-color: rgba(47, 47, 47, 0.95);
}
.sp-fixed-menu__menu.is-active {
  background-color: rgba(14, 14, 14, 0.98);
}
.sp-fixed-menu__menu.is-active i {
  transform: rotate(180deg);
}

.floating-cta__item-char {
  display: inline-block;
  transform-origin: bottom center;
  will-change: transform, opacity;
}

.floating-cta__item-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
}
.floating-cta__item-icon::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.floating-cta__item a:hover .floating-cta__item-icon::before {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}