* {
  box-sizing: border-box;
}

:root {
  --color-text-main: #636161;
  --color-text-light: #fefefe;
  /* Dark gray from design */
  --color-bg-light: #f9f9f9;
  --color-accent: #dbcec3;
  /* Beige/gold accent */

  --font-serif: 'Zen Old Mincho', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-body: 'Zen Old Mincho', serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.6;
  background-color: #fff;
}


h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
}

img {
  height: auto;
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.accent {
  color: var(--color-accent);
}

.hero {
  margin: 5% 0;
}

.hero__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.hero__inner img {
  width: 40%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.hero__inner h1 {
  width: 50%;
  margin: auto;
  max-width: 300px;
  text-align: center;
}

.hero__inner h1 img {
  width: 100%;
}


.hero__sub {
  font-size: 1.2rem;
  font-family: var(--font-sans);
}

/* Section Common */
.section {
  padding: 80px 0;
}

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

.section__title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  position: relative;
}

.section__title-en {
  background: linear-gradient(to bottom, var(--color-accent) 20%, rgba(212, 196, 183, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: -40px;
  position: relative;
  z-index: 0;
  font-family: 'Optima', sans-serif;
}

.section__subtitle {
  display: block;
  font-size: 2.5rem;
  color: var(--color-text-main);
  margin-top: 0;
  font-family: var(--font-serif);
  position: relative;
  z-index: 1;
}

/* About */
.about {
  position: relative;
  background: linear-gradient(-140deg, #928D8D, #605D5D, #605D5D, #5D5959);
  color: var(--color-text-light);
  overflow: hidden;

  /* Mask to fade out Top and Bottom edges */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0, white 40px),
    linear-gradient(to top, transparent 0, white 40px);
  mask-image:
    linear-gradient(to bottom, transparent 0, white 40px),
    linear-gradient(to top, transparent 0, white 40px);

  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/texture.jpg) no-repeat bottom center;
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
}

.about::after {
  content: none;
}

.about>* {
  position: relative;
  z-index: 1;
}

.about .section__subtitle {
  color: var(--color-text-light);
}

.about__desc {
  text-align: center;
  font-size: 16px;
}

.about__desc:nth-of-type(2) {
  font-size: 20px;
  min-width: 400px;
  margin: 60px auto;
}

.about__desc:nth-of-type(2)::before,
.about__desc:nth-of-type(2)::after {
  content: "";
  display: block;
  height: 2.5px;
  background: linear-gradient(to right, rgba(102, 102, 102, 0), rgba(102, 102, 102, 0), rgb(223, 210, 189), rgba(102, 102, 102, 0), rgba(102, 102, 102, 0));
  width: 500px;
  margin: 20px auto;
}

.reservation-text {
  text-align: center;
  font-size: 1.5rem;
  margin: 60px auto 45px;
  padding: 30px 0;
  position: relative;
  width: 80%;
  max-width: 600px;
}

.reservation-text::before,
.reservation-text::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(to right, rgba(102, 102, 102, 0), rgb(223, 210, 189), rgba(102, 102, 102, 0));
}

.reservation-text::before {
  top: 0;
}

.reservation-text::after {
  bottom: 0;
}

.section.contact {
  padding: 0;
}

.contact__text {
  text-align: center;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, rgba(102, 102, 102, 0), rgb(223, 210, 189), rgba(102, 102, 102, 0)) 1;
  width: 300px;
  margin: auto;
  padding-bottom: 20px;
  margin-bottom: 80px;
  font-size: 22px;
}

.contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

.contact-area h2 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2rem;
  color: var(--color-text-main);
  letter-spacing: 0.1em;
  border-bottom: 1px solid;
  padding-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-row img {
  width: 24px;
  height: auto;
}

.tel,
.mail {
  font-size: 1.2rem;
  font-family: 'Optima', sans-serif;
}

.contact-deco {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.section-deco-top {
  display: block;
  margin: 0 auto 10px;
  width: 100%;
  max-width: 400px;
}

.section-deco-bottom {
  display: block;
  margin: 10px auto 0;
  width: 100%;
  max-width: 350px;
}

.about__content {
  display: flex;
  justify-content: space-between;
  gap: 3%;
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

.about__content:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 5%;
}

.about__text h3 {
  font-size: clamp(15px, 2.3vw, 32px);
}

.about__text p {
  margin-top: 35px;
  font-size: 17px;
}



.about__images {
  width: 40%;
  object-fit: cover;
  box-shadow: 10px 10px 50px rgba(32, 26, 26, 0.4);
  min-width: 290px;
}

.about-grad-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.about-grad-top img {
  width: 100%;
  height: auto;
}

.about-grad-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.about-grad-bottom img {
  width: 100%;
  height: auto;
}



/* Steps */
.steps {
  background-color: #fff;
  padding-bottom: 100px;
}

.step-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  list-style: none;
  width: 90%;
}

/* Center Line Gradient */
.step-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  /* Gradient from transparent to light to dark to transparent */
  background: linear-gradient(to bottom, transparent, #E0D0C0 10%, #8A7A6A 90%, transparent);
  transform: translateX(-50%);
}

.step-item {
  display: flex;
  flex-direction: column;
  /* Stack Title/Desc then Image */
  width: 45%;
  position: relative;
}

/* Odd items (Left) */
.step-item:nth-child(odd) {
  margin-right: auto;
  text-align: left;
  padding-right: 40px;
}

/* Even items (Right) */
.step-item:nth-child(even) {
  margin-left: auto;
  text-align: left;
  padding-left: 40px;
}

/* Dot on the line - Base style */
.step-item::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 1;
}

/* Progressive Darkening for Dots */
.step-item:nth-child(1)::after {
  background-color: #E0D0C0;
  /* Lightest */
}

.step-item:nth-child(2)::after {
  background-color: #D4C4B7;
  /* Light */
}

.step-item:nth-child(3)::after {
  background-color: #C0B0A0;
  /* Medium */
}

.step-item:nth-child(4)::after {
  background-color: #A09080;
  /* Dark */
}

.step-item:nth-child(5)::after {
  background-color: #8A7A6A;
  /* Darkest */
}

.step-item:nth-child(odd)::after {
  right: auto;
  left: 111.111%;
  transform: translateX(-50%);
}

.step-item:nth-child(even)::after {
  left: auto;
  right: 111.111%;
  transform: translateX(50%);
}

.step-item__content {
  margin-bottom: 20px;
  flex: 1;
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.step-item__num {
  font-family: 'Optima', sans-serif;
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.step-item__content h3 {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: normal;
  margin: 0;
}

.step-item__image {
  width: 100%;
}

/* Access */
.access {
  background-color: #fff;
  overflow: hidden;
}

.section__title--access {
  text-align: left;
  margin-bottom: 60px;
}

.section__title--access .section__subtitle {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 60px;
}

.section__title--access .section__title-en {
  font-size: 4rem;
  margin-bottom: 0;
  margin-top: -40px;
  margin-left: 0;
  z-index: 1;
}

.access__content {
  position: relative;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


.access__info-area {
  width: 45%;
  position: relative;
  padding: 100px;
  z-index: 1;
}

.access__info-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #e2efef;
  z-index: -2;

  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0, black 40px, black calc(100% - 40px), transparent 100%),
    linear-gradient(to right, black 90%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, transparent 0, black 40px, black calc(100% - 40px), transparent 100%),
    linear-gradient(to right, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.access__info-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url(img/texture.jpg) no-repeat center center;
  background-size: cover;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;

  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0, black 40px, black calc(100% - 40px), transparent 100%),
    linear-gradient(to right, black 90%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, transparent 0, black 40px, black calc(100% - 40px), transparent 100%),
    linear-gradient(to right, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.access__info {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.access__block {
  margin-bottom: 30px;
}

.access__block h3 {
  font-size: 1.5rem;
  color: #A09080;
  margin-bottom: 10px;
  font-family: 'Optima', sans-serif;
}

.access__map {
  position: absolute;
  width: 50%;
  height: 450px;
  z-index: 1;
  left: 40%;
  box-shadow: none;
}

iframe {
  width: 100%;
  height: 100%;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer__logo {
  font-size: 2rem;
  font-family: var(--font-serif);
}

.footer__contact p {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 799px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero__inner img {
    width: 80%;
    max-width: 300px;
  }

  .about__content {
    flex-direction: column;
    width: 90%;
    gap: 40px;
  }

  .access__content {
    display: block;
  }

  .access__info-area {
    width: 100%;
    padding-bottom: 80px;
    /* Space for overlap */
  }

  .access__info-area {
    width: 100%;
    position: relative;
    padding: 70px 0px;
    z-index: 1;
  }

  .map-placeholder {
    height: 400px;
  }

  /* Contact Responsive */
  .contact-area {
    width: 90%;
    margin: 0 auto 60px;
  }

  .reservation-text {
    width: 90%;
    font-size: 1.5rem;
    text-align: center;
    margin: 40px auto;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .about__text h3 {
    font-size: 22px;
  }

  .about__content:nth-of-type(2) {
    flex-direction: column;
    margin-top: 40px;
  }

  .about__images {
    width: 100%;
    margin-top: 20px;
  }

  .about__images:nth-of-type(1) {
    height: 360px;

  }

  .about__desc:nth-of-type(2) {
    min-width: auto;
    width: 90%;
  }

  .about__desc:nth-of-type(2)::before,
  .about__desc:nth-of-type(2)::after {
    width: 100%;
  }

  /* Steps Responsive */
  .step-list {
    gap: 40px;
    padding: 20px 0;
  }

  .step-list::before {
    left: 20px;
    transform: none;
  }

  .step-item {
    width: 100%;
    padding-left: 50px !important;
    padding-right: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .step-item:nth-child(odd),
  .step-item:nth-child(even) {
    margin: 0 !important;
    text-align: left !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }

  .step-item::after {
    display: none;
    /* Hide dots */
  }

  .step-item,
  .step-item:nth-child(even) {
    flex-direction: column;
    gap: 15px;
  }

  .step-item__image {
    max-width: 400px;
  }

  .access__info {
    text-align: center;
  }

  .access__map {
    position: static;
    width: 90%;
    height: 200px;
    box-shadow: none;
  }
}


/* ============================================  */
/* アニメーション用クラス ここから */
/* ============================================  */

/* ====================== */
/* 全ページ共通：js- */
/* ====================== */
/* fadeup(下からIN) - Standard */
.js-fadeup {
  opacity: 0;
  transform: translateY(30px);
}

.js-fadeup.fadeup {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* blur(ブラーリビール) - Elegant */
.js-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px) scale(0.95);
}

.js-blur.blur {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transition: all 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* fadein(左からIN) */
.js-fadein {
  opacity: 0;
  transform: translateX(-20px);
}

.js-fadein.fadein {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease, transform 2s ease;
}

/* fadeinR(右からIN) */
.js-fadeinR {
  opacity: 0;
  transform: translateX(20px);
}

.js-fadeinR.fadeinR {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease, transform 2s ease;
}

/* ============================================  */
/* アニメーション用クラス ここまで */
/* ============================================  */