@charset "UTF-8";

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0 auto;
  max-width: 600px;
  background: #0b0b0b;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  overflow-x: clip;
}

main {
  overflow-x: clip;
}

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

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  margin: 0;
}

/* ============================
   COMMON
============================ */
:root {
  --gold: #b6935c;
  --gold-light: #cbae82;
  --black: #0b0b0b;
  --off-white: #f4f1ec;
}

.en {
  font-family: "Cormorant Garamond", serif;
}

/* ============================
   FV
============================ */
.fv {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  color: #fff;
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__bg-img--sp {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  /* object-position: top center; */
}

.fv__bg-img--pc {
  display: none;
}

.fv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.75) 100%);
}

.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 4.4rem 2.4rem 4rem;
}

.fv__head {
  margin-left: calc(37% + 4rem);
}

.fv__logo {
  width: 100%;
  max-width: 15rem;
}

.fv__label {
  margin-top: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-indent: 0.28em;
  white-space: nowrap;
}

.fv__copy {
  margin-top: 2.6rem;
  margin-left: calc(37% + 4rem);
}

.fv__heading {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.45;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.fv__subheading {
  /* margin-top: 1.8rem; */
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  color: #aa8856;
  letter-spacing: 0;
}

.fv__lead {
  /* margin-top: 2.8rem; */
  margin-left: calc(37% + 4rem);
}

.fv__lead p {
  font-size: 0.98rem;
  line-height: 1.85;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.fv__lead p + p {
  margin-top: 1.4rem;
}

.fv__btn {
  position: relative;
  overflow: hidden;
  z-index: 2;
  align-self: flex-start;
  margin-top: 5.6rem;
  margin-left: calc(37% + 4rem);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, #c3a06a, #a5824c);
  color: #fff;
  white-space: nowrap;
  box-shadow:
    0 0 0 0.1rem rgba(255, 255, 255, 0.15) inset,
    0 0.8rem 2.4rem rgba(165, 130, 76, 0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.fv__btn:hover,
.fv__btn:active {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 min(calc(16 / 750 * 100vw), 16px) min(calc(40 / 750 * 100vw), 40px) rgba(120, 96, 46, 0.5),
    0 0 0 min(calc(0.5 / 750 * 100vw), 0.5px) rgba(255, 255, 255, 0.4) inset;
}

.fv__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(75deg,
    transparent 42%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 58%);
  background-repeat: no-repeat;
  background-size: 300% 100%;
  background-position: 160% 0;
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .fv__btn::after {
    animation: btnShine 6.5s ease-in-out infinite;
    animation-delay: 3.6s;
  }
}

@keyframes btnShine {
  0% { background-position: 160% 0; }
  45% { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}

.fv__btn-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.fv__btn-text {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.8;
}

.fv__btn-arrow {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: #ffffff;
  line-height: 1.8;
}

.fv__scroll {
  margin-top: 3.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 1.2rem;
}

.fv__scroll span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
}

.fv__scroll i {
  display: block;
  width: 1px;
  height: 4rem;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.fv__scroll i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  60%, 100% {
    top: 100%;
  }
}

/* ============================
   FV entrance animation
============================ */
@keyframes fvFadeInUp {
  from {
    opacity: 0;
    transform: translateY(3.6rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fv__head,
.fv__heading,
.fv__subheading,
.fv__lead p,
.fv__btn,
.fv__scroll {
  opacity: 0;
  animation: fvFadeInUp 2.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fv__head {
  animation-delay: 0.3s;
}

.fv__heading {
  animation-delay: 0.9s;
}

.fv__subheading {
  animation-delay: 1.5s;
}

.fv__lead p:nth-child(1) {
  animation-delay: 2s;
}

.fv__lead p:nth-child(2) {
  animation-delay: 2.35s;
}

.fv__btn {
  animation-delay: 2.9s;
}

.fv__scroll {
  animation-delay: 3.5s;
}

@media (prefers-reduced-motion: reduce) {
  .fv__head,
  .fv__heading,
  .fv__subheading,
  .fv__lead p,
  .fv__btn,
  .fv__scroll,
  .concept__divider::after,
  .why__divider::after {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ============================
   CONCEPT
============================ */
.concept {
  background: #0d0d0d;
}

.concept__inner {
  padding: 9rem 2.4rem 6rem;
}

.concept__label {
  position: relative;
  padding-bottom: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--gold-light);
}

.concept__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.concept__heading {
  margin-top: 2.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.65;
  letter-spacing: 0.32em;
  color: #f5f3ef;
}

.concept__heading .line {
  display: block;
}

.concept__en {
  margin-top: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  color: var(--gold-light);
}

.concept__divider {
  position: relative;
  overflow: hidden;
  margin: 4.4rem 0 0 24%;
  width: 1px;
  height: 4.6rem;
  background: rgba(182, 147, 92, 0.35);
}

.concept__divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* ============================
   MISSION / VISION / VALUES
============================ */
.mvv__panel {
  padding: 2.2rem 2.4rem 4.4rem;
}

.mvv__panel--mission {
  background: #191919;
}

.mvv__panel--vision {
  background: #232525;
}

.mvv__panel--values {
  background: #2a2e2e;
  padding-bottom: 5.6rem;
}

.mvv__num-block {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
}

.mvv__num {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3.5rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--gold);
}

.mvv__word {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  color: #f5f3ef;
  padding-bottom: 0.9rem;
}

.mvv__word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.mvv__quote,
.mvv__intro {
  position: relative;
  margin-top: 1.8rem;
  margin-left: 4.85rem;
  padding-left: 2.55rem;
}

.mvv__quote::before,
.mvv__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.3rem;
  bottom: -0.3rem;
  width: 1px;
  background: var(--gold);
}

.mvv__quote p {
  font-weight: 700;
  font-size: 1.57rem;
  line-height: 1.6;
  color: #fff;
}

.mvv__intro p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
}

.mvv__body {
  margin-top: 2.05rem;
  margin-left: 4.85rem;
}

.mvv__body p {
  font-size: 1.18rem;
  line-height: 1.8;
  color: #d8d6d1;
}

.mvv__body p + p {
  margin-top: 2.6rem;
}

.mvv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.15rem;
}

.mvv__item {
  position: relative;
  padding: 24px 0.4rem;
  text-align: center;
}

.mvv__item + .mvv__item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mvv__item:first-child {
  grid-column: 1 / -1;
}

.mvv__item:nth-child(2) {
  border-left: none;
}

.mvv__item:first-child {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mvv__item-heading-br {
  display: none;
}

.mvv__item-num {
  position: relative;
  display: inline-block;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0;
  color: var(--gold);
}

.mvv__item-num::before,
.mvv__item-num::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.mvv__item-num::before {
  display: none;
}

.mvv__item-num::after {
  bottom: 0;
}

.mvv__item-heading {
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
}

.mvv__item:nth-child(3) .mvv__item-heading {
  font-size: 1.05rem;
  white-space: nowrap;
}

.mvv__item-icon {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  margin: 1.4rem auto;
}

.mvv__item-desc {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #b9b7b2;
  text-align: center;
}

.mvv__closing {
  margin-top: 9.15rem;
  text-align: center;
}

.mvv__closing p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #f0eee9;
}

.mvv__closing p + p {
  margin-top: 3.15rem;
}

.mvv__onefabric {
  margin-top: 6rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 2.1rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--gold);
}

.photo-strip {
  background: #2a2e2e;
  line-height: 0;
}

.photo-strip img {
  width: 100%;
  height: auto;
}

/* ============================
   WHY FABRIC
============================ */
.why {
  background: #0d0d0d;
}

.why__inner {
  padding: 7.2rem 2.4rem 6rem;
}

.why__label {
  position: relative;
  padding-bottom: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--gold-light);
}

.why__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.why__heading {
  margin-top: 2.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.65;
  letter-spacing: 0.32em;
  color: #f5f3ef;
}

.why__heading .line {
  display: block;
}

.why__en {
  margin-top: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  color: var(--gold-light);
}

.why__en-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.why__divider {
  position: relative;
  overflow: hidden;
  margin: 4.4rem 0 0 0;
  width: 1px;
  height: 4.6rem;
  background: rgba(182, 147, 92, 0.35);
}

.why__divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2.4s ease-in-out infinite;
}

.why__intro {
  margin-top: 4.4rem;
}

.why__intro p {
  font-size: 1.18rem;
  line-height: 1.9;
  color: #d8d6d1;
}

.why__intro p + p {
  margin-top: 2.6rem;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 6rem;
  padding-bottom: 4.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.why__item--reverse {
  flex-direction: row-reverse;
  gap: 4rem;
}

.why__item-text {
  flex: 1 1 auto;
  min-width: 0;
}

.why__item-photo {
  flex: 0 0 38%;
  width: 38%;
  height: auto;
  object-fit: cover;
  box-shadow: 0.6rem 0.6rem 0 rgba(255, 255, 255, 0.12);
}

.why__item-photo--pc {
  display: none;
}

.why__item-num {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.why__item-heading {
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
  color: #fff;
}

.why__item-body {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  line-height: 2;
  color: #c9c7c2;
}

.why__closing {
  margin-top: 6rem;
  text-align: center;
}

.why__closing p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #e8e6e1;
}

.why__btn {
  position: relative;
  overflow: hidden;
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.7rem 1.6rem;
  background: linear-gradient(135deg, #c3a06a, #a5824c);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 8px 24px rgba(165, 130, 76, 0.35);
}

.why__btn-icon {
  width: 2.6rem;
  height: 2.6rem;
}

.why__btn-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.why__btn-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

/* ============================
   REWARD
============================ */
.reward {
  background: #232525;
}

.reward__inner {
  padding: 7.2rem 2.4rem 8rem;
}

.reward__label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--gold-light);
}

.reward__heading {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  color: #f5f3ef;
}

.reward__heading-bar {
  flex: 0 0 4.8rem;
  width: 4.8rem;
  margin-left: -2.4rem;
  height: 1px;
  background: var(--gold);
}

.reward__list {
  margin: 5.2rem 0 0 0;
}

.reward__row {
  display: flex;
  gap: 1.6rem;
  padding-top: 3.6rem;
}

.reward__row:first-child {
  padding-top: 0;
}

.reward__row-label {
  flex: 0 0 8rem;
  width: 8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: var(--gold);
}

.reward__row-body {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.reward__row-body p {
  font-size: 1.35rem;
  line-height: 1.85;
  color: #e8e6e1;
}

.reward__row-body p + p {
  margin-top: 1.6rem;
}

.reward__note {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  color: #9b968c !important;
}

.reward__footnote {
  margin-top: 5.2rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #78756e;
}

/* ============================
   FLOW
============================ */
.flow {
  position: relative;
  overflow: hidden;
  background: #1a1410;
  color: #fff;
}

.flow__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.flow__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.78) 0%, rgba(10, 8, 5, 0.85) 45%, rgba(6, 5, 3, 0.93) 100%);
}

.flow__inner {
  position: relative;
  z-index: 1;
  padding: 6.2rem min(40 / 750 * 100vw, 40px) 8rem;
}

.flow__label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--gold-light);
}

.flow__heading {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  color: #f5f3ef;
}

.flow__heading-bar {
  flex: 0 0 4.8rem;
  width: 4.8rem;
  margin-left: -4rem;
  height: 1px;
  background: var(--gold);
}

.flow__step {
  margin-top: 3.6rem;
  margin-bottom: 4rem;
}

.flow__step-head {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(182, 147, 92, 0.4);
}

.flow__step-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}

.flow__step-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #efefef;
}

.flow__step-body {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #efefef;
}


.flow__btn {
  position: relative;
  overflow: hidden;
  margin-top: -0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.7rem 1.6rem;
  background: linear-gradient(135deg, #c3a06a, #a5824c);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0.5px rgba(255, 255, 255, 0.25) inset;
}

.flow__btn-icon {
  width: 2.6rem;
  height: 2.6rem;
}

.flow__btn-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flow__btn-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.flow__note {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: #efefef;
}

/* ============================
   LOCATION
============================ */
.location {
  background: #0d0d0d;
}

.location__inner {
  padding: 7.2rem 2.4rem 8rem;
}

.location__label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--gold-light);
}

.location__heading {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  color: #f5f3ef;
}

.location__heading-bar {
  flex: 0 0 4.8rem;
  width: 4.8rem;
  margin-left: -2.4rem;
  height: 1px;
  background: var(--gold);
}

.location__area {
  margin-top: 5.2rem;
}

.location__area:first-of-type {
  margin-top: 5.6rem;
}

.location__area-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.location__area-title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.location__grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem 1.6rem;
}

.location__card--full {
  grid-column: 1 / -1;
}

.location__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location__card-city {
  margin-top: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.location__card-name {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.location__card-desc {
  margin-top: 0.8rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cfccc5;
}

.location__card-addr {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #8f8c86;
}

.location__cta {
  margin-top: 6rem;
  padding: 3.2rem 0;
  border-top: 1px solid rgba(182, 147, 92, 0.4);
  border-bottom: 1px solid rgba(182, 147, 92, 0.4);
}

.location__note {
  text-align: center;
  font-size: 1.15rem;
  color: #cfccc5;
}

.location__btn {
  position: relative;
  overflow: hidden;
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.7rem 1.6rem;
  background: linear-gradient(135deg, #c3a06a, #a5824c);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 8px 24px rgba(165, 130, 76, 0.35);
}

.location__btn-icon {
  width: 2.6rem;
  height: 2.6rem;
}

.location__btn-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.location__btn-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

/* ============================
   FAQ
============================ */
.faq {
  background: #2a2e2e;
}

.faq__inner {
  padding: 7.2rem 2.4rem 8rem;
}

.faq__label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--gold-light);
}

.faq__heading {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  color: #f5f3ef;
}

.faq__heading-bar {
  flex: 0 0 4.8rem;
  width: 4.8rem;
  margin-left: -2.4rem;
  height: 1px;
  background: var(--gold);
}

.faq__list {
  margin-top: 4.4rem;
  border-top: 1px solid rgba(182, 147, 92, 0.35);
}

.faq__item {
  border-bottom: 1px solid rgba(182, 147, 92, 0.35);
}

.faq__q {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2.2rem 3rem 2.2rem 0;
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q-mark {
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}

.faq__q-text {
  flex: 1 1 auto;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff;
}

.faq__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.faq__toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq__toggle::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq__item[open] .faq__toggle {
  transform: translateY(-50%) rotate(45deg);
}

.faq__a {
  margin: 0 0 2.4rem 0;
  padding-right: 3rem;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #c9c6c0;
}

/* ============================
   FOOTER
============================ */
.footer-cta {
  position: relative;
  overflow: hidden;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-cta__bg-img--sp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 29%;
}

.footer-cta__bg-img--pc {
  display: none;
}

.footer-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  padding: 9rem 2.4rem 2rem;
  text-align: center;
}

.footer-cta__heading {
  color: #fff;
}

.footer-cta__heading .line {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-cta__heading--main {
  margin-top: 1.8rem;
}

.footer-cta__btn {
  position: relative;
  overflow: hidden;
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(135deg, #c3a06a, #a5824c);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 8px 24px rgba(165, 130, 76, 0.35);
}

.footer-cta__btn-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.footer-cta__btn-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-cta__btn-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.footer-cta__note {
  margin-top: 2.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e8e6e1;
}

.footer-brand {
  background: #0b0b0b;
  padding: 2.6rem 2.4rem 0.6rem;
  display: flex;
  justify-content: center;
}

.footer-brand__logo {
  width: 100%;
  max-width: 8rem;
}

/* ============================
   Scroll reveal
============================ */
.concept__label,
.concept__en,
.concept__divider,
.photo-strip,
.why__label,
.why__en,
.why__divider,
.why__intro,
.why__item,
.why__closing,
.reward__label,
.reward__heading,
.reward__row,
.reward__footnote,
.flow__label,
.flow__heading,
.flow__step,
.flow__note,
.location__label,
.location__heading,
.location__area,
.location__cta,
.faq__label,
.faq__heading,
.faq__item,
.footer-cta__inner,
.footer-brand__logo {
  opacity: 0;
  transform: translateY(3.2rem);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.concept__label.is-visible,
.concept__en.is-visible,
.concept__divider.is-visible,
.photo-strip.is-visible,
.why__label.is-visible,
.why__en.is-visible,
.why__divider.is-visible,
.why__intro.is-visible,
.why__item.is-visible,
.why__closing.is-visible,
.reward__label.is-visible,
.reward__heading.is-visible,
.reward__row.is-visible,
.reward__footnote.is-visible,
.flow__label.is-visible,
.flow__heading.is-visible,
.flow__step.is-visible,
.flow__note.is-visible,
.location__label.is-visible,
.location__heading.is-visible,
.location__area.is-visible,
.location__cta.is-visible,
.faq__label.is-visible,
.faq__heading.is-visible,
.faq__item.is-visible,
.footer-cta__inner.is-visible,
.footer-brand__logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA buttons — same motion as the FV hero button (fvFadeInUp: rise + soft scale-up) */
.why__btn,
.flow__btn,
.location__btn,
.footer-cta__btn {
  opacity: 0;
  transform: translateY(3.6rem) scale(0.97);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why__btn.is-visible,
.flow__btn.is-visible,
.location__btn.is-visible,
.footer-cta__btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Shine sweep — same glint effect as the FV hero button */
.why__btn::after,
.flow__btn::after,
.location__btn::after,
.footer-cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out infinite;
}

/* Character-by-character reveal for the CONCEPT / WHY headlines — enters from the left */
.concept__heading .char,
.why__heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-1.4rem);
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.concept__heading.is-visible .char,
.why__heading.is-visible .char {
  opacity: 1;
  transform: translateX(0);
}

/* MVV panels — alternating left/right slide-in, in order */
.mvv__panel--mission,
.mvv__panel--values {
  opacity: 0;
  transform: translateX(-4.4rem);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mvv__panel--vision {
  opacity: 0;
  transform: translateX(4.4rem);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mvv__panel--mission.is-visible,
.mvv__panel--vision.is-visible,
.mvv__panel--values.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .concept__label,
  .concept__en,
  .concept__divider,
  .mvv__panel--mission,
  .mvv__panel--vision,
  .mvv__panel--values,
  .photo-strip,
  .why__label,
  .why__en,
  .why__divider,
  .why__intro,
  .why__item,
  .why__closing,
  .reward__label,
  .reward__heading,
  .reward__row,
  .reward__footnote,
  .flow__label,
  .flow__heading,
  .flow__step,
  .flow__note,
  .location__label,
  .location__heading,
  .location__area,
  .location__cta,
  .faq__label,
  .faq__heading,
  .faq__item,
  .footer-cta__inner,
  .footer-brand__logo,
  .why__btn,
  .flow__btn,
  .location__btn,
  .footer-cta__btn,
  .concept__heading .char,
  .why__heading .char {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ============================
   FV — SP brush-up
   (scoped to SP only; PC/tablet layout above 767px is untouched)
============================ */
@media (max-width: 767px) {
  /* height: let content set the height instead of forcing full-screen —
     avoids a big empty gap under SCROLL on taller SP viewports */
  .fv,
  .fv__inner {
    min-height: 0;
  }

  /* top vertical rhythm — matched to the design comp, lightly compressed so the
     whole hero (through CTA + SCROLL) still fits on short devices like iPhone SE */
  .fv__inner {
    padding-top: 30px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  /* text group — logo / STAFF RECRUIT / headline / gold copy / body share one left edge */
  .fv__group {
    margin-left: 52.2%;
  }

  .fv__head,
  .fv__copy,
  .fv__lead {
    margin-left: -49px;
  }

  /* CTA shares the same left edge as the headline above it (52.2% group offset - 49px pull-back) */
  .fv__btn {
    margin-left: calc(52.2% - 49px);
  }

  .fv__label {
    /* margin-top: 12px; */
  }

  .fv__copy {
    /* margin-top: 32px; */
  }

  .fv__subheading {
    margin-top: 8px;
  }

  /* soften the background wave texture without flattening it */
  .fv__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0.42) 65%, rgba(0, 0, 0, 0.8) 100%);
  }

  /* 1. body copy — kept just wide enough that "水商売の王道を学び、" doesn't
     break mid-word; the rest of the group stays flush at the comp's 47.2% edge */
  .fv__lead {
    position: relative;
    margin-top: 22px;
  }

  .fv__lead::before {
    content: "";
    position: absolute;
    inset: -1.6rem -1.6rem -1.6rem -3.5rem;
    z-index: -1;
    pointer-events: none;
  }

  /* 2. body copy size/rhythm — a touch smaller so it no longer competes with the headline */
  .fv__lead p {
    font-size: 1.2rem;
    line-height: 1.85;
    font-weight: 400;
    letter-spacing: 0.04em;
    word-break: normal;
    overflow-wrap: normal;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
  }

  .fv__lead p + p {
    margin-top: 22px;
  }

  /* SCROLL — kept tight under the CTA and clear of the home-indicator area */
  .fv__scroll {
    margin-top: -0.6rem;
    margin-bottom: env(safe-area-inset-bottom);
    gap: 0.8rem;
  }

  .fv__scroll i {
    height: 3.2rem;
  }
}

/* ============================================================
   TABLET (768px–1023px)
   Below 1024px the desktop rules below don't apply yet, and these
   CTA buttons default to width:auto (block-level flex), which
   stretches them full-width into an unintended banner look on
   tablet viewports. Cap them the same way desktop does.
============================================================ */
@media (min-width: 768px) {
  .why__btn,
  .flow__btn,
  .location__btn,
  .footer-cta__btn {
    max-width: 33rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   DESKTOP / PC LAYOUT
   Rebuilt per FABRIC_スタッフ_PC版.psd (1440px canvas).
   Copy is identical to the SP build — only layout, spacing and
   type scale change at this breakpoint. Animations reuse the
   same reveal classes / keyframes defined above.
============================================================ */
@media (min-width: 1024px) {

  body {
    max-width: none;
  }

  main {
    max-width: none;
  }

  /* ---------- FV ---------- */
  .fv__bg-img--sp {
    display: none;
  }

  .fv__bg-img--pc {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% top;
  }

  .fv__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.82) 100%);
  }

  .fv__inner {
    padding: 6rem 6rem 2.5rem;
  }

  .fv__head {
    margin-left: calc(38% + 2rem);
    margin-top: 1.5rem;
  }

  .fv__logo {
    max-width: 20rem;
  }

  .fv__label {
    font-size: 1.8rem;
  }

  .fv__copy {
    margin-left: calc(38% + 2rem);
    margin-top: 1.7rem;
    max-width: 58rem;
  }

  .fv__br--sp {
    display: none;
  }

  .fv__heading {
    font-size: 4.5rem;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .fv__subheading {
    font-size: 2.7rem;
    white-space: nowrap;
  }

  .fv__lead {
    margin-left: calc(38% + 2rem);
    max-width: 54rem;
  }

  .fv__lead p {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .fv__lead p:first-child {
    white-space: nowrap;
  }

  .fv__lead p + p {
    margin-top: 1.9rem;
  }

  .fv__btn {
    margin-left: calc(38% + 3.2rem);
    margin-top: 4.8rem;
    gap: 1.5rem;
    padding: 1.9rem 3.2rem 1.9rem 2.2rem;
    box-shadow:
      0 0 0 0.1rem rgba(255, 255, 255, 0.15) inset,
      0 0.8rem 2.4rem rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.45);
  }

  .fv__btn-text {
    font-size: 1.4rem;
    line-height: 1;
  }

  .fv__btn-arrow {
    margin-left: 0.4rem;
    line-height: 1;
  }

  .fv__scroll {
    position: absolute;
    right: 6.8rem;
    bottom: 6.5rem;
    margin-top: 0;
    gap: 0.1rem;
  }

  .fv__scroll span {
    letter-spacing: 0.04em;
  }

  /* ---------- CONCEPT ---------- */
  .concept__inner {
    max-width: 100rem;
    margin: 0 auto;
    padding: 11.5rem 4rem 9rem;
  }

  .concept__label {
    font-size: 1.8rem;
  }

  .concept__heading {
    font-size: 4.2rem;
  }

  .concept__en {
    font-size: 1.6rem;
  }

  /* ---------- MISSION / VISION / VALUES ---------- */
  .mvv {
    display: flex;
    flex-wrap: wrap;
  }

  .mvv__panel--mission,
  .mvv__panel--vision {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .mvv__panel--values {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mvv__panel {
    padding: 7.4rem 5rem 7.4rem;
  }

  .mvv__body {
    margin-top: 2.65rem;
  }

  .mvv__word {
    font-size: 3.2rem;
  }

  .mvv__num {
    font-size: 4.2rem;
  }

  .mvv__quote p {
    font-size: 1.8rem;
  }

  .mvv__intro p {
    font-size: 1.4rem;
  }

  .mvv__body p {
    font-size: 1.2rem;
  }

  .mvv__grid {
    width: 100%;
    max-width: 92rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 7rem;
  }

  .mvv__item {
    padding: 0 3.5rem;
  }

  .mvv__item:first-child {
    grid-column: auto;
  }

  .mvv__item:nth-child(2) {
    margin-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mvv__item:first-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .mvv__item-heading-br {
    display: inline;
  }

  .mvv__item-desc-br--sp {
    display: none;
  }

  .mvv__item-num {
    font-size: 2.4rem;
    padding-top: 0.3rem;
  }

  .mvv__item-heading {
    margin-top: 1.8rem;
    font-size: 1.7rem;
  }

  .mvv__item:nth-child(3) .mvv__item-heading {
    font-size: 1.7rem;
    white-space: normal;
  }

  .mvv__item-icon {
    width: 2rem;
    height: 2rem;
    margin: 2.8rem auto;
  }

  .mvv__item-desc {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .mvv__closing p {
    font-size: 1.7rem;
  }

  .mvv__onefabric {
    font-size: 2.6rem;
  }

  /* ---------- WHY FABRIC ---------- */
  .why__inner {
    max-width: 104rem;
    margin: 0 auto;
    padding: 12.5rem 4rem 9.5rem;
  }

  .why__label {
    font-size: 1.8rem;
  }

  .why__heading {
    margin-top: 1.4rem;
    font-size: 3.6rem;
    line-height: 1.5;
  }

  .why__intro {
    margin-top: 1.9rem;
  }

  .why__en {
    font-size: 1.6rem;
  }

  .why__intro p {
    font-size: 1.4rem;
  }

  .why__item {
    gap: 3rem;
    margin-top: 6.2rem;
    padding-bottom: 4.8rem;
  }

  .why__item-photo--sp {
    display: none;
  }

  .why__item-photo--pc {
    display: block;
    height: auto;
    flex: 0 0 54.5%;
    width: 54.5%;
  }

  .why__item--reverse {
    gap: 3rem;
  }

  .why__item--reverse .why__item-text {
    padding-left: 20rem;
  }

  .why__item--reverse .why__item-body {
    text-align: left;
  }

  .why__item-num {
    font-size: 3.6rem;
  }

  .why__item-heading {
    font-size: 2.25rem;
  }

  .why__item-body {
    font-size: 1.3rem;
  }

  .why__closing p {
    font-size: 1.4rem;
  }

  .why__btn {
    max-width: 33rem;
    margin-top: 3.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.45rem;
    padding-bottom: 2.45rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 8px 24px rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.34);
  }

  .why__btn-text,
  .why__btn-arrow {
    line-height: 1;
  }

  .why__btn:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 8px 24px rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.46);
  }

  /* ---------- REWARD ---------- */
  .reward__inner {
    max-width: 119rem;
    margin: 0 auto;
    padding: 10.5rem 4rem 6.5rem;
  }

  .reward__label {
    text-align: center;
    font-size: 1.8rem;
  }

  .reward__heading {
    justify-content: center;
    font-size: 3.2rem;
  }

  .reward__heading-bar {
    display: none;
  }

  .reward__list {
    max-width: 87rem;
    margin: 5.6rem auto 0;
  }

  .reward__row {
    gap: 2.4rem;
    padding-top: 4.6rem;
  }

  .reward__row-label {
    flex: 0 0 13rem;
    width: 13rem;
    font-size: 1.5rem;
  }

  .reward__row-body p {
    font-size: 1.5rem;
  }

  .reward__footnote {
    font-size: 1.2rem;
  }

  /* ---------- FLOW ---------- */
  .flow__inner {
    position: relative;
    max-width: 90rem;
    margin: 0 auto;
    padding: 8.5rem 4rem 8.5rem;
  }

  .flow__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
  }

  .flow__label {
    text-align: center;
    font-size: 1.8rem;
  }

  .flow__heading {
    margin-top: 1.2rem;
    justify-content: center;
    font-size: 3.2rem;
  }

  .flow__heading-bar {
    display: none;
  }

  .flow__step-head {
    max-width: 87%;
  }

  .flow__step {
    margin-top: 2.8rem;
    margin-bottom: 3.2rem;
  }

  .flow__step-title {
    font-size: 2rem;
  }

  .flow__step-num {
    font-size: 1.6rem;
  }

  .flow__step-body {
    font-size: 1.4rem;
  }

  .flow__note {
    font-size: 1.25rem;
  }

  .flow__btn {
    max-width: 33rem;
    margin-top: 7.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.45rem;
    padding-bottom: 2.45rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.35),
      0 0 0 0.5px rgba(255, 255, 255, 0.25) inset,
      0 0 3.5rem rgba(195, 160, 106, 0.34);
  }

  .flow__btn-text,
  .flow__btn-arrow {
    line-height: 1;
  }

  .flow__btn:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.35),
      0 0 0 0.5px rgba(255, 255, 255, 0.25) inset,
      0 0 3.5rem rgba(195, 160, 106, 0.46);
  }

  /* ---------- LOCATION ---------- */
  .location__inner {
    max-width: 132rem;
    margin: 0 auto;
    padding: 12rem 4rem 10rem;
  }

  .location__label {
    text-align: center;
    font-size: 1.8rem;
  }

  .location__heading {
    justify-content: center;
    font-size: 3.2rem;
  }

  .location__heading-bar {
    display: none;
  }

  .location__area-title {
    font-size: 1.5rem;
  }

  .location__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6.8rem 3.2rem;
  }

  .location__card-name {
    font-size: 2rem;
  }

  .location__card-desc {
    font-size: 1.6rem;
  }

  .location__card--full {
    display: grid;
    grid-template-columns: 46% 1fr;
    grid-template-rows: auto auto auto auto minmax(0, 1fr);
    column-gap: 3.4rem;
    align-items: start;
  }

  .location__card--full .location__card-img {
    grid-column: 1;
    grid-row: 1 / -1;
    height: 100%;
  }

  .location__card--full .location__card-city {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    font-size: 1.3rem;
  }

  .location__card--full .location__card-name {
    grid-column: 2;
    grid-row: 2;
    font-size: 2rem;
  }

  .location__card--full .location__card-desc {
    grid-column: 2;
    grid-row: 3;
    font-size: 1.6rem;
  }

  .location__card--full .location__card-addr {
    grid-column: 2;
    grid-row: 4;
    margin-top: 1rem;
    font-size: 1.35rem;
    line-height: 1.8;
  }

  .location__card-addr {
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .location__note {
    font-size: 1.25rem;
  }

  .location__cta {
    margin-top: 2rem;
  }

  .location__btn {
    max-width: 33rem;
    margin-top: 2.4rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.45rem;
    padding-bottom: 2.45rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 8px 24px rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.34);
  }

  .location__btn-text,
  .location__btn-arrow {
    line-height: 1;
  }

  .location__btn:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 8px 24px rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.46);
  }

  /* ---------- FAQ ---------- */
  .faq__inner {
    max-width: 98rem;
    margin: 0 auto;
    padding: 12rem 4rem 10rem;
  }

  .faq__label {
    text-align: center;
    font-size: 1.8rem;
  }

  .faq__heading {
    justify-content: center;
    font-size: 3.2rem;
  }

  .faq__heading-bar {
    display: none;
  }

  .faq__q {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .faq__q-text {
    font-size: 1.4rem;
  }

  .faq__a {
    font-size: 1.25rem;
  }

  /* ---------- FOOTER ---------- */
  .footer-cta__bg-img--sp {
    display: none;
  }

  .footer-cta__bg-img--pc {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% top;
  }

  .footer-cta__inner {
    padding: 6.5rem 2.4rem 2rem;
  }

  .footer-cta__bg::after {
    background: rgba(0, 0, 0, 0.45);
  }

  .footer-cta__heading .line {
    font-size: 1.8rem;
  }

  .footer-cta__heading--main {
    font-size: 3rem;
  }

  .footer-cta__note {
    font-size: 1.3rem;
  }

  .footer-cta__btn {
    max-width: 33rem;
    margin-top: 3.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 8px 24px rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.34);
  }

  .footer-cta__btn-text,
  .footer-cta__btn-arrow {
    line-height: 1;
  }

  .footer-cta__btn:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 8px 24px rgba(165, 130, 76, 0.35),
      0 0 3.5rem rgba(195, 160, 106, 0.46);
  }

  .footer-brand {
    padding: 1rem 2.4rem 0.6rem;
  }

  .footer-brand__logo {
    max-width: 19.5rem;
  }
}
