/* =============================================
   Design Tokens
   ============================================= */
:root {
  --main-width: 1280px;
  --container-padding: clamp(16px, 24vw, calc((100vw - var(--main-width)) / 2));
  --color-primary: #0461bd;
  --color-navy: #223a60;
  --color-orange: #df7818;
  --color-orange-dark: #83450b;
  --color-red: #f54a55;
  --color-yellow-bg: #f5f0d1;
  --color-blue-bg: #e6f0fa;
  --color-light-blue-bg: #e2ebf3;
  --color-white: #fdfdfd;
  --color-border: #e1eaf2;
  --color-gray: #6b7280;
  --font-zen: 'Zen Maru Gothic', sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-lexend: 'Lexend', sans-serif;
  --font-signika: 'Signika Negative', sans-serif;
}

/* =============================================
     Reset & Base
     ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-noto);
  color: var(--color-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
}
p {
  margin: 0;
}
h2 {
  margin: 0;
}

.sp-only {
  display: inline;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* =============================================
     Header
     ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px
    clamp(8px, calc(8px + (24 - 8) * ((100vw - 360px) / (768 - 360))), 24px);
  background-color: var(--color-white);
}
.header__logo {
  flex-shrink: 0;
  width: clamp(
    174px,
    calc(174px + (244 - 174) * ((100vw - 360px) / (768 - 360))),
    244px
  );
  transition: opacity 0.3s;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  color: #000;
}
.header__hamburger svg {
  width: 40px;
  height: 40px;
}
.header__right {
  display: none;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  color: var(--color-navy);
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.header__nav a:hover {
  opacity: 0.7;
}
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.header__phone-number {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}
.header__phone-number:hover {
  opacity: 0.8;
}
.header__phone-number span {
  color: var(--color-navy);
  font-size: 22px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.header__phone-hours {
  color: #666;
  font-size: 11px;
  white-space: nowrap;
}
.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  background: linear-gradient(to right, #e8a535 50%, var(--color-navy) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-left: 4px solid #e8a535;
  transition: background-position 0.4s ease;
  flex-shrink: 0;
}
.header__cta:hover {
  background-position: left center;
}

@media (min-width: 768px) {
  .header__inner {
    padding: 12px 24px;
  }
  .header__logo {
    width: 244px;
  }
  .header__hamburger {
    color: var(--color-navy);
  }
}
@media (min-width: 1280px) {
  .header {
    background: var(--color-white);
    box-shadow: 0 1px 0 0 var(--color-border);
  }
  .header__inner {
    min-height: 74px;
    gap: 24px;
    padding: 12px 24px;
  }
  .header__hamburger {
    display: none;
  }
  .header__nav a {
    font-weight: 700;
  }
  .header__right {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
  }
  .header__phone {
    gap: 2px;
    align-items: center;
  }
  .header__phone-number {
    gap: 0;
  }
  .header__phone-number svg path {
    fill: var(--color-primary) !important;
  }
  .header__phone-number span {
    font-family: var(--font-signika);
    font-weight: 600;
    font-size: 28px;
    line-height: 33.6px;
    color: var(--color-primary);
  }
  .header__phone-hours {
    font-family: var(--font-noto);
    font-weight: 400;
    font-size: 12px;
    line-height: 14.4px;
    color: var(--color-navy);
    text-align: center;
  }
  .header__cta {
    border-radius: 140px;
    height: 50px;
    width: 220px;
    padding: 0 16px;
    background: var(--color-orange);
    box-shadow: 0 3px 0 0 var(--color-orange-dark);
    border-left: none;
    font-family: var(--font-noto);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    color: var(--color-white);
    transition: opacity 0.3s;
  }
  .header__cta:hover {
    background: var(--color-orange);
    opacity: 0.85;
  }
}

/* =============================================
     Mobile Menu
     ============================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 90%;
  max-width: 480px;
  z-index: 1000;
  background: #fff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}
.mobile-menu__list {
  padding: 0 24px;
}
.mobile-menu__list li a {
  display: block;
  color: var(--color-navy);
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu__phone {
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.mobile-menu__phone-number {
  display: flex;
  align-items: center;
  gap: 0;
  width: auto;
  transition: opacity 0.3s;
}
.mobile-menu__phone-number:hover {
  opacity: 0.8;
}
.mobile-menu__phone-number svg path {
  fill: var(--color-primary) !important;
}
.mobile-menu__phone-number span {
  font-family: var(--font-signika);
  font-weight: 600;
  font-size: 28px;
  line-height: 33.6px;
  color: var(--color-primary);
  white-space: nowrap;
}
.mobile-menu__phone p {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  line-height: 14.4px;
  color: var(--color-navy);
  text-align: center;
}
.mobile-menu__cta-wrap {
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 220px;
  height: 50px;
  padding: 0 16px;
  border-radius: 140px;
  background: var(--color-orange);
  box-shadow: 0 3px 0 0 var(--color-orange-dark);
  color: var(--color-white);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  transition: opacity 0.3s;
}
.mobile-menu__cta:hover {
  opacity: 0.85;
}

/* =============================================
     Main Visual
     ============================================= */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-light-blue-bg);
}
.mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(../img/mv-pattern.png);
  background-size: 240px 190px;
  background-position: 0 0;
  background-repeat: repeat;
  background-color: rgba(255, 255, 255, 0.32);
  background-blend-mode: lighten;
}
.mv__content {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-top: max(16px, calc((428px - 100vw) / 2 + 16px));
  padding-inline: 16px;
  padding-bottom: 200px;
}
.mv__content::before {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 3.5vw;
  width: 29vw;
  max-width: 130px;
  aspect-ratio: 95.47 / 74.18;
  background: url(../img/mv-house-model-2.png) no-repeat center / contain;
  transform: rotate(-3.919deg);
  z-index: 3;
}
.mv__content::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: min(38vw, 200px);
  width: 22vw;
  max-width: 109px;
  aspect-ratio: 64 / 57;
  background: url(../img/mv-house-model-1.png) no-repeat center / contain;
  transform: rotate(7.712deg);
  z-index: 3;
}
@media (min-width: 768px) {
  .mv__content {
    padding-block: 40px;
  }
  .mv__content::before,
  .mv__content::after {
    content: none;
  }
}
.mv__circle-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 496px;
  aspect-ratio: 1;
  margin-inline: auto;
  gap: 26px;
  z-index: 2;
}
.mv__circle-frame::before {
  content: '';
  position: absolute;
  width: 100%;
  min-width: 396px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  outline: 3px dashed #bccbe2;
  outline-offset: -8px;
}
@media (min-width: 768px) {
  .mv__circle-frame {
    width: 64%;
    min-width: 496px;
    max-width: 584px;
    margin-inline: unset;
  }
  .mv__circle-frame::before {
    outline-width: 4px;
    outline-offset: -12px;
  }
  .mv__circle-frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:
      url(../img/mv-house-model-2.png) no-repeat top left / 21% auto,
      url(../img/mv-house-model-1.png) no-repeat bottom right / 21% auto;
    z-index: 0;
  }
}
@media (min-width: 980px) {
  .mv__circle-frame {
    width: 100%;
  }
}

.mv__text-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 29px;
  padding-bottom: 11px;
  z-index: 1;
}
.mv__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.mv__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  flex-shrink: 0;
}
.mv__subtitle p {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(16px, 1.77vw + 6.655px, 24px);
  line-height: 25px;
  color: var(--color-primary);
  white-space: nowrap;
}
.mv__title {
  position: relative;
  text-align: center;
  font-family: var(--font-zen);
  font-weight: 700;
  color: var(--color-primary);
  max-width: 100%;
  font-feature-settings: 'hwid';
}
.mv__title-line1 {
  position: relative;
  font-size: clamp(38px, 5.752vw + 7.628px, 64px);
  line-height: 1.4;
  text-indent: 0.3em;
  z-index: 1;
}
.mv__title-line1::before {
  content: '';
  position: absolute;
  width: 6em;
  height: 100%;
  background: linear-gradient(to top, #fef4cd 90%, transparent 90%);
  z-index: -1;
}

.mv__title-line2 {
  position: relative;
}
.mv__title-big {
  font-size: clamp(36px, 4.425vw + 12.637px, 56px);
  line-height: 1.4;
}
.mv__title-small {
  font-size: clamp(32px, 3.54vw + 13.31px, 48px);
  line-height: 1.4;
}
.mv__description {
  text-align: center;
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-navy);
  text-shadow: 1.5px 1.5px 3px rgba(34, 34, 34, 0.11);
}
.mv__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(198px, 5.66vw + 154.528px, 210px);
  height: clamp(38px, 6.604vw - 12.717px, 52px);
  background-color: var(--color-orange);
  border-radius: 9999px;
  padding: 10px 24px;
  box-shadow: 0 2.3px 0 0 var(--color-orange-dark);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.mv__cta-btn:hover {
  opacity: 0.85;
}
@media (min-width: 768px) {
  .mv__description .mv__br-sp {
    display: none;
  }
  .mv__text-overlay {
    gap: 24px;
  }
}
.mv__photo-area {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 100%;
  aspect-ratio: 685 / 474;
  max-height: 392px;
  z-index: 1;
}
@media (min-width: 768px) {
  .mv__photo-area {
    width: 70%;
    max-width: 685px;
    min-width: 552px;
    max-height: 474px;
    min-height: 392px;
    top: 50%;
    right: 0;
    left: unset;
    bottom: unset;
    transform: translateY(-50%);
  }
}
.mv__photo-area::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 15px;
  width: 36vw;
  max-width: 202px;
  aspect-ratio: 202 / 142;
  background: url(../img/mv-family.svg) no-repeat center / contain;
  z-index: 3;
}
@media (min-width: 1280px) {
  .mv__photo-area::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -32px;
    width: 188px;
    height: 120px;
    background: url(../img/mv-flag.svg) no-repeat center / contain;
    z-index: 3;
  }
}
.mv__photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
@media (min-width: 768px) {
  .mv__photo-slide {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}
.mv__photo-slide.is-active {
  opacity: 1;
}
.mv__photo-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 5;
  display: none;
  transform: translateX(-50%);
  gap: 8px;
}
@media (min-width: 980px) {
  .mv__photo-dots {
    display: flex;
  }
}
.mv__photo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #bccbe2;
  cursor: pointer;
  transition: background 0.3s;
}
.mv__photo-dot.is-active {
  background: #df7818;
}

/* =============================================
     Intro Section
     ============================================= */
.intro {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 16px;
}
.intro__circle {
  position: absolute;
}
.intro__circle img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  max-width: none;
  border: clamp(2px, 0.19vw + 1.67px, 4px) solid #e1eaf2;
}
.intro__circle--top-left {
  left: clamp(-40px, -1.85vw + (-13.33px), -20px);
  top: clamp(28px, 1.11vw + 24px, 40px);
  width: clamp(148px, 12.78vw + 102px, 286px);
  height: clamp(148px, 12.78vw + 102px, 286px);
}
.intro__circle--bottom-right {
  bottom: clamp(18px, 2.04vw + 10.67px, 40px);
  right: clamp(-16px, -2.22vw + (-8px), -40px);
  width: clamp(148px, 21.3vw + 71.32px, 378px);
  height: clamp(148px, 21.3vw + 71.32px, 378px);
}
.intro__pattern {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.8;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 5px,
    #e2ebf3 5px,
    #e2ebf3 10px
  );
}
.intro__pattern--1 {
  width: clamp(65px, 3.52vw + 52.33px, 103px);
  height: clamp(65px, 3.52vw + 52.33px, 103px);
  left: clamp(35px, 1.85vw + 28.33px, 55px);
  bottom: clamp(60px, 3.24vw + 48.33px, 95px);
}
.intro__pattern--2 {
  width: clamp(56px, 6.11vw + 34px, 122px);
  height: clamp(56px, 6.11vw + 34px, 122px);
  left: clamp(-48px, 2.41vw + (-56.67px), -22px);
  top: clamp(161px, 8.24vw + 131.33px, 250px);
  background: radial-gradient(circle at center, transparent 4px, #e2ebf3 4px)
    repeat 0 0 / 8px 8px;
}
.intro__pattern--3 {
  width: clamp(60px, 9.44vw + 26.02px, 162px);
  height: clamp(60px, 9.44vw + 26.02px, 162px);
  right: clamp(20px, 1.11vw + 16px, 32px);
  top: clamp(84px, 4.54vw + 67.67px, 133px);
  background: radial-gradient(circle at center, transparent 4px, #e2ebf3 4px)
    repeat 0 0 / 8px 8px;
}
.intro__pattern--4 {
  width: clamp(40px, 9.07vw + 7.35px, 138px);
  height: clamp(40px, 9.07vw + 7.35px, 138px);
  right: clamp(78px, 4.17vw + 63px, 123px);
  top: clamp(40px, 2.13vw + 32.33px, 63px);
  transform: rotate(180deg);
}
.intro__blur-bg {
  position: absolute;
  z-index: 0;
  width: 515px;
  height: 515px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fef9ee;
  filter: blur(64px);
  pointer-events: none;
}
.intro__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 720px;
  gap: 32px;
  z-index: 1;
}
.intro__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.6;
  color: var(--color-primary);
}
.intro__heading p:first-child {
  width: 100%;
}
.intro__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
  text-align: center;
  gap: 32px;
}
@media (min-width: 980px) {
  .intro__body p {
    font-size: 18px;
  }
}

/* =============================================
     Merit Section
     ============================================= */
.merit {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-yellow-bg);
  padding: clamp(64px, 1.48vw + 58.67px, 80px)
    clamp(16px, 0.74vw + 13.33px, 24px);
}
.merit__family-icon {
  position: absolute;
  z-index: 3;
  width: clamp(140px, 3.7vw + 126.67px, 180px);
  height: clamp(88px, 2.31vw + 79.67px, 113px);
  left: clamp(32px, 1.57vw + 26.33px, 49px);
  top: clamp(-42px, -2.69vw + (-32.33px), -71px);
}
.merit__family-icon img {
  width: 100%;
  height: 100%;
}
.merit__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  gap: 40px;
  isolation: isolate;
}
.merit__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 2;
  gap: clamp(12px, 0.93vw + 8.67px, 22px);
}
.merit__en {
  text-align: center;
  width: 100%;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 24px;
  color: var(--color-red);
}
.merit__title {
  text-align: center;
  width: 100%;
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.merit__cards-wrapper {
  width: fit-content;
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  z-index: 1;
}
.merit__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 16px;
  gap: 32px;
}
@media (min-width: 768px) {
  .merit__cards-wrapper {
    width: 100%;
  }
  .merit__cards {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px;
  }
}
.merit__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  width: 100%;
  border-radius: 16px;
  padding-bottom: 20px;
  max-width: 520px;
}
@media (min-width: 768px) {
  .merit__card {
    width: 0;
  }
}
.merit__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 480 / 270;
  border-radius: 8px;
  margin-bottom: -20px;
}
.merit__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  max-width: none;
}
.merit__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
}
.merit__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.merit__card-num {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 56px;
  line-height: 40px;
  white-space: nowrap;
  -webkit-text-stroke: 8px #fff;
  paint-order: stroke fill;
}
.merit__card:nth-child(1) .merit__card-num {
  color: #f54a55;
}
.merit__card:nth-child(2) .merit__card-num {
  color: #f67e15;
}
.merit__card:nth-child(3) .merit__card-num {
  color: #1e96e2;
}
.merit__card-title-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
}
.merit__card-title-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-bottom: 3px dotted currentColor;
}
.merit__card-title {
  position: relative;
  text-align: center;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(18px, 0.37vw + 16.67px, 22px);
  line-height: 1.6;
  color: var(--color-navy);
}
@media (min-width: 768px) and (max-width: 1279px) {
  .merit__card-title span {
    display: block;
  }
}
.merit__card-desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

/* =============================================
     Pick Up + Room Tour Wrapper
     ============================================= */
.pickup-room-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: var(--color-white);
  padding: clamp(64px, 1.48vw + 58.67px, 80px)
    clamp(16px, 0.74vw + 13.33px, 24px);
  gap: 80px;
}

/* ===== Pick Up ===== */
.pickup {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  position: relative;
  gap: clamp(40px, 1.48vw + 34.67px, 56px);
}
.pickup__heading {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
.pickup__heading-icon--person {
  position: absolute;
  right: 30px;
  top: -112px;
  width: 100px;
  height: 96px;
  z-index: 3;
}
.pickup__heading-icon--house {
  display: none;
  flex-shrink: 0;
}
.pickup__heading-icon img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .pickup__heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pickup__heading-icon--person {
    position: unset;
    width: 104px;
    height: 99px;
  }
  .pickup__heading-icon--house {
    width: 104px;
    height: 76px;
  }
}
.pickup__heading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.pickup__en {
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 24px;
  color: var(--color-red);
}
.pickup__title {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.pickup__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 56px;
}
.pickup__scube {
  width: 100%;
}
.pickup__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 32px;
}
@media (min-width: 768px) {
  .pickup__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
  }
}

/* Property Card */
.property-card {
  background: var(--color-white);
  position: relative;
  border-radius: 8px;
  flex: 1 1 auto;
  width: 100%;
  max-width: 520px;
  display: block;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .pickup__cards > .property-card {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
    gap: 0;
    max-width: none;
  }
  .pickup__cards .property-card__inner {
    display: grid;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
  }
  .pickup__cards .property-card__content {
    display: grid;
    grid-row: 2 / -1;
    grid-template-rows: subgrid;
  }
  .pickup__cards .property-card__text {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
  .pickup__cards .property-card__link {
    align-self: end;
  }
}
.property-card:hover {
  opacity: 0.85;
}
.property-card__inner {
  display: flex;
  flex-direction: column;
  isolation: isolate;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}
.property-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  background-color: var(--color-orange);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-white);
}
.property-card__img {
  position: relative;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 480 / 300;
}
.property-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.3s;
}
.property-card:hover .property-card__img img {
  transform: scale(1.2);
}
.property-card__content {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
@media (min-width: 768px) {
  .property-card__content {
    padding: clamp(12px, 1.6vw, 24px);
  }
}
.property-card__tags {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.property-card__tag {
  flex-shrink: 0;
  background-color: #f3f4f6;
  border-radius: 4px;
  padding: 4px 8px;
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-gray);
  white-space: nowrap;
}
.property-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  overflow: hidden;
  flex: 1;
}
.property-card__title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card__desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .property-card__desc {
    -webkit-line-clamp: 3;
  }
}
.property-card__link {
  position: relative;
  width: 100%;
  padding-top: 21px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #f3f4f6;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-navy);
  white-space: nowrap;
}
.property-card__arrow {
  padding-left: 4px;
}
.property-card__border {
  position: absolute;
  inset: -4px;
  border: 4px solid var(--color-border);
  border-radius: 12px;
  pointer-events: none;
}

/* Outline Button */
.btn-outline {
  position: relative;
  flex-shrink: 0;
  padding: 13px 41px;
  background: var(--color-white);
  border-radius: 9999px;
  border: none;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-primary);
  white-space: nowrap;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--color-primary);
  border-radius: 10000px;
  box-shadow: 0 2px 0 0 var(--color-primary);
  pointer-events: none;
}
.btn-outline:hover,
.btn-outline.is-hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ===== Room Tour ===== */
.room-tour {
  position: relative;
  width: 100%;
  background-color: #e6f0fa;
  border-radius: 12px;
  max-width: 1200px;
}
.room-tour::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 30vw;
  aspect-ratio: 234 / 114;
  max-width: 234px;
  max-height: 114px;
  background: url(../img/garland-left.svg) no-repeat center / contain;
  z-index: 1;
}
.room-tour::after {
  content: '';
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 30vw;
  aspect-ratio: 234 / 114;
  max-width: 234px;
  max-height: 114px;
  background: url(../img/garland-right.svg) no-repeat center / contain;
  z-index: 1;
}
.room-tour__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 64px clamp(16px, 0.74vw + 13.33px, 24px);
  gap: 56px;
}
.room-tour__heading {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
.room-tour__heading-icon {
  display: none;
  flex-shrink: 0;
}
.room-tour__heading-icon--left {
  width: 112px;
  height: 89px;
}
.room-tour__heading-icon--right {
  width: 137px;
  height: 95px;
}
.room-tour__heading-icon img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .room-tour__heading-icon {
    display: block;
  }
}
.room-tour__heading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 580px;
}
.room-tour__en {
  text-align: center;
  width: 100%;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 24px;
  color: var(--color-red);
}
.room-tour__title {
  text-align: center;
  width: 100%;
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.room-tour__desc {
  text-align: center;
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
  padding-top: 8px;
}
.room-tour__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 56px;
}
.room-tour__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 32px;
}
@media (min-width: 768px) {
  .room-tour__cards {
    flex-direction: row;
    align-items: stretch;
  }
}

/* Video Card */
.video-card {
  background: var(--color-white);
  flex: 1 1 auto;
  position: relative;
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  display: block;
  transition: opacity 0.3s;
}
.video-card__inner {
  display: flex;
  flex-direction: column;
  isolation: isolate;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}
.video-card__thumb {
  position: relative;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 480 / 270;
  border-radius: 8px 8px 0 0;
}
.video-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 8px 8px 0 0;
}
.video-card:hover .video-card__thumb img {
  transform: scale(1.2);
}
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.video-card__play > div,
.video-card__play::after {
  content: '';
}
.video-card__play svg {
  width: 24px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.video-card__play::before {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.85);
}
.video-card__content {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
@media (min-width: 768px) {
  .video-card__content {
    padding: 24px;
  }
}
.video-card__title-wrap {
  position: relative;
  width: 100%;
}
.video-card__title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .video-card__title {
    -webkit-line-clamp: 1;
  }
}
.video-card__desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .video-card__desc {
    -webkit-line-clamp: 3;
  }
}
.video-card__border {
  position: absolute;
  inset: -4px;
  border: 4px solid var(--color-border);
  border-radius: 12px;
  pointer-events: none;
}

/* =============================================
     Photo Strip
     ============================================= */
.photo-strip {
  width: 100%;
  overflow: hidden;
  height: clamp(119px, 9.63vw + 84.33px, 223px);
}
.photo-strip__track {
  display: flex;
  height: 100%;
  animation: photo-strip-scroll 24s linear infinite;
  will-change: transform;
}
.photo-strip__item {
  position: relative;
  height: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.photo-strip__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
@keyframes photo-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =============================================
     CTA Section
     ============================================= */
.cta-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: clamp(64px, 1.48vw + 58.67px, 80px)
    clamp(16px, 0.74vw + 13.33px, 24px) 0;
  gap: 24px;
}
.cta-section__heading {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-navy);
  text-align: center;
}
.cta-section__heading br {
  display: block;
}
.cta-section__accent {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .cta-section__heading {
    font-size: 30px;
    white-space: nowrap;
  }
  .cta-section__heading br {
    display: none;
  }
  .cta-section__heading::before {
    content: '＼ ';
  }
  .cta-section__heading::after {
    content: ' ／';
  }
}
.cta-section__card-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}
.cta-section__card {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #cde3f3;
  max-width: 1200px;
}
.cta-section__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 2;
}
.cta-section__bg-circle--sp-tablet {
  width: clamp(618px, 43.14vw + 462.69px, 794px);
  height: clamp(618px, 43.14vw + 462.69px, 794px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cta-section__bg-circle--pc {
  display: none;
}
.cta-section__deco-a,
.cta-section__deco-b {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cta-section__deco-a {
  left: 0;
  background: url('../img/cta-bg-left.png') no-repeat 0 0 / auto 100%;
}
.cta-section__deco-b {
  right: 0;
  background: url('../img/cta-bg-right.png') no-repeat 100% 0 / auto 100%;
}
@media (min-width: 1024px) {
  .cta-section__bg-circle--sp-tablet {
    display: none;
  }
  .cta-section__bg-circle--pc {
    display: block;
    width: 590px;
    height: 590px;
    left: 50%;
    top: -124px;
    transform: translateX(-50%);
  }
}
.cta-section__card-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  pointer-events: none;
  z-index: 5;
}
.cta-section__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: clamp(64px, -5.56vw + 84px, 24px) 24px
    clamp(64px, -5.56vw + 84px, 40px);
  column-gap: 48px;
  row-gap: clamp(32px, -3.7vw + 45.33px, 16px);
  z-index: 3;
}
.cta-section__br-pc {
  display: none;
}
.cta-section__photo {
  aspect-ratio: 1;
  flex: 1 0 0;
  position: relative;
  max-width: clamp(184px, 6vw + 160px, 256px);
  max-height: clamp(184px, 6vw + 160px, 256px);
}
.cta-section__photo::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 256px;
  height: 256px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fef9ee;
  filter: blur(64px);
  pointer-events: none;
}
.cta-section__photo--2 {
  border-radius: 0 16px 16px 0;
}
.cta-section__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}
.cta-section__text-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  gap: 24px;
}
@media (min-width: 1024px) {
  .cta-section__layout {
    flex-wrap: nowrap;
    align-items: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .cta-section__text-cta {
    flex: 1 0 0;
    min-width: 472px;
    width: auto;
    order: 2;
  }
  .cta-section__photo--2 {
    order: 3;
  }
  .cta-section__br-sp {
    display: none;
  }
  .cta-section__br-pc {
    display: block;
  }
  .cta-section__btn {
    font-size: 20px;
  }
}
.cta-section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 24px;
}
.cta-section__copy {
  width: 100%;
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.85vw + 17.33px, 32px);
  line-height: 1.4;
  color: var(--color-primary);
  letter-spacing: clamp(0.96px, 0.07vw + 0.7px, 1.28px);
  font-feature-settings: 'hwid';
}
.cta-section__red {
  color: var(--color-red);
}
.cta-section__orange {
  color: #f67e15;
}
.cta-section__sub {
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
}
.cta-section__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9999px;
  padding: 16px 32px;
  background-color: var(--color-orange);
  box-shadow: 0 3px 0 0 var(--color-orange-dark);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.cta-section__btn:hover {
  opacity: 0.85;
}

/* =============================================
     Reason Section
     ============================================= */
.reason {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: var(--color-yellow-bg);
  padding-block: clamp(64px, 1.48vw + 58.67px, 80px);
}
.reason__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: clamp(32px, 4.44vw + 16px, 80px);
}
.reason__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding-inline: clamp(16px, 0.74vw + 13.33px, 24px);
}
.reason__heading::before {
  content: '';
  position: absolute;
  top: -122px;
  left: clamp(16px, 0.74vw + 13.33px, 24px);
  display: block;
  background: url('../img/reason-heading-left.png') no-repeat center center /
    contain;
  height: 131px;
  aspect-ratio: 253 / 266;
}
.reason__heading::after {
  content: '';
  position: absolute;
  top: -98px;
  right: clamp(16px, 0.74vw + 13.33px, 24px);
  display: block;
  background: url('../img/reason-heading-right.png') no-repeat center center /
    contain;
  height: 111px;
  aspect-ratio: 276 / 247;
}
@media (min-width: 768px) {
  .reasin__container {
    overflow: hidden;
  }
  .reason__heading {
    height: clamp(175px, 47.4vw - 189px, 266px);
  }
  .reason__heading::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: clamp(175px, 47.4vw - 189px, 266px);
  }
  .reason__heading::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: clamp(149px, 51.04vw - 243.19px, 247px);
  }
}

.reason__en {
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 24px;
  color: var(--color-red);
}
.reason__title {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.reason__subtitle {
  text-align: center;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
  padding-top: 8px;
}

/* Nav Circles */
[id^='reason-'] {
  scroll-margin-top: 100px;
}
.nav-circle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px clamp(8px, 1.25vw, 24px);
  align-items: center;
  justify-content: center;
  padding-inline: clamp(16px, 0.74vw + 13.33px, 24px);
}
.nav-circle-link {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  width: 31.875vw;
  width: 40vw;
  min-width: 160px;
  max-width: 250px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .nav-circle-link {
    width: 21.875vw;
  }
}
.nav-circle-size {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  background: #fff;
  border: clamp(2px, 0.19vw + 1.67px, 4px) solid #dde2cf;
  border-radius: 50%;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .nav-circle-size {
    max-width: clamp(160px, 13.04vw + 113.04px, 280px);
  }
}
.nav-circle-size::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 5vw;
  min-height: 36px;
  max-height: 67px;
  background: url('../img/arrow-down.svg') no-repeat bottom center / 100% auto;
  z-index: 1;
}
.nav-circle-link--01:hover .nav-circle-size {
  border-color: var(--color-red);
}
.nav-circle-link--02:hover .nav-circle-size {
  border-color: #f67e15;
}
.nav-circle-link--03:hover .nav-circle-size {
  border-color: #1e96e2;
}
.nav-circle-link--04:hover .nav-circle-size {
  border-color: #1fb9a5;
}

@media (min-width: 768px) {
  .nav-circle-size::after {
    bottom: -36px;
  }
}
.nav-circle-svg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.nav-circle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.3vw - 0.68px, 16px);
  padding: 0 8px;
  transition: opacity 0.3s;
}
.nav-circle-content::after {
  content: 'SCROLL';
  font-family: var(--font-signika);
  font-weight: 500;
  font-size: clamp(12px, 1.54vw + 2.14px, 14px);
  line-height: 1.6;
  color: var(--color-gray);
  text-align: center;
}
.nav-circle-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0px, 0.98vw - 3.53px, 4px);
}
.nav-circle-reason-text {
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: clamp(12px, 0.98vw + 5.47px, 18px);
  line-height: 1;
  color: var(--color-navy);
  text-align: center;
}
.nav-circle-num-text {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: clamp(28px, 3.04vw + 17.06px, 56px);
  line-height: 0.8;
}
.nav-circle-title-text {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(12px, 1.7vw, 20px);
  font-size: clamp(12px, 2.5vw, 20px);
  line-height: 1.5;
  color: var(--color-navy);
  text-align: center;
}
@media (min-width: 768px) {
  .nav-circle-title-text {
    font-size: clamp(12px, 1.7vw, 20px);
  }
}
.nav-circle-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.nav-circle-scroll-text {
  font-family: var(--font-signika);
  font-weight: 500;
  font-size: clamp(7.7px, 1.54vw + 2.14px, 14px);
  line-height: 1.6;
  color: var(--color-gray);
  text-align: center;
}
.nav-circle-arrow {
  width: clamp(8px, 1.09vw + 4.08px, 18px);
  height: clamp(10px, 1.52vw + 4.52px, 24px);
}
@media (min-width: 768px) {
  .nav-circle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reason Cards */
.reason__cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  gap: clamp(40px, 1.48vw + 34.67px, 56px);
  padding-inline: clamp(16px, 0.74vw + 13.33px, 24px);
}
.reason__card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
}
.reason__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: clamp(32px, 2.22vw + 24px, 56px);
  padding: clamp(16px, 2.22vw + 8px, 40px);
}
@media (min-width: 768px) {
  .reason__card {
    max-width: none;
    margin: 0;
  }
  .reason__card-inner {
    flex-direction: row;
  }
  .reason__card-inner--reverse {
    flex-direction: row-reverse;
  }
}
.reason__card-img {
  aspect-ratio: 572 / 424;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .reason__card-img {
    flex: 1 0 0;
  }
}
.reason__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.reason__card-img::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 15px;
  background: url('../img/reason-illust-01.png') no-repeat top center / contain;
}
.reason__card-img--01::after {
  width: clamp(112px, 11.83vw + 69.4px, 225px);
  aspect-ratio: 112 / 72;
  background: url('../img/reason-illust-01.png') no-repeat center center /
    contain;
}
.reason__card-img--02::after {
  width: clamp(102px, 10.17vw + 65.4px, 163px);
  aspect-ratio: 102 / 83;
  background: url('../img/reason-illust-02.png') no-repeat center center /
    contain;
}
.reason__card-img--03::after {
  width: clamp(76px, 2.83vw + 65.8px, 115px);
  aspect-ratio: 76 / 90;
  background: url('../img/reason-illust-03.png') no-repeat center center /
    contain;
}
.reason__card-img--04::after {
  width: clamp(108px, 7.67vw + 80.4px, 189px);
  aspect-ratio: 108 / 83;
  background: url('../img/reason-illust-04.png') no-repeat center center /
    contain;
}
@media (min-width: 768px) {
  .reason__card-img--01::after {
    bottom: -51px;
    left: 30px;
    right: unset;
  }
  .reason__card-img--02::after {
    bottom: -44px;
    right: 30px;
  }
  .reason__card-img--03::after {
    bottom: -36px;
    left: 40px;
    right: unset;
  }
  .reason__card-img--04::after {
    bottom: -44px;
    right: 30px;
  }
}
.reason__card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .reason__card-text {
    flex: 1 0 0;
  }
}
.reason__card-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0;
}
.reason__card-num-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .reason__card-num-wrap {
    margin-bottom: 16px;
  }
}
.reason__card-label {
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: clamp(16px, 0.37vw + 14.67px, 20px);
  line-height: 1.6;
  color: var(--color-navy);
}
.reason__card-num {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: clamp(40px, 2.22vw + 32px, 64px);
  line-height: clamp(48px, 2.96vw + 37.33px, 80px);
}
#reason-01 .reason__card-num {
  color: var(--color-red) !important;
}
#reason-01 .reason__card-title {
  text-decoration-color: var(--color-red) !important;
}
@media (min-width: 1280px) {
  .reason__card-label {
    font-size: 20px;
  }
  .reason__card-num {
    font-size: 64px;
    line-height: 80px;
  }
}
@media (min-width: 1600px) {
  .nav-circle-link[href='#reason-01'] .nav-circle-label {
    gap: 0;
  }
  #reason-01 .reason__card-title:last-child {
    white-space: nowrap;
  }
}
.reason__card-title {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(22px, 1.3vw + 17.33px, 36px);
  font-size: clamp(22px, 2.7vw, 33px);
  line-height: 1.6;
  color: var(--color-navy);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 10px;
  text-decoration-thickness: 11%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.reason__card-desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(16px, 0.19vw + 15.33px, 18px);
  line-height: 1.8;
  color: var(--color-navy);
  padding-top: 16px;
}
.reason__card-icons {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding-top: 16px;
}
.reason__card-icon-box {
  flex: 1 0 0;
  border-radius: 4px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reason__card-icon-box svg {
  flex-shrink: 0;
}
.reason__card-icon-box span {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-navy);
  white-space: nowrap;
}
@media (max-width: 420px) {
  .reason__card-icons {
    gap: 8px;
  }
  .reason__card-icon-box {
    padding: 12px 8px;
  }
  .reason__card-icon-box span {
    font-size: 14px;
  }
}

/* Comparison bar (Reason 02) */
.reason__comparison {
  width: 100%;
  border-radius: 12px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.reason__comparison-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-navy);
  text-align: center;
}
.reason__comparison-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.reason__comparison-label {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-navy);
  width: 98px;
  flex-shrink: 0;
}
.reason__comparison-label--accent {
  font-weight: 700;
}
.reason__comparison-bar-wrap {
  flex: 1 0 0;
  height: 8px;
  padding: 0 8px;
}
.reason__comparison-bar--general {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 9999px;
  background: #b9b9b9;
  right: 70%;
}
.reason__comparison-bar--bg {
  background: #e5e7eb;
  height: 8px;
  border-radius: 9999px;
  width: 100%;
  position: relative;
}
.reason__comparison-bar--short {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 9999px;
  background: #df7818;
  right: 40%;
}
.reason__comparison-desc {
  padding-right: 20px;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-navy);
  text-align: right;
}

/* Steps (Reason 04) */
.reason__steps {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  padding-top: 16px;
  height: 84px;
}
.reason__step-box {
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 4px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.reason__step-label {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-navy);
  text-align: center;
}
.reason__step-text {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-navy);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .reason__step-box {
    padding: 14px 8px;
  }
  .reason__step-text {
    font-size: 14px;
  }
}

/* =============================================
     Flow Section
     ============================================= */
.flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-white);
  padding: clamp(64px, 1.48vw + 58.67px, 80px)
    clamp(16px, 0.74vw + 13.33px, 24px);
}
.flow__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  gap: clamp(40px, 2.22vw + 32px, 64px);
  padding: 0 clamp(0px, 0.74vw - 2.67px, 8px);
}
.flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
}
.flow__en {
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 24px;
  color: var(--color-red);
}
.flow__title {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .flow__steps {
    flex-direction: row;
  }
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .flow__step {
    flex: 1 0 0;
  }
}
.flow__step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: var(--color-light-blue-bg);
}
.flow__step-circle span {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: var(--color-primary);
}
.flow__step-title {
  text-align: center;
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: clamp(18px, 0.19vw + 17.33px, 20px);
  line-height: 1.4;
  color: var(--color-navy);
}
.flow__step-desc {
  text-align: center;
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-navy);
}
.flow__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.flow__chevron--down {
  display: block;
}
.flow__chevron--right {
  display: none;
}
@media (min-width: 768px) {
  .flow__chevron--down {
    display: none;
  }
  .flow__chevron--right {
    display: block;
  }
}

/* =============================================
     Q&A Section
     ============================================= */
.qa {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-blue-bg);
  padding: clamp(64px, 1.48vw + 58.67px, 80px)
    clamp(16px, 0.74vw + 13.33px, 24px);
}
.qa__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 912px;
  gap: clamp(40px, 1.48vw + 34.67px, 56px);
}
.qa__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
}
.qa__en {
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 24px;
  color: var(--color-red);
}
.qa__title {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.qa__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.qa__card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 24px clamp(16px, 0.74vw + 13.33px, 24px);
}
.qa__row {
  display: flex;
  gap: 11px;
  align-items: center;
  width: 100%;
}
.qa__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
}
.qa__badge--q {
  background-color: var(--color-primary);
}
.qa__badge--a {
  background-color: var(--color-orange);
}
.qa__question {
  flex: 1 1 0;
  max-width: 100%;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-navy);
}
.qa__answer {
  flex: 1 1 0;
  max-width: 100%;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-navy);
}

/* =============================================
    Contact Section
    ============================================= */
.contact {
  width: 100%;
  background-color: #f8f9fb;
  padding-block: clamp(64px, 1.48vw + 58.67px, 80px);
}
.contact__container {
  width: 100%;
  max-width: var(--main-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 2vw, 24px);
}
.contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: clamp(40px, 1.48vw + 34.67px, 56px);
}
.contact__en {
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: clamp(20px, 0.37vw + 18.67px, 24px);
  line-height: 1;
  color: var(--color-red);
}
.contact__title {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: clamp(24px, 1.48vw + 18.67px, 40px);
  line-height: 1.4;
  color: var(--color-primary);
}
.contact__form {
  background: var(--color-white);
  border-radius: 12px;
  padding: clamp(32px, 3vw, 56px) clamp(20px, 5vw, 80px);
  max-width: none;
  margin-inline: auto;
}
.contact__section {
  width: 100%;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 21px;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}
.contact__label-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
}
.contact__label-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  width: fit-content;
  min-height: 20px;
  border: 1px solid #c5c5c5;
  border-radius: 999px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: var(--color-navy);
}
.contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 2px 8px;
  min-width: 40px;
  height: 20px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  color: #fff;
}
.contact__badge--required {
  background: #e53535;
}
.contact__badge--optional {
  background: #999;
}
.contact__field-body {
  flex: 1 1 0;
  min-width: 0;
}
.contact__date-row,
.contact__name-row,
.contact__preferred-time {
  display: grid;
  align-items: center;
  gap: 8px;
}
.contact__date-row {
  grid-template-columns: auto minmax(72px, 1fr) auto minmax(110px, 130px);
}
.contact__date-row {
  margin-bottom: 8px;
}
.contact__name-row {
  grid-template-columns: 48px minmax(0, 1fr);
}
.contact__preferred-time {
  margin-top: 8px;
  grid-template-columns: auto minmax(150px, 193px);
  justify-content: start;
}
.contact__date-row + .contact__date-row,
.contact__name-row + .contact__name-row {
  margin-top: 12px;
}
.contact__date-label,
.contact__name-label,
.contact__preferred-time-label {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-navy);
  white-space: nowrap;
}
.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--font-noto);
  font-size: 15px;
  color: var(--color-navy);
  background-color: #fff;
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #a9a9a9;
}
.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.contact__input--date {
  flex: 1 1 260px;
  min-height: 47px;
}
.contact__input--tel {
  max-width: 350px;
}
.contact__input--lg {
  min-height: 56px;
}
.contact__select {
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-primary) 50%),
    linear-gradient(135deg, var(--color-primary) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.contact__select--time {
  max-width: 100%;
}
.contact__textarea {
  resize: vertical;
  min-height: 116px;
}
.contact__checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.contact__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 10px 12px;
}
.contact__checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}
.contact__checkbox-text {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-navy);
}
.contact__note {
  margin-top: 8px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray);
}
.contact__input.is-error,
.contact__select.is-error,
.contact__textarea.is-error {
  border-color: #e53535;
  background-color: #fef2f2;
}
.contact__error {
  display: none;
  margin-top: 6px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #e53535;
}
.contact__error.is-visible {
  display: block;
}
.contact__checkbox-group.is-error .contact__checkbox {
  border-color: #e53535;
}
.contact__agree-label.is-error {
  color: #e53535;
}
.contact__section-divider {
  text-align: center;
  font-family: var(--font-noto);
  font-size: clamp(18px, 0.74vw + 15.33px, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-navy);
  margin: 40px 0 16px;
  padding: 20px 0;
}
.contact__agree {
  padding: 32px 0 16px;
}
.contact__agree-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-primary);
}
.contact__agree-label a {
  text-decoration: underline;
}
.contact__agree-label a:hover {
  opacity: 0.8;
}
.contact__agree-label input[type='checkbox'] {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}
.contact__agree-link {
  color: var(--color-primary);
  text-decoration: underline;
}
.contact__submit {
  display: flex;
  justify-content: center;
  padding: 12px 0 8px;
}
.contact__submit-btn {
  border: none;
  border-radius: 999px;
  background: var(--color-orange);
  box-shadow: 0 3px 0 0 var(--color-orange-dark);
  color: #fff;
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 48px;
  min-height: 72px;
  width: min(320px, 100%);
  transition: opacity 0.3s;
}
.contact__submit-btn:hover {
  opacity: 0.85;
}
.contact__submit-btn:disabled {
  background: #ccc;
  box-shadow: 0 3px 0 0 #999;
  cursor: not-allowed;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .contact {
    padding-block: 64px;
  }
  .contact__heading {
    margin-bottom: 40px;
  }
  .contact__en {
    font-size: 20px;
  }
  .contact__title {
    font-size: 24px;
  }
  .contact__date-row {
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 10px;
    align-items: center;
  }
  .contact__date-row .contact__date-label {
    width: 86px;
    text-align: left;
  }
  .contact__date-row .contact__input--date,
  .contact__date-row .contact__select--time {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .contact__preferred-time {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .contact__select--time {
    max-width: 100%;
  }
  .contact__input--tel {
    max-width: 100%;
  }
  .contact__checkbox-text {
    font-size: 15px;
  }
  .contact__agree-label {
    font-size: 14px;
    line-height: 1.6;
  }
  .contact__submit-btn {
    font-size: 18px;
    padding: 12px 24px;
  }
}

@media (min-width: 768px) {
  .contact__field {
    flex-direction: row;
    gap: 21px;
  }
  .contact__label-wrap {
    width: 26vw;
    max-width: 330px;
  }
  .contact__field-body {
    flex: 1 1 auto;
  }
  .contact__date-row {
    grid-template-columns: 84fr 283fr 56fr 311fr;
  }
  .contact__name-row {
    grid-template-columns: auto 299px;
    width: min(100%, 352px);
  }
  .contact__name-row .contact__input {
    min-height: 47px;
    padding: 8px;
    border-radius: 0;
    font-size: 16px;
    line-height: 30px;
  }
  .contact__input--date {
    min-height: 47px;
  }
  .contact__select--time {
    min-height: 47px;
  }
  .contact__input--lg {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .contact__section .contact__field:first-child .contact__date-row {
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 10px;
    align-items: center;
  }
  .contact__section
    .contact__field:first-child
    .contact__date-row
    .contact__date-label {
    width: 84px;
    text-align: left;
  }
  .contact__section
    .contact__field:first-child
    .contact__date-row
    .contact__input--date,
  .contact__section
    .contact__field:first-child
    .contact__date-row
    .contact__select--time {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .contact__checkbox-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact__checkbox {
    max-width: 344px;
  }
  .contact__submit-btn {
    width: 320px;
  }
}

@media (min-width: 1280px) {
  .contact__checkbox-group {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
}

/* =============================================
     Footer
     ============================================= */
.footer {
  width: 100%;
  background-color: #f4f3e9;
  padding: clamp(40px, 2.22vw + 32px, 64px) clamp(24px, 2.96vw + 13.33px, 56px);
  padding-bottom: 88px;
}
.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 120px;
  }
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.footer__logo {
  width: 240px;
  height: 31px;
  position: relative;
  flex-shrink: 0;
  display: block;
  transition: opacity 0.3s;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__address {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}
.footer__address a {
  transition: opacity 0.3s;
}
.footer__address a:hover {
  opacity: 0.8;
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer__right {
    align-items: flex-end;
  }
}
.footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer__links a {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-navy);
  transition: opacity 0.3s;
}
.footer__links a:hover {
  opacity: 0.8;
}
.footer__links span {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-navy);
}
.footer__copyright {
  font-family: var(--font-noto);
  font-weight: 350;
  font-size: 12px;
  color: #9ca3af;
}

/* =============================================
     Fixed Bottom Bars
     ============================================= */
.fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 50;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.fixed-bar.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.fixed-bar--sp {
  display: flex;
  background: rgba(64, 64, 64, 0.8);
}
.fixed-bar--pc {
  display: none;
}
@media (min-width: 768px) {
  .fixed-bar--sp {
    display: none;
  }
  .fixed-bar--pc {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
    background: #fff;
  }
}
.fixed-bar__phone,
.fixed-bar__mail {
  flex: 1 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  color: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.fixed-bar__phone {
  background: var(--color-primary);
}
.fixed-bar__mail {
  background: var(--color-orange);
}
.fixed-bar__phone::after,
.fixed-bar__mail::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fixed-bar__phone::after {
  border: 1px solid #fdf0f0;
}
.fixed-bar__mail::after {
  border: 1px solid #fff;
}

.fixed-bar__pc-inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 24px;
}
.fixed-bar__pc-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.fixed-bar__pc-phone-number {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.fixed-bar__pc-phone-number:hover {
  opacity: 0.8;
}
.fixed-bar__pc-phone-number span {
  font-family: var(--font-signika);
  font-weight: 600;
  font-size: 28px;
  line-height: 33.6px;
  color: var(--color-primary);
  white-space: nowrap;
}
.fixed-bar__pc-hours {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  line-height: 14.4px;
  color: var(--color-navy);
  white-space: nowrap;
  text-align: center;
}
.fixed-bar__pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 140px;
  height: 50px;
  width: 220px;
  flex-shrink: 0;
  background: var(--color-orange);
  box-shadow: 0 3px 0 0 var(--color-orange-dark);
  transition: opacity 0.3s;
}
.fixed-bar__pc-cta:hover {
  opacity: 0.85;
}
.fixed-bar__pc-cta span {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  white-space: nowrap;
}
