@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #334155;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.pc-break {
  display: none;
}

.form-hidden {
  display: none;
}

/* =============================================
   Utility
============================================= */
:root {
  --navy: #001a41;
  --navy-deep: #001529;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 32px, 960px);
}

.container-wide {
  width: min(100% - 32px, 1440px);
}

.container-faq {
  width: min(100% - 32px, 900px);
}

.container-contact {
  width: min(100% - 32px, 760px);
}

.section-title {
  margin: 0 0 48px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.section-title-white {
  color: var(--white);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading-lead {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 700;
}

.section-heading-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.4;
}

.section-description {
  margin: 0 0 40px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
}

.section-description-white {
  color: rgba(255, 255, 255, 0.92);
}

.group-link:hover {
  opacity: 0.92;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-header {
  padding: 10px 16px;
  font-size: 0.875rem;
}

.button-large {
  padding: 22px 34px;
  border-radius: 18px;
  font-size: 1.125rem;
  width: 100%;
  max-width: 390px;
  min-height: 72px;
}

.button-cta {
  padding: 18px 32px;
  min-height: 64px;
  font-size: 1rem;
}

.button-bottom-cta {
  width: 100%;
  padding: 20px 30px;
  border-radius: 20px;
  font-size: 1.125rem;
  min-height: 72px;
}

.button-submit {
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 1.125rem;
}

.button-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  flex-shrink: 0;
}

.button-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.button-icon-large {
  width: 40px;
  height: 40px;
}

.button-icon-large img {
  width: 20px;
  height: 20px;
}

.cta-note,
.cta-phone-note,
.hero-phone-note,
.bottom-cta-note,
.bottom-cta-phone-note {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  animation: floatY 1.6s ease-in-out infinite;
}

.cta-note,
.cta-phone-note,
.hero-phone-note {
  color: #ffffff;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* =============================================
   Header
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.25s ease;
}

.header-nav a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tel-icon {
  display: none;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-tel-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header-tel-text {
  display: flex;
  flex-direction: column;
}

.header-tel-caption {
  margin: 0 0 2px;
  font-size: 0.5rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
  line-height: 1.2;
}

.header-tel-number {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.header-tel-hours {
  margin: 2px 0 0;
  font-size: 0.5rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.2;
}

/* =============================================
   Hero
============================================= */
.hero {
  position: relative;
  min-height: 600px;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 56px;
}

.hero-content {
  color: var(--white);
}

.hero-title {
  margin: 0 0 40px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.hero-title-main {
  display: block;
  font-size: clamp(1.9rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.35;
}

.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-bar {
  position: absolute;
  left: 0;
  bottom: 0.15em;
  z-index: -1;
  width: 100%;
  height: 0.35em;
  background: rgba(249, 115, 22, 0.8);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-stat {
  position: relative;
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 140px;
  max-width: 240px;
}

.hero-stat-laurel {
  position: absolute;
  top: 50%;
  width: auto;
  height: 90%;
  transform: translateY(-50%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-stat-laurel-left {
  left: -6px;
}

.hero-stat-laurel-right {
  right: -6px;
}

.hero-stat-body {
  position: relative;
  z-index: 1;
  padding: 12px 14px;
}

.hero-stat-label {
  margin: 0 0 4px;
  color: #fb923c;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-stat-value {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.hero-stat-prefix {
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-stat-number {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-stat-number-text {
  font-size: 1.3rem;
}

.hero-stat-unit {
  font-size: 0.6rem;
  font-weight: 700;
}

.hero-stat-unit-large {
  font-size: 0.85rem;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

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

.hero-phone-block {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.hero-phone-note {
  text-align: center;
}

.hero-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color 0.25s ease;
}

.hero-phone-link:hover {
  color: var(--orange);
}

.hero-phone-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.hero-phone-icon img {
  width: 22px;
  height: 22px;
}

.hero-phone-number {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.hero-phone-hours {
  margin: 4px 0 0;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* =============================================
   Problems
============================================= */
.problems {
  background: #ffffff;
  padding-top: 80px;
}

.problem-list {
  max-width: 980px;
  margin: 0 auto 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.problem-pill {
  min-height: 56px;
  padding: 12px 20px;
  background: #ffffff;
  border: 2px solid var(--navy);
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  flex: 0 1 calc(50% - 6px);
}

.problem-pill-wide {
  flex-basis: 100%;
}

.problems-solution {
  position: relative;
  background: #f8fafc;
  margin-top: -16px;
  padding: 88px 0 64px;
  clip-path: polygon(0 0, 50% 12%, 100% 0, 100% 100%, 0 100%);
}

.solution-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
}

.solution-copy p {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.solution-mark {
  color: var(--orange);
  opacity: 0.65;
  font-size: 2rem;
  font-weight: 700;
}

.solution-title {
  margin: 0;
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
}

.solution-title span {
  color: var(--orange);
}

/* =============================================
   Media Section
============================================= */
.media-section {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 64px;
}

.media-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 32px 20px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 16px;
  align-items: center;
  justify-items: center;
}

.media-grid img {
  width: auto;
  max-width: 100%;
  height: 25px;
  object-fit: contain;
}

.media-grid .media-logo-small {
  max-width: 75px;
}

.media-note {
  margin: 32px 0 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* =============================================
   Services
============================================= */
.services-section {
  padding: 72px 0 96px;
  background: #ffffff;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
}

.services-grid {
  display: grid;
  gap: 48px 24px;
  justify-items: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.service-circle {
  width: 240px;
  height: 240px;
  min-width: 240px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid #f1f5f9;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-number {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 700;
}

.service-circle h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-circle img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-line {
  width: 32px;
  height: 1px;
  background: rgba(249, 115, 22, 0.3);
  margin: 16px 0;
}

.service-card p {
  max-width: 280px;
  margin: 0;
  color: #475569;
  font-size: 0.813rem;
  line-height: 1.9;
}

.services-note {
  margin: 56px 0 0;
  text-align: center;
}

.services-note p {
  margin: 0;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.9;
}

/* =============================================
   CTA Panel
============================================= */
.cta-panel {
  max-width: 1280px;
  margin: 56px auto 0;
  padding: 32px 24px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.cta-panel-text {
  text-align: center;
}

.cta-panel-lead {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 700;
}

.cta-panel-text h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
}

.cta-panel-text h3 span {
  display: inline-block;
}

.cta-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.cta-phone-block {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.cta-phone-note {
  text-align: center;
}

.cta-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color 0.25s ease;
}

.cta-phone-link:hover {
  color: var(--orange);
}

.cta-phone-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.cta-phone-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.cta-phone-number {
  font-size: 1.75rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.cta-phone-hours {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.625rem;
  text-align: center;
}

/* =============================================
   Reasons
============================================= */
.reasons-section {
  padding: 72px 0 96px;
  background: #ffffff;
  overflow: hidden;
}

.reason-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.reason-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.reason-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f8fafc;
  z-index: 0;
}

.reason-bg-left {
  left: 0;
}

.reason-bg-right {
  right: 0;
}

.reason-content,
.reason-image-wrap {
  position: relative;
  z-index: 1;
}

.reason-content {
  padding: 24px;
}

.reason-number-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.reason-bar {
  width: 12px;
  height: 40px;
  background: #000000;
  transform: skewX(-20deg);
}

.reason-number {
  font-size: clamp(3rem, 7vw, 3.75rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #a19460;
}

.reason-title {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 900;
  line-height: 1.5;
}

.reason-point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.reason-point-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reason-point h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 700;
}

.reason-text {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 2;
}

.reason-text strong {
  color: var(--orange);
}

.reason-image-wrap {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-panel {
  position: absolute;
  top: 15%;
  width: 95%;
  height: 70%;
  background: var(--navy-deep);
  z-index: 1;
}

.reason-panel-right {
  right: -2%;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.reason-panel-left {
  left: -2%;
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.reason-image {
  position: relative;
  z-index: 2;
  width: 100%;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.reason-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* =============================================
   Cases
============================================= */
.cases-section {
  padding: 72px 0 56px;
  background: #ffffff;
  overflow: hidden;
}

.slider-outer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.custom-case-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 20px 7.5% 40px;
  scroll-padding-left: 7.5%;
  scroll-padding-right: 7.5%;
}

.custom-case-list::-webkit-scrollbar {
  display: none;
}

.custom-case-item {
  flex: 0 0 85%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.custom-case-img {
  width: 100%;
  height: 180px;
  flex-shrink: 0;
}

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

.custom-case-txt {
  padding: 20px;
  flex-grow: 1;
}

.custom-case-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 2px 8px;
  background: var(--bg-soft);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.688rem;
}

.custom-case-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.custom-case-before-after {
  margin-bottom: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.custom-case-before-after p {
  margin: 0;
}

.custom-case-body {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
}

.custom-case-body strong {
  color: var(--orange);
}

.nav-btn {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 26, 65, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn-left {
  left: 0;
}

.btn-right {
  right: 0;
}

.cases-cta-section {
  padding: 0 0 64px;
  background: #f8fafc;
}

/* =============================================
   Flow
============================================= */
.flow-section {
  padding: 72px 0 96px;
  background: #f8fafc;
}

.flow-area {
  position: relative;
}

.flow-line {
  position: absolute;
  z-index: 0;
  background: rgba(0, 26, 65, 0.2);
}

.flow-line-pc {
  display: none;
}

.flow-line-sp {
  top: 0;
  left: 20px;
  transform: none;
  width: 2px;
  height: 100%;
}

.flow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.flow-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.flow-step {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.flow-step-accent {
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.28);
}

.flow-card {
  width: 100%;
  min-height: 220px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.flow-card-accent {
  border: 2px solid #fb923c;
}

.flow-card img {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.flow-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.flow-card p {
  margin: 0;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* =============================================
   Bottom CTA
============================================= */
.bottom-cta {
  position: relative;
  max-width: 960px;
  margin: 72px auto 0;
  background: #1a2434;
  color: #ffffff;
  border-radius: 48px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.bottom-cta-shape {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.bottom-cta-inner {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  text-align: center;
}

.bottom-cta-inner h2 {
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
}

.bottom-cta-inner h2 span {
  display: inline-block;
}

.bottom-cta-inner p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.9;
}

.bottom-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.bottom-cta-button-wrap {
  width: 100%;
  max-width: 520px;
}

.bottom-cta-note {
  color: var(--orange);
}

.bottom-cta-phone {
  text-align: center;
}

.bottom-cta-phone-note {
  color: #d1d5db;
}

.bottom-cta-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.25s ease;
}

.bottom-cta-phone-link:hover {
  color: var(--orange);
}

.bottom-cta-phone-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bottom-cta-phone-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.bottom-cta-phone-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bottom-cta-phone-main span {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  white-space: nowrap;
}

.bottom-cta-phone-hours {
  margin: 8px 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
}

/* =============================================
   FAQ
============================================= */
.faq-section {
  padding: 72px 0 96px;
  background: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 700;
  color: #0f172a;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-icon {
  color: #3b82f6;
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.7);
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.8;
}

.faq-answer.is-open {
  display: block;
}

/* =============================================
   Contact
============================================= */
.contact-section {
  padding: 72px 0 96px;
  background: var(--navy);
  color: #ffffff;
}

.contact-lead {
  margin: 0 0 40px;
  text-align: center;
  font-size: 1rem;
  opacity: 0.92;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.form-note {
  font-size: 0.625rem;
  font-weight: 400;
  opacity: 0.8;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  color: #0f172a;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #3b82f6;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.zip-wrap {
  margin-bottom: 12px;
}

.zip-input {
  max-width: 140px;
}

.form-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

.form-agree input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 0.875rem;
  cursor: pointer;
}

.form-agree a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-agree a:hover {
  color: #bfdbfe;
}

.form-submit {
  text-align: center;
}

/* =============================================
   Footer
============================================= */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 40px 0 56px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-privacy-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f8fafc;
}

.footer-privacy-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-privacy-text p {
  max-width: 720px;
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.9;
  text-align: center;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

.footer-nav a {
  color: #475569;
  font-size: 0.875rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* =============================================
   Scroll Top
============================================= */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
}

.scroll-top:hover {
  background: var(--orange);
  transform: translateY(10px) scale(1.06);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-icon {
  width: 24px;
  height: 24px;
}

/* =============================================
   Responsive
============================================= */
@media (min-width: 640px) {
  .header-actions {
    gap: 24px;
  }

  .header-tel-icon {
    display: flex;
  }

  .header-tel-caption,
  .header-tel-hours {
    text-align: left;
  }

  .button-header {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .hero-cta-row {
    align-items: flex-start;
  }

  .hero-phone-block {
    width: auto;
  }

  .cta-panel-actions {
    align-items: center;
  }

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

@media (min-width: 768px) {
  .pc-break {
    display: inline;
  }

  .container {
    width: min(100% - 48px, 1200px);
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .header-inner {
    min-height: 80px;
  }

  .header-logo img {
    height: 40px;
  }

  .header-tel-number {
    font-size: 1.125rem;
  }

  .header-tel-caption {
    font-size: 0.625rem;
  }

  .header-tel-hours {
    font-size: 0.5625rem;
  }

  .hero-inner {
    padding: 88px 0 56px;
  }

  .hero-stats {
    gap: 24px;
    justify-content: flex-start;
  }

  .hero-stat {
    min-width: 190px;
    flex: 0 0 auto;
  }

  .hero-stat-label {
    font-size: 0.6875rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-number-text {
    font-size: 2rem;
  }

  .hero-stat-prefix {
    font-size: 0.9rem;
  }

  .hero-stat-unit {
    font-size: 0.8125rem;
  }

  .hero-stat-unit-large {
    font-size: 1rem;
  }

  .hero-cta-row {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }

  .hero-phone-block {
    width: auto;
    padding-top: 0;
    padding-left: 52px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
  }

  .hero-phone-link {
    align-items: center;
  }

  .hero-phone-note,
  .cta-phone-note {
    text-align: center;
  }

  .problem-pill {
    flex: 0 1 auto;
    padding: 12px 30px;
  }

  .problem-pill-wide {
    flex-basis: auto;
  }

  .media-section {
    padding: 56px 0 64px;
  }

  .media-card {
    padding: 48px;
  }

  .media-grid img {
    height: 42px;
  }

  .media-grid .media-logo-small {
    max-width: 110px;
  }

  .cta-panel {
    padding: 40px 48px;
  }

  .custom-case-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    scroll-snap-type: none;
    padding: 20px 0 0;
  }

  .custom-case-item {
    flex: none;
    height: 100%;
  }

  .nav-btn {
    display: none;
  }

  .bottom-cta-inner {
    padding: 64px 32px;
  }

  .bottom-cta-phone-icon {
    width: 64px;
    height: 64px;
  }

  .bottom-cta-phone-icon img {
    width: 32px;
    height: 32px;
  }

  .footer-privacy-box {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-privacy-text p {
    text-align: left;
  }
}

@media (min-width: 1100px) {
  .header-nav {
    display: flex;
  }

  .hero-title {
    max-width: 900px;
  }

  .reason-item {
    flex-direction: row;
    align-items: center;
  }

  .reason-item-reverse {
    flex-direction: row-reverse;
  }

  .reason-bg {
    width: 65%;
  }

  .reason-content {
    flex: 1 1 45%;
    padding: 48px;
  }

  .reason-image-wrap {
    flex: 1 1 55%;
    padding: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
  }

  .service-card {
    min-width: 0;
  }

  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-panel-text {
    text-align: center;
    flex: 1 1 auto;
  }

  .cta-panel-actions {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
  }

  .cta-phone-block {
    width: auto;
    padding-top: 0;
    padding-left: 44px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .cta-phone-link {
    align-items: center;
  }

  .custom-case-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 0;
  }

  .flow-line-pc {
    display: block;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: none;
  }

  .flow-line-sp {
    display: none;
  }

  .flow-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .flow-item {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .flow-card {
    min-height: 260px;
    padding: 24px;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .header-actions {
    min-width: 0;
  }

  .header-tel {
    min-width: 0;
  }

  .header-tel-number {
    font-size: 0.875rem;
  }

  .hero-phone-number,
  .cta-phone-number,
  .bottom-cta-phone-main span {
    font-size: 1.5rem;
  }
}

/* =============================================
   Confirm Page
============================================= */
.confirm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.confirm-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.confirm-header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.confirm-header-tel-note {
  margin: 0 0 4px;
  color: #94a3b8;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1.2;
}

.confirm-header-tel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.confirm-header-tel-button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.confirm-header-tel-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.confirm-header-tel-icon svg {
  width: 100%;
  height: 100%;
}

.confirm-header-tel-number {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.confirm-header-tel-hours {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 0.5rem;
  line-height: 1.2;
}

.confirm-main {
  flex: 1;
  padding: 48px 0 64px;
  background: #f8fafc;
}

.confirm-container {
  width: min(100% - 32px, 960px);
}

.confirm-intro {
  margin-bottom: 48px;
  text-align: center;
}

.confirm-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}

.confirm-step-label {
  margin: 0 0 24px;
  color: #f26601;
  font-size: 1rem;
  font-weight: 700;
}

.confirm-description {
  margin: 0 0 40px;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.8;
}

.confirm-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.confirm-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
}

.confirm-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.confirm-step-text {
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
}

.confirm-step-item.is-done {
  opacity: 0.4;
}

.confirm-step-item.is-done .confirm-step-circle,
.confirm-step-item.is-upcoming .confirm-step-circle {
  border: 2px solid #94a3b8;
  color: #475569;
  background: #ffffff;
}

.confirm-step-item.is-current .confirm-step-circle {
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  outline: 4px solid #ffffff;
}

.confirm-step-item.is-current .confirm-step-text {
  color: var(--navy);
}

.confirm-step-item.is-upcoming {
  opacity: 0.3;
}

.confirm-step-line {
  width: 32px;
  height: 2px;
  background: #e2e8f0;
  margin-top: 19px;
}

.confirm-box {
  margin-bottom: 48px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.confirm-list {
  margin: 0;
}

.confirm-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 24px;
  border-top: 1px solid #f1f5f9;
}

.confirm-row:first-child {
  border-top: 0;
}

.confirm-term {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.confirm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
}

.confirm-badge-required {
  background: #ef4444;
}

.confirm-badge-optional {
  background: #94a3b8;
}

.confirm-label {
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
}

.confirm-value {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.confirm-value-pre {
  white-space: pre-wrap;
}

.confirm-value-policy {
  color: #2563eb;
  font-weight: 700;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.confirm-button {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.confirm-button:hover {
  transform: translateY(-1px);
}

.confirm-button-secondary {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: #64748b;
}

.confirm-button-secondary:hover {
  background: #f8fafc;
}

.confirm-button-primary {
  background: var(--orange);
  border: 0;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.confirm-button-primary:hover {
  background: var(--orange-dark);
}

@media (min-width: 768px) {
  .confirm-header-tel-note {
    font-size: 0.625rem;
  }

  .confirm-header-tel-button {
    padding: 10px 24px;
  }

  .confirm-header-tel-icon {
    width: 16px;
    height: 16px;
  }

  .confirm-header-tel-number {
    font-size: 1rem;
  }

  .confirm-header-tel-hours {
    font-size: 0.5625rem;
  }

  .confirm-main {
    padding: 64px 0;
  }

  .confirm-intro {
    margin-bottom: 56px;
  }

  .confirm-description {
    margin-bottom: 48px;
  }

  .confirm-steps {
    gap: 24px;
  }

  .confirm-step-item {
    min-width: 90px;
  }

  .confirm-step-text {
    font-size: 0.75rem;
  }

  .confirm-step-line {
    width: 32px;
  }

  .confirm-row {
    grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
    gap: 24px;
    align-items: baseline;
  }

  .confirm-actions {
    flex-direction: row;
    align-items: stretch;
  }

  .confirm-button-secondary {
    width: 192px;
  }

  .confirm-button-primary {
    width: 288px;
  }
}

/* =============================================
   Thanks Page
============================================= */
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.thanks-main {
  flex: 1;
  padding: 48px 0 64px;
  background: #f8fafc;
}

.thanks-container {
  width: min(100% - 32px, 960px);
}

.thanks-intro {
  margin-bottom: 48px;
  text-align: center;
}

.thanks-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}

.thanks-step-label {
  margin: 0 0 24px;
  color: #f26601;
  font-size: 1rem;
  font-weight: 700;
}

.thanks-description {
  margin: 0 0 40px;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.8;
}

.thanks-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.thanks-card-inner {
  padding: 32px 24px 40px;
  text-align: center;
}

.thanks-check-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-check-icon svg {
  width: 40px;
  height: 40px;
}

.thanks-heading {
  margin: 0 0 32px;
  color: #1e293b;
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.thanks-message-group {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #475569;
}

.thanks-message-main {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  text-align: center;
}

.thanks-message-highlight {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #bae6fd;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

.thanks-info-box {
  padding: 24px 20px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  text-align: center;
}

.thanks-info-main {
  margin: 0;
  line-height: 1.9;
}

.thanks-info-highlight {
  color: #f26601;
  font-weight: 700;
  font-size: 1.1em;
}

.thanks-info-note {
  margin: 8px 0 0;
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.7;
}

.thanks-caution-block {
  padding-top: 32px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.thanks-caution-text {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 2;
}

.thanks-caution-text strong {
  color: #1e293b;
}

.thanks-tel-box {
  display: block;
  max-width: 360px;
  margin: 0 auto;
  padding: 20px 16px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.thanks-tel-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.thanks-tel-note {
  margin: 0;
  color: #9a3412;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.7;
}

.thanks-tel-number {
  display: block;
  margin: 8px 0;
  color: #ea580c;
  font-size: clamp(1.75rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.thanks-tel-hours {
  margin: 0;
  color: #c2410c;
  font-size: 0.6875rem;
  font-weight: 700;
}

.thanks-back-link-wrap {
  margin-top: 48px;
  text-align: center;
}

.thanks-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-weight: 700;
  transition: color 0.25s ease;
}

.thanks-back-link:hover {
  color: var(--navy);
}

.thanks-back-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.thanks-back-link:hover .thanks-back-icon {
  transform: translateX(-4px);
}

.thanks-back-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .thanks-main {
    padding: 64px 0;
  }

  .thanks-intro {
    margin-bottom: 56px;
  }

  .thanks-description {
    margin-bottom: 48px;
  }

  .thanks-card-inner {
    padding: 64px 56px;
  }

  .thanks-message-main {
    font-size: 1.125rem;
  }

  .thanks-info-box {
    padding: 28px 24px;
  }

  .thanks-caution-text {
    font-size: 0.9375rem;
  }

  .thanks-back-link-wrap {
    margin-top: 56px;
  }
}

@media (max-width: 380px) {
  .header-inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .header-logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .header-logo img {
    height: 28px;
  }

  .confirm-header-tel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-bottom: 6px;
  }

  .confirm-header-tel-button {
    padding: 7px 12px;
  }

  .confirm-header-tel-number {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  .confirm-header-tel-note,
  .confirm-header-tel-hours {
    font-size: 0.5rem;
  }

  .site-header {
    padding: 0;
  }
}

@media (max-width: 480px) {

  .hero-stats {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
  }

  .hero-stat {
    min-width: auto;
    flex: 1;
    max-width: none;
  }

  .hero-stat-body {
    padding: 10px 8px;
  }

  .hero-stat-number {
    font-size: 1rem;
  }

  .hero-stat-number-text {
    font-size: 1rem;
  }

  .hero-stat-unit {
    font-size: 0.55rem;
  }

}