/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  --color-white: #ffffff;
  --color-black: #2f2f2f;
  --color-red: #e43333;
  --color-yellow: #fcd51c;
  --color-yellow-dark: #f3c921;
  --color-yellow-light: #f2db57;
  --color-orange: #e8841a;
  --color-green: #63bd02;
  --color-navy: #25467b;
  --color-navy-dark: #1a3158;
  --color-shadow-gold: #ce9f2b;
  --color-shadow-button: rgba(18, 53, 85, 0.4);

  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Righteous', cursive;

  --z-kv-content: 2;
  --z-kv-slider: 1;
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: var(--font-ja);
  font-weight: 900;
  color: var(--color-black);
  background-color: #f0f0f0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.l-page {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.l-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  background-color: var(--color-white);
}

.l-side {
  display: none;
}

/* ==========================================================================
   KV
   ========================================================================== */

.kv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ---------- kv-head / kv-foot (brick bar) ---------- */

.kv-head,
.kv-foot {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-color: var(--color-orange);
  background-image: url('../images/block_bg.webp');
}

.kv-head {
  height: 7rem;
}

.kv-foot {
  height: 4rem;
}

/* ---------- kv-head ticker ---------- */

.kv-head__ticker {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  animation: ticker-scroll 15s linear infinite;
}

@keyframes ticker-scroll {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  100% {
    transform: translateY(-50%) translateX(-50%);
  }
}

.kv-head__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  padding: 0 2rem;
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 0.09rem;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.4);
  transform: skewX(-20deg) scaleY(0.94);
}

.kv-head__highlight {
  display: inline-flex;
  align-items: baseline;
  color: var(--color-yellow);
  filter: url(#text-outline-3);
}

.kv-head__num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 3.0rem;
  letter-spacing: 0;
}

.kv-head__percent {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0;
}

/* ---------- kv-main ---------- */

.kv-main {
  position: relative;
  min-height: 61rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 29rem 0 2rem;
}

/* slider */

.kv-main__slider {
  position: absolute;
  inset: 0;
  z-index: var(--z-kv-slider);
}

.kv-main__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.kv-main__slide.is-active {
  opacity: 1;
}

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

/* content overlay */

.kv-main__content {
  position: relative;
  z-index: var(--z-kv-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.kv-main__content-lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

/* ---------- speech-bubble ---------- */

.kv-main__bubbles {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0 3rem;
}

.speech-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speech-bubble__body {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--color-red);
  border-radius: 3rem;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.08rem;
  white-space: nowrap;
}

.speech-bubble__highlight {
  color: var(--color-yellow);
}

.speech-bubble__tail {
  width: 4.1rem;
  height: 0.8rem;
  line-height: 0;
}

.speech-bubble__tail--right {
  transform: scaleX(-1) translateX(-1rem);
}

/* ---------- kv-main-copy ---------- */

.kv-main-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 35.9rem;
  max-width: calc(100% - 4rem);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(120deg, var(--color-yellow-dark) 80%, var(--color-yellow-light) 100%);
  box-shadow: inset -5px -5px 2px var(--color-shadow-gold);
}

.kv-main-copy__corner {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4a82a, #a07820);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.kv-main-copy__corner--tl {
  top: 1rem;
  left: 1rem;
}

.kv-main-copy__corner--tr {
  top: 1rem;
  right: 1rem;
}

.kv-main-copy__corner--bl {
  bottom: 1rem;
  left: 1rem;
}

.kv-main-copy__corner--br {
  bottom: 1rem;
  right: 1rem;
}

/* sub copy */

.kv-main-copy__sub {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
}

.kv-main-copy__sub::after {
  content: '';
  display: block;
  width: 29.4rem;
  height: 0.5rem;
  margin: 0 auto;
  background-image: url('../images/kv/wavy-line.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.kv-main-copy__red {
  color: var(--color-red);
}

/* heading row */

.kv-main-copy__heading {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.kv-main-copy__area {
  font-size: 2.0rem;
  letter-spacing: 0.1rem;
}

.kv-main-copy__char {
  position: relative;
  padding-top: 0.9rem;
}

.kv-main-copy__char::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-black);
}

.kv-main-copy__area-plain {
  font-size: 2.0rem;
  text-emphasis-style: none;
  -webkit-text-emphasis-style: none;
}

.kv-main-copy__bankin {
  height: 2.4rem;
  width: auto;
  /* vertical-align: baseline; */
}

.kv-main-copy__nara {
  font-size: 2.0rem;
  text-emphasis-style: none;
  -webkit-text-emphasis-style: none;
}

/* brand row */

.kv-main-copy__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kv-main-copy__brand img:first-child {
  width: 18rem;
  height: auto;
}

.kv-main-copy__brand img:last-child {
  width: 6.1rem;
  height: auto;
}

/* ---------- CTA buttons ---------- */

.kv-main__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0 1.5rem;
}

.kv-main__cta-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-end;
}

.kv-line-button {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.kv-line-button__img {
  width: auto;
  height: 5.8rem;
}

.kv-line-button__arrow {
  position: absolute;
  right: 1rem;
  top: 32%;
  transform: translateY(-50%);
}

.kv-line-button__arrow img {
  width: 2.5rem;
  height: 2.5rem;
}

.kv-tel-button {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.kv-tel-button__img {
  width: auto;
  height: 5.5rem;
}

.kv-tel-button__arrow {
  position: absolute;
  right: 1rem;
  top: 29%;
  transform: translateY(-50%);
}

.kv-tel-button__arrow img {
  width: 2.5rem;
  height: 2.5rem;
}

@media (any-hover: hover) {
  .kv-line-button:hover,
  .kv-tel-button:hover {
    opacity: 0.85;
  }

  .kv-line-button:focus-visible,
  .kv-tel-button:focus-visible {
    opacity: 0.85;
  }
}

.kv-cta-button__text {
  display: flex;
  align-items: baseline;
}

.kv-cta-button__label-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 0.83;
  letter-spacing: 0.12rem;
  filter: url(#text-outline-2);
}

.kv-line-button .kv-cta-button__label-en {
  color: var(--color-yellow);
}

.kv-tel-button .kv-cta-button__label-en {
  color: var(--color-green);
}

.kv-cta-button__label-ja {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-black);
}

/* CTA arrow */

.kv-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

.kv-cta-arrow svg {
  width: 2.5rem;
  height: 2.5rem;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.4rem);
  }
}

/* ---------- speech-bubble animation ---------- */

@keyframes bubble-pop {
  0% {
    transform: scale(0) rotate(-5deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.15) rotate(3deg);
    opacity: 1;
  }
  70% {
    transform: scale(0.92) rotate(-2deg);
  }
  85% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes bubble-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-0.4rem) rotate(1deg);
  }
  75% {
    transform: translateY(0.2rem) rotate(-1deg);
  }
}

.speech-bubble.is-animated {
  animation: bubble-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             bubble-float 3s ease-in-out 0.6s infinite;
}

.speech-bubble:nth-child(2).is-animated {
  animation-delay: 0.2s, 0.8s;
}

/* ==========================================================================
   Problem
   ========================================================================== */

.problem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
  background-color: #d3d3d3;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/problem/bg-grid.webp');
  background-repeat: repeat;
  background-size: 100% auto;
  opacity: 0.5;
  pointer-events: none;
}

/* sidebar */

.problem__sidebar {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.problem__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 7.2rem;
}

.problem__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #8199af;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.problem__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 16.7rem;
}

.problem__sidebar-label span {
  font-size: 1.2rem;
  color: #8199af;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

/* title */

.problem__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}

.problem__title-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  position: relative;
}

.problem__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem 0.9rem;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  border-radius: 5rem;
  font-size: 3.0rem;
  line-height: 1;
  box-shadow: inset -4px -4px 0 var(--color-shadow-button);
}

.problem__badge-sm {
  font-size: 2.0rem;
}

.problem__dot {
  font-size: 3.0rem;
}

.problem__title-de {
  font-size: 2.0rem;
}

.problem__title-sub {
  font-size: 2.4rem;
}

.problem__title-accent {
  font-size: 3.0rem;
  color: #55718b;
}

.problem__swirl {
  position: absolute;
  width: 1.8rem;
  height: auto;
  top: -1rem;
  left: 48%;
  transform: rotate(10deg);
}

/* cards */

.problem__cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 3rem;
  width: 100%;
}

.problem__card {
  position: relative;
}

.problem__card img:first-child {
  width: 100%;
  height: auto;
}

/* characters */

.problem__croc-right {
  position: absolute;
  top: -12%;
  right: 4%;
  width: 18%;
  height: auto;
  z-index: 2;
  transform: scaleX(-1);
}

.problem__croc-left {
  position: absolute;
  top: -12%;
  left: -2%;
  width: 19%;
  height: auto;
  z-index: 2;
}

/* ==========================================================================
   Case
   ========================================================================== */

.case {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 3rem 0 6.4rem;
  background-image: url('../images/block_bg.webp');
  background-repeat: repeat;
  background-size: 100% auto;
  overflow: hidden;
}

/* sidebar */

.case__sidebar {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  z-index: 1;
  color: #795722;
}

.case__sidebar-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
}

.case__sidebar-label {
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
}

/* title */

.case__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.4));
}

.case__title-row {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 2.0rem;
  color: var(--color-white);
  line-height: 1;
}

.case__title-brand {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 0.72;
}

.case__title-sub {
  font-size: 2.0rem;
}

.case__title-accent {
  font-size: 2.4rem;
  color: var(--color-yellow);
}

.case__title-accent--white {
  color: var(--color-white);
}

/* swiper */

.case .swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: visible;
}

.case .swiper-wrapper {
  overflow: visible;
}

.case .swiper-slide {
  width: 28rem;
  overflow: visible;
}

/* card */

.case__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 2rem;
  box-shadow: inset -7px -7px 0 var(--color-shadow-button);
  overflow: visible;
}

/* compare wrap (positioning context, NO overflow clip) */

.case__compare-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

/* compare (image clip container) */

.case__compare {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.case__before,
.case__after {
  position: absolute;
  inset: 0;
}

.case__before img,
.case__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.case__after {
  clip-path: inset(0 0 0 50%);
}

.case__label {
  position: absolute;
  top: 0.5rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-white);
  letter-spacing: 0.06rem;
  line-height: 1;
  pointer-events: none;
  filter: url(#text-outline-2);
}

.case__label--before {
  left: 0.5rem;
}

.case__label--after {
  right: 0.5rem;
}

/* divider line (inside wrap, full range) */

.case__divider-line {
  position: absolute;
  top: 0;
  left: var(--divider-pos, 50%);
  transform: translateX(-50%);
  width: 0.2rem;
  height: 100%;
  background-color: var(--color-white);
  z-index: 3;
  pointer-events: none;
}

/* divider handle (inside wrap, clamped so always fully visible) */

.case__divider-handle {
  position: absolute;
  top: 50%;
  left: var(--divider-pos, 50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}

.case__divider-handle img {
  width: 4rem;
  height: 4rem;
  max-width: none;
  pointer-events: auto;
  cursor: ew-resize;
}

/* caption */

.case__caption {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.case__caption-car {
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
  line-height: 1;
  width: 100%;
}

.case__caption-detail {
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
  line-height: 1;
  text-align: right;
  width: 100%;
}

.case__caption-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.3rem;
  width: 100%;
  color: var(--color-red);
}

.case__caption-yen {
  font-family: var(--font-ja);
  font-size: 2.4rem;
  line-height: 0.75;
}

.case__caption-amount {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 0.75;
}

.case__caption-tax {
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
}

/* nav */

.case__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.case__arrow {
  cursor: pointer;
  line-height: 1;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 900;
  filter: url(#text-outline-3);
}

.case__arrow--prev::after {
  content: '\3008';
}

.case__arrow--next::after {
  content: '\3009';
}

.case .case__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: auto;
}

.case__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  opacity: 1;
  margin: 0;
  flex-shrink: 0;
  box-sizing: content-box;
  cursor: pointer;
  appearance: none;
}

.case__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

/* ==========================================================================
   Estimate
   ========================================================================== */

.estimate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-top: 5rem;
  background-color: var(--color-yellow);
  overflow: hidden;
}

.estimate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/estimate/bg-pattern.webp');
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: center center;
  pointer-events: none;
}

.estimate__sidebar {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.estimate__sidebar .estimate__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 7.5rem;
}

.estimate__sidebar .estimate__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #D5AF2A;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.estimate__sidebar .estimate__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 9rem;
}

.estimate__sidebar .estimate__sidebar-label span {
  font-size: 1.2rem;
  color: #D5AF2A;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.estimate__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 0 1.6rem;
  overflow: hidden;
  width: 100%;
}

.estimate__title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  color: var(--color-black);
  letter-spacing: 0.12rem;
}

.estimate__title-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.estimate__title-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 4.0rem;
  line-height: 0.75;
}

.estimate__title-white {
  color: var(--color-white);
}

.estimate__title-emphasis {
  display: inline-flex;
}

.estimate__title-char {
  position: relative;
  padding-top: 0.9rem;
}

.estimate__title-char::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-black);
}

.estimate__body {
  text-align: center;
}

.estimate__text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: 0.07rem;
}

.estimate__text--lh18 {
  line-height: 1.8;
}

.estimate__text-sm {
  font-size: 1.4rem;
  letter-spacing: 0.07rem;
}

.estimate__text-last {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 0.07rem;
}

.estimate__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin: 0.5rem 0;
}

.estimate__badge-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem 0.8rem;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  border-radius: 5rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08rem;
  white-space: nowrap;
  box-shadow: inset -3px -3px 0 var(--color-shadow-button);
}

.estimate__times {
  font-size: 1.6rem;
}

.estimate__red-wavy {
  position: relative;
  display: inline;
  color: var(--color-red);
  font-size: 1.4rem;
  letter-spacing: 0.07rem;
  padding-bottom: 0.5rem;
}

.estimate__red-wavy::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-image: url('../images/estimate/wavy-line.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.estimate__red {
  font-size: 1.6rem;
  color: var(--color-red);
  letter-spacing: 0.08rem;
}

.estimate__promo {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.estimate__promo-card {
  position: relative;
  width: 35.4rem;
  max-width: 100%;
}

.estimate__promo-card-base {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  animation: promo-card-pulse 1.5s ease-in-out infinite;
}

@keyframes promo-card-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.estimate__promo-badge {
  position: absolute;
  top: -10%;
  left: -6%;
  width: 24%;
  height: auto;
  z-index: 2;
}

.estimate__promo-button {
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 83%;
}

.estimate__promo-button-img {
  width: 100%;
  height: auto;
}

.estimate__promo-arrow {
  position: absolute;
  right: 8%;
  top: 35%;
  transform: translateY(-50%);
}

.estimate__promo-arrow img {
  width: 2.5rem;
  height: 2.5rem;
}

.estimate__promo-mascot {
  position: absolute;
  right: 2%;
  bottom: 3%;
  width: 7rem;
  height: auto;
}

.estimate__car {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 15rem;
}

.estimate__car img {
  position: absolute;
  bottom: 0;
  width: auto;
  height: 15rem;
  object-fit: cover;
}

/* ==========================================================================
   Markey
   ========================================================================== */

.markey {
  overflow: hidden;
  background-color: var(--color-white);
  padding: 0.5rem 0;
}

.markey__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: markey-scroll 10s linear infinite;
}

@keyframes markey-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.markey__text {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 4.0rem;
  color: var(--color-red);
  line-height: 1;
  padding: 0 0.5rem;
}

/* ==========================================================================
   Secret
   ========================================================================== */

.secret {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
  background-color: #25467B;
  overflow: hidden;
}

/* sidebar */

.secret__sidebar {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.secret__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 7.6rem;
}

.secret__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #1A3158;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.secret__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 6.2rem;
}

.secret__sidebar-label span {
  font-size: 1.2rem;
  color: #1A3158;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

/* title */

.secret__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.secret__title-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.secret__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem 1.1rem;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  border-radius: 5rem;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-black);
  box-shadow: inset -3px -3px 0 var(--color-shadow-button);
}

.secret__title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.secret__title-sub {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--color-white);
}

.secret__title-char {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 2.4rem;
  line-height: 1;
}

.secret__title-dot {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--color-white);
  border-radius: 50%;
}

.secret__title-no {
  font-size: 2.0rem;
  line-height: 1;
}

.secret__title-main-row {
  display: flex;
  align-items: baseline;
  color: var(--color-yellow);
  line-height: 1;
}

.secret__title-num,
.secret__title-tsu,
.secret__title-of,
.secret__title-hiketsu {
  filter: url(#text-outline-3);
}

.secret__title-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 4.2rem;
  letter-spacing: 0.42rem;
  line-height: 1;
}

.secret__title-tsu,
.secret__title-hiketsu {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.32rem;
  line-height: 1;
}

.secret__title-of {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  line-height: 1;
}

.secret__title-star {
  display: block;
  width: 3.5rem;
  height: 3.4rem;
  translate: 0 0.5rem;
}

.secret__title-main-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
}

/* card */

.secret__card {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  width: 37.4rem;
  max-width: calc(100% - 4rem);
  padding: 1rem 2rem 2rem;
  background-color: #dfdfdf;
  border-radius: 1rem;
  box-shadow: 5px 5px 0 #1A3158;
}

.secret__binder {
  position: relative;
  z-index: 2;
  display: block;
  width: 13.4rem;
  height: auto;
  margin: 0 auto -2rem;
}

.secret__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.6rem 2rem;
  background-color: var(--color-white);
  border-radius: 1rem;
}

/* point */

.secret__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 0 2rem;
  width: 100%;
  background-image: linear-gradient(to right, #dfdfdf 1rem, transparent 1rem);
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 2rem 2px;
}

.secret__point + .secret__point {
  padding-top: 2rem;
}

.secret__point--last {
  background-image: none;
  padding-bottom: 0;
  padding-top: 2rem;
}

.secret__point-photo {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 320 / 160;
}

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

.secret__point-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.secret__point-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secret__point-star {
  font-size: 1.4rem;
  color: var(--color-yellow);
  line-height: 1;
}

.secret__point-label-text {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #afafaf;
  line-height: 1;
}

.secret__point-title {
  /* font-size: 1.8rem;
  color: var(--color-yellow);
  letter-spacing: 0.09rem;
  line-height: 1.3; */
  /* -webkit-text-stroke: 4px #2f2f2f;
  paint-order: stroke fill; */
  /* filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.4)); */
}

.secret__point-title-img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.4));
}

.secret__point-title-img--2line {
  max-width: 194px;
}

.secret__point-desc {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.06rem;
  line-height: 1.5;
  width: 100%;
  margin-top: -.5rem;
}

.secret__point-desc-bold {
  font-weight: 700;
}

.secret__point-desc-gray {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 900;
}

/* promo */

.secret__promo {
  margin-top: 5rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

/* ==========================================================================
   Step
   ========================================================================== */

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
  background-color: var(--color-yellow);
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/estimate/bg-pattern.webp');
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: center center;
  opacity: 1;
  pointer-events: none;
}

.step > *:not(.step__sidebar) {
  position: relative;
  z-index: 1;
}

/* sidebar */

.step__sidebar {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.step__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 7.5rem;
}

.step__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #d5af2a;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.step__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 7rem;
}

.step__sidebar-label span {
  font-size: 1.2rem;
  color: #d5af2a;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

/* header */

.step__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step__mascot {
  width: 12rem;
  height: auto;
}

.step__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step__title-sub {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 2.4rem;
  color: var(--color-black);
  line-height: 1;
}

.step__title-char {
  position: relative;
  padding-top: 0.8rem;
}

.step__title-char::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-black);
}

.step__title-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step__title-bracket {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.8rem;
  color: var(--color-black);
  line-height: 1;
}

.step__title-bracket::before,
.step__title-bracket::after {
  content: '';
  display: block;
  width: 8rem;
  height: 2px;
  background-color: var(--color-black);
}

.step__title-bracket::before {
  transform: rotate(7deg) translateY(-5px);
}

.step__title-bracket::after {
  transform: rotate(-7deg) translateY(5px);
}

.step__title-emphasis {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.step__title-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 5.6rem;
  color: var(--color-red);
  line-height: 1;
  filter: url(#text-outline-3);
}

.step__title-accent {
  font-size: 3.2rem;
  color: var(--color-red);
  line-height: 1;
  filter: url(#text-outline-3);

}

/* 「4ステップ」画像専用（この要素だけに効く調整用） */
.step__title-emphasis-img {
  display: block;
  width: auto;
  height: auto;
  /* ↓ ここに専用の指示を書く（例）
  max-width: 200px;
  margin: 0 auto;
  transform: rotate(-3deg);
  */
}

/* cards */

.step__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.step__card {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.6rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 1rem;
  overflow: hidden;
}

.step__card-img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 13rem;
  height: 13rem;
  border-radius: 1rem;
  overflow: hidden;
}

.step__card-img img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step__card-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 9.7rem;
  height: auto;
}

.step__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.step__card-title {
  font-size: 1.7rem;
  color: var(--color-yellow);
  letter-spacing: 0.085rem;
  line-height: 1.3;
  /* text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  filter: url(#text-outline-3); */
}

.step__card-title-img {
  display: block;
  width: auto;
  height: auto;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.4));
}

.step__card-desc {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.06rem;
  line-height: 1.3;
}

.step__card-num {
  position: absolute;
  right: 2rem;
  bottom: -1rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 10rem;
  color: #d3d3d3;
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}

/* ==========================================================================
   Markey Navy
   ========================================================================== */

.markey--navy .markey__text {
  color: var(--color-navy);
}

.markey--yellow .markey__text {
  color: #F8BE3F;
}

/* ==========================================================================
   Price
   ========================================================================== */

.price {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 8.4rem;
  background-color: var(--color-yellow);
  overflow: hidden;
}

.price::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/estimate/bg-pattern.webp');
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: center center;
  pointer-events: none;
}

.price > *:not(.price__sidebar) {
  position: relative;
  z-index: 1;
}

/* sidebar */

.price__sidebar {
  position: absolute;
  bottom: 5rem;
  left: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.price__sidebar-num {
  display: flex;
  align-items: center;
}

.price__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #d5af2a;
  line-height: 1;
  white-space: nowrap;
}

.price__sidebar-label {
  display: flex;
  align-items: center;
}

.price__sidebar-label span {
  font-size: 1.2rem;
  color: #d5af2a;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
}

/* card */

.price__card {
  margin: 0 2rem;
  padding: 3rem 2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 1rem;
}

/* title */

.price__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price__title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price__title-sub {
  display: flex;
  align-items: center;
  gap: 0rem;
}

.price__title-stripe {
  display: block;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--color-black);
}

.price__title-stripe--left {
  transform: rotate(60deg);
}

.price__title-stripe--right {
  transform: rotate(-60deg);
}

.price__title-chars {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 1.6rem;
  color: var(--color-black);
  line-height: 1;
}

.price__title-char {
  position: relative;
  padding-top: 0.6rem;
}

.price__title-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--color-black);
}

.price__title-main {
  font-size: 3.6rem;
  color: #5a82b4;
  letter-spacing: 0.36rem;
  /* line-height: 1;
  filter: url(#text-outline-3); */
}

.price__title-main-img {
  display: block;
  width: auto;
  height: auto;
}

.price__title-illust {
  display: block;
  width: 7rem;
  height: 8rem;
  flex-shrink: 0;
}

/* table */

.price__table {
  width: 100%;
  margin-top: 2rem;
}

.price__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 2px dashed #d3d3d3;
}

.price__row:first-child {
  padding-top: 3rem;
}

.price__row--last {
  border-bottom: none;
  padding-bottom: 0;
}

.price__row-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.price__row-label--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.price__row-label--inline {
  flex-wrap: nowrap;
  align-items: center;
}

.price__row-name {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
}

.price__row-sub {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  margin-top: 0.3rem;
}

.price__row-detail {
  font-size: 1.2rem;
  color: #afafaf;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
}

.price__row-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-shrink: 0;
  color: #5a82b4;
}

.price__row-yen {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 0.75;
}

.price__row-amount {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 0.75;
}

.price__row-wave {
  font-size: 1.8rem;
  line-height: 1;
}

/* ==========================================================================
   Voice
   ========================================================================== */

.voice {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-yellow);
  overflow: hidden;
}

.voice::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/estimate/bg-pattern.webp');
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: center top;
  pointer-events: none;
}


.voice__sidebar {
  position: absolute;
  top: 7.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.voice__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 7.5rem;
}

.voice__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #D5AF2A;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.voice__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 7rem;
}

.voice__sidebar-label span {
  font-size: 1.2rem;
  color: #D5AF2A;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.voice__bar {
  position: relative;
  z-index: 1;
  height: 5.5rem;
  background-color: var(--color-orange);
  background-image: url('../images/block_bg.webp');
  background-repeat: repeat;
  background-size: 100% auto;
}

.voice__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

/* header */

.voice__header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -1rem;
  padding: 0 2rem;
}

.voice__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  translate: 0.5rem 0;
}

.voice__title-sub {
  position: relative;
  font-size: 2.0rem;
  color: var(--color-black);
  line-height: 1;
}

.voice__title-sub::before,
.voice__title-sub::after {
  content: '';
  position: absolute;
  top: calc(50% + 0.1rem);
  width: 3rem;
  height: 0.2rem;
  background-color: var(--color-black);
}

.voice__title-sub::before {
  right: calc(100% - 0.5rem);
  transform: rotate(68deg);
}

.voice__title-sub::after {
  left: calc(100% - 0.5rem);
  transform: rotate(-68deg);
}

.voice__title-char {
  position: relative;
  padding-top: 0.8rem;
}

.voice__title-char::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  translate: -50% 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-black);
}

.voice__title-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 3.2rem;
  color: #5A82B4;
  line-height: 0.75;
  filter: url(#text-outline-white);
}

.voice__title-pct {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2rem;
  color: #5A82B4;
  filter: url(#text-outline-white);
}

.voice__title-em {
  font-size: 3.2rem;
  color: #5A82B4;
  filter: url(#text-outline-white);
}

.voice__title-num-img {
  display: inline-block;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

.voice__title-main {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 3rem 1.2rem;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  border-radius: 5rem;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.3rem;
  box-shadow: inset -4px -4px 0 var(--color-shadow-button);
}

.voice__mascot {
  width: 9rem;
  padding-bottom: 1rem;
  height: auto;
  flex-shrink: 0;
  translate: -0.5rem 0;
}

/* swiper */

.voice .swiper {
  width: 100%;
  overflow: visible;
}

.voice .swiper-wrapper {
  align-items: stretch;
}

.voice .swiper-slide {
  width: 33rem;
  height: auto;
}

/* card */

.voice__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.voice__card-head {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.voice__card-avatar {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
}

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

.voice__card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.voice__card-name {
  font-size: 1.4rem;
  line-height: 1;
}

.voice__card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.voice__card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #AFAFAF;
  border-radius: 100vmax;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.voice__card-repair {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
}

.voice__card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.voice__star {
  width: 2.4rem;
  height: 2.4rem;
}

.voice__card-score {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.4rem;
  color: #7D97B8;
  line-height: 1;
  margin-left: 0.5rem;
}

.voice__card-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* scrollbar */

.voice .voice__scrollbar {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 0.7rem;
  margin-top: 2rem;
  background-color: var(--color-white);
  border-radius: 1rem;
}

.voice .voice__scrollbar .swiper-scrollbar-drag {
  display: block;
  height: 100%;
  background-color: #AFAFAF;
  border-radius: 1rem;
  cursor: grab;
  transition: transform 0.3s ease;
}

/* ==========================================================================
   Profile
   ========================================================================== */

.profile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 0 7rem;
  background-color: #d3d3d3;
  overflow: hidden;
}

/* heading */

.profile__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.profile__heading-line {
  flex: 1;
  height: 5px;
  background-color: var(--color-black);
  border: 2px solid var(--color-black);
}

.profile__heading-line:first-child {
  translate: -5px 0;
}

.profile__heading-line:last-child {
  translate: 5px 0;
}

.profile__heading-text {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--color-black);
  letter-spacing: 0.14rem;
  line-height: 0.75;
  white-space: nowrap;
}

/* content */

.profile__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2rem 2rem;
  border-bottom: 0.5rem solid var(--color-black);
}

/* card */

.profile__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  border-radius: 1rem;
  background: linear-gradient(-82.77deg, #818181 79.78%, #4b4b4b 99.96%);
  box-shadow: inset -10px -10px 2px #555;
}

.profile__card-corner {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #797979;
  border: 1px solid #7D7D7D;
  box-shadow: inset -3px -3px 4px #565656;
}

.profile__card-corner--tl {
  top: 1.5rem;
  left: 1.5rem;
}

.profile__card-corner--tr {
  top: 1.5rem;
  right: 1.5rem;
}

.profile__card-corner--bl {
  bottom: 1.5rem;
  left: 1.5rem;
}

.profile__card-corner--br {
  bottom: 1.5rem;
  right: 1.5rem;
}

/* badge */

.profile__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transform: skewX(-10deg) scaleY(0.98);
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.4));
  white-space: nowrap;
}

.profile__badge-label {
  font-size: 2.4rem;
  color: var(--color-white);
  letter-spacing: 0.24rem;
  line-height: 1;
}

.profile__badge-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 4.2rem;
  color: var(--color-yellow);
  letter-spacing: 0.21rem;
  line-height: 1;
}

.profile__badge-unit {
  font-size: 3rem;
  color: var(--color-yellow);
  letter-spacing: 0.15rem;
  line-height: 1;
}

.profile__badge-img {
  display: block;
  width: auto;
  height: 4.5rem;
}

/* photo */

.profile__photo {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

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

/* body */

.profile__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.profile__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile__quote-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 2.4rem;
  color: var(--color-white);
  letter-spacing: 0.12rem;
  line-height: 1;
  text-align: center;
  transform: skewX(-10deg) scaleY(0.98);
  /* filter: url(#text-outline-3) drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.4)); */
}

.profile__quote-mark {
  font-size: 3.2rem;
  letter-spacing: 0.16rem;
  line-height: 1;
}

.profile__quote-text-img {
  display: block;
  width: auto;
  height: auto;
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.4));
}

.profile__desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.profile__desc p {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08rem;
  line-height: 1.5;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.4));
}

.profile__desc strong {
  font-weight: 900;
}

/* sidebar */

.profile__sidebar {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.profile__sidebar-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #afafaf;
  line-height: 1;
}

.profile__sidebar-label {
  font-size: 1.2rem;
  color: #afafaf;
  letter-spacing: 0.06rem;
  line-height: 1;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
  background: repeating-linear-gradient(
    0deg,
    #e43333,
    #e43333 8px,
    #e50406 8px,
    #e50406 16px
  );
  overflow: hidden;
}

.faq__sidebar {
  position: absolute;
  top: 7rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.faq__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 7.6rem;
}

.faq__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #a20e0e;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.faq__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 9rem;
}

.faq__sidebar-label span {
  font-size: 1.2rem;
  color: #a20e0e;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.faq__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.faq__title-text {
  font-size: 3.0rem;
  color: var(--color-white);
  letter-spacing: 0.3rem;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.4);
}

.faq__stars {
  width: 13rem;
  height: auto;
}

/* faq list */

.faq__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0 4rem;
}

.faq__item {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}

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

.faq__q,
.faq__a {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.4rem;
  color: #7d97b8;
  line-height: 1;
  flex-shrink: 0;
}

.faq__question-text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  line-height: 1.2;
}

.faq__toggle {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.faq__toggle-v,
.faq__toggle-h {
  position: absolute;
  background-color: #7d97b8;
}

.faq__toggle-v {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2rem;
  height: 100%;
  transition: transform 0.3s;
}

.faq__toggle-h {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.2rem;
}

.faq__item[open] .faq__toggle-v {
  transform: translateX(-50%) scaleY(0);
}

.faq__answer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1rem 1rem;
}

.faq__answer-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #7d97b8;
  line-height: 1;
}

/* ==========================================================================
   Info
   ========================================================================== */

.info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
  background: repeating-linear-gradient(
    0deg,
    #e43333,
    #e43333 8px,
    #e50406 8px,
    #e50406 16px
  );
  overflow: hidden;
}

.info__sidebar {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.info__sidebar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 8.1rem;
}

.info__sidebar-num span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #a20e0e;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.info__sidebar-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 6rem;
}

.info__sidebar-label span {
  font-size: 1.2rem;
  color: #a20e0e;
  letter-spacing: 0.06rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg);
}

.info__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.info__title-text {
  font-size: 3.0rem;
  color: var(--color-white);
  letter-spacing: 0.3rem;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.4);
}

.info__stars {
  width: 13rem;
  height: auto;
}

/* info card */

.info__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: calc(100% - 6rem);
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.info__row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.info__row--map {
  flex-direction: column;
  align-items: flex-start;
}

.info__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 5rem;
  font-size: 1.3rem;
  letter-spacing: 0.065rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset -4px -4px 0 var(--color-shadow-button);
  flex-shrink: 0;
  min-width: 8.9rem;
}

.info__value {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.065rem;
  line-height: 1.2;
}

.info__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
}

.info__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.info__promo {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  background-color: #4a4a4a;
  overflow: hidden;
  background-image: url('../images/footer/footer_bg.webp');
  background-repeat: repeat-y;
  background-size: 100% auto;
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  padding: 5rem 2rem 3rem;
}

.footer__logo img {
  width: 25rem;
  height: auto;
}

.footer__copy-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__copy-sub {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-size: 2.0rem;
  color: var(--color-white);
  letter-spacing: 0.1rem;
  line-height: 1;
}

.footer__copy-char {
  position: relative;
  padding-top: 0.8rem;
}

.footer__copy-char::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
}

.footer__copy-brand {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 3.2rem;
  color: var(--color-white);
  line-height: 0.72;
}

.footer__copy-catch {
  margin-top: 1rem;
  font-size: 2.4rem;
  color: var(--color-white);
  letter-spacing: 0.12rem;
  line-height: 1;
  /* filter: url(#text-outline-3); */
}

.footer__copy-catch-img {
  display: block;
  width: auto;
  height: auto;
}

.footer__info {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer__info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 5rem;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: inset -4px -4px 0 var(--color-shadow-button);
  max-width: 14.5rem;
  min-width: 14rem;
}

.footer__info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__info-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08rem;
  line-height: 1;
}

.footer__info-list li::before {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #EBB728;
  border: 1px solid #EAC544;
  box-sizing: border-box;
  flex-shrink: 0;
}

.footer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__sns-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__sns-title-text {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 3.2rem;
  color: var(--color-black);
  letter-spacing: 0.16rem;
  line-height: 1;
  filter: url(#text-outline-white);
}

.footer__sns-title-img {
  display: block;
  width: auto;
  height: auto;
}



.footer__sns-links {
  display: flex;
  gap: 2rem;
}

.footer__sns-link {
  display: block;
  width: 8rem;
  height: 8rem;
  transition: opacity 0.3s;
}

.footer__sns-link img {
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .footer__sns-link:hover,
  .footer__sns-link:focus-visible {
    opacity: 0.85;
  }
}

.footer__bottom {
  position: relative;
  z-index: 1;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  background-image: url('../images/block_bg.webp');
  background-repeat: repeat;
  background-size: 100% auto;
}

.footer__copyright {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-black);
}

/* ==========================================================================
   PC
   ========================================================================== */

@media (min-width: 500px) {
  body {
    background-image: url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

@media (min-width: 1024px) {
  .l-main {
    position: fixed;
    top: 70px;
    right: 0;
    margin: 0;
    width: 500px;
    height: calc(100vh - 70px);
    overflow-x: hidden;
    overflow-y: auto;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .l-main::-webkit-scrollbar {
    display: none;
  }

  .l-side {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
  }

  .l-side__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    pointer-events: auto;
  }

  .l-side__content {
    transform: scale(1.2);
    transform-origin: center;
  }

  .l-side__mascots {
    position: absolute;
    bottom: -2.7rem;
    left: 25%;
    transform: translateX(-50%);
    width: 56vw;
    max-width: 500px;
    height: auto;
    pointer-events: none;
  }
}

@media (min-width: 1200px) {
  .l-main {
    right: 70px;
  }
}

@media (min-width: 1440px) {
  .l-side {
    width: 1440px;
    left: 50%;
    transform: translateX(-50%);
  }

  .l-main {
    right: calc((100vw - 1440px) / 2 + 70px);
  }

  .l-side__mascots {
    left: auto;
    right: 44%;
    transform: none;
  }
}
