@charset "utf-8";

@font-face {
  font-family: "Land Rover Wide";
  src: url("assets/fonts/LandRoverWide-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Land Rover Wide";
  src: url("assets/fonts/LandRoverWide-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Land Rover Wide";
  src: url("assets/fonts/LandRoverWide-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Land Rover Wide";
  src: url("assets/fonts/LandRoverWide-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-base:
    "Land Rover Wide", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
    Meiryo, sans-serif;
  --font-wide:
    "Land Rover Wide", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --color-ink: #0c121c;
  --color-black: #121212;
  --color-taupe: #44403f;
  --color-stone: #5c5652;
  --color-cream: #eeece6;
  --color-paper: #f8f6ef;
  --color-paper-strong: #fffdf8;
  --color-white: #ffffff;
  --color-gold: #bfa36d;
  --color-line-light: rgba(255, 255, 255, 0.16);
  --color-line-dark: rgba(12, 18, 28, 0.16);
  --color-copy-light: rgba(255, 255, 255, 0.74);
  --color-copy-muted: rgba(255, 255, 255, 0.52);
  --color-copy-dark: rgba(12, 18, 28, 0.74);
  --wrap-main: min(calc(100% - 144px), 1152px);
  --wrap-mid: min(calc(100% - 144px), 866px);
  --wrap-wide: min(calc(100% - 188px), 1226px);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-ink);
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
picture,
iframe {
  display: block;
}

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

iframe {
  width: 100%;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  border: 0.1rem solid currentColor;
  border-radius: 0;
  font-family: var(--font-base);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: none;
}

.button {
  min-width: 22rem;
  padding: 1.4rem 2.6rem;
}

.button-primary {
  border-color: var(--color-gold);
  color: var(--color-ink);
  background: var(--color-gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: #d4bd83;
  background: #d4bd83;
}

.button-ghost {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.section-dark,
.section-light,
.section-paper {
  position: relative;
  overflow: hidden;
}

.section-dark {
  color: var(--color-white);
  background: var(--color-ink);
}

.section-light {
  color: var(--color-white);
  background: var(--color-ink);
}

.section-paper {
  color: var(--color-ink);
  background: var(--color-cream);
}

.hero {
  position: relative;
  min-height: 83.9rem;
  overflow: hidden;
  background: var(--color-ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(12, 18, 28, 0.08) 0%,
      rgba(12, 18, 28, 0.22) 42%,
      rgba(12, 18, 28, 0.54) 72%,
      rgba(12, 18, 28, 0.68) 100%
    ),
    url("assets/images/hero-approved-mino_pc.jpg");
  background-image:
    linear-gradient(
      90deg,
      rgba(12, 18, 28, 0.08) 0%,
      rgba(12, 18, 28, 0.22) 42%,
      rgba(12, 18, 28, 0.54) 72%,
      rgba(12, 18, 28, 0.68) 100%
    ),
    image-set(
      url("assets/images/hero-approved-mino_pc.webp") type("image/webp") 1x,
      url("assets/images/hero-approved-mino_pc.jpg") type("image/jpeg") 1x
    );
  background-position: center;
  background-size: cover;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0), var(--color-ink));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--wrap-wide);
  margin: 0 auto;
  padding: 8.9rem 0 0;
  justify-content: end;
  justify-items: end;
  text-align: right;
}

.hero-location,
.hero-date {
  margin: 0;
  font-family: var(--font-wide);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-location {
  color: #fff;
  font-size: clamp(1.4rem, 1.35vw, 1.95rem);
  letter-spacing: 0.16em;
}

.eyebrow {
  margin: 0 0 2.2rem;
  color: var(--color-gold);
  font-family: var(--font-wide);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  line-height: 1.5;
}

.hero h1,
.section-heading h2,
.story-lead {
  margin: 0;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: none;
  margin-top: 1.8rem;
  color: var(--color-gold);
  font-family: var(--font-wide);
  font-size: clamp(4.4rem, 4.22vw, 6.1rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-date {
  margin-top: 1.2rem;
  color: #fff;
  font-size: clamp(2.4rem, 2.56vw, 3.7rem);
  letter-spacing: 0.1em;
}

.story,
.benefits,
.approved,
.lineup,
.access,
.form-sec,
.closing {
  padding: 12rem 0;
}

.story {
  padding: 12rem 0 8rem;
  color: var(--color-ink);
  background: #f1f0ea;
}

.story-inner {
  width: var(--wrap-mid);
  margin: 0 auto;
  text-align: center;
}

.story-lead {
  color: var(--color-ink);
  font-size: clamp(2.4rem, 1.95vw, 2.8rem);
  line-height: 1.79;
  letter-spacing: 0.103em;
}

.story-name {
  display: grid;
  justify-items: center;
  gap: 2.4rem;
  margin-top: 2.4rem;
  padding-top: 5.1rem;
  border-top: 0.1rem solid rgba(12, 18, 28, 0.16);
}

.story-logo {
  width: min(38rem, 72vw);
  height: auto;
}

.story-title {
  display: grid;
  gap: 0.4rem;
}

.story-title p,
.story-date,
.story-offer {
  margin: 0;
}

.story-title p {
  color: var(--color-ink);
  font-weight: 500;
  letter-spacing: 0.067em;
  line-height: 1.42;
}

.story-store-name {
  font-size: clamp(1.9rem, 1.55vw, 2rem);
  font-weight: 400;
}

.story-campaign-name {
  margin-top: 0.8rem !important;
  font-size: clamp(3rem, 2.8vw, 4rem);
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

.story-title span,
.story-date span {
  display: inline-block;
}

.story-date {
  margin-top: 4.8rem;
  color: var(--color-ink);
  font-size: clamp(1.9rem, 1.6vw, 2.3rem);
  letter-spacing: 0.064em;
  line-height: 1.44;
}

.story-offer {
  width: min(100%, 81.6rem);
  margin: 6rem auto 0;
  padding: 1.35rem 2.8rem;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 1.46rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  width: var(--wrap-mid);
  margin: 0 auto 6.8rem;
  flex-direction: column;
  align-items: center;
  gap: 2.6rem;
  text-align: center;
}

.section-heading::after {
  display: block;
  width: 4.8rem;
  height: 0.1rem;
  background: currentColor;
  content: "";
  opacity: 0.34;
}

.section-heading h2 {
  font-size: clamp(3rem, 2.63vw, 3.8rem);
  line-height: 1.34;
  letter-spacing: 0.08em;
}

dt {
  color: var(--color-gold);
  font-family: var(--font-wide);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

dd {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

.benefits {
  padding: 18rem 0 13rem;
  color: var(--color-ink);
  background: #f1f0ea;
}

.benefit-grid,
.approved-grid,
.lineup-grid {
  display: grid;
  width: var(--wrap-wide);
  margin: 0 auto;
  gap: 1.6rem;
}

.benefit-grid {
  width: min(calc(100% - 188px), 1252px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.approved-grid {
  width: min(calc(100% - 340px), 1100px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem;
}

.benefit-card,
.approved-card {
  border: 0.1rem solid rgba(12, 18, 28, 0.12);
  background: var(--color-paper-strong);
  box-shadow: 0 1.4rem 4.2rem rgba(12, 18, 28, 0.08);
  color: var(--color-ink);
}

.benefit-card {
  display: flex;
  min-height: 28rem;
  padding: 2.9rem;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  text-align: center;
}

.approved-card {
  min-height: auto;
  padding: 2.6rem;
}

.card-number {
  color: var(--color-gold);
  font-family: var(--font-wide);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.line-icon {
  position: relative;
  width: 5.8rem;
  height: 5.8rem;
  margin: 1.6rem 0;
  border: 0.1rem solid rgba(12, 18, 28, 0.28);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.gift::before {
  inset: 1.8rem 0.9rem 0.8rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.54);
}

.line-icon.gift::after {
  top: 0.8rem;
  left: 2rem;
  width: 1.6rem;
  height: 1.8rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-bottom: 0;
}

.line-icon.sweets::before {
  right: 1rem;
  bottom: 1.5rem;
  left: 1rem;
  height: 1.8rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-top-left-radius: 1.4rem;
  border-top-right-radius: 1.4rem;
}

.line-icon.sweets::after {
  right: 1.6rem;
  bottom: 0.9rem;
  left: 1.6rem;
  height: 0.1rem;
  background: rgba(12, 18, 28, 0.54);
}

.line-icon.offer::before {
  top: 1.3rem;
  left: 1.2rem;
  width: 3rem;
  height: 2.4rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.54);
  transform: rotate(-22deg);
}

.line-icon.offer::after {
  top: 2.1rem;
  left: 1.8rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-radius: 50%;
}

.line-icon.steering::before {
  inset: 1.2rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-radius: 50%;
}

.line-icon.steering::after {
  top: 2.8rem;
  left: 1.8rem;
  width: 2.1rem;
  height: 1.2rem;
  border-top: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-left: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-right: 0.1rem solid rgba(12, 18, 28, 0.54);
  border-radius: 1.6rem 1.6rem 0 0;
}

.benefit-card h3,
.approved-card h3 {
  margin: 0;
  color: var(--color-copy-dark);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.benefit-card p,
.approved-card p {
  margin: 1.6rem 0 0;
  color: var(--color-copy-dark);
  font-size: 1.32rem;
  line-height: 1.85;
}

.benefit-card p {
  max-width: 28.3rem;
  margin-top: 1.2rem;
}

.notes {
  display: grid;
  width: var(--wrap-wide);
  margin: 3.3rem auto 0;
  padding: 0;
  gap: 0.5rem;
  color: rgba(12, 18, 28, 0.72);
  font-size: 1rem;
  line-height: 1.8;
  list-style: none;
}

.approved {
  padding: 13rem 0;
  background: var(--color-black);
}

.approved::before {
  position: absolute;
  top: -7rem;
  right: clamp(2.4rem, 10vw, 14rem);
  color: rgba(191, 163, 109, 0.08);
  font-family: var(--font-wide);
  font-size: clamp(16rem, 24vw, 32rem);
  line-height: 1;
  content: "30";
}

.approved .section-heading,
.approved-grid {
  position: relative;
  z-index: 1;
}

.approved-card {
  min-height: auto;
}

.approved-card h3 {
  font-size: clamp(1.8rem, 1.38vw, 2rem);
  line-height: 1.7;
}

.approved-card p {
  font-size: 1.36rem;
  line-height: 1.78;
}

.lineup {
  padding: 13rem 0 14.4rem;
  color: var(--color-ink);
  background: #f1f0ea;
}

.lineup .eyebrow {
  color: rgba(12, 18, 28, 0.42);
}

.lineup-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.45rem;
}

.model-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
}

.model-card img {
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.04);
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.model-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 28, 0),
    rgba(12, 18, 28, 0.88)
  );
  content: "";
}

.model-card figcaption {
  position: absolute;
  z-index: 1;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  font-family: var(--font-wide);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.model-card:hover img,
.model-card:focus-within img {
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.035);
}

.image-note {
  width: var(--wrap-wide);
  margin: 1.6rem auto 0;
  color: var(--color-copy-dark);
  font-size: 1.1rem;
}

.access {
  padding: 12rem 0;
  background: var(--color-black);
}

.access-grid {
  display: grid;
  width: var(--wrap-main);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.access-card {
  display: flex;
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 4.8rem;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.12);
  background: var(--color-paper-strong);
  box-shadow: 0 1.8rem 5.6rem rgba(0, 0, 0, 0.22);
  color: var(--color-ink);
  text-align: center;
}

.access-store {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.2rem, 1.7vw, 2.6rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.access-store-en {
  display: none;
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-wide);
  font-size: clamp(1rem, 1.1vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

.access-map {
  width: min(100%, 57.7rem);
  overflow: hidden;
  background: #d8d8d8;
}

.access-map iframe {
  aspect-ratio: 577 / 415;
  height: auto;
  min-height: 41.5rem;
  filter: grayscale(1) contrast(0.95);
}

.access-body {
  display: grid;
  gap: 0.4rem;
}

.access-text {
  margin: 0;
  color: var(--color-copy-dark);
  font-size: clamp(1.5rem, 1.19vw, 1.72rem);
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.access-address span {
  display: inline;
}

.access-address span + span {
  margin-left: 0.5em;
}

.access-phone a {
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}

.form-sec {
  padding: 14.3rem 0;
  color: var(--color-ink);
  background: #fff;
}

.form-inner {
  width: var(--wrap-main);
  margin: 0 auto;
  padding: 4.8rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.12);
  background: var(--color-paper-strong);
  box-shadow: none;
}

.form-intro {
  margin: 0 0 3.2rem;
  color: var(--color-copy-dark);
  font-size: 1.45rem;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.06em;
}

.form-box {
  display: grid;
  min-height: 12rem;
  place-items: center;
  padding: 3.2rem;
  border: 0.1rem dashed rgba(12, 18, 28, 0.24);
  color: rgba(12, 18, 28, 0.58);
  background: rgba(255, 255, 255, 0.8);
  font-family: var(--font-wide);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"],
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 0.1rem solid rgba(12, 18, 28, 0.2);
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-base);
}

.form-box input[type="submit"],
.form-box button[type="submit"] {
  display: inline-flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 4rem;
  border: 0;
  color: var(--color-ink);
  background: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.closing {
  padding: 0 0 10.2rem;
  background: #f1f0ea;
}

.closing-inner {
  display: grid;
  width: min(calc(100% - 240px), 1200px);
  margin: 0 auto;
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.closing-mail,
.closing-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: none;
}

.closing-mail {
  min-height: 10.2rem;
  gap: 2.1rem;
  color: var(--color-white);
  background: var(--color-black);
  border: 0.2rem solid rgba(255, 255, 255, 0.22);
  font-size: clamp(1.8rem, 1.67vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.closing-phone {
  min-height: 10.2rem;
  gap: 1.8rem;
  padding: 2.2rem 2.6rem;
  color: var(--color-black);
  background: var(--color-white);
  border: 0.2rem solid #5d6066;
}

.closing-icon {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.closing-phone .closing-icon {
  width: 5.8rem;
  height: 5.8rem;
}

.closing-store {
  display: none;
}

.closing-phone-body {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

.closing-phone strong {
  font-family: var(--font-wide);
  font-size: clamp(2rem, 1.51vw, 2.18rem);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1.2;
  white-space: nowrap;
}

.closing-hours {
  font-size: clamp(1.3rem, 1vw, 1.44rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.site-footer {
  color: var(--color-white);
  background: var(--color-black);
  text-align: center;
}

.site-footer section {
  padding: 14.3rem 0 14.4rem;
}

.wrap {
  width: var(--wrap-main);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.88rem;
}

.site-footer p {
  margin: 0;
  color: var(--color-white);
  font-size: 1.73rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

.site-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.383rem;
  margin: 0;
}

.site-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-title img {
  width: 11.52rem;
  height: auto;
}

.fnavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  min-height: 6.067rem;
  gap: 0 3.2rem;
  margin: 0;
  padding: 1.92rem 0 0;
  list-style: none;
}

.fnavi a {
  color: var(--color-white);
  font-size: 1.73rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.font-en {
  font-family: var(--font-wide);
}

address {
  min-height: 6.02rem;
  margin: 0;
  padding-top: 1.82rem;
  font-style: normal;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 1.38rem;
  line-height: 4.147rem;
  letter-spacing: 0.063em;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1120px) {
  .benefit-grid,
  .approved-grid,
  .lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid,
  .approved-grid,
  .lineup-grid,
  .notes {
    width: var(--wrap-wide);
  }
}

@media (max-width: 840px) {
  :root {
    --wrap-main: min(calc(100% - 40px), 1220px);
    --wrap-mid: min(calc(100% - 40px), 960px);
    --wrap-wide: min(calc(100% - 40px), 1360px);
  }

  .hero {
    min-height: 76rem;
    align-items: end;
  }

  .hero-bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(12, 18, 28, 0.22) 0%,
        rgba(12, 18, 28, 0.34) 34%,
        rgba(12, 18, 28, 0.92) 58%,
        var(--color-ink) 100%
      ),
      url("assets/images/hero-approved-mino_sp.jpg");
    background-image:
      linear-gradient(
        180deg,
        rgba(12, 18, 28, 0.22) 0%,
        rgba(12, 18, 28, 0.34) 34%,
        rgba(12, 18, 28, 0.92) 58%,
        var(--color-ink) 100%
      ),
      image-set(
        url("assets/images/hero-approved-mino_sp.webp") type("image/webp") 1x,
        url("assets/images/hero-approved-mino_sp.jpg") type("image/jpeg") 1x
      );
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-inner {
    padding: 38rem 0 6.4rem;
    transform: none;
    justify-content: start;
    justify-items: start;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 12vw, 5.6rem);
    max-width: 9.5em;
    white-space: normal;
  }

  .closing-phone {
    gap: 1.6rem;
  }

  .closing-phone strong,
  .closing-hours {
    grid-column: auto;
  }

  .closing-phone strong,
  .closing-hours {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 76rem;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 15vw, 5.2rem);
  }

  .story,
  .benefits,
  .approved,
  .lineup,
  .access,
  .form-sec,
  .closing {
    padding: 8rem 0;
  }

  .section-heading {
    margin-bottom: 4.4rem;
  }

  .story-lead {
    font-size: 2.4rem;
  }

  .story-name {
    margin-top: 3.6rem;
    padding-top: 3.6rem;
  }

  .story-logo {
    width: min(30rem, 78vw);
  }

  .story-title {
    gap: 0.8rem;
  }

  .story-store-name {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .story-campaign-name {
    font-size: clamp(2.6rem, 7vw, 3.2rem);
  }

  .story-date {
    font-size: clamp(1.7rem, 4.8vw, 2.1rem);
    letter-spacing: 0.045em;
  }

  .story-offer {
    margin-top: 2.4rem;
    padding: 1.4rem 1.8rem;
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .benefit-grid,
  .approved-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .approved-card {
    min-height: auto;
  }

  .access-card {
    padding: 2.8rem 2rem;
  }

  .access-store {
    font-size: clamp(1.4rem, 3.8vw, 1.8rem);
    letter-spacing: 0;
  }

  .form-inner,
  .form-box {
    padding: 2.4rem 2rem;
  }

  .line-icon {
    margin-top: 3.2rem;
  }

  .model-card img {
    aspect-ratio: 16 / 10;
  }

  .access-grid {
    width: var(--wrap-main);
  }

  .access-map iframe {
    aspect-ratio: 1 / 1;
    min-height: 28rem;
  }

  .access-address span {
    display: block;
  }

  .access-address span + span {
    margin-left: 0;
  }

  .closing-inner {
    width: min(calc(100% - 48px), 42rem);
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .closing-mail {
    min-height: auto;
    flex-direction: row;
    gap: 1.2rem;
    padding: 2.2rem 1.8rem;
    border-width: 0.1rem;
    font-size: clamp(1.6rem, 4.8vw, 2rem);
    line-height: 1.45;
    text-align: center;
  }

  .closing-mail .closing-icon {
    justify-self: center;
    width: 3.2rem;
    height: 3.2rem;
  }

  .closing-phone {
    min-height: auto;
    flex-direction: row;
    justify-items: center;
    gap: 1.2rem;
    padding: 2.2rem 1.8rem;
    border-width: 0.1rem;
    text-align: left;
  }

  .closing-phone .closing-icon {
    width: 3.8rem;
    height: 3.8rem;
  }

  .closing-phone strong,
  .closing-hours {
    grid-column: auto;
  }

  .closing-phone-body {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }

  .closing-phone strong {
    font-size: clamp(2rem, 5.8vw, 2.6rem);
    letter-spacing: 0.045em;
  }

  .closing-hours {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .site-footer section {
    padding: 9.6rem 0;
  }

  .wrap {
    width: calc(100% - 32px);
    gap: 2rem;
  }

  .site-footer p,
  .fnavi a {
    font-size: 1.4rem;
    line-height: 2;
  }

  .site-title {
    min-height: auto;
  }

  .fnavi {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 0.8rem;
    padding-top: 0;
  }

  address {
    min-height: auto;
    padding-top: 0;
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
