/* ==================================================
   FOUNDATION
================================================== */

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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  background: #fff;
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* ==================================================
   FIRST VIEW
================================================== */

.fv {
  position: relative;

  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 650px;

  overflow: hidden;

  background: #182019;
}


/* ==================================================
   FV BACKGROUND SLIDER
================================================== */

.fv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #182019;
}

.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  pointer-events: none;
  will-change: opacity;
}

.fv__slide.is-active {
  z-index: 1;
  opacity: 1;
}


/* Image
-------------------------------------------------- */

.fv__slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.14) translateZ(0);

  will-change: transform;
  backface-visibility: hidden;
}

.fv__slide.is-active img {
  animation: fvZoom 8s linear forwards;
}

@keyframes fvZoom {
  from {
    transform: scale(1.14);
  }

  to {
    transform: scale(1);
  }
}


/* Overlay
-------------------------------------------------- */

.fv__slider::after {
  content: "";

  position: absolute;
  z-index: 10;
  inset: 0;

  pointer-events: none;

  background: rgba(0, 0, 0, 0.16);
}

/* ==================================================
   FV HEADER
================================================== */

.fv-header {
  position: absolute;
  z-index: 20;

  top: 0;
  left: 0;

  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: start;

  width: 100%;

  padding:
    clamp(28px, 3vw, 52px)
    clamp(35px, 4.5vw, 80px);
}


/* Logo
-------------------------------------------------- */

.fv-header__logo {
  width: clamp(105px, 8vw, 135px);
}

.fv-header__logo img {
  width: 100%;
  height: auto;
}


/* Navigation
-------------------------------------------------- */

.fv-nav {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: clamp(22px, 2.4vw, 42px);

  padding-top: 8px;
}

.fv-nav a {
  position: relative;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1rem, 0.75vw, 1.3rem);
  font-weight: 400;

  letter-spacing: 0.14em;
  white-space: nowrap;
}

.fv-nav a::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: -7px;
  left: 0;

  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right center;

  transition: transform 0.35s ease;
}

.fv-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}


/* Header right
-------------------------------------------------- */

.fv-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 28px;
}

.fv-language {
  display: flex;
  align-items: center;

  gap: 8px;

  padding-top: 7px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;

  letter-spacing: 0.12em;
}


/* Menu
-------------------------------------------------- */

.fv-menu {
  display: flex;
  flex-direction: column;

  gap: 9px;

  width: 36px;

  padding: 8px 0;

  border: 0;

  color: #fff;
  background: transparent;

  cursor: pointer;
}

.fv-menu span {
  width: 100%;
  height: 1px;

  background: currentColor;
}


/* ==================================================
   FV COPY
================================================== */

.fv__copy {
  position: absolute;
  z-index: 10;

  top: 50%;
  left: clamp(45px, 7vw, 130px);

  transform: translateY(-28%);
}

.fv__title {
  margin: 0 0 24px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.8rem, 2.3vw, 4.4rem);
  font-weight: 400;

  line-height: 1.45;
  letter-spacing: 0.1em;
}

.fv__lead {
  margin: 0 0 32px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1rem, 0.8vw, 1.3rem);

  line-height: 1.8;
  letter-spacing: 0.15em;
}


/* Booking
-------------------------------------------------- */

.fv__booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 145px;
  height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.65);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1rem;
  letter-spacing: 0.15em;

  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.fv__booking:hover {
  color: #222;
  background: #fff;
}


/* ==================================================
   CENTER SYMBOL
================================================== */

.fv__symbol {
  position: absolute;
  z-index: 10;

  top: 48%;
  left: 50%;

  width: clamp(180px, 14vw, 260px);

  transform: translate(-50%, -50%);
}

.fv__symbol img {
  width: 100%;
  height: auto;
}


/* ==================================================
   SIDE MESSAGE
================================================== */

.fv__side-message {
  position: absolute;
  z-index: 10;

  top: 50%;
  right: clamp(30px, 4vw, 70px);

  transform: translateY(-42%);

  text-align: center;
}

.fv__side-message p {
  margin: 0 auto 22px;

  writing-mode: vertical-rl;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.1rem;
  line-height: 1.9;

  letter-spacing: 0.2em;
}

.fv__side-message small {
  display: block;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.8rem;
  font-style: italic;

  line-height: 1.6;
  letter-spacing: 0.05em;
}


/* ==================================================
   SCROLL
================================================== */

.fv__scroll {
  position: absolute;
  z-index: 10;

  bottom: 0;
  left: clamp(30px, 4vw, 65px);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.fv__scroll i {
  display: block;

  width: 1px;
  height: 55px;

  background: rgba(255, 255, 255, 0.7);
}


/* ==================================================
   NOTEBOOK
================================================== */

@media (max-width: 1440px) {

  .fv-header {
    grid-template-columns: 140px 1fr 140px;

    padding: 28px 40px;
  }

  .fv-nav {
    gap: 24px;
  }

  .fv__copy {
    left: 6%;
  }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1024px) {

  .fv-header {
    display: flex;
    justify-content: space-between;

    padding: 26px 30px;
  }

  .fv-nav {
    display: none;
  }

  .fv-language {
    display: none;
  }

  .fv__side-message {
    display: none;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .fv {
    min-height: 620px;
  }

  .fv-header {
    padding: 20px;
  }

  .fv-header__logo {
    width: 95px;
  }

  .fv__slide img {
    object-position: 50% center;
  }

  .fv__symbol {
    top: 42%;

    width: 90px;
  }

  .fv__copy {
    top: auto;
    right: 20px;
    bottom: 11%;
    left: 20px;

    transform: none;
  }

  .fv__title {
    font-size: clamp(2.4rem, 7vw, 3rem);
  }

  .fv__scroll {
    display: none;
  }
}



/* =========================================================
   STORY 01
   ========================================================= */

.story01 {
  position: relative;
  width: 100%;
  padding: 110px 2.5vw 120px 5vw; /* 右paddingを0 */
  overflow: hidden;
  color: #3e4048;
}

.story01__inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 31% 69%; /* 画像側も大きく */
  align-items: center;
  gap: 55px;
}

/* =========================================================
   LEFT
   ========================================================= */

.story01__content {
  position: relative;
  z-index: 2;
}


/* WA-THAI */

.story01__brand {
  margin-bottom: 28px;
}

.story01__brand span {
  display: block;

  font-family: "Times New Roman", serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .12em;
}

.story01__brand small {
  display: block;
  margin-top: 5px;

  font-family: "Times New Roman", serif;
  font-size: 7px;
  letter-spacing: .13em;
}


/* Story */

.story01__title {
  position: relative;
  z-index: 3;

  width: 125%;          /* Storyだけ右へ伸ばす */

  margin: 0 0 45px;

  font-family: "Times New Roman", serif;
  font-size: clamp(100px, 10vw, 160px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.06em;

  color: #3e4048;
}


/* Japanese lead */

.story01__lead {
  margin: 0 0 30px;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 21px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .08em;
}


/* Japanese body */

.story01__text {
  margin: 0;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 13px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .06em;
}


/* English */

.story01__en {
  margin: 27px 0 0;

  font-family: "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: .03em;
}


/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.story01__visual {
  position: relative;
  z-index: 1;
  width: 100%;
}


/* Main temple image */

.story01__visual img {
  display: block;
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
}


/* Vertical Japanese copy */

.story01__vertical {
  position: absolute;

  top: 48px;
  right: 38px;

  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: upright;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 18px;
  font-weight: 400;
  line-height: 2;

  letter-spacing: .18em;

  color: #fff;
}


/* =========================================================
   NOTEBOOK / SMALL PC
   ========================================================= */

@media (max-width: 1280px) {

  .story01 {
    padding: 95px 4vw 105px;
  }

  .story01__inner {
    grid-template-columns: 33% 67%;
    gap: 42px;
  }

  .story01__title {
    font-size: clamp(85px, 9vw, 125px);
  }

  .story01__lead {
    font-size: 18px;
  }

  .story01__text {
    font-size: 12px;
  }

  .story01__visual img {
    height: 530px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .story01 {
    padding: 85px 6vw 95px;
  }

  .story01__inner {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }

  .story01__title {
    margin-bottom: 35px;
    font-size: 80px;
  }

  .story01__lead {
    font-size: 16px;
  }

  .story01__text {
    font-size: 11px;
  }

  .story01__visual img {
    height: 460px;
    border-radius: 26px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .story01 {
    padding: 75px 20px 90px;
  }

  .story01__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 45px;
  }

  .story01__content {
    width: 100%;
  }

  .story01__brand {
    margin-bottom: 22px;
  }

  .story01__title {
    margin-bottom: 35px;

    font-size: clamp(76px, 25vw, 105px);
    line-height: .8;
  }

  .story01__lead {
    margin-bottom: 25px;

    font-size: 18px;
    line-height: 1.85;
  }

  .story01__text {
    font-size: 12px;
    line-height: 2.1;
  }

  .story01__en {
    margin-top: 24px;
    font-size: 12px;
  }


  /* image */

  .story01__visual {
    width: 100%;
  }

  .story01__visual img {
    width: 100%;
    height: 430px;

    border-radius: 25px;
  }

  .story01__vertical {
    top: 30px;
    right: 22px;

    font-size: 15px;
    line-height: 1.8;
  }
}