/* =========================================================
   style.css - アス晴れ不動産 LP
   構成: 1.リセット → 2.基本構造・汎用クラス → 3.個別コンテンツ
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS RESET & BASE
   --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #2c2c2c;
  background-color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------------------------------------------------------
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   --------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-sun: #f5cd2b;
  --color-sun-dark: #d4a800;
  --color-sun-light: #fff8d6;
  --color-mountain: #79a22d;
  --color-mountain-dark: #5a7820;
  --color-mountain-light: #e9f5d0;
  --color-sea: #199ba6;
  --color-sea-dark: #117a83;
  --color-sea-light: #d0f0f3;

  /* Neutrals */
  --color-white: #ffffff;
  --color-offwhite: #fafaf8;
  --color-bg-warm: #fffdf4;
  --color-text: #2c2c2c;
  --color-text-sub: #666666;
  --color-border: #e8e8e8;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-xxl: 128px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-sun: 0 8px 32px rgba(245, 205, 43, 0.35);

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
   --------------------------------------------------------- */
.heading-xl {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.heading-sm {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}

.text-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-sub);
}

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

.text-sun {
  color: var(--color-sun);
}

.text-mountain {
  color: var(--color-mountain);
}

.text-sea {
  color: var(--color-sea);
}

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

/* ---------------------------------------------------------
   4. LAYOUT UTILITIES (GRID / FLEX)
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

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

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

/* ---------------------------------------------------------
   5. SECTION WRAPPER UTILITIES
   --------------------------------------------------------- */
.section-pad {
  padding: var(--space-xl) 0;
}

.section-pad-sm {
  padding: var(--space-lg) 0;
}

.section-title-block {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title-block .section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-title-block .section-main-title {
  margin-bottom: var(--space-sm);
}

.section-title-block .section-sub-title {
  color: var(--color-text-sub);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   6. BUTTON UTILITIES
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sun {
  background: var(--color-sun);
  color: #1a1a1a;
  box-shadow: var(--shadow-sun);
}

.btn-sun:hover {
  background: var(--color-sun-dark);
  box-shadow: 0 12px 40px rgba(245, 205, 43, 0.5);
}

.btn-sea {
  background: var(--color-sea);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(25, 155, 166, 0.35);
}

.btn-sea:hover {
  background: var(--color-sea-dark);
}

.btn-mountain {
  background: var(--color-mountain);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(121, 162, 45, 0.35);
}

.btn-mountain:hover {
  background: var(--color-mountain-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ---------------------------------------------------------
   7. CARD UTILITY
   --------------------------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------------------------------------------------------
   8. WAVE SVG SEPARATORS
   --------------------------------------------------------- */
.wave-sep {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-sep svg {
  display: block;
  width: 100%;
}

/* ---------------------------------------------------------
   9. HEADER
   --------------------------------------------------------- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.lp-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.lp-header__logo img {
  height: 48px;
  width: auto;
}

.lp-header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lp-header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.lp-header.scrolled .lp-header__tel {
  color: var(--color-text);
}

.lp-header:not(.scrolled) .lp-header__tel {
  color: var(--color-white);
}

.lp-header__tel-icon {
  width: 18px;
  height: 18px;
  background: var(--color-mountain);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ハンバーガーメニュー（SP） */
.lp-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}

.lp-header__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.lp-header:not(.scrolled) .lp-header__hamburger span {
  background: var(--color-white);
}

/* SP NAV */
.lp-nav-sp {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.lp-nav-sp.is-open {
  display: flex;
}

.lp-nav-sp a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 12px 40px;
  border-radius: var(--radius-full);
  transition: background var(--transition-base), color var(--transition-base);
}

.lp-nav-sp a:hover {
  background: var(--color-sun-light);
  color: var(--color-sun-dark);
}

.lp-nav-sp__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-border);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------------------------------------------------------
   10. HERO SECTION
   --------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/kv.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 37, 50, 0.65) 0%,
      rgba(25, 80, 90, 0.50) 50%,
      rgba(20, 28, 44, 0.45) 100%);
  z-index: 1;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 80px;
}

.hero-section__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-lg);
}

.hero-section__text {
  max-width: 640px;
}

.hero-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 205, 43, 0.2);
  border: 1px solid rgba(245, 205, 43, 0.5);
  color: var(--color-sun);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.hero-section__catch {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section__catch em {
  font-style: normal;
  color: var(--color-sun);
}

.hero-section__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.hero-section__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-section__character {
  width: 260px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
  animation: hero-float 3s ease-in-out infinite;
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-section__badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------------------------------------------------------
   11. PROBLEM SECTION
   --------------------------------------------------------- */
.problem-section {
  background: var(--color-bg-warm);
  padding-bottom: 0;
}

.problem-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.problem-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  border-left: 4px solid var(--color-sun);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sun-light);
  border-radius: var(--radius-md);
}

.problem-card__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-text);
}

.problem-section__resolve {
  text-align: center;
  background: linear-gradient(135deg, var(--color-sun) 0%, #f0b800 100%);
  padding: var(--space-md) var(--space-md);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: var(--space-md);
}

.problem-section__resolve-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   12. BENEFIT SECTION (10のメリット)
   --------------------------------------------------------- */
.benefit-section {
  background: linear-gradient(180deg, #fff8d6 0%, #ffffff 100%);
}

.benefit-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-top: 4px solid var(--color-sun);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 205, 43, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.benefit-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-sun);
  color: #1a1a1a;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.benefit-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.benefit-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.benefit-card__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

/* ---------------------------------------------------------
   13. SERVICE SECTION
   --------------------------------------------------------- */
.service-section {
  background: var(--color-white);
}

.service-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-panel {
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-panel__bg-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 5rem;
  opacity: 0.18;
  line-height: 1;
}

.service-panel--sell {
  background: linear-gradient(135deg, #f5cd2b 0%, #d4a800 100%);
  color: #1a1a1a;
}

.service-panel--rent {
  background: linear-gradient(135deg, #199ba6 0%, #117a83 100%);
  color: white;
}

.service-panel--buy {
  background: linear-gradient(135deg, #79a22d 0%, #5a7820 100%);
  color: white;
}

.service-panel--inherit {
  background: linear-gradient(135deg, #9b59b6 0%, #6c3483 100%);
  color: white;
}

.service-panel__label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  background: rgba(255, 255, 255, 0.25);
}

.service-panel__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.service-panel__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.9;
}

.service-panel__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.85;
}

/* ---------------------------------------------------------
   14. CASE STUDY SECTION
   --------------------------------------------------------- */
.case-section {
  background: var(--color-offwhite);
}

.case-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.case-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.case-card__header {
  background: linear-gradient(135deg, var(--color-sea) 0%, var(--color-mountain) 100%);
  padding: var(--space-md) var(--space-lg);
  color: white;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.case-card__number {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.case-card__title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.case-card__body {
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: var(--space-md);
  align-items: center;
}

.case-block {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.case-block--before {
  background: #fff3f3;
  border: 2px solid #ffcccc;
}

.case-block--after {
  background: #f0faf0;
  border: 2px solid #99d099;
}

.case-block__label {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.case-block--before .case-block__label {
  background: #ffcccc;
  color: #c0392b;
}

.case-block--after .case-block__label {
  background: #99d099;
  color: #1a6e1a;
}

.case-block__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 500;
}

.case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-mountain);
}

.case-card__result {
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--color-sun-light), #fff);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-mountain-dark);
}

/* ---------------------------------------------------------
   15. TRUST / COMPARISON SECTION
   --------------------------------------------------------- */
.trust-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-sea-light) 100%);
}

.trust-section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  font-weight: 800;
  font-size: 1rem;
}

.comparison-table thead tr {
  background: #f5f5f5;
}

.comparison-table__head-asuhare {
  background: var(--color-sun) !important;
  color: #1a1a1a;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.comparison-table__head-asuhare th {
  font-size: 1.05rem;
}

.comparison-table__label {
  text-align: left !important;
  font-weight: 700;
  background: var(--color-offwhite);
  font-size: 0.9375rem;
}

.comparison-table__asuhare {
  background: #fffde8;
  font-weight: 700;
  color: var(--color-mountain-dark);
}

.comparison-circle-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-mountain);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.comparison-circle-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e0e0e0;
  color: #999;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

/* ---------------------------------------------------------
   16. CONTACT SECTION
   --------------------------------------------------------- */
.contact-section {
  background: linear-gradient(135deg, #1a3a1a 0%, #0e2a2e 50%, #1a2a3a 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 205, 43, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(25, 155, 166, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
}

.contact-section__heading {
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-section__lead {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.9;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: transform var(--transition-base), background var(--transition-base);
  color: white;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.contact-card--line {
  border-color: rgba(6, 199, 85, 0.4);
  background: rgba(6, 199, 85, 0.08);
}

.contact-card--line:hover {
  background: rgba(6, 199, 85, 0.16);
}

.contact-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 2rem;
}

.contact-card--line .contact-card__icon-wrap {
  background: #06c755;
}

.contact-card--tel .contact-card__icon-wrap {
  background: var(--color-mountain);
}

.contact-card--mail .contact-card__icon-wrap {
  background: var(--color-sea);
}

.contact-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card__tel-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-sun);
  display: block;
  margin: 8px 0;
}

.contact-card__hours {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.contact-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.contact-card__btn:hover {
  transform: translateY(-2px);
}

.contact-card__btn--line {
  background: #06c755;
  color: white;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
}

.contact-card__btn--tel {
  background: var(--color-mountain);
  color: white;
  box-shadow: 0 8px 24px rgba(121, 162, 45, 0.4);
}

.contact-card__btn--mail {
  background: var(--color-sea);
  color: white;
  box-shadow: 0 8px 24px rgba(25, 155, 166, 0.4);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: white;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color var(--transition-base), background var(--transition-base);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-sun);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
  background: #1a2a3a;
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-required {
  color: var(--color-sun);
  font-size: 0.75rem;
  margin-left: 4px;
}

.contact-form__submit {
  background: linear-gradient(135deg, var(--color-sun) 0%, #f0b800 100%);
  color: #1a1a1a;
  padding: 18px;
  border-radius: var(--radius-full);
  font-size: 1.125rem;
  font-weight: 900;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-sun);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.contact-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(245, 205, 43, 0.5);
}

/* ---------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------- */
.lp-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.lp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.lp-footer__logo img {
  height: 40px;
  width: auto;
}

.lp-footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.lp-footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-sm);
}

.lp-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__nav-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-base);
}

.lp-footer__nav-list a:hover {
  color: var(--color-sun);
}

.lp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------------------------------------------------------
   18. FLOATING CTA (SCROLL)
   --------------------------------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
  text-decoration: none;
}

.floating-cta__btn:hover {
  transform: scale(1.1);
}

.floating-cta__btn--line {
  background: #06c755;
  color: white;
}

.floating-cta__btn--tel {
  background: var(--color-mountain);
  color: white;
}

/* ---------------------------------------------------------
   19. SECTION BG VARIANTS
   --------------------------------------------------------- */
.bg-offwhite {
  background: var(--color-offwhite);
}

.bg-sun-light {
  background: var(--color-sun-light);
}

.bg-sea-light {
  background: var(--color-sea-light);
}

.bg-mountain-light {
  background: var(--color-mountain-light);
}

/* ---------------------------------------------------------
   20. LOGOMARK ACCENT
   --------------------------------------------------------- */
.logomark-accent {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* ---------------------------------------------------------
   21. SCROLL TO TOP BUTTON
   --------------------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  font-size: 1.25rem;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  border: 1px solid var(--color-border);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   22. RESPONSIVE — TABLET (max-width: 960px)
   --------------------------------------------------------- */
@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-section__inner {
    grid-template-columns: 1fr;
  }

  .hero-section__character {
    display: none;
  }

  .service-section__grid {
    grid-template-columns: 1fr;
  }

  .case-card__body {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .case-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .lp-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ---------------------------------------------------------
   23. RESPONSIVE — MOBILE (max-width: 640px)
   --------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --space-lg: 48px;
    --space-xl: 64px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .lp-header__tel {
    display: none;
  }

  .lp-header__hamburger {
    display: flex;
  }

  .lp-header__cta .btn {
    display: none;
  }

  .hero-section__cta {
    flex-direction: column;
  }

  .benefit-section__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.8125rem;
  }

  .contact-form-wrap {
    padding: var(--space-md);
  }
}

/* ---------------------------------------------------------
   24. ANIMATIONS & MICRO-INTERACTIONS
   --------------------------------------------------------- */
@keyframes pulse-sun {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 205, 43, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(245, 205, 43, 0);
  }
}

.pulse-sun {
  animation: pulse-sun 2s ease-in-out infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------------
   25. AOS OVERRIDES
   --------------------------------------------------------- */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}