@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-header {
    margin-bottom: 64px;
  }
}
.section-header .section-title-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  display: block;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .section-header .section-title-en {
    font-size: 32px;
  }
}
.section-header .section-title-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #666666;
  display: block;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header.is-scrolled .header-logo img {
  filter: none;
}
.header.is-scrolled .nav-link {
  color: #333333;
}
.header.is-scrolled .header-menu-btn span {
  background-color: #2d2d2d;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 8px 20px;
  }
}

.header-logo {
  display: block;
}
.header-logo img {
  height: 150px;
  width: auto;
  transition: filter 0.3s ease, height 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header-logo img {
    height: 70px;
  }
}
.header.is-scrolled .header-logo img {
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .header-logo img {
    height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .header-nav {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .header-nav {
    display: none;
  }
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.header.is-scrolled .nav-link {
  color: #333333;
}

.header-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .header-menu-btn {
    display: flex;
  }
}
.header-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header-menu-btn span:nth-child(2) {
  margin: 6px 0;
}
.header.is-scrolled .header-menu-btn span {
  background-color: #2d2d2d;
}
.header-menu-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #2d2d2d;
  z-index: 1001;
  transition: right 0.5s ease;
  padding: 120px 48px;
  overflow-y: auto;
}
.mobile-nav.is-open {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  color: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s ease;
}
.mobile-nav-link:hover {
  opacity: 0.7;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav-close::before, .mobile-nav-close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}
.mobile-nav-close::before {
  transform: rotate(45deg);
}
.mobile-nav-close::after {
  transform: rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 80px 0 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

@media screen and (max-width: 991px) {
  .footer-brand {
    text-align: center;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 32px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    font-size: 32px;
  }
}

.footer-info {
  font-size: 14px;
  line-height: 2;
}
.footer-info address {
  font-style: normal;
  margin-bottom: 16px;
}

.footer-tel {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.footer-tel a {
  transition: opacity 0.3s ease;
}
.footer-tel a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 991px) {
  .footer-nav {
    text-align: center;
  }
}

.footer-nav-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .footer-nav-list {
    align-items: center;
  }
}

.footer-nav-link {
  font-size: 14px;
  transition: opacity 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.footer-nav-link:hover::after {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .footer-hours {
    text-align: center;
  }
}

.footer-hours-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-hours-list {
  font-size: 14px;
  line-height: 2;
}
.footer-hours-list dt {
  color: rgba(255, 255, 255, 0.8);
}
.footer-hours-list dd {
  margin-bottom: 16px;
}

.footer-bottom {
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-sns {
  display: flex;
  gap: 24px;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer-sns-link svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
.footer-sns-link:hover {
  background-color: #ffffff;
}
.footer-sns-link:hover svg {
  fill: #2d2d2d;
}

.footer-copyright {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-gallery {
  display: flex;
  overflow: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .footer-gallery {
    margin-top: 64px;
  }
}

.footer-gallery-track {
  display: flex;
  animation: scroll-gallery 30s linear infinite;
}

.footer-gallery-item {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
}
@media screen and (max-width: 767px) {
  .footer-gallery-item {
    width: 150px;
    height: 112px;
  }
}
.footer-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes scroll-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d2d2d;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  position: relative;
  margin-bottom: 48px;
  overflow: hidden;
}
.loading-logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(20px);
  animation: loading-logo-in 1s ease 0.3s forwards;
}
@media screen and (max-width: 767px) {
  .loading-logo img {
    height: 80px;
  }
}

.loading-bar {
  position: relative;
  width: 200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  animation: loading-progress 2s ease forwards;
}

.loading-text {
  margin-top: 24px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fade-in 0.5s ease 0.5s forwards;
}

.loading-counter {
  position: absolute;
  bottom: 80px;
  right: 80px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .loading-counter {
    font-size: 40px;
    bottom: 64px;
    right: 48px;
  }
}

@keyframes loading-logo-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loading-progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 500px;
  }
}

.mv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.mv-slide.is-active {
  opacity: 1;
}
.mv-slide.is-active img {
  animation: mv-zoom 7s ease forwards;
}
.mv-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}

@keyframes mv-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(45, 45, 45, 0.4) 0%, rgba(45, 45, 45, 0.1) 50%, rgba(45, 45, 45, 0.5) 100%);
  z-index: 1;
}

.mv-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.mv-logo {
  margin-bottom: 32px;
  overflow: hidden;
}
.mv-logo img {
  height: 150px;
  width: auto;
  opacity: 0;
  transform: translateY(40px);
}
@media screen and (max-width: 767px) {
  .mv-logo img {
    height: 100px;
  }
}
.is-visible .mv-logo img {
  animation: slide-up 1s ease forwards;
}

.mv-catch {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.2em;
  line-height: 2.2;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv-catch {
    font-size: 16px;
  }
}
.is-visible .mv-catch {
  animation: fade-in 1s ease 0.5s forwards;
}

.mv-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}
.mv-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scroll-line 2s ease infinite;
}

@keyframes slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.mv-deco {
  position: absolute;
  z-index: 2;
}
.mv-deco--left {
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .mv-deco--left {
    display: none;
  }
}
.mv-deco--right {
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .mv-deco--right {
    display: none;
  }
}

.mv-deco-line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.features {
  position: relative;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}
.features::before {
  content: "FEATURES";
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .features::before {
    font-size: 30vw;
  }
}

.features-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 80px;
}

.features-title-wrap .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .features-title-wrap .section-title-en {
    font-size: 32px;
  }
}
.features-title-wrap .section-title-jp {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.features-lead {
  max-width: 600px;
  margin: 48px auto 0;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features-lead {
    font-size: 14px;
  }
}

.features-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .features-list {
    gap: 80px;
  }
}

.features-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .features-item {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.features-item:nth-child(even) .features-image {
  order: 2;
}
@media screen and (max-width: 767px) {
  .features-item:nth-child(even) .features-image {
    order: 1;
  }
}
.features-item:nth-child(even) .features-content {
  order: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .features-item:nth-child(even) .features-content {
    order: 2;
    text-align: left;
  }
}
.features-item:nth-child(even) .features-num {
  right: auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .features-item:nth-child(even) .features-num {
    left: auto;
    right: 0;
  }
}

.features-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.features-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.2) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.features-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.features-image:hover img {
  transform: scale(1.05);
}

.features-content {
  position: relative;
  padding: 48px 0;
}

.features-num {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .features-num {
    font-size: 5rem;
  }
}

.features-title-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: #a89070;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.features-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .features-title {
    font-size: 20px;
  }
}

.features-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .features-text {
    font-size: 14px;
  }
}

.features-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #8b7355, #a89070);
  margin-top: 48px;
}
.features-item:nth-child(even) .features-line {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .features-item:nth-child(even) .features-line {
    margin-left: 0;
  }
}

.features-more {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-top: 80px;
}

.features-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 64px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}
.features-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.features-btn:hover .features-btn-icon {
  transform: translateX(5px);
}

.features-btn-text {
  text-transform: uppercase;
}

.features-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.features-btn-icon svg {
  width: 20px;
  height: 20px;
}

.services {
  background-color: #f8f6f3;
  position: relative;
  overflow: hidden;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media screen and (max-width: 767px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

.services-item {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
@media screen and (max-width: 767px) {
  .services-item {
    min-height: 400px;
  }
}
.services-item:hover .services-image img {
  transform: scale(1.1);
}
.services-item:hover .services-overlay {
  opacity: 0.7;
}
.services-item:hover .services-content {
  transform: translateY(-10px);
}
.services-item:hover .services-link::after {
  width: 60px;
}

.services-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.9) 0%, rgba(45, 45, 45, 0.4) 50%, rgba(45, 45, 45, 0.2) 100%);
  transition: opacity 0.5s ease;
}

.services-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 64px;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .services-content {
    padding: 48px;
  }
}

.services-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 16px;
}

.services-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .services-title {
    font-size: 32px;
  }
}

.services-title-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 24px;
}

.services-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 32px;
  max-width: 300px;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding: 16px 0;
  position: relative;
}
.services-link::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.services-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.services-link:hover::before {
  width: calc(100% - 70px);
}

.news {
  background-color: #ffffff;
  position: relative;
}
.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4d0ca, transparent);
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .news-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.news-header {
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 991px) {
  .news-header {
    position: static;
    text-align: center;
  }
}
.news-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
.news-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .news-more {
    display: none;
  }
}
.news-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}
.news-more a:hover {
  background-color: #2d2d2d;
  color: #ffffff;
}

.news-more-sp {
  display: none;
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 991px) {
  .news-more-sp {
    display: block;
  }
}
.news-more-sp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}
.news-more-sp a:hover {
  background-color: #2d2d2d;
  color: #ffffff;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #e5e2dd;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.news-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2d2d2d;
  transition: width 0.3s ease;
}
.news-item:hover {
  padding-left: 24px;
}
.news-item:hover::before {
  width: 100%;
}
.news-item:hover .news-title {
  color: #2d2d2d;
}

.news-date {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  color: #6b6b6b;
  letter-spacing: 0.1em;
}

.news-title {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.cta {
  position: relative;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .cta-title {
    font-size: 32px;
  }
}

.cta-subtitle {
  font-size: 16px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  margin-bottom: 64px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 64px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.cta-btn svg {
  width: 20px;
  height: 20px;
}
.cta-btn--reserve {
  background-color: #8b7355;
  color: #ffffff;
}
.cta-btn--reserve:hover {
  background-color: rgb(107.3526785714, 88.8169642857, 65.6473214286);
}
.cta-btn--tel {
  background-color: #ffffff;
  color: #2d2d2d;
}
.cta-btn--tel:hover {
  background-color: #f8f6f3;
}

.cta-tel-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.cta-hours {
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-60px);
}
.reveal--left.is-visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(60px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}
.reveal--scale {
  transform: scale(0.9);
}
.reveal--scale.is-visible {
  transform: scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

.reveal-delay-8 {
  transition-delay: 0.8s;
}

.reveal-delay-9 {
  transition-delay: 0.9s;
}

.reveal-delay-10 {
  transition-delay: 1s;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid #2d2d2d;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, opacity 0.15s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .cursor {
    display: none;
  }
}
.cursor.is-hover {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cursor.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: #8b7355;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
@media screen and (max-width: 767px) {
  .cursor-dot {
    display: none;
  }
}

.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.split-text.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}

.split-text.is-visible .char:nth-child(1) {
  transition-delay: 0.03s;
}

.split-text.is-visible .char:nth-child(2) {
  transition-delay: 0.06s;
}

.split-text.is-visible .char:nth-child(3) {
  transition-delay: 0.09s;
}

.split-text.is-visible .char:nth-child(4) {
  transition-delay: 0.12s;
}

.split-text.is-visible .char:nth-child(5) {
  transition-delay: 0.15s;
}

.split-text.is-visible .char:nth-child(6) {
  transition-delay: 0.18s;
}

.split-text.is-visible .char:nth-child(7) {
  transition-delay: 0.21s;
}

.split-text.is-visible .char:nth-child(8) {
  transition-delay: 0.24s;
}

.split-text.is-visible .char:nth-child(9) {
  transition-delay: 0.27s;
}

.split-text.is-visible .char:nth-child(10) {
  transition-delay: 0.3s;
}

.split-text.is-visible .char:nth-child(11) {
  transition-delay: 0.33s;
}

.split-text.is-visible .char:nth-child(12) {
  transition-delay: 0.36s;
}

.split-text.is-visible .char:nth-child(13) {
  transition-delay: 0.39s;
}

.split-text.is-visible .char:nth-child(14) {
  transition-delay: 0.42s;
}

.split-text.is-visible .char:nth-child(15) {
  transition-delay: 0.45s;
}

.split-text.is-visible .char:nth-child(16) {
  transition-delay: 0.48s;
}

.split-text.is-visible .char:nth-child(17) {
  transition-delay: 0.51s;
}

.split-text.is-visible .char:nth-child(18) {
  transition-delay: 0.54s;
}

.split-text.is-visible .char:nth-child(19) {
  transition-delay: 0.57s;
}

.split-text.is-visible .char:nth-child(20) {
  transition-delay: 0.6s;
}

.split-text.is-visible .char:nth-child(21) {
  transition-delay: 0.63s;
}

.split-text.is-visible .char:nth-child(22) {
  transition-delay: 0.66s;
}

.split-text.is-visible .char:nth-child(23) {
  transition-delay: 0.69s;
}

.split-text.is-visible .char:nth-child(24) {
  transition-delay: 0.72s;
}

.split-text.is-visible .char:nth-child(25) {
  transition-delay: 0.75s;
}

.split-text.is-visible .char:nth-child(26) {
  transition-delay: 0.78s;
}

.split-text.is-visible .char:nth-child(27) {
  transition-delay: 0.81s;
}

.split-text.is-visible .char:nth-child(28) {
  transition-delay: 0.84s;
}

.split-text.is-visible .char:nth-child(29) {
  transition-delay: 0.87s;
}

.split-text.is-visible .char:nth-child(30) {
  transition-delay: 0.9s;
}

.split-text.is-visible .char:nth-child(31) {
  transition-delay: 0.93s;
}

.split-text.is-visible .char:nth-child(32) {
  transition-delay: 0.96s;
}

.split-text.is-visible .char:nth-child(33) {
  transition-delay: 0.99s;
}

.split-text.is-visible .char:nth-child(34) {
  transition-delay: 1.02s;
}

.split-text.is-visible .char:nth-child(35) {
  transition-delay: 1.05s;
}

.split-text.is-visible .char:nth-child(36) {
  transition-delay: 1.08s;
}

.split-text.is-visible .char:nth-child(37) {
  transition-delay: 1.11s;
}

.split-text.is-visible .char:nth-child(38) {
  transition-delay: 1.14s;
}

.split-text.is-visible .char:nth-child(39) {
  transition-delay: 1.17s;
}

.split-text.is-visible .char:nth-child(40) {
  transition-delay: 1.2s;
}

.split-text.is-visible .char:nth-child(41) {
  transition-delay: 1.23s;
}

.split-text.is-visible .char:nth-child(42) {
  transition-delay: 1.26s;
}

.split-text.is-visible .char:nth-child(43) {
  transition-delay: 1.29s;
}

.split-text.is-visible .char:nth-child(44) {
  transition-delay: 1.32s;
}

.split-text.is-visible .char:nth-child(45) {
  transition-delay: 1.35s;
}

.split-text.is-visible .char:nth-child(46) {
  transition-delay: 1.38s;
}

.split-text.is-visible .char:nth-child(47) {
  transition-delay: 1.41s;
}

.split-text.is-visible .char:nth-child(48) {
  transition-delay: 1.44s;
}

.split-text.is-visible .char:nth-child(49) {
  transition-delay: 1.47s;
}

.split-text.is-visible .char:nth-child(50) {
  transition-delay: 1.5s;
}

.fixed-banner {
  position: fixed;
  bottom: 48px;
  right: 48px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .fixed-banner {
    bottom: 24px;
    right: 24px;
    left: 24px;
  }
}
.fixed-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fixed-banner-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 48px;
  background: linear-gradient(135deg, #8b7355 0%, rgb(107.3526785714, 88.8169642857, 65.6473214286) 100%);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fixed-banner-link {
    justify-content: center;
    padding: 24px;
  }
}
.fixed-banner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.5);
}
.fixed-banner-link:hover .fixed-banner-arrow {
  transform: translateX(3px);
}

.fixed-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}
.fixed-banner-icon svg {
  width: 24px;
  height: 24px;
}

.fixed-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .fixed-banner-text {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.fixed-banner-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.fixed-banner-sub {
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 0.1em;
}

.fixed-banner-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fixed-banner-arrow {
    display: none;
  }
}
.fixed-banner-arrow svg {
  width: 20px;
  height: 20px;
}

.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-hero {
    height: 50vh;
    min-height: 350px;
  }
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
  animation: page-hero-zoom 8s ease forwards;
}

@keyframes page-hero-zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(45, 45, 45, 0.5) 0%, rgba(45, 45, 45, 0.3) 50%, rgba(45, 45, 45, 0.6) 100%);
  z-index: 1;
}

.page-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-hero-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: slide-up 1s ease 0.3s forwards;
}
@media screen and (max-width: 767px) {
  .page-hero-title-en {
    font-size: 40px;
  }
}

.page-hero-title-jp {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fade-in 1s ease 0.6s forwards;
}
@media screen and (max-width: 767px) {
  .page-hero-title-jp {
    font-size: 14px;
  }
}

.aioseo-breadcrumbs {
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .aioseo-breadcrumbs {
    bottom: 24px;
  }
}

.aioseo-breadcrumb {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}
.aioseo-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}
.aioseo-breadcrumb a:hover {
  color: #ffffff;
}
.aioseo-breadcrumb:last-child {
  color: #ffffff;
}

.aioseo-breadcrumb-separator {
  display: inline-block;
  margin: 0 16px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.trimming-intro {
  position: relative;
  padding: 120px 0;
  background-color: #f8f6f3;
  overflow: hidden;
}
.trimming-intro::before {
  content: "TRIMMING";
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15vw;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.02);
  white-space: nowrap;
  pointer-events: none;
}

.trimming-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}

.trimming-intro-header {
  text-align: center;
  margin-bottom: 80px;
}

.trimming-intro-lead {
  font-size: 24px;
  font-weight: 300;
  color: #2d2d2d;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .trimming-intro-lead {
    font-size: 18px;
  }
}

.trimming-intro-text {
  font-size: 16px;
  line-height: 2.2;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trimming-intro-text {
    font-size: 14px;
    text-align: left;
  }
}

.trimming-features {
  padding: 120px 0;
  background-color: #ffffff;
}

.trimming-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trimming-features-header {
  text-align: center;
  margin-bottom: 80px;
}
.trimming-features-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .trimming-features-header .section-title-en {
    font-size: 32px;
  }
}
.trimming-features-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.trimming-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .trimming-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .trimming-features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.trimming-feature-card {
  position: relative;
  background-color: #f8f6f3;
  padding: 64px;
  transition: all 0.3s ease;
}
.trimming-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b7355, #a89070);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.trimming-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.trimming-feature-card:hover::before {
  transform: scaleX(1);
}
.trimming-feature-card:hover .trimming-feature-icon {
  background-color: #8b7355;
  color: #ffffff;
}

.trimming-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(139, 115, 85, 0.1);
  color: #8b7355;
  border-radius: 50%;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}
.trimming-feature-icon svg {
  width: 28px;
  height: 28px;
}

.trimming-feature-title {
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.trimming-feature-text {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}

.price-section {
  padding: 120px 0;
  background-color: #2d2d2d;
  color: #ffffff;
}
.price-section--light {
  background-color: #f8f6f3;
  color: #333333;
}
.price-section--light .price-section-header .section-title-en {
  color: #2d2d2d;
}
.price-section--light .price-section-header .section-title-jp {
  color: #666666;
}

.price-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.price-section-header {
  text-align: center;
  margin-bottom: 80px;
}
.price-section-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .price-section-header .section-title-en {
    font-size: 32px;
  }
}
.price-section-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

.price-lead {
  text-align: center;
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.8;
}
.price-section--light .price-lead {
  color: #666666;
}

.course-table-wrapper {
  position: relative;
  overflow-x: auto;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .course-table-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, rgba(45, 45, 45, 0.9) 0%, transparent 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .course-table-wrapper.is-scrolled::after {
    opacity: 0;
  }
}
.course-table-wrapper:last-child {
  margin-bottom: 0;
}

.scroll-hint {
  display: none;
}
@media screen and (max-width: 767px) {
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }
  .price-section--light .scroll-hint {
    color: #666666;
  }
  .scroll-hint svg {
    width: 16px;
    height: 16px;
    animation: scroll-hint-arrow 1.5s ease-in-out infinite;
  }
}

@keyframes scroll-hint-arrow {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.course-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.course-table th, .course-table td {
  padding: 24px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-section--light .course-table th, .price-section--light .course-table td {
  border-bottom-color: #e5e2dd;
}
@media screen and (max-width: 767px) {
  .course-table th, .course-table td {
    padding: 16px 24px;
    font-size: 14px;
  }
}
.course-table th {
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.05);
}
.price-section--light .course-table th {
  background-color: #ede9e3;
  color: #2d2d2d;
}
.course-table td {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.1em;
}
.course-table td:first-child {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  text-align: left;
  font-weight: 500;
}
.course-table tbody tr {
  transition: background-color 0.3s ease;
}
.course-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.price-section--light .course-table tbody tr:hover {
  background-color: rgba(139, 115, 85, 0.05);
}

.course-description {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.price-section--light .course-description {
  color: #666666;
}

.price-yen {
  font-size: 12px;
  margin-left: 2px;
}

.price-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.price-section--light .price-note {
  color: #666666;
}
.price-note p {
  margin-bottom: 8px;
}
.price-note p:last-child {
  margin-bottom: 0;
}

.option-section {
  padding: 120px 0;
  background-color: #f8f6f3;
}

.option-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.option-section-header {
  text-align: center;
  margin-bottom: 80px;
}
.option-section-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .option-section-header .section-title-en {
    font-size: 32px;
  }
}
.option-section-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}

.option-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .option-nav {
    display: flex;
    gap: 16px;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #f8f6f3;
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .option-nav.header-hidden {
    top: 0;
  }
  .option-nav.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
}

.option-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: #ffffff;
  border: 1px solid #d4d0ca;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  transition: all 0.3s ease;
}
.option-nav-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.option-nav-link:hover, .option-nav-link.is-active {
  background-color: #8b7355;
  border-color: #8b7355;
  color: #ffffff;
}

.option-card {
  background-color: #ffffff;
  padding: 48px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  scroll-margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .option-card {
    padding: 32px;
  }
}
.option-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.option-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #8b7355;
  letter-spacing: 0.05em;
}

.option-table {
  width: 100%;
}
.option-table th, .option-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #e5e2dd;
  font-size: 14px;
}
.option-table th {
  font-weight: 500;
  color: #333333;
  background-color: #ede9e3;
  text-align: center;
  white-space: nowrap;
}
.option-table th:first-child {
  text-align: left;
}
.option-table td {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  text-align: center;
  color: #333333;
}
.option-table td:first-child {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  text-align: left;
}
.option-table tbody tr {
  transition: background-color 0.3s ease;
}
.option-table tbody tr:hover {
  background-color: rgba(139, 115, 85, 0.03);
}
@media screen and (max-width: 767px) {
  .option-table {
    display: block;
  }
  .option-table thead {
    display: none;
  }
  .option-table tbody {
    display: block;
  }
  .option-table tr {
    display: block;
    background-color: #ffffff;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid #e5e2dd;
    border-radius: 4px;
  }
  .option-table tr:hover {
    background-color: #ffffff;
  }
  .option-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e2dd;
    text-align: right;
    font-size: 14px;
  }
  .option-table td:first-child {
    font-weight: 500;
    color: #2d2d2d;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #8b7355;
    display: block;
    text-align: left;
  }
  .option-table td:last-child {
    border-bottom: none;
  }
  .option-table td[colspan]::before {
    content: "料金";
  }
  .option-table td:nth-child(2)::before {
    content: "〜8kg";
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-weight: 400;
    color: #666666;
  }
  .option-table td:nth-child(3)::before {
    content: "〜15kg";
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-weight: 400;
    color: #666666;
  }
  .option-table td:nth-child(4)::before {
    content: "15kg〜";
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-weight: 400;
    color: #666666;
  }
}

@media screen and (max-width: 767px) {
  .option-table-uniform td:nth-child(2)::before {
    content: "料金";
  }
  .option-table-uniform td:nth-child(3),
  .option-table-uniform td:nth-child(4) {
    display: none;
  }
}

.trimming-gallery {
  padding: 120px 0;
  background-color: #ffffff;
}

.trimming-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trimming-gallery-header {
  text-align: center;
  margin-bottom: 80px;
}
.trimming-gallery-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .trimming-gallery-header .section-title-en {
    font-size: 32px;
  }
}
.trimming-gallery-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.trimming-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .trimming-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .trimming-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.trimming-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.trimming-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.trimming-gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 45, 0);
  transition: background-color 0.3s ease;
}
.trimming-gallery-item:hover img {
  transform: scale(1.1);
}
.trimming-gallery-item:hover::after {
  background-color: rgba(45, 45, 45, 0.2);
}

.trimming-cta {
  position: relative;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}
.trimming-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.trimming-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.trimming-cta-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .trimming-cta-title {
    font-size: 24px;
  }
}

.trimming-cta-subtitle {
  font-size: 16px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.trimming-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trimming-cta-note {
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.7;
}

.concept-philosophy {
  position: relative;
  padding: 120px 0;
  background-color: #f8f6f3;
  overflow: hidden;
}

.concept-philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.concept-philosophy-deco {
  position: absolute;
  top: 80px;
  left: 48px;
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: #d4d0ca;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-deco {
    display: none;
  }
}

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

.concept-philosophy-header {
  margin-bottom: 48px;
}

.concept-philosophy-en {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: rgba(139, 115, 85, 0.3);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-en {
    font-size: 32px;
  }
}

.concept-philosophy-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-title {
    font-size: 20px;
  }
}

.concept-philosophy-text p {
  font-size: 16px;
  line-height: 2.2;
  color: #333333;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-text p {
    font-size: 14px;
  }
}
.concept-philosophy-text p:last-child {
  margin-bottom: 0;
}
.concept-philosophy-text p strong {
  color: #8b7355;
  font-weight: 500;
}

.concept-philosophy-image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-image {
    order: -1;
  }
}
.concept-philosophy-image img {
  width: 100%;
  height: auto;
  display: block;
}

.concept-philosophy-image-frame {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid #8b7355;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .concept-philosophy-image-frame {
    top: -16px;
    right: -16px;
  }
}

.concept-message {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .concept-message {
    height: 60vh;
    min-height: 400px;
  }
}

.concept-message-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.concept-message-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
}

.concept-message-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 45, 45, 0.6);
  z-index: 1;
}

.concept-message-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.concept-message-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.2em;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .concept-message-text {
    font-size: 18px;
  }
}

.concept-message-line {
  display: block;
}

.concept-values {
  padding: 120px 0;
  background-color: #ffffff;
}

.concept-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.concept-values-header {
  text-align: center;
  margin-bottom: 80px;
}
.concept-values-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .concept-values-header .section-title-en {
    font-size: 24px;
  }
}
.concept-values-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.concept-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .concept-values-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.concept-value-item {
  position: relative;
  padding: 48px;
  background-color: #f8f6f3;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.concept-value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.concept-value-item:hover .concept-value-num {
  color: #8b7355;
}

.concept-value-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  color: #e5e2dd;
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .concept-value-num {
    font-size: 40px;
  }
}

.concept-value-title {
  margin-bottom: 24px;
}

.concept-value-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  color: #8b7355;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.concept-value-title-jp {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .concept-value-title-jp {
    font-size: 16px;
  }
}

.concept-value-text {
  font-size: 14px;
  line-height: 2;
  color: #666666;
}

.concept-features {
  position: relative;
  padding: 120px 0;
  background-color: #ede9e3;
  overflow: hidden;
}

.concept-features-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18vw;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.02);
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .concept-features-bg-text {
    font-size: 30vw;
  }
}

.concept-features-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.concept-features-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .concept-features-header .section-title-en {
    font-size: 24px;
  }
}
.concept-features-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.concept-feature-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .concept-feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }
}
.concept-feature-block:last-of-type {
  margin-bottom: 0;
}
.concept-feature-block--reverse .concept-feature-image {
  order: 2;
}
@media screen and (max-width: 767px) {
  .concept-feature-block--reverse .concept-feature-image {
    order: 1;
  }
}
.concept-feature-block--reverse .concept-feature-content {
  order: 1;
}
@media screen and (max-width: 767px) {
  .concept-feature-block--reverse .concept-feature-content {
    order: 2;
  }
}
.concept-feature-block--reverse .concept-feature-image-num {
  left: auto;
  right: -32px;
}
@media screen and (max-width: 767px) {
  .concept-feature-block--reverse .concept-feature-image-num {
    right: 0;
  }
}

.concept-feature-image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .concept-feature-image {
    order: 1;
  }
}

.concept-feature-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.concept-feature-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.concept-feature-image-wrap:hover img {
  transform: scale(1.05);
}

.concept-feature-image-num {
  position: absolute;
  bottom: -32px;
  left: -32px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(139, 115, 85, 0.15);
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .concept-feature-image-num {
    font-size: 5rem;
    bottom: -24px;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .concept-feature-content {
    order: 2;
  }
}

.concept-feature-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  color: #8b7355;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.concept-feature-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .concept-feature-title {
    font-size: 20px;
  }
}

.concept-feature-line {
  width: 60px;
  height: 1px;
  background-color: #8b7355;
  margin-bottom: 32px;
}

.concept-feature-text {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .concept-feature-text {
    font-size: 14px;
  }
}
.concept-feature-text:last-child {
  margin-bottom: 0;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.concept-closing {
  position: relative;
  padding: 120px 0;
  background-color: #f8f6f3;
  overflow: hidden;
}

.concept-closing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.concept-closing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18vw;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.03);
  white-space: nowrap;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .concept-closing-bg-text {
    font-size: 30vw;
  }
}

.concept-closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.concept-closing-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.concept-closing-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.concept-closing-label-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b7355, transparent);
}
@media screen and (max-width: 767px) {
  .concept-closing-label-line {
    width: 40px;
  }
}

.concept-closing-label-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  color: #8b7355;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concept-closing-lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #2d2d2d;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .concept-closing-lead {
    font-size: 20px;
  }
}

.concept-closing-lead-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
}
.is-visible .concept-closing-lead-line {
  animation: fade-in-up 0.8s ease forwards;
}
.is-visible .concept-closing-lead-line:nth-child(2) {
  animation-delay: 0.2s;
}

.concept-closing-text {
  font-size: 16px;
  line-height: 2.2;
  color: #666666;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .concept-closing-text {
    font-size: 14px;
    margin-bottom: 64px;
  }
}

.concept-closing-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 320px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .concept-closing-visual {
    height: 200px;
  }
}

.concept-closing-card {
  position: absolute;
  width: 280px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
@media screen and (max-width: 767px) {
  .concept-closing-card {
    width: 140px;
    height: 180px;
  }
}
.concept-closing-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-closing-card:hover {
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.concept-closing-card--1 {
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.concept-closing-card--1:hover {
  transform: rotate(-6deg) scale(1.03) translateY(-10px);
}
@media screen and (max-width: 767px) {
  .concept-closing-card--1 {
    left: 50%;
    transform: translateX(-120%) rotate(-8deg);
  }
  .concept-closing-card--1:hover {
    transform: translateX(-120%) rotate(-8deg) scale(1.05) translateY(-10px);
  }
}
.concept-closing-card--2 {
  left: 50%;
  transform: translateX(-50%) translateY(-15px);
  z-index: 3;
}
.concept-closing-card--2:hover {
  transform: translateX(-50%) translateY(-25px) scale(1.03);
}
@media screen and (max-width: 767px) {
  .concept-closing-card--2 {
    transform: translateX(-50%) translateY(-15px);
  }
  .concept-closing-card--2:hover {
    transform: translateX(-50%) translateY(-25px) scale(1.05);
  }
}
.concept-closing-card--3 {
  right: 0;
  transform: rotate(6deg);
  z-index: 2;
}
.concept-closing-card--3:hover {
  transform: rotate(6deg) scale(1.03) translateY(-10px);
}
@media screen and (max-width: 767px) {
  .concept-closing-card--3 {
    right: auto;
    left: 50%;
    transform: translateX(20%) rotate(8deg);
  }
  .concept-closing-card--3:hover {
    transform: translateX(20%) rotate(8deg) scale(1.05) translateY(-10px);
  }
}

.concept-closing-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
}
.concept-closing-deco--left {
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
}
.concept-closing-deco--right {
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(45, 45, 45, 0.04) 0%, transparent 70%);
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.hotel-intro {
  padding: 120px 0;
  background-color: #f8f6f3;
}

.hotel-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hotel-intro-header {
  margin-bottom: 48px;
}

.hotel-intro-lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #2d2d2d;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .hotel-intro-lead {
    font-size: 20px;
  }
}

.hotel-intro-text {
  max-width: 800px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 2.2;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .hotel-intro-text {
    font-size: 14px;
  }
}

.hotel-intro-points {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .hotel-intro-points {
    flex-wrap: wrap;
    gap: 48px;
  }
}

.hotel-intro-point {
  text-align: center;
}

.hotel-intro-point-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8b7355;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hotel-intro-point-icon svg {
  width: 36px;
  height: 36px;
  color: #8b7355;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .hotel-intro-point-icon {
    width: 64px;
    height: 64px;
  }
  .hotel-intro-point-icon svg {
    width: 28px;
    height: 28px;
  }
}

.hotel-intro-point:hover .hotel-intro-point-icon {
  background-color: #8b7355;
}
.hotel-intro-point:hover .hotel-intro-point-icon svg {
  color: #ffffff;
}

.hotel-intro-point-text {
  font-size: 14px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hotel-intro-point-text {
    font-size: 12px;
  }
}

.hotel-gallery {
  padding: 120px 0;
  background-color: #ffffff;
}

.hotel-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-gallery-header {
  text-align: center;
  margin-bottom: 80px;
}
.hotel-gallery-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-gallery-header .section-title-en {
    font-size: 24px;
  }
}
.hotel-gallery-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .hotel-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 16px;
  }
}

.hotel-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.hotel-gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .hotel-gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.hotel-gallery-item:hover .hotel-gallery-image img {
  transform: scale(1.1);
}
.hotel-gallery-item:hover .hotel-gallery-caption {
  opacity: 1;
}

.hotel-gallery-image {
  width: 100%;
  height: 100%;
}
.hotel-gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(transparent, rgba(45, 45, 45, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .hotel-gallery-caption {
    opacity: 1;
    padding: 16px;
    background: linear-gradient(transparent, rgba(45, 45, 45, 0.7));
  }
}

.hotel-gallery-caption-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .hotel-gallery-caption-en {
    font-size: 14px;
  }
}

.hotel-gallery-caption-jp {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

.hotel-message {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .hotel-message {
    min-height: 420px;
  }
}

.hotel-message-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hotel-message-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hotel-message-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 45, 45, 0.65);
  z-index: 1;
}

.hotel-message-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 80px 20px;
}

.hotel-message-badge {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 48px;
}
.hotel-message-badge span {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .hotel-message-badge {
    padding: 8px 32px;
    margin-bottom: 32px;
  }
  .hotel-message-badge span {
    font-size: 14px;
  }
}

.hotel-message-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .hotel-message-text {
    font-size: 20px;
  }
}

.hotel-message-line {
  display: block;
}

.hotel-message-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .hotel-message-sub {
    font-size: 14px;
  }
}

.hotel-rooms {
  padding: 120px 0;
  background-color: #ede9e3;
}

.hotel-rooms-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-rooms-header {
  text-align: center;
  margin-bottom: 80px;
}
.hotel-rooms-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-rooms-header .section-title-en {
    font-size: 24px;
  }
}
.hotel-rooms-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.hotel-room-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hotel-room-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hotel-room-images {
  position: relative;
}

.hotel-room-image {
  overflow: hidden;
  border-radius: 8px;
}
.hotel-room-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotel-room-image--main {
  aspect-ratio: 4/3;
}
.hotel-room-image--main img {
  transition: transform 0.8s ease;
}
.hotel-room-image--main:hover img {
  transform: scale(1.05);
}
.hotel-room-image--sub {
  position: absolute;
  bottom: -48px;
  right: -32px;
  width: 45%;
  aspect-ratio: 1;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .hotel-room-image--sub {
    width: 40%;
    bottom: -24px;
    right: 16px;
  }
}

.hotel-room-info {
  position: relative;
}
@media screen and (max-width: 767px) {
  .hotel-room-info {
    padding-top: 48px;
  }
}

.hotel-room-badge {
  display: inline-block;
  padding: 8px 24px;
  background-color: #8b7355;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hotel-room-name {
  margin-bottom: 24px;
}

.hotel-room-name-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 300;
  color: #2d2d2d;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .hotel-room-name-en {
    font-size: 24px;
  }
}

.hotel-room-name-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.hotel-room-line {
  width: 60px;
  height: 1px;
  background-color: #8b7355;
  margin-bottom: 32px;
}

.hotel-room-desc {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .hotel-room-desc {
    font-size: 14px;
  }
}

.hotel-room-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hotel-room-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #333333;
  margin-bottom: 16px;
}
.hotel-room-features li svg {
  width: 18px;
  height: 18px;
  color: #8b7355;
  flex-shrink: 0;
}
.hotel-room-features li:last-child {
  margin-bottom: 0;
}

.hotel-services {
  position: relative;
  padding: 120px 0;
  background-color: #f8f6f3;
  overflow: hidden;
}

.hotel-services-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 16vw;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.02);
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .hotel-services-bg-text {
    font-size: 28vw;
  }
}

.hotel-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hotel-services-header {
  text-align: center;
  margin-bottom: 80px;
}
.hotel-services-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-services-header .section-title-en {
    font-size: 24px;
  }
}
.hotel-services-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.hotel-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .hotel-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hotel-service-card {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.hotel-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.hotel-service-card:hover .hotel-service-icon {
  background-color: #8b7355;
}
.hotel-service-card:hover .hotel-service-icon svg {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .hotel-service-card {
    padding: 24px;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 8px;
    text-align: left;
  }
  .hotel-service-card:hover {
    transform: none;
  }
}

.hotel-service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f6f3;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hotel-service-icon svg {
  width: 32px;
  height: 32px;
  color: #8b7355;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .hotel-service-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    grid-row: span 2;
    align-self: center;
  }
  .hotel-service-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .hotel-service-content {
    flex: 1;
  }
}

.hotel-service-title {
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-service-title {
    font-size: 16px;
    margin-bottom: 0;
    align-self: end;
    white-space: nowrap;
  }
}

.hotel-service-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .hotel-service-text {
    font-size: 14px;
    line-height: 1.6;
    align-self: start;
  }
}

.hotel-price {
  padding: 120px 0;
  background-color: #ffffff;
}

.hotel-price-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-price-header {
  text-align: center;
  margin-bottom: 48px;
}
.hotel-price-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-price-header .section-title-en {
    font-size: 24px;
  }
}
.hotel-price-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.hotel-price-lead {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .hotel-price-lead {
    margin-bottom: 64px;
  }
}

.hotel-price-block {
  margin-bottom: 48px;
}
.hotel-price-block:last-of-type {
  margin-bottom: 64px;
}

.hotel-price-plan {
  position: relative;
  background-color: #f8f6f3;
  border-radius: 8px;
  overflow: hidden;
}
.hotel-price-plan--deluxe .hotel-price-plan-header {
  background-color: #4a4a4a;
}
.hotel-price-plan--premium {
  border: 2px solid #8b7355;
}
.hotel-price-plan--premium .hotel-price-plan-header {
  background-color: #8b7355;
}
.hotel-price-plan--hourly .hotel-price-plan-header {
  background-color: #6b6b6b;
}

.hotel-price-plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  background-color: #ffffff;
  color: #8b7355;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  z-index: 1;
}

.hotel-price-plan-header {
  background-color: #2d2d2d;
  padding: 32px 48px;
}
@media screen and (max-width: 767px) {
  .hotel-price-plan-header {
    padding: 24px;
  }
}

.hotel-price-plan-name {
  margin-bottom: 8px;
}

.hotel-price-plan-name-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.2em;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-price-plan-name-en {
    font-size: 20px;
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.hotel-price-plan-name-jp {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
}

.hotel-price-plan-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.hotel-price-table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .hotel-price-table {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .hotel-price-table thead {
    display: none;
  }
}
.hotel-price-table thead th {
  padding: 24px;
  background-color: #ede9e3;
  font-size: 14px;
  font-weight: 500;
  color: #2d2d2d;
  text-align: center;
  border-bottom: 1px solid #d4d0ca;
}
.hotel-price-table thead th:first-child {
  text-align: left;
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  .hotel-price-table tbody {
    display: block;
  }
}
.hotel-price-table tbody tr:hover {
  background-color: rgba(139, 115, 85, 0.03);
}
.hotel-price-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #d4d0ca;
}
@media screen and (max-width: 767px) {
  .hotel-price-table tbody tr {
    display: block;
    padding: 24px;
    border-bottom: 1px solid #d4d0ca;
  }
  .hotel-price-table tbody tr:hover {
    background-color: transparent;
  }
}
.hotel-price-table tbody td {
  padding: 24px;
  font-size: 16px;
  color: #333333;
  text-align: center;
}
.hotel-price-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  .hotel-price-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    text-align: right;
  }
  .hotel-price-table tbody td:first-child {
    padding-left: 0;
    font-size: 16px;
    color: #2d2d2d;
    border-bottom: 1px dashed #d4d0ca;
    padding-bottom: 16px;
    margin-bottom: 8px;
    display: block;
    text-align: left;
  }
  .hotel-price-table tbody td:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 400;
    color: #666666;
    font-size: 12px;
  }
}
.hotel-price-table--hourly thead th:first-child,
.hotel-price-table--hourly tbody td:first-child {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .hotel-price-table--hourly thead th:first-child,
  .hotel-price-table--hourly tbody td:first-child {
    width: auto;
  }
}

.hotel-price-per {
  font-size: 12px;
  color: #666666;
}

.hotel-price-note {
  text-align: center;
}
.hotel-price-note p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
}
.hotel-price-note p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hotel-price-note p {
    font-size: 12px;
    text-align: left;
  }
}

.hotel-flow {
  padding: 120px 0;
  background-color: #ede9e3;
}

.hotel-flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-flow-header {
  text-align: center;
  margin-bottom: 80px;
}
.hotel-flow-header .section-title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-flow-header .section-title-en {
    font-size: 24px;
  }
}
.hotel-flow-header .section-title-jp {
  display: block;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.hotel-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .hotel-flow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hotel-flow-step {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hotel-flow-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }
}
.hotel-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -24px;
  width: 32px;
  height: 1px;
  background-color: #d4d0ca;
}
@media screen and (max-width: 767px) {
  .hotel-flow-step:not(:last-child)::after {
    display: none;
  }
}

.hotel-flow-step-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 300;
  color: #8b7355;
  margin-bottom: 24px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .hotel-flow-step-num {
    font-size: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
  }
}

.hotel-flow-step-title {
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .hotel-flow-step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.hotel-flow-step-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .hotel-flow-step-text {
    font-size: 12px;
    line-height: 1.6;
  }
}

.hotel-photos {
  padding: 80px 0;
  background-color: #f8f6f3;
  overflow: hidden;
}

.hotel-photos-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-strip 40s linear infinite;
}
.hotel-photos-track:hover {
  animation-play-state: paused;
}

.hotel-photos-strip {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .hotel-photos-strip {
    gap: 16px;
    padding-right: 16px;
  }
}

.hotel-photos-item {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.hotel-photos-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.hotel-photos-item:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .hotel-photos-item {
    width: 200px;
    height: 140px;
  }
}

@keyframes scroll-strip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.news-archive {
  padding: 120px 0;
  background-color: #f8f6f3;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding: 80px 0;
  }
}

.news-archive-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news-filter {
    gap: 8px;
    margin-bottom: 64px;
  }
}

.news-filter-btn {
  padding: 16px 32px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #666666;
  background-color: #ffffff;
  border: 1px solid #d4d0ca;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-filter-btn {
    padding: 8px 24px;
    font-size: 12px;
  }
}
.news-filter-btn:hover {
  color: #2d2d2d;
  border-color: #2d2d2d;
}
.news-filter-btn.is-active {
  color: #ffffff;
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
}

.news-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card:hover .news-card-title {
  color: #8b7355;
}
.news-card.is-hidden {
  display: none;
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card-category {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 4px;
}
.news-card-category--news {
  background-color: #8b7355;
}
.news-card-category--campaign {
  background-color: #c06c4c;
}
.news-card-category--blog {
  background-color: #4a4a4a;
}

.news-card-body {
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .news-card-body {
    padding: 24px;
  }
}

.news-card-date {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: #6b6b6b;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-card-title {
    font-size: 16px;
  }
}

.news-card-excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-card-excerpt {
    font-size: 12px;
  }
}

.topic_pager {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .topic_pager {
    margin-top: 64px;
  }
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    gap: 4px;
  }
}
.page-numbers li {
  list-style: none;
}
.page-numbers a.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 44px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d4d0ca;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-numbers a.page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 12px;
  }
}
.page-numbers a.page-numbers:hover {
  background-color: #2d2d2d;
  color: #ffffff;
  border-color: #2d2d2d;
}
.page-numbers a.page-numbers.current {
  background-color: #2d2d2d;
  color: #ffffff;
  border-color: #2d2d2d;
  pointer-events: none;
}

.news-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px;
  color: #666666;
}
.news-no-results p {
  font-size: 16px;
}

.single-section {
  padding: 120px 0;
  background-color: #f8f6f3;
}
@media screen and (max-width: 767px) {
  .single-section {
    padding: 80px 0;
  }
}

.single-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
}
@media screen and (max-width: 991px) {
  .single-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.single-main {
  min-width: 0;
}

.single-header {
  margin-bottom: 48px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.single-category {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 4px;
}
.single-category--news {
  background-color: #8b7355;
}
.single-category--campaign {
  background-color: #c06c4c;
}
.single-category--blog {
  background-color: #4a4a4a;
}

.single-date {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  color: #6b6b6b;
  letter-spacing: 0.1em;
}

.single-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .single-title {
    font-size: 20px;
  }
}

.single-eyecatch {
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
}
.single-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.single-body {
  background-color: #ffffff;
  padding: 64px;
  border-radius: 8px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .single-body {
    padding: 32px;
  }
}
.single-body p {
  margin-bottom: 32px;
  line-height: 1.8;
}
.single-body p:last-child {
  margin-bottom: 0;
}
.single-body h2 {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  margin-top: 64px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #8b7355;
}
@media screen and (max-width: 767px) {
  .single-body h2 {
    font-size: 18px;
  }
}
.single-body h2:first-child {
  margin-top: 0;
}
.single-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid #8b7355;
}
@media screen and (max-width: 767px) {
  .single-body h3 {
    font-size: 16px;
  }
}
.single-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-top: 32px;
  margin-bottom: 16px;
}
.single-body strong {
  font-weight: 500;
  color: #2d2d2d;
}
.single-body a {
  color: #8b7355;
  text-decoration: underline;
}
.single-body a:hover {
  text-decoration: none;
}
.single-body ul,
.single-body ol {
  margin-bottom: 32px;
  padding-left: 48px;
}
.single-body ul li,
.single-body ol li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.single-body ul li {
  position: relative;
  list-style: none;
  padding-left: 24px;
}
.single-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: #8b7355;
  border-radius: 50%;
}
.single-body ol {
  counter-reset: list-counter;
}
.single-body ol li {
  list-style: none;
  counter-increment: list-counter;
  padding-left: 24px;
}
.single-body ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  color: #8b7355;
  font-weight: 500;
}
.single-body blockquote {
  margin: 48px 0;
  padding: 32px 48px;
  background-color: #ede9e3;
  border-left: 4px solid #8b7355;
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 767px) {
  .single-body blockquote {
    padding: 24px;
  }
}
.single-body blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: #4a4a4a;
}
.single-body figure {
  margin: 48px 0;
}
.single-body figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-body figure figcaption {
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
  text-align: center;
}
.single-body table {
  width: 100%;
  margin: 48px 0;
  border-collapse: collapse;
}
.single-body table th,
.single-body table td {
  padding: 16px 24px;
  border: 1px solid #d4d0ca;
  text-align: left;
}
.single-body table th {
  background-color: #ede9e3;
  font-weight: 500;
}
.single-body code {
  padding: 2px 6px;
  background-color: #ede9e3;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}
.single-body pre {
  margin: 48px 0;
  padding: 32px;
  background-color: #2d2d2d;
  color: #ffffff;
  border-radius: 8px;
  overflow-x: auto;
}
.single-body pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.single-figure {
  margin: 48px 0;
}
.single-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-figure figcaption {
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.single-share {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid #d4d0ca;
  border-bottom: 1px solid #d4d0ca;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .single-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.single-share-label {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.single-share-buttons {
  display: flex;
  gap: 16px;
}

.single-share-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.single-share-btn svg {
  width: 18px;
  height: 18px;
}
.single-share-btn:hover {
  transform: translateY(-2px);
}
.single-share-btn--x {
  background-color: #000000;
}
.single-share-btn--x:hover {
  background-color: #333333;
}
.single-share-btn--facebook {
  background-color: #1877f2;
}
.single-share-btn--facebook:hover {
  background-color: #0d65d9;
}
.single-share-btn--line {
  background-color: #06c755;
}
.single-share-btn--line:hover {
  background-color: #05b04c;
}

.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .single-nav {
    grid-template-columns: 1fr;
  }
}

.single-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-nav-link:hover {
  background-color: #ede9e3;
}
.single-nav-link:hover .single-nav-title {
  color: #8b7355;
}
.single-nav-link--prev .single-nav-label {
  justify-content: flex-start;
}
.single-nav-link--next {
  text-align: right;
}
.single-nav-link--next .single-nav-label {
  justify-content: flex-end;
}

.single-nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b6b6b;
  letter-spacing: 0.1em;
}
.single-nav-label svg {
  width: 14px;
  height: 14px;
}

.single-nav-title {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-back {
  text-align: center;
}

.single-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 64px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2d2d2d;
  background-color: #ffffff;
  border: 1px solid #2d2d2d;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-back-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.single-back-btn:hover {
  background-color: #2d2d2d;
  color: #ffffff;
}
.single-back-btn:hover svg {
  transform: translateX(-4px);
}

@media screen and (max-width: 991px) {
  .single-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .single-sidebar {
    grid-template-columns: 1fr;
  }
}

.sidebar-widget {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .sidebar-widget {
    margin-bottom: 0;
  }
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget-title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #8b7355;
}

.sidebar-category-list li {
  border-bottom: 1px solid #e5e2dd;
}
.sidebar-category-list li:last-child {
  border-bottom: none;
}
.sidebar-category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sidebar-category-list a:hover {
  color: #8b7355;
}

.sidebar-category-count {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: #6b6b6b;
}

.sidebar-recent-list li {
  border-bottom: 1px solid #e5e2dd;
}
.sidebar-recent-list li:last-child {
  border-bottom: none;
}
.sidebar-recent-list a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar-recent-list a:hover span {
  color: #8b7355;
}
.sidebar-recent-list time {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  color: #6b6b6b;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.sidebar-recent-list span {
  display: block;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-archive-list li {
  border-bottom: 1px solid #e5e2dd;
}
.sidebar-archive-list li:last-child {
  border-bottom: none;
}
.sidebar-archive-list a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sidebar-archive-list a:hover {
  color: #8b7355;
}

.related-posts {
  padding: 120px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .related-posts {
    padding: 80px 0;
  }
}

.related-posts-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-posts-header {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .related-posts-header {
    margin-bottom: 64px;
  }
}
.related-posts-header .section-title-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  display: block;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .related-posts-header .section-title-en {
    font-size: 32px;
  }
}
.related-posts-header .section-title-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #666666;
  display: block;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 991px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.related-posts-grid .news-card-excerpt {
  display: none;
}

.page-hero--single .aioseo-breadcrumbs .aioseo-breadcrumb:last-child {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page-hero--single .aioseo-breadcrumbs .aioseo-breadcrumb:last-child {
    max-width: 150px;
  }
}

.news-card-category--info {
  background-color: #8b7355;
  /* $color-accent */
}

.news-card-category--campaign {
  background-color: #c06c4c;
}

.news-card-category--blog {
  background-color: #4a4a4a;
  /* $color-secondary */
}

/* フィルターボタンをリンクに変更した場合のスタイル */
a.news-filter-btn {
  text-decoration: none;
}

.contact-intro {
  padding: 120px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .contact-intro {
    padding: 80px 0;
  }
}

.contact-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact-intro-text {
  font-size: 18px;
  line-height: 2;
  color: #333333;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .contact-intro-text {
    font-size: 16px;
  }
}

.contact-intro-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 80px;
  background-color: #ede9e3;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .contact-intro-tel {
    padding: 32px;
    width: 100%;
  }
}

.contact-intro-tel-label {
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
}

.contact-intro-tel-number {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact-intro-tel-number {
    font-size: 24px;
  }
}
.contact-intro-tel-number svg {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .contact-intro-tel-number svg {
    width: 24px;
    height: 24px;
  }
}
.contact-intro-tel-number:hover {
  color: #8b7355;
}

.contact-intro-tel-hours {
  font-size: 14px;
  color: #666666;
}

.contact-form-section {
  padding: 120px 0;
  background-color: #f8f6f3;
}
@media screen and (max-width: 767px) {
  .contact-form-section {
    padding: 80px 0;
  }
}

.contact-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact-form-header {
    margin-bottom: 64px;
  }
}
.contact-form-header .section-title-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  display: block;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .contact-form-header .section-title-en {
    font-size: 32px;
  }
}
.contact-form-header .section-title-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #666666;
  display: block;
}

.contact-form-wrapper {
  background-color: #ffffff;
  padding: 80px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 32px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}

.contact-form-required {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background-color: #8b7355;
  border-radius: 4px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 24px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #f8f6f3;
  border: 1px solid #d4d0ca;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-form-input::-moz-placeholder, .contact-form-textarea::-moz-placeholder {
  color: #6b6b6b;
}
.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #6b6b6b;
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #8b7355;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.contact-form-input:hover,
.contact-form-textarea:hover {
  border-color: #a89070;
}

.contact-form-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact-form-radio-group {
    flex-direction: column;
    gap: 16px;
  }
}

.contact-form-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact-form-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-form-radio input[type=radio]:checked + .contact-form-radio-text::before {
  border-color: #8b7355;
}
.contact-form-radio input[type=radio]:checked + .contact-form-radio-text::after {
  transform: scale(1);
}
.contact-form-radio input[type=radio]:focus + .contact-form-radio-text::before {
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.contact-form-radio-text {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: #333333;
  transition: color 0.3s ease;
}
.contact-form-radio-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #d4d0ca;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.contact-form-radio-text::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background-color: #8b7355;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.contact-form-radio-text:hover::before {
  border-color: #a89070;
}

.contact-form-privacy-box {
  max-height: 250px;
  overflow-y: auto;
  padding: 32px;
  background-color: #f8f6f3;
  border: 1px solid #d4d0ca;
  border-radius: 8px;
  margin-bottom: 24px;
}
.contact-form-privacy-box::-webkit-scrollbar {
  width: 8px;
}
.contact-form-privacy-box::-webkit-scrollbar-track {
  background: #e5e2dd;
  border-radius: 4px;
}
.contact-form-privacy-box::-webkit-scrollbar-thumb {
  background: #6b6b6b;
  border-radius: 4px;
}
.contact-form-privacy-box::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}
.contact-form-privacy-box h4 {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4d0ca;
}
.contact-form-privacy-box h5 {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-top: 32px;
  margin-bottom: 8px;
}
.contact-form-privacy-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 16px;
}
.contact-form-privacy-box ul {
  margin-bottom: 16px;
  padding-left: 32px;
}
.contact-form-privacy-box ul li {
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 4px;
  list-style: disc;
}

.contact-form-privacy-date {
  margin-top: 32px;
  text-align: right;
  font-size: 12px;
  color: #6b6b6b;
}

.contact-form-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact-form-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-form-checkbox input[type=checkbox]:checked + .contact-form-checkbox-text::before {
  background-color: #8b7355;
  border-color: #8b7355;
}
.contact-form-checkbox input[type=checkbox]:checked + .contact-form-checkbox-text::after {
  transform: scale(1);
}
.contact-form-checkbox input[type=checkbox]:focus + .contact-form-checkbox-text::before {
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.contact-form-checkbox-text {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: #333333;
  transition: color 0.3s ease;
}
.contact-form-checkbox-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #d4d0ca;
  border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.contact-form-checkbox-text::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-60%) scale(0);
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.contact-form-checkbox-text:hover::before {
  border-color: #a89070;
}

.contact-form-submit {
  text-align: center;
  margin-top: 32px;
}

.contact-form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 250px;
  padding: 24px 64px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #8b7355;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact-form-submit-btn {
    width: 100%;
  }
}
.contact-form-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.contact-form-submit-btn:hover {
  background-color: rgb(107.3526785714, 88.8169642857, 65.6473214286);
}
.contact-form-submit-btn:hover svg {
  transform: translateX(4px) translateY(-4px);
}
.contact-form-submit-btn:active {
  transform: scale(0.98);
}
.contact-form-submit-btn:disabled {
  background-color: #6b6b6b;
  cursor: not-allowed;
}
.contact-form-submit-btn:disabled:hover svg {
  transform: none;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-email,
.wpcf7 .wpcf7-tel,
.wpcf7 .wpcf7-textarea {
  width: 100%;
  padding: 24px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #f8f6f3;
  border: 1px solid #d4d0ca;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.wpcf7 .wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-email::-moz-placeholder, .wpcf7 .wpcf7-tel::-moz-placeholder, .wpcf7 .wpcf7-textarea::-moz-placeholder {
  color: #6b6b6b;
}
.wpcf7 .wpcf7-text::placeholder,
.wpcf7 .wpcf7-email::placeholder,
.wpcf7 .wpcf7-tel::placeholder,
.wpcf7 .wpcf7-textarea::placeholder {
  color: #6b6b6b;
}
.wpcf7 .wpcf7-text:focus,
.wpcf7 .wpcf7-email:focus,
.wpcf7 .wpcf7-tel:focus,
.wpcf7 .wpcf7-textarea:focus {
  outline: none;
  border-color: #8b7355;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.wpcf7 .wpcf7-textarea {
  min-height: 180px;
  resize: vertical;
}
.wpcf7 .wpcf7-list-item {
  margin: 0 24px 16px 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 24px 64px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #8b7355;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wpcf7 .wpcf7-submit:hover {
  background-color: rgb(107.3526785714, 88.8169642857, 65.6473214286);
}
.wpcf7 .wpcf7-submit:disabled {
  background-color: #6b6b6b;
  cursor: not-allowed;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
  border: 1px solid #e74c3c;
  background-color: #fdf2f2;
  color: #e74c3c;
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border: 1px solid #27ae60;
  background-color: #f0fdf4;
  color: #27ae60;
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contact-info {
  padding: 120px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .contact-info {
    padding: 80px 0;
  }
}

.contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact-info-header {
    margin-bottom: 64px;
  }
}
.contact-info-header .section-title-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  display: block;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .contact-info-header .section-title-en {
    font-size: 32px;
  }
}
.contact-info-header .section-title-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #666666;
  display: block;
}

.contact-info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
@media screen and (max-width: 991px) {
  .contact-info-content {
    grid-template-columns: 1fr;
  }
}

.contact-info-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 992px) {
  .contact-info-map {
    height: 100%;
  }
}
.contact-info-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
@media screen and (max-width: 767px) {
  .contact-info-map iframe {
    height: 300px;
    min-height: auto;
  }
}

.contact-info-card {
  background-color: #ede9e3;
  padding: 64px;
  border-radius: 16px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .contact-info-card {
    padding: 32px;
  }
}

.contact-info-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.contact-info-name-jp {
  font-size: 14px;
  color: #666666;
  margin-bottom: 48px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact-info-item {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
}
.contact-info-item dt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.contact-info-item dt svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8b7355;
}
.contact-info-item dd {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
.contact-info-item dd a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-item dd a:hover {
  color: #8b7355;
}

.contact-info-access {
  padding-top: 32px;
  border-top: 1px solid #d4d0ca;
}
.contact-info-access h4 {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 16px;
}
.contact-info-access ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-access li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
.contact-info-access li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b7355;
}

.contact-form-privacy-section {
  margin-bottom: 48px;
}

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio {
    flex-direction: column;
    gap: 16px;
  }
}
.wpcf7-radio .wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #333333;
  transition: color 0.3s ease;
}
.wpcf7-radio .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #8b7355;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-50%) scale(1);
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:focus + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #d4d0ca;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background-color: #8b7355;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label:hover::before {
  border-color: #a89070;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #333333;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #8b7355;
  border-color: #8b7355;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-50%) rotate(45deg) scale(1);
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #d4d0ca;
  border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg) scale(0);
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transition: transform 0.3s ease;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label:hover::before {
  border-color: #a89070;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 250px;
  padding: 24px 64px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #8b7355;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
  }
}
.wpcf7-submit:hover {
  background-color: rgb(107.3526785714, 88.8169642857, 65.6473214286);
}
.wpcf7-submit:active {
  transform: scale(0.98);
}
.wpcf7-submit:disabled, .wpcf7-submit.disabled {
  background-color: #6b6b6b;
  cursor: not-allowed;
}

.wpcf7-response-output {
  margin: 32px 0 0 !important;
  padding: 24px !important;
  border-radius: 8px !important;
  font-size: 14px;
  text-align: center;
}

.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #e74c3c !important;
  background-color: #fdf2f2;
  color: #e74c3c;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #27ae60 !important;
  background-color: #f0fdf4;
  color: #27ae60;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #e74c3c !important;
  background-color: #fdf2f2;
  color: #e74c3c;
}

.wpcf7-spinner {
  margin: 0 0 0 24px;
  vertical-align: middle;
}

.wpcf7-not-valid {
  border-color: #e74c3c !important;
}
.wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.contact-form-group--acceptance .wpcf7-form-control-wrap {
  display: block;
}
.contact-form-group--acceptance .contact-form-checkbox {
  display: block;
  cursor: pointer;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background-color: #f8f6f3;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .error-page {
    padding: 80px 20px;
    min-height: calc(100vh - 60px);
  }
}

.error-page-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.error-page-content {
  background-color: #ffffff;
  padding: 80px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .error-page-content {
    padding: 64px 32px;
  }
}

.error-page-code {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 120px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ede9e3;
  text-shadow: 2px 2px 0 #d4d0ca, -2px -2px 0 #d4d0ca, 2px -2px 0 #d4d0ca, -2px 2px 0 #d4d0ca;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .error-page-code {
    font-size: 80px;
  }
}

.error-page-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .error-page-title {
    font-size: 20px;
  }
}

.error-page-message {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .error-page-message {
    font-size: 14px;
  }
}

.error-page-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .error-page-actions {
    flex-direction: column;
    gap: 16px;
  }
}

.error-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.error-page-btn svg {
  width: 18px;
  height: 18px;
}
.error-page-btn--primary {
  background-color: #8b7355;
  color: #ffffff;
}
.error-page-btn--primary:hover {
  background-color: rgb(107.3526785714, 88.8169642857, 65.6473214286);
  transform: translateY(-2px);
}
.error-page-btn--secondary {
  background-color: #ffffff;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}
.error-page-btn--secondary:hover {
  background-color: #2d2d2d;
  color: #ffffff;
  transform: translateY(-2px);
}

.error-page-links {
  padding-top: 48px;
  border-top: 1px solid #d4d0ca;
}

.error-page-links-label {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.error-page-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}
.error-page-links-list li {
  list-style: none;
}
.error-page-links-list a {
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.error-page-links-list a:hover {
  color: #8b7355;
}

.error-page-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.error-page-deco-paw {
  position: absolute;
  color: rgba(139, 115, 85, 0.05);
}
.error-page-deco-paw:nth-of-type(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  transform: rotate(-20deg);
}
@media screen and (max-width: 767px) {
  .error-page-deco-paw:nth-of-type(1) {
    width: 100px;
    height: 100px;
  }
}
.error-page-deco-paw:nth-of-type(2) {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  transform: rotate(15deg);
}
@media screen and (max-width: 767px) {
  .error-page-deco-paw:nth-of-type(2) {
    width: 80px;
    height: 80px;
  }
}
.error-page-deco-paw:nth-of-type(3) {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 15%;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .error-page-deco-paw:nth-of-type(3) {
    display: none;
  }
}

.error-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(45, 45, 45, 0.03) 0%, transparent 50%);
  pointer-events: none;
}