@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;
}
@media screen and (max-width: 767px) {
  .section-header .section-title-en {
    font-size: 32px;
  }
}
.section-header .section-title-en {
  display: block;
  margin-bottom: 16px;
}
.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: 100px;
  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: 60px;
}
@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%;
  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%;
  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%;
  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%;
  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--line {
  background-color: #06c755;
  color: #ffffff;
}
.cta-btn--line:hover {
  background-color: #05a847;
}
.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, #06c755 0%, #05a847 100%);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6, 199, 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(6, 199, 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;
}

/*# sourceMappingURL=style.css.map */
