@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");

:root {
  --ink: #353535;
  --red: #a91422;
  --sand: #c9bba8;
  --paper: #f7f4eb;
  --header-height: 102px;
  --hero-shift: 100px;
  --hero-up: -50px;
  --sidebar-width: 250px;
  --content-width: 70vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper) url("img/bg_pattern.png") repeat;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
.about-heading p,
.producer-name b,
.coming-soon p {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

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

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

::selection {
  background: #353535;
  color: #fff;
}

.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;
}

.gold-confetti {
  position: fixed;
  inset: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: var(--sidebar-width);
  height: 100svh;
  padding: 20px 34px 28px;
  overflow-y: auto;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  background: transparent;
  border-right: 0;
  box-shadow: none;
}

.brand {
  display: block;
  width: 182px;
  height: 182px;
  margin: 0 auto 12px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 93%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.global-nav {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
}

.global-nav a {
  position: relative;
  white-space: nowrap;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.global-nav > a {
  padding: 10px 0;
}

.global-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-socials {
  display: flex;
  width: 100%;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.global-nav .nav-company {
  margin-top: 12px;
  font-size: 14px;
}

.global-nav .nav-legal {
  padding: 5px 0;
  white-space: normal;
  font-size: 11px;
  line-height: 1.65;
}

.nav-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  color: var(--red);
  transform: translateY(-2px);
}

.nav-icon--line span {
  display: grid;
  width: 23px;
  height: 23px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nav-icon[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.instagram-dot {
  fill: currentColor;
  stroke: none;
}



.language-switch {
  display: inline-flex;
  width: auto;
  margin-top: 16px;
  padding: 4px;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(169, 20, 34, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 9px 20px rgba(58, 45, 34, 0.08);
  color: #7b6c5b;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.13em;
  backdrop-filter: blur(5px);
}

.language-switch span[aria-hidden="true"] {
  display: none;
}

.language-switch__link {
  position: relative;
  min-width: 45px;
  padding: 7px 10px 7px 12px;
  border-radius: 999px;
  text-align: center;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.language-switch__link::after {
  display: none;
}

.language-switch__link:hover,
.language-switch__link:focus-visible {
  color: var(--red);
  background: rgba(169, 20, 34, 0.08);
}

.language-switch__link.is-current {
  color: #fff;
  background: var(--red);
  box-shadow: 0 5px 14px rgba(169, 20, 34, 0.22);
}

.menu-button {
  display: none;
}

main {
  width: 100%;
  margin-left: 0;
}

.hero {
  position: relative;
  min-height: min(736px, 80svh);
  /*overflow: hidden;*/
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url("img/bg_pattern.png") repeat;
  content: "";
}

.hero-scenery {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: url("img/himeji.png") center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 14%, #000 36%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 14%, #000 36%);
  opacity: 0.92;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    url("img/top_rightimg.png") top right / min(12.5vw, 205px) auto no-repeat,
    linear-gradient(90deg, rgba(248, 246, 238, 0.28) 0%, transparent 52%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: 25%;
  left: max(8vw, calc((100vw - 1180px) / 2 + 95px));
  z-index: 5;
  display: flex;
  width: min(40vw, 500px);
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  transform: translate(var(--hero-shift), var(--hero-up));
}

.hero-copy::before {
  position: absolute;
  top: -22%;
  left: -32%;
  z-index: -1;
  width: min(37vw, 445px);
  aspect-ratio: 1;
  background: url("img/mon_bg.png") center / contain no-repeat;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.hero-copy h1 {
  position: relative;
  display: flex;
  height: 345px;
  margin: 0;
  flex-direction: row;
  gap: 10px;
  font-size: clamp(28px, 2.65vw, 43px);
  font-weight: 300;
  letter-spacing: 0.38em;
}

.hero-copy h1::before,
.copy-column::after {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(98, 87, 73, 0.32);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  animation: verticalLineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy h1::before {
  left: 0;
  animation-delay: 10.2s;
}

.copy-column {
  position: relative;
  display: block;
  padding: 0 15px;
  line-height: 1.65;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.copy-column::after {
  right: 0;
}

.copy-column--right::after {
  animation-delay: 0s;
}

.copy-column--center::after {
  animation-delay: 3.8s;
}

.copy-column--left::after {
  animation-delay: 7.3s;
}

.copy-column b {
  color: var(--red);
  font-weight: 400;
}

.vertical-number {
  text-orientation: upright;
}

.copy-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-8px);
  animation: copyCharReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--char-delay);
}

.hero-copy h1 {
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-size: inherit;
  letter-spacing: 0;
}

.hero-copy h1::before {
  display: none;
}

.hero-copy-line {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  white-space: nowrap;
}

.hero-copy-line b {
  color: #df332d;
  font-weight: 400;
}

.hero-copy-line--top {
  position: relative;
  margin-left: 35%;
  padding: 10px 18px;
  justify-content: center;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.16em;
}

.hero-copy-line--top::before,
.hero-copy-line--top::after,
.hero-copy-line--bottom::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(191, 176, 159, 0.62);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  animation: copyRuleReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy-line--top::before {
  top: 0;
  animation-delay: 0.25s;
}

.hero-copy-line--top::after {
  bottom: 0;
  animation-delay: 0.25s;
}

.hero-copy-line--middle {
  min-height: 132px;
  margin-top: -50px;
  align-items: flex-end;
  gap: 12px;
  font-size: clamp(43px, 4.8vw, 64px);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-left: 15%;
}

.hero-one {
  display: block;
  margin: 0 0 -3px;
  font-family: "Times New Roman", serif;
  font-size: clamp(112px, 12vw, 165px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.12em;
  line-height: 0.95;
}

.hero-copy-line--bottom {
  position: relative;
  margin-top: 9px;
  padding-bottom: 14px;
  font-size: clamp(47px, 5.45vw, 73px);
  letter-spacing: 0.07em;
  line-height: 1.18;
  margin-left: 14%;
}

.hero-copy-line--bottom::after {
  bottom: 0;
  animation-delay: 2.9s;
}

.hero-message {
  display: flex;
  width: 100%;
  margin-top: 18px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  text-align: center;
  transform: translateY(10px);
  animation: heroMessageReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 4.6s forwards;
}

.hero-message p {
  width: 100%;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  line-height: 1.85;
}

.hero-patent {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid rgba(53, 53, 53, 0.72);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.sp-only-break {
  display: none;
}

.hero-models {
  position: absolute;
  top: 8%;
  left: 53%;
  z-index: 3;
  width: min(28vw, 400px);
  height: 92%;
  transform: translateX(calc(-22% + var(--hero-shift))) translateY(var(--hero-up));
}

.hero-model {
  position: absolute;
  bottom: -100%;
  left: 60%;
  width: auto;
  max-width: none;
  height: 193%;
  opacity: 0;
  filter: drop-shadow(0 18px 20px rgba(50, 42, 34, 0.12));
  transform: translateX(-50%) scale(1.01);
  transition: opacity 1.8s ease, transform 7s ease;
}

.hero-model.is-visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.scroll-guide {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #665f56;
  font-family: serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-guide i {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(83, 74, 64, 0.28);
}

.scroll-guide i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

.gallery-strip {
  position: relative;
  z-index: 8;
  width: 100%;
  padding: 12px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
}

.gallery-strip.is-sequenced {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 1.35s ease, translate 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-strip.is-sequenced.is-visible {
  opacity: 1;
  translate: 0 0;
}

.gallery-strip::before,
.gallery-strip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(130px, 18vw, 300px);
  content: "";
  pointer-events: none;
}

.gallery-strip::before {
  left: 0;
  background: linear-gradient(90deg, #f7f4eb 0%, rgba(247, 244, 235, 0.9) 38%, transparent 100%);
}

.gallery-strip::after {
  right: 0;
  background: linear-gradient(270deg, #f7f4eb 0%, rgba(247, 244, 235, 0.9) 38%, transparent 100%);
}

.gallery-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: galleryLoop 60s linear infinite;
  will-change: transform;
}

.gallery-group {
  display: flex;
  padding-right: 12px;
  gap: 12px;
}

.gallery-group img {
  width: clamp(192px, 19.2vw, 304px);
  height: clamp(136px, 13.6vw, 204px);
  flex: 0 0 auto;
  object-fit: cover;
}

.about {
  position: relative;
  z-index: 7;
  min-height: 335px;
  margin-top: -2px;
  padding: 58px 24px 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  backdrop-filter: none;
}

.about-inner {
  display: grid;
  width: var(--content-width);
  margin: 0 auto;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 36px;
}

.about-heading {
  grid-column: 1;
  grid-row: 2;
}

.about-content {
  display: contents;
}

.about-heading p,
.about-heading h2 {
  margin: 0;
  color: var(--sand);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.about-heading h2 {
  margin-left: 0;
}

.about-heading span {
  display: block;
  margin: 20px 0 0 8px;
  color: #7d7062;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.28em;
}

.about-lead {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 26px;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  text-align: center;
  font-size: 20px;
}

.worry-list {
  grid-column: 2;
  grid-row: 2;
}

.about-lead span {
  color: var(--red);
}

.worry-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px;
  list-style: none;
}

.worry-list li {
  position: relative;
  display: flex;
  min-height: 92px;
  padding: 18px 20px;
  align-items: center;
  border: 1px solid rgba(53, 53, 53, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(53, 53, 53, 0.035);
  font-size: 16px;
  line-height: 1.75;
}

.worry-list li::after {
  position: absolute;
  bottom: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(53, 53, 53, 0.1);
  border-bottom: 1px solid rgba(53, 53, 53, 0.1);
  background: rgba(255, 255, 255, 0.96);
  content: "";
  transform: rotate(45deg);
}

.about-resolution {
  width: var(--content-width);
  margin: 64px auto 0;
  text-align: center;
}

.about-resolution.is-sequenced .about-resolution-arrow,
.about-resolution.is-sequenced .about-resolution-lead,
.about-resolution.is-sequenced .about-resolution-panel {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 1.1s ease, translate 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-resolution.is-sequenced.show-arrow .about-resolution-arrow,
.about-resolution.is-sequenced.show-text .about-resolution-lead,
.about-resolution.is-sequenced.show-text .about-resolution-panel {
  opacity: 1;
  translate: 0 0;
}

.about-resolution-arrow {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 45px;
  border-right: 1px solid #777b89;
  border-bottom: 1px solid #777b89;
  transform: rotate(45deg);
}

.about-resolution-lead {
  margin: 0 0 24px;
  color: #32384f;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.16em;
  line-height: 1.8;
}

.about-resolution-panel {
  position: relative;
  padding: 0;
  background: transparent;
}

.about-resolution-panel p {
  margin: 0;
  color: #32384f;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(21px, 2.1vw, 29px);
  letter-spacing: 0.11em;
  line-height: 1.9;
}

.producer {
  padding: 86px 24px 60px;
}

.producer-card {
  display: grid;
  width: calc(var(--content-width) - 150px);
  margin: 0 auto;
  padding: 56px 58px;
  grid-template-columns: 235px 1fr;
  align-items: center;
  gap: 52px;
  border: 1px solid rgba(53, 53, 53, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(53, 53, 53, 0.045);
}

.producer-photo img {
  width: 235px;
  aspect-ratio: 235 / 381;
  object-fit: cover;
}

.producer-profile h2 {
  margin: 0 0 25px;
  color: var(--sand);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1;
}

.producer-name {
  display: flex;
  margin: 0 0 42px;
  align-items: baseline;
  gap: 44px;
}

.producer-name span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
}

.producer-name b {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.producer-message {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.features {
  padding: 90px 24px 105px;
}

.section-heading {
  position: relative;
  width: var(--content-width);
  margin: 0 auto 54px;
  padding-bottom: 25px;
  text-align: center;
}

.section-heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 1px;
  background: var(--red);
  content: "";
  transform: translateX(-50%);
}

.section-heading p {
  margin: 0;
  color: var(--sand);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.28em;
}

.feature-grid {
  display: grid;
  width: var(--content-width);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(183, 163, 132, 0.32);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(53, 53, 53, 0.045);
}

.feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 397 / 274;
  background: #c8baa9;
}

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

.feature-body {
  padding: 31px 27px 30px;
}

.feature-number {
  position: absolute;
  right: 17px;
  bottom: -18px;
  z-index: 2;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(62px, 6.2vw, 82px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(66, 51, 35, 0.08);
}

.feature-card h3 {
  margin: 0 0 17px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.feature-card h3 b {
  color: var(--red);
  font-weight: 400;
}

.feature-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.rental-products {
  padding: 92px 24px 110px;
  background: rgba(255, 255, 255, 0.42);
}

.rental-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.top-product-preview {
  display: grid;
  width: min(900px, 100%);
  height: 520px;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.top-product-preview figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #c8baa9;
}

.top-product-preview__item--1 {
  grid-column: 1 / 3;
  grid-row: 1 / 5;
}

.top-product-preview__item--2 {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.top-product-preview__item--3 {
  grid-column: 5 / 7;
  grid-row: 1 / 4;
}

.top-product-preview__item--4 {
  grid-column: 3 / 4;
  grid-row: 3 / 5;
}

.top-product-preview__item--5 {
  grid-column: 4 / 5;
  grid-row: 3 / 5;
}

.top-product-preview__item--6 {
  grid-column: 5 / 7;
  grid-row: 4 / 5;
}

.top-product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.55s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-product-preview img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.products-page-link {
  display: flex;
  width: min(340px, 90%);
  min-height: 62px;
  margin: 44px auto 0;
  padding: 12px 24px;
  border: 1px solid var(--sand);
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.68);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 17px;
  letter-spacing: 0.16em;
  transition: color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.products-page-link i {
  width: 34px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewX(45deg);
}

.products-page-link:hover,
.products-page-link:focus-visible {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(53, 53, 53, 0.14);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px 18px;
}

.product-item h3 {
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.product-item p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.product-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 941 / 1672;
  border-radius: 5px;
  background: #c8baa9;
  box-shadow: 0 12px 28px rgba(53, 53, 53, 0.07);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-item.is-rented .product-card img {
  filter: grayscale(1);
  opacity: 0.62;
}

.product-status {
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 2;
  padding: 7px 13px 7px 15px;
  color: #fff;
  background: rgba(53, 53, 53, 0.82);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.product-loading,
.product-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px 0;
  text-align: center;
}

.rental-flow {
  padding: 98px 24px 112px;
}

.flow-layout {
  display: grid;
  width: calc(85vw + 24px);
  margin: 0 -24px 0 auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1.15fr);
  align-items: stretch;
  gap: 24px;
}

.flow-list {
  grid-column: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-step {
  position: relative;
  display: grid;
  min-height: 108px;
  padding: 10px 0 22px;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 3px 18px;
  border: 0;
  background: transparent;
}

.flow-step + .flow-step {
  margin-top: 12px;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 62px;
  bottom: -22px;
  left: 26px;
  width: 1px;
  background: #bfb09f;
  content: "";
}

.flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: 1 / 3;
  border-radius: 50%;
  background: #bfb09f;
  color: #fff;
  place-items: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.flow-step h3 {
  margin: 0;
  grid-column: 2;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.flow-step p {
  margin: 0;
  grid-column: 2;
  font-size: 16px;
  line-height: 1.75;
}

.flow-step small {
  font-size: 14px;
}

.flow-visual {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  height: 800px;
  min-height: 800px;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-radius: 10px 0 0 10px;
  background: transparent;
}

.flow-collage-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  transform: scale(1);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.flow-collage-image.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.flow-collage-image--main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.flow-collage-image--top {
  grid-column: 2;
  grid-row: 1;
}

.flow-collage-image--bottom {
  grid-column: 2;
  grid-row: 2;
}

.faq {
  padding: 98px 24px 116px;
  background: rgba(255, 255, 255, 0.48);
}

.faq-list {
  width: var(--content-width);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #bfb09f;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(53, 53, 53, 0.025);
}

.faq-item + .faq-item {
  margin-top: 22px;
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 90px;
  padding: 27px 62px 27px 38px;
  align-items: center;
  gap: 17px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: #353535;
  font-size: 16px;
  flex: 0 0 auto;
}

.faq-item summary::before {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #bfb09f;
  color: #fff;
  content: "+";
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-answer {
  padding: 0 62px 33px 74px;
  overflow: hidden;
}

.faq-item[open] .faq-answer {
  animation: faqAnswerOpen 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-answer p {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 2;
}

.faq-answer table {
  width: min(580px, 100%);
  margin-top: 20px;
  border-collapse: collapse;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
}

.faq-answer th,
.faq-answer td {
  padding: 12px 15px;
  border: 1px solid rgba(113, 98, 77, 0.22);
  font-weight: 400;
  text-align: left;
}

.faq-answer th {
  width: 65%;
  background: rgba(214, 203, 188, 0.25);
}

.contact {
  padding: 98px 24px 112px;
}

.contact-actions {
  display: grid;
  width: var(--content-width);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-button {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 168px;
  padding: 25px 24px 25px 30px;
  grid-template-columns: 58px 1fr 92px 28px;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(100, 85, 67, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 13px 35px rgba(84, 69, 48, 0.05);
  will-change: box-shadow;
  transition:
    color 0.65s ease,
    border-color 0.65s ease,
    background-color 0.65s ease,
    box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-button::before,
.contact-button::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.contact-button::before {
  background-position: 0% 50%;
  background-size: 260% 260%;
  opacity: 0.12;
  transition: opacity 0.7s ease;
  animation: hologramShift 8s ease-in-out infinite;
}

.contact-button--line::before {
  background-image: linear-gradient(
    115deg,
    #eef9f1 0%,
    #dff4e7 24%,
    #f7fcf8 46%,
    #d8f0e1 68%,
    #eef9f1 100%
  );
}

.contact-button--instagram::before {
  background-image: linear-gradient(
    115deg,
    #fbf0f6 0%,
    #f4deea 24%,
    #fff8fb 46%,
    #eedff3 68%,
    #fbf0f6 100%
  );
}

.contact-button::after {
  inset: -60% -30%;
  background: linear-gradient(
    125deg,
    transparent 25%,
    rgba(255, 255, 255, 0.72) 42%,
    transparent 58%
  );
  opacity: 0;
  transform: translateX(-45%) rotate(4deg);
  transition: opacity 0.7s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.contact-button:hover,
.contact-button:focus-visible {
  border-color: currentColor;
}

.contact-button:hover::before,
.contact-button:focus-visible::before {
  opacity: 0.58;
}

.contact-button:hover::after,
.contact-button:focus-visible::after {
  opacity: 0.72;
  transform: translateX(45%) rotate(4deg);
}

.contact-button--line:hover,
.contact-button--line:focus-visible {
  color: #179b4c;
  background: #eef9f1;
  box-shadow: 0 20px 44px rgba(23, 155, 76, 0.2);
}

.contact-button--instagram:hover,
.contact-button--instagram:focus-visible {
  color: #b01f6a;
  background: #fbf0f6;
  box-shadow: 0 20px 44px rgba(176, 31, 106, 0.18);
}

.contact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  flex: 0 0 auto;
}

.contact-icon--line {
  border-radius: 16px;
  background: #06c755;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.contact-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.contact-button-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.contact-button-text small {
  font-size: 14px;
}

.contact-button-text b {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-qr {
  width: 92px;
  height: 92px;
  padding: 4px;
  border: 1px solid rgba(191, 176, 159, 0.55);
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.contact-arrow {
  position: static;
  justify-self: end;
  font-size: 24px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-button:hover .contact-arrow,
.contact-button:focus-visible .contact-arrow {
  transform: translateX(5px);
}

.coming-soon {
  position: relative;
  min-height: 330px;
  padding: 78px 24px 28px;
  overflow: visible;
  isolation: isolate;
  text-align: center;
}

.coming-soon::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: min(25vw, 326px);
  aspect-ratio: 652 / 525;
  background: url("img/footer_left.png") bottom left / contain no-repeat;
  content: "";
}

.coming-soon::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(29vw, 372px);
  aspect-ratio: 743 / 458;
  background: url("img/footer_right.png") right bottom / contain no-repeat;
  content: "";
}

.footer-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-message img {
  width: 48px;
  opacity: 0.5;
}

.footer-message p {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.footer-bottom {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  margin: 76px auto 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: #353535;
  text-align: center;
}

.footer-bottom small {
  position: relative;
  z-index: 2;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.back-to-top {
  display: none !important;
}

.floating-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 38;
  display: grid;
  overflow: hidden;
  border-radius: 7px 0 0 7px;
  box-shadow: 0 10px 28px rgba(53, 53, 53, 0.16);
  transform: translateY(-50%);
}

.floating-cta a {
  display: grid;
  width: 58px;
  min-height: 154px;
  padding: 18px 10px;
  place-items: center;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transition: filter 0.35s ease, padding 0.35s ease;
}

.floating-cta__products {
  background: #aa9985;
}

.floating-cta__rental {
  background: #df332d;
}

.floating-cta__remake {
  background: #af8a3c;
}

.floating-cta__contact {
  background: #353535;
}

.floating-cta__break {
  display: none;
}

.floating-cta a:hover,
.floating-cta a:focus-visible {
  padding-right: 15px;
  filter: brightness(1.12);
}

.back-to-top i {
  display: grid;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #bfb09f;
  color: #fff;
  place-items: center;
  font-family: sans-serif;
  font-size: 17px;
  font-style: normal;
  transition: transform 0.3s ease;
}

.back-to-top:hover i,
.back-to-top:focus-visible i {
  transform: translateY(-4px);
}

.anchor-targets {
  height: 0;
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(3px);
  translate: 0 25px;
  transition:
    opacity 1.2s ease var(--reveal-delay, 0s),
    filter 1.2s ease var(--reveal-delay, 0s),
    translate 1.2s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
}

.obi-host {
  position: relative;
  isolation: isolate;
}

.obi-host > :not(.obi-decoration) {
  position: relative;
  z-index: 1;
}

.obi-decoration {
  position: absolute;
  top: 0;
  z-index: 0;
  width: var(--obi-size, 300px);
  max-width: none;
  height: auto;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(53, 53, 53, 0.1));
  translate: none;
  transition:
    opacity 0.9s ease,
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.obi-decoration--left {
  left: 0;
  transform: translate(-115%, -50%) rotate(var(--obi-rotation, 0deg));
}

.obi-decoration--right {
  right: 0;
  transform: translate(115%, -50%) rotate(var(--obi-rotation, 0deg));
}

.obi-decoration--left.is-visible {
  opacity: 1;
  transform:
    translate(
      0,
      calc(-50% + var(--obi-offset-y, 0px))
    )
    rotate(var(--obi-rotation, 0deg));
}

.obi-decoration--right.is-visible {
  opacity: 1;
  transform:
    translate(
      0,
      calc(-50% + var(--obi-offset-y, 0px))
    )
    rotate(var(--obi-rotation, 0deg));
}

@keyframes scrollLine {
  0% {
    transform: translateX(-105%);
  }
  50%,
  100% {
    transform: translateX(105%);
  }
}

@keyframes galleryLoop {
  to {
    transform: translateX(-50%);
  }
}

@keyframes copyCharReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes verticalLineReveal {
  to {
    transform: scaleY(1);
  }
}

@keyframes heroMessageReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes copyRuleReveal {
  to {
    transform: scaleX(1);
  }
}

@keyframes faqAnswerOpen {
  from {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hologramShift {
  0%,
  100% {
    background-position: 0% 45%;
  }
  35% {
    background-position: 85% 20%;
  }
  70% {
    background-position: 35% 90%;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    top: 10px;
    width: 100%;
    height: var(--header-height);
    padding: 0 12px;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    background: transparent;
    border-right: 0;
    box-shadow: none;
  }

  .brand {
    width: 112px;
    height: 84px;
    margin: 0;
    transform: scale(0.86);
    transform-origin: left center;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(78vw, 380px);
    height: 100svh;
    padding: 108px 48px 48px;
    overflow-y: auto;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(248, 246, 239, 0.98);
    box-shadow: -12px 0 30px rgba(48, 38, 26, 0.12);
    font-size: 16px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
  }

  main {
    width: 100%;
    margin-left: 0;
  }

  .global-nav.is-open {
    transform: translateX(0);
  }

  .global-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid rgba(106, 94, 78, 0.16);
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .global-nav > a::after {
    display: none;
  }

  .nav-socials {
    margin-top: 22px;
    gap: 18px;
  }

  .global-nav .nav-icon {
    width: 34px;
    height: 34px;
    padding: 0;
    border-bottom: 0;
  }

  .nav-icon svg {
    width: 25px;
    height: 25px;
  }

  .menu-button {
    position: fixed;
    top: 20px;
    right: 12px;
    z-index: 100;
    display: flex;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    cursor: pointer;
    margin-left: 0;
    flex-shrink: 0;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.3s;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-copy {
    left: 8vw;
    width: min(47vw, 460px);
  }

  .hero-copy h1 {
    width: 100%;
    gap: 6px;
  }

  .copy-column {
    padding: 0 11px;
  }

  .hero-models {
    left: 60%;
    width: 36vw;
  }

  .about-inner {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .worry-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .producer-card {
    padding: 46px;
    grid-template-columns: 200px 1fr;
    gap: 38px;
  }

  .producer-name {
    margin-bottom: 28px;
    flex-direction: column;
    gap: 10px;
  }

  .producer-message br {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  :root {
    --hero-shift: 15px;
    --hero-up: -20px;
    --content-width: 100%;
  }

  body {
    padding-bottom: 60px;
  }

  .floating-cta {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    width: 100%;
    height: 60px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    border-radius: 0;
    box-shadow: 0 -8px 22px rgba(53, 53, 53, 0.12);
    transform: none;
  }

  .floating-cta a {
    display: grid;
    width: 100%;
    height: 60px;
    min-height: 0;
    padding: 0 14px;
    border-radius: 0;
    place-items: center;
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    writing-mode: horizontal-tb;
  }

  .floating-cta__contact {
    display: grid !important;
  }

  .floating-cta__break {
    display: none;
  }

  .floating-cta a:hover,
  .floating-cta a:focus-visible {
    padding: 0 14px;
    filter: brightness(1.08);
  }

  .back-to-top {
    display: none !important;
  }

  .hero {
    min-height: 632px;
  }

  .coming-soon::before,
  .coming-soon::after {
    width: min(42vw, 170px);
  }

  .hero-scenery {
    top: 36%;
    width: 100%;
    height: 64%;
    background-position: 63% center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 17%, #000 37%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 17%, #000 37%);
    opacity: 0.7;
  }

  .hero-copy {
    top: 30%;
    left: 1vw;
    width: 57vw;
    align-items: center;
  }

  .hero-copy::before {
    top: -13%;
    left: -28%;
    width: 72vw;
    opacity: 0.17;
  }

  .hero-copy h1 {
    width: 100%;
    height: auto;
    gap: 0;
  }

  .hero-copy-line--top {
    width: auto;
    margin-left: 20%;
    padding: 7px 8px;
    font-size: clamp(16.9px, 5.46vw, 22.1px);
    letter-spacing: 0.11em;
  }

  .hero-copy-line--middle {
    min-height: 83px;
    margin-top: -29px;
    margin-left: -1%;
    gap: 7px;
    font-size: clamp(35.1px, 10.4vw, 44.2px);
  }

  .hero-one {
    margin: 0 0 -2px;
    font-size: clamp(93.6px, 18.9vw, 122.2px);
  }

  .hero-copy-line--bottom {
    margin-top: 5px;
    margin-left: -1%;
    font-size: clamp(37.7px, 11.7vw, 49.4px);
    letter-spacing: 0.04em;
  }

  .copy-column {
    padding: 0 8px;
  }

  .hero-message {
    margin-top: 7px;
    align-items: center;
    text-align: center;
  }

  .hero-message p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.9;
  }

  .hero-patent {
    padding: 4px 10px;
    font-size: 11px;
  }

  .hero-message br {
    display: initial;
  }

  .gallery-strip {
    padding: 8px 0;
  }

  .gallery-strip::before,
  .gallery-strip::after {
    width: 70px;
  }

  .gallery-group {
    padding-right: 8px;
    gap: 8px;
  }

  .gallery-group img {
    width: 184px;
    height: 128px;
  }

  .hero-models {
    top: 17%;
    right: 0;
    left: 70%;
    /*width: 70vw;*/
    height: 83%;
    transform: translateY(var(--hero-up));
  }

  .hero-model {
    bottom: -48%;
    height: 152%;
  }

  .scroll-guide {
    right: -23px;
    bottom: 72px;
    left: auto;
  }

  .about {
    padding: 48px 20px;
  }

  .about-inner {
    display: block;
  }

  .about-content {
    display: block;
  }

  .about-heading {
    margin-bottom: 38px;
  }

  .about-heading p,
  .about-heading h2 {
    display: block;
    margin: 0;
    font-size: 60px;
    line-height: 1;
  }

  .about-heading h2 {
    margin-left: 0;
  }

  .about-heading span {
    margin-top: 12px;
  }

  .about-lead {
    margin-bottom: 24px;
    text-align: left;
    font-size: 20px;
    line-height: 1.9;
  }

  .about-resolution {
    margin-top: 52px;
  }

  .about-resolution-arrow {
    width: 36px;
    height: 36px;
    margin-bottom: 34px;
  }

  .about-resolution-lead {
    margin-bottom: 18px;
    font-size: 19px;
    letter-spacing: 0.1em;
  }

  .about-resolution-panel {
    padding: 0;
  }

  .about-resolution-panel p {
    font-size: 18px;
    letter-spacing: 0.07em;
  }

  .worry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .worry-list li {
    min-height: 112px;
    padding: 15px 13px;
    font-size: 14px;
  }

  .producer {
    padding: 54px 18px 35px;
  }

  .producer-card {
    display: grid;
    width: 100%;
    padding: 28px 24px 34px;
    grid-template-columns: minmax(105px, 38%) 1fr;
    align-items: start;
    gap: 18px 20px;
    border-radius: 8px;
  }

  .producer-photo {
    width: 100%;
    margin: 0;
    grid-column: 1;
    grid-row: 2;
  }

  .producer-profile {
    display: contents;
  }

  .producer-profile h2 {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 22px;
    font-size: 60px;
    letter-spacing: 0.1em;
  }

  .producer-name {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
    align-self: center;
  }

  .producer-name b {
    font-size: 24px;
  }

  .producer-message {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 16px;
    line-height: 2;
  }

  .features {
    padding: 66px 18px 74px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading p {
    font-size: 60px;
    letter-spacing: 0.1em;
  }

  .section-heading h2 {
    margin-top: 14px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-body {
    padding: 22px 16px 24px;
  }

  .feature-number {
    right: 18px;
    bottom: -14px;
    font-size: 50px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .sp-only-break {
    display: initial;
  }

  .rental-products {
    padding: 68px 18px 78px;
  }

  .top-product-preview {
    height: 330px;
    gap: 6px;
  }

  .top-product-preview figure {
    border-radius: 3px;
  }

  .products-page-link {
    margin-top: 34px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
  }

  .product-card {
    border-radius: 5px;
  }

  .obi-decoration {
    width: var(--obi-mobile-size, 150px);
    max-width: none;
  }

  .obi-host {
    overflow-x: clip;
  }

  .rental-products.obi-host {
    background: transparent;
  }

  .rental-products.obi-host::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(255, 255, 255, 0.42);
    content: "";
    pointer-events: none;
  }

  .rental-products.obi-host > :not(.obi-decoration) {
    z-index: 2;
  }

  .rental-flow.obi-host::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(248, 246, 238, 0.48);
    content: "";
    pointer-events: none;
  }

  .rental-flow.obi-host > :not(.obi-decoration) {
    z-index: 2;
  }

  .rental-flow .obi-decoration {
    display: none;
  }

  .obi-decoration--left,
  .obi-decoration--left.is-visible {
    left: 0;
    top: auto;
    bottom: 0;
    transform:
      translate(0, calc(50% + var(--obi-offset-y, 0px)))
      rotate(var(--obi-rotation, 0deg));
  }

  .obi-decoration--right,
  .obi-decoration--right.is-visible {
    right: 0;
    top: auto;
    bottom: 0;
    transform:
      translate(0, calc(50% + var(--obi-offset-y, 0px)))
      rotate(var(--obi-rotation, 0deg));
  }

  .product-item h3 {
    margin-top: 14px;
  }

  .rental-flow {
    padding: 72px 18px 82px;
  }

  .flow-layout {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow-list {
    grid-column: 1;
  }

  .flow-step {
    min-height: 0;
    padding: 10px 0 22px;
    grid-template-columns: 64px 1fr;
    gap: 5px 12px;
  }

  .flow-number {
    grid-row: 1 / 3;
    font-size: 16px;
  }

  .flow-step h3 {
    grid-column: 2;
    font-size: 18px;
  }

  .flow-step p {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.9;
  }

  .flow-visual {
    grid-column: 1;
    grid-row: auto;
    height: 520px;
    min-height: 520px;
    border-radius: 10px;
  }

  .faq {
    padding: 72px 18px 84px;
  }

  .faq-item summary {
    min-height: 76px;
    padding: 20px 45px 20px 18px;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
  }

  .faq-item summary::before {
    right: 5px;
  }

  .faq-answer {
    padding: 0 18px 25px 49px;
  }

  .faq-answer th,
  .faq-answer td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .faq-answer td {
    border-top: 0;
  }

  .contact {
    padding: 72px 18px 84px;
  }

  .contact-actions {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-button {
    min-height: 132px;
    padding: 22px;
    grid-template-columns: 48px 1fr 22px;
    gap: 16px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon--line {
    border-radius: 13px;
    font-size: 12px;
  }

  .contact-icon svg {
    width: 42px;
    height: 42px;
  }

  .contact-button-text b {
    font-size: 16px;
  }

  .contact-qr {
    display: none;
  }

  .contact-arrow {
    display: block;
  }

  .footer-message img {
    width: 38px;
  }

  .coming-soon {
    min-height: 300px;
    padding: 65px 18px 24px;
  }

  .footer-message p {
    font-size: 20px;
    line-height: 1.9;
  }

  .footer-bottom {
    margin-top: 58px;
  }

  .back-to-top {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gold-confetti {
    display: none;
  }

  .copy-char {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-message {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .gallery-track {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    translate: none;
    transition: none;
  }

  .obi-decoration--left {
    transform:
      translate(0, calc(-50% + var(--obi-offset-y, 0px)))
      rotate(var(--obi-rotation, 0deg));
  }

  .obi-decoration--right {
    transform:
      translate(0, calc(-50% + var(--obi-offset-y, 0px)))
      rotate(var(--obi-rotation, 0deg));
  }

  .hero-copy h1::before,
  .copy-column::after {
    transform: scaleY(1);
    animation: none;
  }
}

@media (min-width: 1025px) {
  html[lang="en"] .hero-models {
    left: 60%;
  }
}


/* Order remake page tone */
.order-remake-page {
  --red: #b08a3c;
  --sand: #b6a38c;
  --paper: #f3eee4;
  background-color: #f3eee4;
}

.order-remake-page .hero::before,
.order-remake-page body {
  background-color: #f3eee4;
}

.order-remake-page .section-heading p,
.order-remake-page .about-heading p,
.order-remake-page .about-heading h2 {
  color: rgba(111, 91, 67, 0.55);
}

.order-remake-page .feature-number,
.order-remake-page .hero-copy-line b,
.order-remake-page .about-lead span {
  color: #b08a3c;
}

.order-remake-page .feature-card,
.order-remake-page .producer-card,
.order-remake-page .faq-item,
.order-remake-page .worry-list li {
  border-color: rgba(128, 108, 83, 0.35);
  box-shadow: 0 18px 38px rgba(63, 48, 33, 0.08);
}

.order-remake-page .flow-number,
.order-remake-page .flow-step::before,
.order-remake-page .floating-cta__products {
  background: #8d806f;
}

.order-remake-page .floating-cta__rental {
  background: #df332d;
}

.order-remake-page .floating-cta__contact {
  background-color: #3f352d;
}

.order-remake-page .order-gallery-grid {
  width: min(1080px, 100%);
  height: auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: none;
  gap: clamp(8px, 1vw, 14px);
}

.order-remake-page .order-gallery-grid .top-product-preview__item {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  transform: none;
}

.order-remake-page .order-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .order-remake-page .order-gallery-grid {
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}




/* Order MV overlap vertical gallery */
.order-remake-page .gallery-strip {
  z-index: 9;
  margin-top: clamp(-130px, calc(-15vw + 80px), -48px);
  /*margin-bottom: clamp(74px, 7vw, 118px);*/
  padding: clamp(14px, 1.8vw, 22px) 0;
  background: linear-gradient(90deg, rgba(243, 238, 228, 0.9), rgba(255, 255, 255, 0.62), rgba(243, 238, 228, 0.9));
  box-shadow: 0 18px 42px rgba(63, 48, 33, 0.08);
}

.order-remake-page .gallery-strip::before {
  background: linear-gradient(90deg, #f3eee4 0%, rgba(243, 238, 228, 0.86) 42%, transparent 100%);
}

.order-remake-page .gallery-strip::after {
  background: linear-gradient(270deg, #f3eee4 0%, rgba(243, 238, 228, 0.86) 42%, transparent 100%);
}

.order-remake-page .gallery-group img {
  width: clamp(132px, 13vw, 210px);
  height: clamp(220px, 24vw, 350px);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(63, 48, 33, 0.12);
}

.order-remake-page .about {
  padding-top: 58px;
}

@media (max-width: 700px) {
  .order-remake-page .gallery-strip {
    margin-top: -42px;
    margin-bottom: 64px;
    padding: 10px 0;
  }

  .order-remake-page .gallery-group img {
    width: 128px;
    height: 210px;
    border-radius: 6px;
  }

  .order-remake-page .about {
    padding-top: 44px;
  }
}


/* Order hero sequence */
.order-remake-page .about-inner.is-order-sequenced {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 1.25s ease, translate 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-remake-page .about-inner.is-order-sequenced.is-order-visible {
  opacity: 1;
  translate: 0 0;
}
