/**
 * MAIHAUS / HYUNDAI FLOORTILE JAPAN — 共通スタイル
 *
 * index のコンポーネント層は元々 Tailwind の @apply で記述していました。
 * Tailwind CDN は外部 CSS 内の @apply をビルドしないため、
 * 同一の見た目になるよう @apply 相当の宣言を展開して記載しています。
 */

/* -------------------------------------------------------------------------- */
/* Design tokens                                                               */
/* -------------------------------------------------------------------------- */
:root {
  --color-primary: #000000;
  --color-bg: #ffffff;
  /* ロゴ SVG（images/logo-hyundai.svg）の緑に準拠 */
  --color-brand-green: #00917b;
  --color-brand-green-hover: #007a68;
  --color-footer: #1a1a1a;
  /* ヘッダー CTA と揃えたボタン角丸 */
  --radius-button: 2px;
  --font-heading: "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-main: var(--font-body);
  --spacing-section: 6rem;
  --site-nav-breakpoint: 1024px;

  /* モーション（全体でなめらかに統一） */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-modal: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-nav: 420ms;
  --duration-ui: 280ms;
  --duration-short: 200ms;
  --duration-micro: 150ms;
  --duration-reveal: 720ms;
  --duration-hero-fade: 880ms;
}

@media (max-width: 767px) {
  /* 16px 相当を約 6% 下げ、rem 指定の本文・見出しを気持ちコンパクトに */
  html {
    font-size: 93.75%;
  }

  :root {
    --spacing-section: 3.5rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Base                                                                        */
/* -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-button);
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

#main-content {
  scroll-margin-top: 5rem;
}

main section[id] {
  scroll-margin-top: 5rem;
}

.site-body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--color-bg);
  color: var(--color-primary);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* 768px 以上向けの改行。狭い画面では非表示にして自然な折り返しで読みやすくする */
@media (max-width: 767px) {
  br.br-pc-only {
    display: none;
  }
}

/* 768px 未満だけ改行（スマホ・タブレット縦向きなど） */
@media (min-width: 768px) {
  br.br-mobile-only {
    display: none;
  }
}

.site-body button {
  font-family: var(--font-body);
  font-weight: 500;
}

.site-body input,
.site-body select,
.site-body textarea {
  font-family: var(--font-body);
  font-weight: 400;
}

.site-body h1,
.site-body h2,
.site-body h3 {
  font-family: var(--font-heading);
}

.site-body h1 {
  font-weight: 300;
}

.site-body h2 {
  font-weight: 300;
}

.site-body h3 {
  font-weight: 400;
}

.hero__btn-primary,
.hero__btn-secondary,
.hero__btn-dark {
  font-family: var(--font-body);
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* お知らせバー（全ページ・ヘッダー直上）                                       */
/* -------------------------------------------------------------------------- */
.site-announcement {
  position: relative;
  display: flex;
  min-height: 40px;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.08em;
}

.site-announcement__text {
  margin: 0;
  max-width: min(100%, 56rem);
  text-align: center;
}

@media (max-width: 479px) {
  .site-announcement {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    font-size: 0.75rem;
    line-height: 1.45;
  }
}

@media (min-width: 768px) {
  .site-announcement {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Navigation (header 共通)                                                     */
/* -------------------------------------------------------------------------- */
.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 400;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-ui) var(--ease-standard);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.nav-link--cta {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-button);
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-brand-green);
  background-color: var(--color-brand-green);
  color: #ffffff;
  transition:
    background-color var(--duration-short) var(--ease-standard),
    border-color var(--duration-short) var(--ease-standard);
}

.nav-link.nav-link--cta::after {
  display: none;
}

.nav-link.nav-link--cta:hover {
  background-color: var(--color-brand-green-hover);
  border-color: var(--color-brand-green-hover);
}

.nav-link.nav-link--outline {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-button);
  border: 1px solid #000000;
  transition: opacity var(--duration-ui) var(--ease-standard);
}

.nav-link.nav-link--outline::after {
  display: none;
}

.nav-link.nav-link--outline:hover {
  opacity: 0.85;
}

/* -------------------------------------------------------------------------- */
/* index: スクロールリビール・ヒーローフェード                                   */
/* -------------------------------------------------------------------------- */
.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-reveal) var(--ease-out-soft),
    transform var(--duration-reveal) var(--ease-out-soft);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-fade {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity var(--duration-hero-fade) var(--ease-out-soft),
    transform var(--duration-hero-fade) var(--ease-out-soft);
  will-change: opacity, transform;
}

.hero-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-modal {
    transition: none;
  }

  .product-modal__shell {
    transition: none;
  }

  .product-card {
    transition: none;
  }

  .site-header__menu-bars span {
    transition: none;
  }

  .site-nav,
  .site-nav__backdrop,
  .site-nav__panel {
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* index: レイアウト・ヘッダー（@apply 相当）                                    */
/* -------------------------------------------------------------------------- */
.container-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 72rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  background-color: var(--color-bg);
}

.site-header__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .site-header__inner {
    padding-left: max(2.5rem, env(safe-area-inset-left));
    padding-right: max(2.5rem, env(safe-area-inset-right));
  }
}

.site-logo {
  line-height: 1.25;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: inherit;
}

.site-logo--brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo__img {
  display: block;
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-button);
  background-color: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: background-color var(--duration-ui) var(--ease-standard);
}

.site-header__menu-toggle:hover {
  background-color: rgb(0 0 0 / 0.05);
}

.site-header__menu-toggle:focus-visible {
  outline: 2px solid rgb(0 0 0 / 0.35);
  outline-offset: 2px;
}

.site-header__menu-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
  flex-shrink: 0;
}

.site-header__menu-bars span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: currentColor;
  transform-origin: center;
  transition:
    transform var(--duration-nav) var(--ease-standard),
    opacity calc(var(--duration-nav) * 0.65) var(--ease-standard),
    top var(--duration-nav) var(--ease-standard);
}

.site-header__menu-bars span:nth-child(1) {
  top: 0;
}

.site-header__menu-bars span:nth-child(2) {
  top: 6px;
}

.site-header__menu-bars span:nth-child(3) {
  top: 12px;
}

.site-header.is-nav-open .site-header__menu-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.site-header.is-nav-open .site-header__menu-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-header__menu-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.site-nav__backdrop {
  display: none;
}

@media (max-width: 1023px) {
  .site-header {
    z-index: 80;
  }

  /* ハンバーガーはヘッダー内のまま × に変形（別途パネル内の閉じるボタンは使わない） */
  .site-header__menu-toggle {
    position: relative;
    z-index: 85;
  }

  /* ドロワーはヘッダー直下から（高さは JS が --site-nav-top でヘッダー下端に合わせる） */
  .site-nav {
    position: fixed;
    top: var(--site-nav-top, 5.5rem);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    pointer-events: none;
    visibility: hidden;
    /* 閉じるときパネル／backdrop のアニメ後にレイヤーを消す（カットされないようにする） */
    transition: visibility 0s linear var(--duration-nav);
  }

  .site-header.is-nav-open .site-nav {
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: rgb(0 0 0 / 0.45);
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--duration-nav) var(--ease-standard);
  }

  .site-header.is-nav-open .site-nav__backdrop {
    opacity: 1;
  }

  .site-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: min(20rem, 92vw);
    background-color: #ffffff;
    box-shadow: -12px 0 40px rgb(0 0 0 / 0.18);
    transform: translateX(100%);
    transition: transform var(--duration-nav) var(--ease-standard);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }

  .site-header.is-nav-open .site-nav__panel {
    transform: translateX(0);
  }

  .site-nav__panel nav {
    flex: 1;
    min-height: 0;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 0.9375rem;
    line-height: 1.45;
  }

  .site-nav__list > li {
    border-top: 1px solid rgb(0 0 0 / 0.06);
  }

  .site-nav__list > li > a.nav-link {
    display: block;
    padding: 1rem 1.25rem;
  }

  .site-nav__list > li > a.nav-link:not(.nav-link--cta):not(.nav-link--outline)::after {
    display: none;
  }

  .site-nav__list > li > a.nav-link--cta {
    margin: 1rem 1rem 0.5rem;
    padding: 0.65rem 1rem;
    text-align: center;
    border-radius: var(--radius-button);
  }

  .site-nav__list > li > a.nav-link--outline {
    margin: 0 1rem 1rem;
    padding: 0.65rem 1rem;
    text-align: center;
    border-radius: var(--radius-button);
  }

  body.is-mobile-nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 1024px) {
  .site-header__menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav__backdrop {
    display: none !important;
  }

  .site-nav__panel {
    position: static;
    width: auto;
    max-width: none;
    transform: none !important;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
  }
}

/* -------------------------------------------------------------------------- */
/* index: ヒーロー                                                             */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 73px);
  min-height: calc(100dvh - 73px);
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  margin-left: calc(50% - 50vw);
  background-color: #1a1a1a;
}

.hero__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
}

.hero__layer-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.hero__layer--lower {
  z-index: 1;
  clip-path: inset(0 0% 0 100%);
}

.hero__layer--upper {
  z-index: 2;
  clip-path: inset(0 0% 0 0);
}

@keyframes hero-wipe-out {
  from {
    clip-path: inset(0 0% 0 0);
  }
  to {
    clip-path: inset(0 100% 0 0);
  }
}

/* 上層（消える側）は右 inset で左の帯が狭まる。下層は左 inset で右から帯が広がり、隙間で黒地が出ないようにする */
@keyframes hero-wipe-in {
  from {
    clip-path: inset(0 0% 0 100%);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

.hero__layer--upper.is-hero-wiping,
.hero__layer--lower.is-hero-wiping {
  will-change: clip-path;
}

.hero__layer--upper.is-hero-wiping {
  animation: hero-wipe-out 1.2s var(--ease-standard) forwards;
}

.hero__layer--lower.is-hero-wiping {
  animation: hero-wipe-in 1.2s var(--ease-standard) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero__layer--upper.is-hero-wiping,
  .hero__layer--lower.is-hero-wiping {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-color: rgb(0 0 0 / 0.2);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: clamp(4rem, 18vh, 12rem);
  padding-bottom: clamp(2.25rem, 9vh, 5.5rem);
}

@media (min-width: 768px) {
  .hero__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: clamp(6rem, 24vh, 16rem);
    padding-bottom: clamp(3rem, 8vh, 6rem);
  }
}

.hero__content {
  width: 100%;
  max-width: min(36rem, calc(50vw - 1.5rem));
  align-self: flex-start;
}

@media (max-width: 639px) {
  .hero__content {
    max-width: 100%;
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.25rem + 2.8vw, 2.125rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.hero__lead {
  margin-top: 1.75rem;
  max-width: none;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgb(255 255 255 / 0.92);
}

@media (min-width: 768px) {
  .hero__lead {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: 1.75rem;
    gap: 0.5rem;
  }

  .hero__btn-primary,
  .hero__btn-dark,
  .hero__btn-secondary {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    justify-content: center;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 768px) {
  .hero__actions {
    margin-top: 2.75rem;
  }
}

.hero__btn-primary {
  display: inline-flex;
  min-width: 11rem;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  border-radius: var(--radius-button);
  background-color: #ffffff;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000;
  transition-property: opacity;
  transition-timing-function: var(--ease-standard);
  transition-duration: var(--duration-micro);
}

.hero__btn-primary:hover {
  opacity: 0.9;
}

.hero__btn-dark {
  display: inline-flex;
  min-width: 11rem;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-brand-green);
  border-radius: var(--radius-button);
  background-color: var(--color-brand-green);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #ffffff;
  transition-property: background-color, border-color;
  transition-timing-function: var(--ease-standard);
  transition-duration: var(--duration-short);
}

.hero__btn-dark:hover {
  background-color: var(--color-brand-green-hover);
  border-color: var(--color-brand-green-hover);
}

.hero__btn-secondary {
  display: inline-flex;
  min-width: 11rem;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
  border-radius: var(--radius-button);
  background-color: transparent;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #ffffff;
  transition-property: color, background-color, border-color;
  transition-timing-function: var(--ease-standard);
  transition-duration: var(--duration-micro);
}

.hero__btn-secondary:hover {
  background-color: rgb(255 255 255 / 0.12);
  color: #ffffff;
}

.hero__scroll {
  align-self: flex-start;
  margin-top: 2rem;
  color: rgb(255 255 255 / 0.65);
}

@media (min-width: 768px) {
  .hero__scroll {
    margin-top: 2.25rem;
  }
}

.hero__scroll-icon {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .hero__scroll-icon {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* 左下スクロール矢印の hero__inner padding-bottom と同じオフセットで底辺を揃える */
.hero__dots {
  position: absolute;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: max(clamp(2.25rem, 9vh, 5.5rem), env(safe-area-inset-bottom));
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3125rem;
  max-width: min(100%, calc(100vw - 2.5rem));
  pointer-events: auto;
}

@media (min-width: 768px) {
  .hero__dots {
    right: max(2.5rem, env(safe-area-inset-right));
    bottom: max(clamp(3rem, 8vh, 6rem), env(safe-area-inset-bottom));
  }
}

.hero__dot {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 12px;
  min-width: 12px;
  height: 2px;
  min-height: 2px;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background-color: rgb(255 255 255 / 0.42);
  cursor: pointer;
  opacity: 0.95;
  transition:
    width var(--duration-ui) var(--ease-standard),
    min-width var(--duration-ui) var(--ease-standard),
    background-color var(--duration-ui) var(--ease-standard),
    opacity var(--duration-ui) var(--ease-standard),
    box-shadow var(--duration-ui) var(--ease-standard);
}

/* 細いピルでもタップしやすいようタッチデバイスではヒット領域を拡張 */
@media (pointer: coarse) {
  .hero__dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }
}

.hero__dot:hover {
  background-color: rgb(255 255 255 / 0.72);
  opacity: 1;
}

.hero__dot:focus-visible {
  opacity: 1;
  outline: none;
  background-color: rgb(255 255 255 / 0.85);
  box-shadow: 0 0 0 2px rgb(255 255 255 / 0.35);
}

.hero__dot.is-active {
  width: 26px;
  min-width: 26px;
  background-color: #ffffff;
  opacity: 1;
}

@media (max-width: 639px) {
  .hero__dot.is-active {
    width: 22px;
    min-width: 22px;
  }
}

@media (max-width: 639px) {
  .hero__title {
    font-size: clamp(1.25rem, 0.95rem + 2vw, 1.6rem);
    line-height: 1.42;
  }

  .hero__lead {
    margin-top: 1.35rem;
    font-size: 0.875rem;
    line-height: 1.65;
  }
}

/* -------------------------------------------------------------------------- */
/* index: セクション枠                                                         */
/* -------------------------------------------------------------------------- */
.content-section {
  border-top: 1px solid rgb(0 0 0 / 0.05);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

@media (min-width: 768px) {
  .content-section {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* -------------------------------------------------------------------------- */
/* index: 見出しブロック                                                       */
/* -------------------------------------------------------------------------- */
.section-intro {
  text-align: center;
}

.section-intro__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(0 0 0 / 0.65);
}

.section-intro__title {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 1.1rem + 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-intro__title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.brand__title {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 1.1rem + 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .brand__title {
    font-size: 3.75rem;
    line-height: 1.2;
  }
}

.section-intro__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  color: rgb(0 0 0 / 0.6);
}

/* -------------------------------------------------------------------------- */
/* index: ブランドストーリー                                                   */
/* -------------------------------------------------------------------------- */
.brand__grid {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 72rem;
  display: grid;
  align-items: start;
  gap: 2.75rem;
}

@media (min-width: 768px) {
  .brand__grid {
    gap: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .brand__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

.brand__body {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  color: rgb(0 0 0 / 0.7);
}

.brand__body > * + * {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .brand__body {
    padding-right: 2rem;
  }
}

.brand__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .brand__features {
    gap: 1rem;
  }
}

.brand-feature-card {
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5;
  background-color: #ffffff;
  padding: 1.35rem 1rem;
}

@media (min-width: 480px) {
  .brand-feature-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .brand-feature-card {
    padding: 2rem;
  }
}

.brand-feature-card__icon {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 0;
}

.brand-feature-card__icon svg {
  display: block;
}

.site-body .brand-feature-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.brand-feature-card__text {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgb(0 0 0 / 0.55);
}

@media (min-width: 768px) {
  .site-body .brand-feature-card__title {
    font-size: 1.1875rem;
  }

  .brand-feature-card__text {
    font-size: 0.875rem;
  }
}

/* -------------------------------------------------------------------------- */
/* index: 製品特長 FEATURES                                                    */
/* -------------------------------------------------------------------------- */
.features__grid {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .features__grid {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.features-card {
  background-color: #f9f9f9;
  padding: 1.35rem 1rem;
}

@media (min-width: 480px) {
  .features-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .features-card {
    padding: 2rem;
  }
}

.features-card__icon {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 0;
}

.features-card__icon svg {
  display: block;
}

.site-body .features-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.features-card__text {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgb(0 0 0 / 0.55);
}

@media (min-width: 768px) {
  .site-body .features-card__title {
    font-size: 1.1875rem;
  }

  .features-card__text {
    font-size: 0.875rem;
  }
}

/* -------------------------------------------------------------------------- */
/* index: プロダクト                                                           */
/* -------------------------------------------------------------------------- */
.products__filters {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.product-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.75rem;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-primary);
  border-radius: var(--radius-button);
  background-color: var(--color-bg);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--color-primary);
}

.product-filter-btn.is-active {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.products__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card {
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(0 0 0 / 0.1);
  background-color: var(--color-bg);
  transition:
    transform var(--duration-ui) var(--ease-standard),
    box-shadow var(--duration-ui) var(--ease-standard);
}

.product-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -24px rgba(0, 0, 0, 0.45);
}

.product-card__media {
  height: 16rem;
  width: 100%;
  background-color: rgb(0 0 0 / 0.05);
}

.product-card__media--image {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media--missing {
  background-color: #eeeeee;
}

.product-card--soon {
  border-width: 1px;
  border-style: dashed;
  border-color: #d1d1d1;
}

.product-card--soon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -22px rgba(0, 0, 0, 0.35);
}

.product-card--disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.92;
}

.product-card--disabled:hover {
  transform: none;
  box-shadow: none;
}

.product-card__media--placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
}

.product-card__media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 0.42);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity var(--duration-ui) var(--ease-standard);
  pointer-events: none;
}

.product-card:hover .product-card__media-overlay,
.product-card:focus-visible .product-card__media-overlay {
  opacity: 1;
}

.product-card__media-overlay--soon {
  background-color: rgb(0 0 0 / 0.38);
}

.product-card__media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-body .product-card__body--soon .product-card__name--plain,
.product-card__body--soon .product-card__text {
  font-style: italic;
  color: rgb(0 0 0 / 0.45);
}

.product-card__body--soon .product-card__text--soon {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .product-card__body--soon .product-card__text--soon {
    font-size: 0.875rem;
  }
}

.product-card__body > * + * {
  margin-top: 0.75rem;
}

.product-card__body {
  padding: 1.75rem;
}

.product-card__name {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card__name-en {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #999999;
}

.product-card__name-ja {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: normal;
  color: #000000;
}

.product-card__name--plain {
  display: block;
  margin: 0 0 0.75rem;
  font-size: clamp(1.125rem, 1.1rem + 0.4vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--color-primary);
}

.product-card__name + .product-card__text {
  margin-top: 0;
}

.product-card__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625;
  color: rgb(0 0 0 / 0.6);
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding-top: 0.25rem;
}

.product-tag {
  display: inline-block;
  border: 1px solid rgb(0 0 0 / 0.2);
  background-color: transparent;
  border-radius: 9999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  line-height: 1.45;
  color: rgb(0 0 0 / 0.6);
}

/* -------------------------------------------------------------------------- */
/* index: プロダクト モーダル                                                  */
/* -------------------------------------------------------------------------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-ui) var(--ease-standard),
    visibility 0s linear var(--duration-ui);
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--duration-ui) var(--ease-standard),
    visibility 0s;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.product-modal__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  max-height: min(92vh, 880px);
  overflow: auto;
  background-color: #fff;
  box-shadow: 0 28px 72px -32px rgba(0, 0, 0, 0.55);
  transform: scale(0.96) translateY(16px);
  opacity: 0;
  transition:
    transform calc(var(--duration-nav) + 40ms) var(--ease-modal),
    opacity var(--duration-ui) var(--ease-standard);
}

.product-modal.is-open .product-modal__shell {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.product-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-width: 0;
  border-radius: var(--radius-button);
  background-color: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: rgb(0 0 0 / 0.55);
  cursor: pointer;
  transition:
    color var(--duration-ui) var(--ease-standard),
    background-color var(--duration-ui) var(--ease-standard);
}

.product-modal__close:hover {
  color: rgb(0 0 0 / 0.9);
  background-color: rgb(0 0 0 / 0.05);
}

.product-modal__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 3rem 1.5rem 1.75rem;
}

@media (min-width: 768px) {
  .product-modal__layout {
    grid-template-columns: 3fr 2fr;
    gap: 1.75rem;
    align-items: start;
    padding: 3.25rem 1.75rem 2rem;
  }
}

.product-modal__col--media {
  min-width: 0;
}

.product-modal__main-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eeeeee;
}

.product-modal__main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__main-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
}

.product-modal__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.product-modal__thumbs:empty {
  display: none;
}

.product-modal__thumb {
  position: relative;
  padding: 0;
  width: 4.25rem;
  height: 4.25rem;
  flex-shrink: 0;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: var(--radius-button);
  background-color: rgb(0 0 0 / 0.06);
  cursor: pointer;
  transition:
    border-color var(--duration-short) var(--ease-standard),
    opacity var(--duration-short) var(--ease-standard);
}

.product-modal__thumb:hover {
  border-color: rgb(0 0 0 / 0.25);
}

.product-modal__thumb.is-active {
  border-color: rgb(0 0 0 / 0.85);
}

.product-modal__thumb--error {
  background-color: #e8e8e8;
}

.product-modal__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__col--info {
  padding-top: 0.25rem;
}

.product-modal__title-stack {
  margin: 0;
}

.product-modal__title-en {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #999999;
}

.product-modal__title-en[hidden] {
  display: none;
}

.product-modal__title-ja {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: normal;
  color: #000000;
}

.product-modal__desc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgb(0 0 0 / 0.65);
}

.product-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
}

.product-modal__tags:empty {
  display: none;
}

.product-modal__tag {
  display: inline-block;
  border: 1px solid rgb(0 0 0 / 0.2);
  background-color: transparent;
  border-radius: 9999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  line-height: 1.45;
  color: rgb(0 0 0 / 0.6);
}

.product-modal__rule {
  margin: 1.25rem 0;
  border: none;
  border-top: 1px solid rgb(0 0 0 / 0.1);
}

.product-modal__features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-modal__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgb(0 0 0 / 0.55);
}

.product-modal__feature + .product-modal__feature {
  margin-top: 0.5rem;
}

.product-modal__feature-mark {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgb(0 0 0 / 0.45);
}

.product-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.product-modal__btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-button);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    background-color var(--duration-short) var(--ease-standard),
    color var(--duration-short) var(--ease-standard),
    border-color var(--duration-short) var(--ease-standard);
}

.product-modal__btn--primary {
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-brand-green);
  background-color: var(--color-brand-green);
  color: var(--color-bg);
}

.product-modal__btn--primary:hover {
  background-color: var(--color-brand-green-hover);
  border-color: var(--color-brand-green-hover);
}

.product-modal__btn--outline {
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-primary);
  background-color: #fff;
  color: var(--color-primary);
}

.product-modal__btn--outline:hover {
  background-color: rgb(0 0 0 / 0.04);
}

/* -------------------------------------------------------------------------- */
/* index: FAQ                                                                  */
/* -------------------------------------------------------------------------- */
.faq__stack {
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  width: 100%;
  max-width: 800px;
}

.faq__stack > * + * {
  margin-top: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(0 0 0 / 0.1);
  border-radius: var(--radius-button);
  background-color: var(--color-bg);
}

.faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-width: 0;
  border-radius: 0;
  background-color: transparent;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: left;
  font-weight: 500;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}

.faq-question {
  padding-right: 1.5rem;
  font-size: 1.06rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .faq-toggle {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .faq-question {
    padding-right: 1rem;
    font-size: 1rem;
    line-height: 1.45;
  }
}

.faq-content {
  overflow: hidden;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition-property: opacity, padding-bottom;
  transition-duration: calc(var(--duration-ui) + 40ms);
  transition-timing-function: var(--ease-standard);
}

.faq-content--open {
  padding-bottom: 1.25rem;
  opacity: 1;
}

.faq-content--closed {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}

.faq-answer {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  color: rgb(0 0 0 / 0.65);
}

.faq-inline-link {
  color: rgb(0 0 0 / 0.82);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.faq-inline-link:hover {
  color: rgb(0 0 0 / 1);
}

/* -------------------------------------------------------------------------- */
/* index: フッター                                                             */
/* -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-footer);
  color: #fff;
}

.site-footer__inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: stretch;
  }
}

.site-footer__col--brand {
  display: flex;
  flex-direction: column;
}

.site-footer__brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__copyright {
  margin: 2rem 0 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__col-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 0.95);
}

.site-footer__list {
  margin-top: 0.875rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.82);
}

.site-footer__list > * + * {
  margin-top: 0.5rem;
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration-ui) var(--ease-standard);
}

.site-footer__link:hover {
  opacity: 0.72;
}

.site-footer__contact {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: normal;
  color: rgb(255 255 255 / 0.82);
}

.site-footer__contact > * + * {
  margin-top: 0.5rem;
}

.site-footer__address {
  margin: 0;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding-top: 1.25rem;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: rgb(255 255 255 / 0.55);
}

@media (max-width: 767px) {
  .site-footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .site-footer__legal-links {
    justify-content: center;
    gap: 1rem;
  }
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* contact: フォーム・ステップ                                                 */
/* -------------------------------------------------------------------------- */
.contact-input {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0.25rem;
  border: none;
  background-color: rgb(243 244 246);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.contact-input:not(textarea) {
  min-height: 2.75rem;
}

textarea.contact-input {
  min-height: 150px;
}

.contact-input:focus {
  outline: 2px solid rgb(0 0 0 / 0.15);
  outline-offset: 0;
}

.step-line {
  height: 1px;
  flex: 1 1 0%;
  min-width: 1.5rem;
  background-color: rgb(229 231 235);
}

.step-line.is-complete {
  background-color: var(--color-primary);
}

.contact-panel {
  display: none;
}

.contact-panel.is-active {
  display: block;
}
