@charset "UTF-8";

/*
Theme: Afres LP
Version: 1.4.6
Section: FV + Trouble
*/

:root {
  --blue: #005bac;
  --blue-dark: #003f88;
  --blue-light: #eaf7ff;
  --red: #e7192d;
  --green: #08b928;
  --text: #1c2b39;
  --muted: #667789;
  --line: #d7eaf7;
  --white: #fff;
  --shadow: 0 10px 28px rgba(0, 80, 150, .15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  width: 260px;
  flex-shrink: 0;
}

.site-header__copy {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
}

.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.1;
}

.header-tel__label {
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 5px;
}

.header-tel__number {
  font-size: 36px;
  letter-spacing: .03em;
}

.header-tel__note {
  font-size: 12px;
  color: #333;
}

.header-line {
  min-width: 225px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #17d740, #05a923);
  color: #fff;
  font-weight: 900;
  text-align: center;
  font-size: 22px;
  box-shadow: 0 7px 0 #04891d, 0 12px 22px rgba(0,0,0,.18);
}

.header-line small {
  display: block;
  font-size: 14px;
}

.menu-button {
  display: none;
}

/* FV */
.fv {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 40%, rgba(255,255,255,.3) 72%),
    linear-gradient(180deg, #f4fbff, #fff);
}

.fv__inner {
  max-width: 1280px;
  min-height: 640px;
  margin: 0 auto;
  padding: 36px 32px 34px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  position: relative;
}

.fv__content {
  position: relative;
  z-index: 2;
}

.fv__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.fv__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 26px;
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.fv__badges span:first-child {
  background: var(--blue);
  color: #fff;
  border-radius: 14px 0 0 14px;
}

.fv__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 60px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: -.04em;
}

.fv__title span {
  display: block;
  color: #111;
  font-size: .62em;
  letter-spacing: normal;
}

.fv__title strong {
  display: block;
  color: var(--red);
  font-size: 1.08em;
  line-height: 1.08;
}

.fv__lead {
  margin: 20px 0 0;
  font-size: 30px;
  font-weight: 900;
  color: #111;
}

.fv__points {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 80px;
  margin: 26px 0 26px;
}

.fv-point {
  width: 180px;
  height: 140px;
  border-radius: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  text-align: center;
  background: rgba(255,255,255,.92);
  border: 2px solid #d6edf9;
  box-shadow: var(--shadow);
  color: var(--blue-dark);
}

.fv-point-icon {
  width: 30px;
  margin: 0 auto 10px;
}

.fv-point b {
  font-size: 15px;
  line-height: 1.35;
}

.fv-point strong {
  display: block;
  margin-top: 2px;
  color: var(--red);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}

.fv-point:nth-child(3) strong {
  color: var(--red);
}

.fv__visual {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
}

.fv__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.86), rgba(255,255,255,0));
  z-index: 2;
}

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

.fv-medal {
  position: absolute;
  right: 34px;
  bottom: 48px;
  width: 178px;
  height: 178px;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  color: #2f2b16;
  font-weight: 900;
}

.fv-medal span {
  font-size: 22px;
}

.fv-medal strong {
  font-size: 28px;
  line-height: 1.15;
}

.fv-medal small {
  margin-top: 8px;
  color: #fff;
  background: var(--blue-dark);
  padding: 4px 8px;
  border-radius: 999px;
}

.fv__anshin {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  max-width: 545px;
  position: relative;
}

.fv__anshin::before,
.fv__anshin::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 2px;
  background: var(--blue);
  vertical-align: middle;
  margin: 0 18px;
}

/* Trouble */
.trouble {
  padding: 40px 32px 54px;
  background: linear-gradient(180deg, #fff, #f4fbff);
}

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

.section-heading span {
  display: block;
  margin-right: 8px;
  color: #42c7ef;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 6px;
}

.section-heading h2 {
  display: inline;
  margin: 0;
  color: var(--blue-dark);
  font-size: 34px;
  font-weight: 900;
}

.trouble__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.trouble-card {
  padding: 12px 12px 18px;
  background: #fff;
  border: 3px solid #d7edf9;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 80, 150, .1);
  text-align: center;
}

.trouble-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.trouble-card h3 {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

/* Fixed CTA */
.fixed-cta {
  display: none;
}

/* SP */
@media (max-width: 767px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    padding: 10px 14px;
    gap: 8px;
  }

  .site-logo {
    width: 160px;
  }

  .site-header__copy,
  .header-tel,
  .header-line {
    display: none;
  }

  .site-header__actions {
    gap: 8px;
  }

  .menu-button {
    width: 54px;
    height: 54px;
    border: none;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--blue-dark);
    font-weight: 900;
  }

  .menu-button span {
    display: block;
    width: 30px;
    height: 4px;
    background: var(--blue-dark);
    border-radius: 99px;
    margin: 2px 0;
  }

  .menu-button em {
    font-style: normal;
    font-size: 11px;
    line-height: 1;
  }

  .site-header__actions::before {
    content: "電話する";
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ff3030, #d90014);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: grid;
    place-items: center;
  }

  .site-header__actions::after {
    content: "LINE相談";
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: linear-gradient(180deg, #15d840, #05ad28);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: grid;
    place-items: center;
  }

  .fv {
    background: #f4fbff;
  }

  .fv__inner {
    min-height: auto;
    padding: 18px 14px 32px;
    display: block;
  }

  .fv__visual {
    position: absolute;
    inset: 100px 0 0 32%;
    height: 420px;
    opacity: .95;
  }

  .fv__visual::before {
    width: 76%;
  }

  .fv-medal {
    display: none;
  }

  .fv__content {
    min-height: 660px;
  }

  .fv__badges {
    margin: 12px 0 22px;
  }

  .fv__badges span {
    min-height: 0;
    padding: 6px 6px;
    font-size: 15px;
    border-radius: 3px;
  }

  /*.fv__badges span:nth-child(2) {
    display: none;
  }*/

  .fv__title {
    font-size: 32px;
    max-width: 300px;
    position: relative;
    z-index: 3;
  }

  .fv__title span {
    font-size: 25px;
  }

  .fv__lead {
    position: relative;
    z-index: 3;
    margin-top: 14px;
    font-size: 17px;
    font-weight: 900;
  }

  .fv__points {
    position: relative;
    z-index: 3;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0 20px;
  }

   .fv-point {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    padding: 8px;
  }

  .fv-point b {
    font-size: 11px;
  }

  .fv-point strong {
    font-size: 17px;
  }

  .trouble {
    padding: 34px 14px 42px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading span {
    font-size: 12px;
    display: block;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .trouble__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trouble-card {
    padding: 8px 8px 12px;
    border-width: 2px;
    border-radius: 8px;
  }

  .trouble-card h3 {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.55;
  }

  .fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 -4px 16px rgba(0,0,0,.14);
  }

  .fixed-cta a {
    min-height: 58px;
    border-radius: 9px;
    color: #fff;
    font-weight: 900;
    display: grid;
    place-items: center;
    font-size: 18px;
  }

  .fixed-cta__tel {
    background: linear-gradient(180deg, #ff3030, #d90014);
  }

  .fixed-cta__line {
    background: linear-gradient(180deg, #15d840, #05ad28);
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .site-header__copy {
    display: none;
  }

  .header-tel__number {
    font-size: 28px;
  }

  .header-line {
    min-width: 180px;
    font-size: 18px;
  }

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

/* Reasons / v1.1.0 */
.reasons {
  padding: 64px 32px 56px;
  background: #fff;
}

.section-heading h2 strong {
  color: var(--red);
  font-size: 1.35em;
}

.reasons__grid {
  max-width: 1240px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.reason-card {
  position: relative;
  padding: 48px 20px 28px;
  background: #fff;
  border: 2px solid #dbeaf5;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 80, 150, .1);
  text-align: center;
}

.reason-card__num {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0870c9, #004b9a);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(0, 70, 140, .25);
}

.reason-card__icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.reason-card h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.reason-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

/* Price / v1.1.0 */
.price {
  padding: 48px 32px 64px;
  background: linear-gradient(180deg, #fff, #f4fbff);
}

.section-heading--price p {
  margin: 8px 0 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

.price__grid {
  max-width: 1160px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.price-card {
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 80, 150, .12);
}

.price-card h3 {
  margin: 0;
  padding: 10px 16px;
  background: linear-gradient(180deg, #0870c9, #004b9a);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
}

.price-card__body {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  align-items: center;
  gap: 10px;
  padding: 28px 23px 30px 27px;
}

.price-card__amount {
  margin: 10px 0 25px;
  color: #111;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.price-card__amount strong {
  color: var(--red);
  font-size: 33px;
  letter-spacing: -.01em;
}

.price-card__amount .small-yen{
  font-size: 24px;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 400;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d49a00;
  font-weight: 900;
}

.price-card__time {
  margin: 18px 0 0;
  font-size: 10px;
  font-weight: 400;
}

.price-card img {
  width: 100%;
  aspect-ratio: 3 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* SP追加 */
@media (max-width: 767px) {
  .fv__anshin {
    position: relative;
    z-index: 3;
    text-align: left;
    margin-top: 6px;
    font-size: 18px;
  }

  .fv__anshin::before,
  .fv__anshin::after {
    display: none;
  }

  .reasons {
    padding: 44px 14px 44px;
  }

  .reasons__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .reason-card {
    min-height: 112px;
    padding: 18px 18px 18px 118px;
    text-align: left;
    border-radius: 10px;
  }

  .reason-card__num {
    top: 18px;
    left: 24px;
    transform: none;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .reason-card__icon {
    position: absolute;
    left: 38px;
    top: 62px;
    font-size: 36px;
    margin: 0;
  }

  .reason-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .reason-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .price {
    padding: 42px 14px 12px;
  }

  .price__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .price-card h3 {
    font-size: 22px;
    padding: 8px 14px;
  }

  .price-card__body {
    grid-template-columns: 1.2fr .7fr;
    padding: 18px;
  }

  .price-card__amount {
    font-size: 24px;
  }

  .price-card__amount strong {
    font-size: 26px;
  }

  .price-card li {
    font-size: 13px;
  }

  .price-card__time {
    font-size: 12px;
  }
}

/* Flow / Voice / Works v1.2.0 */
.flow {
  padding: 58px 32px 48px;
  background: #fff;
}

.flow__grid {
  max-width: 1240px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.flow-card {
  position: relative;
  min-height: 210px;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid #dbeaf5;
  box-shadow: 0 8px 18px rgba(0,80,150,.08);
  text-align: center;
  border-radius: 10px;
  margin: 3px;
}

.flow-card + .flow-card::before {
  content: "▶";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  z-index: 2;
}

.flow-card span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.flow-card__icon {
  color: var(--blue);
  font-size: 56px;
  line-height: 1;
  margin: 26px 0 18px;
}

.flow-card h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.flow-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

/* Voice */
.voice {
  padding: 42px 32px 48px;
  background: linear-gradient(180deg, #fff, #f4fbff);
}

.voice__grid {
  max-width: 1180px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 28px 14px 28px 8px;
  background: #fff;
  border: 2px solid #dbeaf5;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,80,150,.08);
}

.voice-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.voice-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 900;
}

.voice-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.voice-card small {
  display: block;
  margin-top: 14px;
  color: #555;
  font-weight: 400;
}

/* Works */
.works {
  padding: 38px 32px 64px;
  background: #fff;
}

.works__grid {
  max-width: 1240px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  padding: 18px;
  background: #fff;
  border: 2px solid #dbeaf5;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,80,150,.08);
}

.work-card h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.work-card__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
}

.work-card__photos::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  text-shadow: 0 0 6px #fff;
}

.work-card figure {
  position: relative;
  margin: 0;
}

.work-card figure span {
  position: absolute;
  left: 6px;
  top: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.work-card p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.works__more {
  text-align: center;
  margin-top: 28px;
}

.works__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 44px;
  border: 2px solid #8fc9eb;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
}

.works__more a::after {
  content: "›";
  margin-left: 18px;
  font-size: 24px;
}

/* SP v1.2.0 */
@media (max-width: 767px) {
  .flow {
    padding: 42px 14px 34px;
  }

  .flow__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
  }

  .flow-card {
    min-height: 0;
    padding: 18px 18px 18px 112px;
    text-align: left;
    border-radius: 10px;
  }

  .flow-card + .flow-card::before {
    content: "▼";
    left: 50%;
    top: -18px;
    transform: translateX(-50%);
    font-size: 20px;
  }

  .flow-card span {
    left: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
  }

  .flow-card__icon {
    position: absolute;
    left: 36px;
    top: 65px;
    margin: 0;
    font-size: 38px;
  }

  .flow-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .flow-card p {
    font-size: 14px;
    font-weight: 400;
  }

  .voice {
    padding: 36px 14px;
  }

  .voice__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .voice-card {
    grid-template-columns: 86px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .voice-card img {
    width: 78px;
    height: 78px;
  }

  .voice-card h3 {
    font-size: 18px;
  }

  .voice-card p {
    font-size: 14px;
  }

  .voice-card small {
    font-size: 13px;
  }

  .works {
    padding: 34px 14px 52px;
  }

  .works__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .work-card {
    padding: 15px 30px 30px;
    border-radius: 9px;
  }

  .work-card h3 {
    font-size: 17px;
    margin-bottom: 9px;
  }

  .work-card figure span {
    font-size: 10px;
  }

  .work-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .works__more a {
    min-width: 230px;
    min-height: 42px;
    font-size: 14px;
  }
}

/* Area / Final CTA / Footer v1.3.0 */
.area {
  padding: 54px 32px 28px;
  background: linear-gradient(180deg, #fff, #f4fbff);
}

.area__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .9fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px;
  background: #fff;
  border: 2px solid #dbeaf5;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,80,150,.08);
}

.area h2 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 31px;
  font-weight: 900;
}

.area p {
  margin: 0 0 20px;
  font-weight: 800;
}

/* Final CTA */
.final-cta {
  padding: 42px 32px 46px;
  background: linear-gradient(180deg, #0068c9, #003f88);
  color: #fff;
  text-align: center;
}

.final-cta__inner {
  max-width: 960px;
  margin: 0 auto;
}

.final-cta h2 {
  margin: 0 0 28px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: .04em;
}

.final-cta__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.final-cta-button {
  position: relative;
  min-height: 118px;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,.86);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 30px 20px 115px;
  text-align: left;
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
}

.final-cta-button::before {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  font-weight: 900;
}

.final-cta-button::after {
  content: "›";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  opacity: .8;
}

.final-cta-button span {
  font-size: 20px;
  font-weight: 900;
}

.final-cta-button strong {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
}

.final-cta-button small {
  font-size: 15px;
  font-weight: 800;
}

.final-cta-button--tel {
  background: linear-gradient(180deg, #ff3030, #d90014);
}

.final-cta-button--tel::before {
  content: "☎";
}

.final-cta-button--line {
  background: linear-gradient(180deg, #15d840, #05ad28);
}

.final-cta-button--line::before {
  content: "LINE";
  width: 64px;
  height: 64px;
  border-radius: 20%;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #dbeaf5;
}

.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-logo {
  width: 220px;
  flex-shrink: 0;
}

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

.footer-nav a {
  color: #333;
  font-weight: 900;
}

.copyright {
  margin: 0;
  color: #777;
  font-size: 14px;
  white-space: nowrap;
}

.sp-only {
  display: none;
}

/* SP v1.3.0 */
@media (max-width: 767px) {
  .area {
    padding: 36px 14px 18px;
  }

  .area__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 12px;
  }

  .area h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .area p {
    font-size: 11px;
  }

  .final-cta {
    padding: 34px 14px 28px;
  }

  .final-cta h2 {
    font-size: 24px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .final-cta__buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .final-cta-button {
    min-height: 86px;
    padding: 14px 28px 14px 86px;
    border-radius: 12px;
  }

  .final-cta-button::before {
    left: 24px;
    font-size: 34px;
  }

  .final-cta-button span {
    font-size: 15px;
  }

  .final-cta-button strong {
    font-size: 30px;
  }

  .final-cta-button small {
    font-size: 12px;
  }

  .final-cta-button--line::before {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .site-footer__inner {
    padding: 18px 14px 92px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-logo {
    width: 180px;
    margin: 0 auto;
    order: 2;
  }

  .footer-nav {
    order: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .copyright {
    order: 3;
    font-size: 11px;
  }

  .sp-only {
    display: block;
  }
}

/* FAQ v1.3.5 */
.faq {
  padding: 54px 32px 64px;
  background: linear-gradient(180deg, #f4fbff, #fff);
}

.faq__grid {
  max-width: 1180px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  padding: 24px 26px;
  background: #fff;
  border: 2px solid #dbeaf5;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,80,150,.08);
}

.faq-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.faq-card h3 span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ef3a3a, #ea0f0f);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 5px;
}

.faq-card p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin: 0;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.faq-card p span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf7ff;
  color: var(--blue);
  border: 2px solid #bde2f7;
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 3px;
}

/* SP FAQ v1.3.5 */
@media (max-width: 767px) {
  .faq {
    padding: 38px 14px 46px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .faq-card {
    padding: 18px;
    border-radius: 10px;
  }

  .faq-card h3 {
    gap: 10px;
    font-size: 17px;
    margin-bottom: 12px;
  }

  .faq-card h3 span {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .faq-card p {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  .faq-card p span {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}
/* Price update / v1.3.0 */

.price-list-wrap {
  max-width: 1160px;
  margin: 36px auto 0;
  padding: 28px;
  background: #fff;
  border: 3px solid #d7edf9;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 80, 150, .1);
}

.price-list-wrap h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.price-list-wrap > p {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #e2f1f8;
}

.price-list dt {
   margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.price-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.price-list dt {
  color: var(--text);
}

.price-list dd {
  color: var(--red);
  text-align: right;
  white-space: nowrap;
}

.price-notice {
  max-width: 1160px;
  margin: 28px auto 0;
  padding: 28px;
  background: linear-gradient(180deg, #f7fcff, #fff);
  border: 2px solid #d7edf9;
  border-radius: 16px;
}

.price-notice h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.price-notice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.price-notice article {
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d7edf9;
}

.price-notice h4 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 900;
}

.price-notice p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.price-notice__note {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid #d7edf9;
  color: var(--muted);
}

.price-notice__note1 {
  margin-top: 18px !important;
  padding-top: 16px;
  color: var(--muted);
  text-align: left!important;
}


@media (max-width: 959px) {

  .price-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {

  .price-list-wrap,
  .price-notice {
    margin-top: 24px;
    padding: 20px 14px;
    border-radius: 14px;
  }

  .price-list-wrap h3,
  .price-notice h3 {
    font-size: 21px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 12px 0;
  }

  .price-list dt,
  .price-list dd {
    font-size: 14px;
  }

  .price-list dd {
    text-align: left;
    white-space: normal;
  }

  .price-notice__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-notice article {
    padding: 15px;
  }
}


/* =========================
   CTA redesign / v1.3.2
========================= */
.fv-contact-cta{
  position:relative;
  z-index:4;
  width:min(100%, 1160px);
  margin:28px auto 0;
  padding:16px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  background:rgba(255,255,255,.96);
  border:2px solid #8fc4ee;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,76,145,.14);
}

.fv-contact-box{
  display:flex;
  flex-direction:column;
  min-height:270px;
  padding:0 16px 16px;
  color:var(--text);
  text-decoration:none;
  border-right:1px solid #d3e4f2;
}

.fv-contact-box:last-child{border-right:0;}

.fv-contact-box__head{
  margin:0 0 18px;
  padding:14px 10px;
  border-radius:9px;
  color:#fff;
  text-align:center;
  font-size:22px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 6px 12px rgba(0,0,0,.12);
}

.fv-contact-box__head small{
  font-size:18px;
  letter-spacing:.04em;
}

.fv-contact-box--normal .fv-contact-box__head{background:linear-gradient(180deg,#055fc8,#00439c);}
.fv-contact-box--emergency .fv-contact-box__head{background:linear-gradient(180deg,#ee1c1c,#c90012);}
.fv-contact-box--line .fv-contact-box__head{background:linear-gradient(180deg,#10c94b,#04a931);}

.fv-contact-box__main{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:54px;
}

.fv-contact-box__icon{
  flex:0 0 52px;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#075fbe;
}

.fv-contact-box--emergency .fv-contact-box__icon{background:#df0f18;}

.fv-contact-box__icon img,
.fv-contact-box__note img,
.fv-contact-box__line-icon img{
  display:block;
  max-width:100%;
  height:auto;
}

.fv-contact-box__main strong{
  font-size:clamp(28px, 2.45vw, 36px);
  line-height:1;
  font-weight:900;
  letter-spacing:.02em;
  color:#0052b5;
  white-space:nowrap;
}

.fv-contact-box--emergency .fv-contact-box__main strong{color:#df0f18;}

.fv-contact-box > p{
  margin:14px 0 16px;
  color:#163654;
  font-size:14px;
  line-height:1.8;
  font-weight:800;
  text-align:center;
}

.fv-contact-box mark{
  display:block;
  margin-bottom:8px;
  padding:7px 8px;
  border-radius:7px;
  background:#ffe748;
  color:#d71920;
  font-weight:900;
}

.fv-contact-box__note{
  margin-top:auto;
  min-height:72px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  border-radius:12px;
  background:linear-gradient(180deg,#eef7ff,#e7f3ff);
  color:#163654;
  font-size:12px;
  line-height:1.6;
  font-weight:800;
}

.fv-contact-box--emergency .fv-contact-box__note{background:linear-gradient(180deg,#fff2f2,#ffe8e8);}
.fv-contact-box--line .fv-contact-box__note{background:linear-gradient(180deg,#effff3,#e8f8ec);}

.fv-contact-box__note img{
  flex:0 0 38px;
  width:38px;
  height:38px;
  object-fit:contain;
}

.fv-contact-box__line-main{
  min-height:98px;
  display:grid;
  grid-template-columns:80px 1fr auto;
  align-items:center;
  gap:14px;
  color:#08a83a;
}

.fv-contact-box__line-icon{
  width:80px;
  height:80px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(180deg,#10d94b,#05ad28);
}

.fv-contact-box__line-main strong{
  display:block;
  font-size:clamp(24px, 2vw, 27px);
  line-height:1.2;
  font-weight:900;
  white-space:nowrap;
}

.fv-contact-box__line-main p{
  margin:8px 0 0;
  color:#1b2b3d;
  font-size:14px;
  font-weight:900;
}

.fv-contact-box__arrow{
  font-size:46px;
  line-height:1;
  color:#08a83a;
}

.free-support{
  max-width:1160px;
  margin:34px auto 0;
  padding:22px 22px 20px;
  background:linear-gradient(180deg,#f3f9ff,#edf7ff);
  border-radius:18px;
  box-shadow:0 10px 24px rgba(0,76,145,.08);
}

.free-support h3{
  margin:0 0 18px;
  color:#0052b5;
  text-align:center;
  font-size:24px;
  line-height:1.45;
  font-weight:900;
  letter-spacing:.04em;
}

.free-support__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}

.free-support__item{
  min-height:118px;
  padding:16px 12px 16px 20px;
  display:grid;
  grid-template-columns:56px 1fr;
  grid-template-rows:auto auto;
  align-items:center;
  gap:4px 12px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 7px 16px rgba(0,76,145,.1);
}

.free-support__item img{
  grid-row:1 / 3;
  width:56px;
  height:56px;
  object-fit:contain;
}

.free-support__item span{
  color:#1d2c3a;
  font-size:14px;
  line-height:1.45;
  font-weight:900;
  text-align:center;
}

.free-support__item strong{
  display:block;
  color:#e11922;
  font-size:60px;
  line-height:1;
  font-weight:900;
  text-align:center;
  text-shadow:0 6px 0 rgba(255,230,50,.7);
}

.free-support__item span.small-yen {
  font-size: 25px;
}

.free-support__note{
  margin:16px 0 0;
  color:#2e4053;
  font-size:13px;
  line-height:1.7;
  font-weight:800;
  text-align:center;
}

@media (max-width: 1180px){
  .fv-contact-cta{width:calc(100% - 28px);}
  .fv-contact-box__main strong{font-size:30px;}
  .fv-contact-box__line-main strong{font-size:25px;}
}

@media (max-width: 959px){
  .fv-contact-cta{
    grid-template-columns:1fr;
    gap:14px;
    padding:12px;
    margin-top:24px;
  }

  .fv-contact-box{
    min-height:auto;
    padding:0 12px 14px;
    border-right:0;
    border-bottom:1px solid #d3e4f2;
  }

  .fv-contact-box:last-child{border-bottom:0;}

  .fv-contact-box__head{
    margin-bottom:14px;
    font-size:20px;
  }

  .fv-contact-box__main strong{font-size:34px;}

  .fv-contact-box__line-main{
    min-height:auto;
    grid-template-columns:64px 1fr auto;
  }

  .fv-contact-box__line-icon{
    width:64px;
    height:64px;
    border-radius:14px;
  }

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

@media (max-width: 767px){
  .fv-contact-cta{
    width:100%;
    border-radius:14px;
  }

  .fv-contact-box__head{
    padding:12px 8px;
    font-size:18px;
  }

  .fv-contact-box__head small{font-size:15px;}

  .fv-contact-box__main strong{font-size:clamp(27px, 8vw, 34px);}

  .fv-contact-box > p{
    font-size:13px;
    line-height:1.7;
  }

  .fv-contact-box__note{
    min-height:auto;
    font-size:13px;
  }

  .fv-contact-box__line-main strong{
    font-size:clamp(23px, 7vw, 30px);
  }

  .free-support{
    margin-top:24px;
    padding:18px 12px;
    border-radius:14px;
  }

  .free-support h3{
    font-size:20px;
    text-align:left;
  }

  .free-support__grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .free-support__item{
    min-height:92px;
    grid-template-columns:52px 1fr auto;
    grid-template-rows:auto;
    padding: 16px 40px 16px 20px;
  }

  .free-support__item img{
    grid-row:auto;
    width:52px;
    height:52px;
  }

  .free-support__item span{text-align:left;}
  .free-support__item strong{font-size:50px;text-align:right;}
  .free-support__note{text-align:left;}
}


/* ========================================
FV LAYOUT FIX v1.3.3
======================================== */

.fv{
  position: relative;
  overflow: hidden;
}

.fv-inner-wrap{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  position:relative;
  z-index:2;
}


/* ========================================
   FV visual / CTA layout fix v1.3.4
======================================== */
@media (min-width: 960px){
  .fv{
    position:relative;
    overflow:hidden;
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 36%, rgba(255,255,255,.42) 58%, rgba(255,255,255,.05) 100%),
      linear-gradient(180deg,#f4fbff,#fff);
  }

  .fv-inner-wrap{
    width:100%;
    max-width:none;
  }

  .fv__inner{
    width:100%;
    max-width:1280px;
    min-height:760px;
    margin:0 auto;
    padding:36px 32px 40px;
    display:grid;
    grid-template-columns:minmax(0, 52%) minmax(0, 48%);
    grid-template-rows:auto auto;
    align-items:start;
  }

  .fv__content{
    grid-column:1 / 2;
    grid-row:1 / 2;
    position:relative;
    z-index:3;
    max-width:640px;
  }

  .fv__visual{
    position:absolute;
    inset:0 0 0 38%;
    z-index:1;
    height:100%;
  }

  .fv__visual::before{
    width:46%;
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.92) 36%,rgba(255,255,255,.35) 74%,rgba(255,255,255,0) 100%);
  }

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

  .fv-medal{
    top:34px;
    right:42px;
    bottom:auto;
    z-index:4;
  }

  .fv-contact-cta{
    grid-column:1 / -1;
    grid-row:2 / 3;
    align-self:end;
    justify-self:stretch;
    width:100%;
    max-width:none;
    margin:28px 0 0;
    box-sizing:border-box;
  }
}

@media (max-width: 959px){
  .fv-inner-wrap{
    width:100%;
  }

  .fv__inner{
    position:relative;
    overflow:hidden;
  }

  .fv__visual{
    inset:78px 0 auto 34%;
    height:430px;
    z-index:1;
  }

  .fv__visual img{
    object-fit:cover;
    object-position:center right;
  }

  .fv__content{
    position:relative;
    z-index:3;
    min-height:620px;
  }

  .fv-contact-cta{
    position:relative;
    z-index:5;
    width:100%;
    max-width:none;
    margin:18px 0 0;
  }

  .fv-medal{
    display:grid;
    top:390px;
    right:12px;
    bottom:auto;
    width:106px;
    height:106px;
    border-width:4px;
  }

  .fv-medal span{font-size:13px;}
  .fv-medal strong{font-size:17px;}
  .fv-medal small{font-size:9px;padding:2px 5px;}
}

@media (max-width: 767px){
  .fv__visual{
    inset:86px -26% auto 28%;
    height:390px;
  }

  .fv__content{
    min-height:390px;
  }

  .fv-medal {
    top: 5px;
    right: 115px;
    width: 86px;
    height: 86px;
  }
}



/* ========================================
   area-contact-guide v1.3.5
======================================== */
.area-contact-guide{
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #ffffff 100%);
  padding: 64px 0 56px;
}

.area-contact-guide__inner{
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.area-contact-guide__free{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0, 73, 150, .12);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 60, 120, .08);
  overflow: hidden;
  margin-bottom: 42px;
}

.area-contact-guide__free-item{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border-right: 1px solid rgba(0, 73, 150, .14);
}

.area-contact-guide__free-item:last-child{
  border-right: none;
}

.area-contact-guide__free-icon{
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}

.area-contact-guide__free-icon img,
.area-contact-guide__main-icon img,
.area-contact-guide__line-icon img,
.area-contact-guide__note img{
  max-width: 100%;
  height: auto;
  display: block;
}

.area-contact-guide__free-title{
  color: #004ea2;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.area-contact-guide__free-text{
  color: #1d2b3a;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  padding-left: 15px;
}

.area-contact-guide__heading{
  text-align: center;
  margin-bottom: 26px;
}

.area-contact-guide__heading h2{
  color: #003f87;
}

.area-contact-guide__heading p{
  margin-top: 10px;
  color: #1d2b3a;
  font-weight: 500;
}

.area-contact-guide__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.area-contact-guide__card{
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 60, 120, .08);
}

.area-contact-guide__card--normal{
  border: 2px solid #0054b8;
}

.area-contact-guide__card--emergency{
  border: 2px solid #d90012;
}

.area-contact-guide__card--line{
  border: 2px solid #08ad43;
}

.area-contact-guide__card-head{
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  padding: 11px 12px;
  text-align: center;
  margin-bottom: 18px;
}

.area-contact-guide__card--normal .area-contact-guide__card-head{
  background: linear-gradient(180deg, #0067d8 0%, #004ea2 100%);
}

.area-contact-guide__card--emergency .area-contact-guide__card-head{
  background: linear-gradient(180deg, #e90016 0%, #c80010 100%);
}

.area-contact-guide__card--line .area-contact-guide__card-head{
  background: linear-gradient(180deg, #13c556 0%, #08a63f 100%);
}

.area-contact-guide__main{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.area-contact-guide__main-icon{
  width: 52px;
  height: 52px;
}

.area-contact-guide__number{
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.area-contact-guide__card--normal .area-contact-guide__number{
  color: #004ea2;
}

.area-contact-guide__card--emergency .area-contact-guide__number{
  color: #d90012;
}

.area-contact-guide__time{
  color: #182330;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 18px;
  text-align: center;
  font-weight: 600;
}

.area-contact-guide__alert{
  background: #ffe83a;
  color: #d90012;
  border-radius: 7px;
  font-weight: 800;
  text-align: center;
  padding: 7px 10px;
  margin: 0 0 12px;
}

.area-contact-guide__note{
  margin-top: auto;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.area-contact-guide__note--blue{
  background: #eef7ff;
}

.area-contact-guide__note--red{
  background: #fff0f1;
}

.area-contact-guide__note--green{
  background: #effaf2;
}

.area-contact-guide__line-main{
  display: grid;
  grid-template-columns: 84px 1fr 24px;
  gap: 18px;
  align-items: center;
  margin: 18px 0 26px;
}

.area-contact-guide__line-icon{
  width: 84px;
  height: 84px;
}

.area-contact-guide__line-title{
  color: #08a63f;
  font-size: clamp(26px, 2.7vw, 26px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.area-contact-guide__line-text{
  color: #182330;
  font-weight: 800;
  margin: 6px 0 0;
}

.area-contact-guide__arrow{
  color: #08a63f;
  font-size: 52px;
  line-height: 1;
  font-weight: 300;
}

.area-contact-guide__caution{
  margin: 18px 0 0;
  text-align: center;
  color: #182330;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 959px){
  .area-contact-guide{
    padding: 48px 0;
  }

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

  .area-contact-guide__free-item:nth-child(2){
    border-right: none;
  }

  .area-contact-guide__free-item:nth-child(-n+2){
    border-bottom: 1px solid rgba(0, 73, 150, .14);
  }

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

  .area-contact-guide__card{
    padding: 14px;
  }
}

@media (max-width: 599px){
  .area-contact-guide__inner{
    width: min(100% - 24px, 480px);
  }

  .pc-br {
  display: none;
}
  .area-contact-guide__free{
    grid-template-columns: 1fr;
  }

  .area-contact-guide__free-item{
    border-right: none;
    border-bottom: 1px solid rgba(0, 73, 150, .14);
    grid-template-columns: 48px 1fr;
    padding: 15px 20px 20px 25px;
  }

  .area-contact-guide__free-item:last-child{
    border-bottom: none;
  }

  .area-contact-guide__free-title{
    font-size: 18px;
    padding-left: 15px;
  }

  .area-contact-guide__card-head{
    font-size: 18px;
  }

  .area-contact-guide__main{
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .area-contact-guide__main-icon{
    width: 44px;
    height: 44px;
  }

  .area-contact-guide__number{
    font-size: clamp(27px, 8.7vw, 36px);
    letter-spacing: 0;
  }

  .area-contact-guide__line-main{
    grid-template-columns: 68px 1fr 18px;
    gap: 12px;
  }

  .area-contact-guide__line-icon{
    width: 68px;
    height: 68px;
  }

  .area-contact-guide__line-title{
    font-size: clamp(24px, 7vw, 32px);
  }

  .area-contact-guide__note{
    grid-template-columns: 40px 1fr;
    padding: 15px;
  }
}



/* ========================================
   FV PHOTO POSITION FIX v1.3.6
   右側の作業写真を見切れにくくし、配管作業まで見えるように調整
======================================== */

/* FV背景画像を使っている場合 */
.fv{
  background-size: cover;
  background-position: center right 34%;
}

/* FV内の人物・作業写真imgを使っている場合 */
.fv img[src*="fv"],
.fv img[src*="worker"],
.fv img[src*="hero"]{
  object-fit: cover;
  object-position: 25% bottom;
}

/* FV右側ビジュアル領域がある場合 */
.fv__visual{
  overflow: hidden;
}

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

/* PC時は写真を少し左まで見せる */
@media (min-width: 960px){
  .fv{
    background-size: cover;
    background-position: center right 42%;
  }

  .fv__visual img{
    object-position: 54% center;
  }
}

/* タブレット以下は人物の顔切れを優先 */
@media (max-width: 959px){
  .fv{
    background-position: center right 30%;
  }

  .fv__visual img{
    object-position: 58% center;
  }
}

/* SPは上部に人物、下部にCTAが来ても破綻しないよう調整 */
@media (max-width: 599px){
  .fv{
    background-size: auto 100%;
    background-position: center top;
  }

  .fv__visual img{
    object-position: 52% center;
  }
}


/* v1.3.8 */

@media(max-width:768px){
.site-header__inner{
display:flex;align-items:center;justify-content:space-between;gap:8px;
}
.site-logo{order:1;flex:1;min-width:90px;}
.header-tel{order:2;}
.header-line{order:3;}
}

.area-contact-guide__cards{
width:100%;
box-sizing:border-box;
}

.area-contact-guide__card{
min-width:0;
}

.area-contact-guide__number{
font-size:clamp(33px,2.4vw,33px);
overflow-wrap:anywhere;
}

.company-profile-block{
background:#f7f9fc;
padding:64px 0;
}

.company-profile-block__inner{
width:min(1100px, calc(100% - 32px));
margin:0 auto;
}

.company-profile-block h2{
text-align:center;
font-size:36px;
color:#003f87;
margin-bottom:40px;
font-weight:800;
}

.company-profile-block__table{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.company-profile-block__table > div{
display:grid;
grid-template-columns:240px 1fr;
border-bottom:1px solid #edf2f7;
}

.company-profile-block__table > div:last-child{
border-bottom:none;
}

.company-profile-block dt{
background:#f0f6ff;
padding:22px;
font-weight:800;
color:#003f87;
}

.company-profile-block dd{
padding:22px;
margin:0;
line-height:1.9;
}

@media(max-width:768px){
.company-profile-block{
padding:48px 0;
}

.company-profile-block h2{
font-size:28px;
margin-bottom:28px;
}

.company-profile-block__table > div{
grid-template-columns:1fr;
}

.company-profile-block dt,
.company-profile-block dd{
padding:16px;
}
}


/* ========================================
   v1.3.9 SP HEADER / FV POINT FIX
   - SP header: logo only, centered
   - FV: hide v1.3.8 custom reassurance block and keep original fv-point
======================================== */

@media (max-width: 768px){
  .site-header__inner{
    justify-content: center !important;
    position: relative;
  }

  .site-logo{
    order: 1 !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .site-logo img{
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .header-tel,
.header-line{
    display: none !important;
  }
}

/* v1.3.8で追加したFVカスタム訴求は使わず、元のFV-pointのみ使用 */


/* ========================================
   v1.3.10 SP HEADER LOGO ONLY FIX
   実際のヘッダー構造に依存しにくい強制調整
======================================== */

@media (max-width: 768px){

  /* ヘッダー本体は中央揃え */
  header,
.site-header{
    position: relative;
  }

  header .site-header__inner,
.site-header__inner{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: 100% !important;
  }

  /* ロゴだけ中央に表示 */
  header .site-logo,
.site-logo{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    flex: 0 0 auto !important;
    max-width: 210px !important;
  }

  header .site-logo a,
.site-logo a{
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  header .site-logo img,
.site-logo img{
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-height: 48px !important;
    width: auto !important;
  }

  /* SPではロゴ以外のヘッダー要素を非表示 */
  header nav,
header .header-tel,
header .header-line,
header a[href^="tel:"],
header a[href*="line"],
.site-header nav,
.site-header .nav,
.site-header .global-nav,
.site-header .gnav,
.site-header .menu,
.site-header .header-nav,
.site-header .site-nav,
.site-header .header-menu,
.site-header .menu-toggle,
.site-header .hamburger,
.site-header .drawer,
.site-header .drawer-toggle,
.site-header .header-actions,
.site-header .header-action,
.site-header .header-cta,
.site-header .header-contact,
.header .header-tel,
.site-header .header-tel,
.site-header .header-phone,
.header .header-line,
.site-header .header-line,
.site-header .header-line-btn,
.site-header a[href^="tel:"],
.site-header a[href*="line"]{
    display: none !important;
  }

  /* ただしロゴ内リンクは表示 */
  header .site-logo a,
.header .site-logo a,
.site-header .logo a,
.site-header .header-logo a,
.site-header .site-logo a,
.site-header .brand a,
.site-header .header__logo a,
.site-header .site-header__logo a{
    display: inline-flex !important;
  }
}


/* ========================================
   v1.3.11 SP HEADER LOGO ONLY FINAL
   既存SPヘッダーの専用ボタン類を非表示にし、ロゴ専用ヘッダーだけ表示
======================================== */

.sp-logo-only-header{
  display: none;
}

@media (max-width: 768px){

  body{
    padding-top: 0 !important;
  }

  .sp-logo-only-header{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 76px !important;
    padding: 12px 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
    position: relative !important;
    z-index: 9999 !important;
  }

  .sp-logo-only-header__link{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  .sp-logo-only-header img{
    display: block !important;
    width: auto !important;
    max-width: 220px !important;
    max-height: 54px !important;
    height: auto !important;
  }

  /* 既存ヘッダー全体をSPでは非表示 */
  header,
.site-header{
    display: none !important;
  }

  /* スクショで残っていたSP専用CTA/メニュー系を強制非表示 */
  .header-tel,
.header-line,
.drawer-open,
.fixed-cta{
    display: grid !important;
  }
}


/* ========================================
   v1.3.12 SP HEADER CTA RESTORE
   ヘッダーはロゴのみ維持し、FV/フッター等の電話・LINE CTAは表示
======================================== */

@media (max-width: 768px){

  /* ヘッダー本体は引き続き非表示、SP専用ロゴヘッダーのみ表示 */
  header,
.site-header{
    display: none !important;
  }

  .sp-logo-only-header{
    display: flex !important;
  }

  /* FV・下部固定・フッター・CTA内の電話/LINEリンクは表示を戻す */
  main a[href^="tel:"],
main a[href*="line"],
section a[href^="tel:"],
section a[href*="line"],
footer a[href^="tel:"],
footer a[href*="line"],
.fv a[href^="tel:"],
.fv a[href*="line"],
.area-contact-guide a,
.area-contact-guide__card,
.fixed-cta a{
    display: flex !important;
  }

  /* カード型CTAは元のレイアウトを優先 */
  .area-contact-guide__cards{
    display: grid !important;
  }

  .area-contact-guide__card{
    display: flex !important;
  }

  /* 下部固定CTAの電話・LINEボタンを復帰 */
  .fixed-cta{
    display: grid !important;
  }

  .fixed-cta a{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}


/* ========================================
   v1.4.1 FV PC/SP IMAGE SWITCH
======================================== */

.fv-main-visual-picture{
  display:block;
  width:100%;
  height:100%;
}

.fv-main-visual-picture img,
.fv-main-visual-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
}

/* PC */
@media (min-width:769px){

  .fv-main-visual-picture img,
  .fv-main-visual-image{
    object-position:58% center;
  }
}

/* SP */
@media (max-width:768px){

  .fv-main-visual-picture img,
  .fv-main-visual-image{
    object-fit: contain !important;
  object-position: 10% bottom !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fv__inner{
  grid-template-columns: 1fr;
}

  .fv__content{
    position:relative;
    z-index:3;
    min-height:520px;
  }

.fv-contact-cta{
  width:100%;
  margin-top:0px;
}
.fv__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 70%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.86), rgba(255,255,255,0));
  z-index: 2;
}
.fv__lead {
  margin: 5px 0 0;
  font-size: 30px;
  font-weight: 900;
  color: #111;
}
 .fv-medal {
    display: grid;
    top: auto;
    right: 30px;
    bottom: 10px;
    width: 136px;
    height: 136px;
    border-width: 4px;
  }
  .fv-contact-box__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin: 0 auto;
}
 .fv-contact-box__main strong {
    font-size: 60px;
  }
  .fv-contact-box__line-main strong {
    font-size: 50px;
  }
  .fv-contact-box__line-main {
    min-height: auto;
    grid-template-columns: 64px 1fr auto;
    margin: 0 auto;
  }
  .fv-contact-box__note {
  margin: auto;
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg,#eef7ff,#e7f3ff);
  color: #163654;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 800;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.voice__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.works__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.area__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px;
}
.area-contact-guide__number {
  font-size: 55px;
  overflow-wrap: anywhere;
}
.area-contact-guide__main {
  margin: 0 auto;
}
.area-contact-guide__note {
  margin: 0 auto;
}
.area-contact-guide__line-title {
  font-size: 45px;
}
.area-contact-guide__line-main {
  margin: 0 auto;
}
.area-contact-guide__alert {
  margin: 20px 0 12px;
}
.final-cta h2 {
  margin: 0 0 28px;
  font-size: 28px;
}
.final-cta__buttons {
  grid-template-columns: 1fr;
}
}

/* =========================================================
  Equipment Install Section / v1.4.2
========================================================= */
.equipment-install {
  position: relative;
  padding: 84px 20px 92px;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 48%, #eef8ff 100%);
  overflow: hidden;
}

.equipment-install::before,
.equipment-install::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.equipment-install::before {
  width: 520px;
  height: 520px;
  right: max(-140px, calc((100vw - 1180px) / 2 - 180px));
  top: 10px;
  border-radius: 48% 52% 45% 55%;
  background: rgba(28, 126, 214, .08);
  transform: rotate(-18deg);
}

.equipment-install::after {
  width: 132px;
  height: 132px;
  right: max(36px, calc((100vw - 1180px) / 2 + 20px));
  top: 64px;
  background-image: radial-gradient(#88bde9 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: .55;
}

.equipment-install__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  padding: 52px 48px 42px;
  border: 3px solid #9bc8ec;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 30px rgba(23, 97, 158, .16);
}

.equipment-install__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 26px;
  padding: 14px 40px;
}

.equipment-install__label::before,
.equipment-install__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}

.equipment-install__label::before {
  left: -10px;
  background-image: url("../images/deco-title-left.png");
}

.equipment-install__label::after {
  right: -10px;
  background-image: url("../images/deco-title-right.png");
}

.equipment-install__label span {
  display: inline-block;
  padding: 13px 24px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2d8ce2 0%, #0968bd 100%);
  box-shadow: 0 6px 0 #075096;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.25;
}

.equipment-install h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 22px;
  color: #062949;
  font-size: clamp(38px, 4.4vw, 46px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: .04em;
}

.equipment-install h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 490px);
  height: 5px;
  border-radius: 999px;
  background-image: radial-gradient(#1471c7 2px, transparent 2.8px);
  background-size: 12px 5px;
}

.equipment-install h2 strong {
  color: #1971c9;
  font-size: 1.08em;
  text-shadow: 3px 3px 0 rgba(13, 79, 141, .12);
}

.equipment-install__lead {
  position: relative;
  margin: 0 0 30px;
  color: #0b2239;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: .03em;
}

.equipment-install__lead mark {
  padding: 0 .14em;
  background: linear-gradient(transparent 58%, #fff26b 58%);
  color: inherit;
}

.equipment-install__free {
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  align-items: center;
  max-width: 520px;
  padding: 20px 24px;
  border: 2px solid #acd5f3;
  border-radius: 12px;
  background:
    repeating-linear-gradient(-45deg, rgba(39, 137, 218, .06) 0 8px, rgba(255,255,255,.25) 8px 16px),
    #fff;
}

.equipment-install__free::after {
  content: "✦";
  position: absolute;
  top: -24px;
  right: 18px;
  color: #f6db33;
  font-size: 44px;
  line-height: 1;
  text-shadow: 32px 24px 0 #f6db33;
}

.equipment-install__free-icon img {
  display: block;
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.equipment-install__free-text h3 {
  display: inline;
  margin: 0 0 8px;
  background: linear-gradient(transparent 58%, #fff26b 58%);
  color: #1a72c8;
  font-size: clamp(29px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .05em;
}

.equipment-install__free-text p {
  margin: 12px 0 0;
  color: #0c2238;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.equipment-install__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 34px;
  align-items: start;
  margin-top: 10px;
}

.equipment-install-card {
  position: relative;
  min-width: 0;
}

.equipment-install-card__photo {
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 86, 148, .18);
  aspect-ratio: 4 / 3;
}

.equipment-install-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-install-card__icon {
  position: absolute;
  z-index: 2;
  top: -42px;
  left: 50%;
  width: 86px;
  height: 86px;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(7, 80, 150, .24);
}

.equipment-install-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.equipment-install-card h3 {
  position: relative;
  z-index: 2;
  width: calc(100% - 42px);
  margin: -22px auto 0;
  padding: 8px 14px 10px;
  border-radius: 7px;
  background: linear-gradient(180deg, #2f92e6 0%, #0869bd 100%);
  box-shadow: 0 5px 0 #075096, 0 10px 16px rgba(4, 72, 132, .18);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
}

.equipment-install__bottom-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin:0 0 0;
  color: #102b43;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .03em;
  text-align: center;
}

.equipment-install__bottom-note strong {
  color: #1471c7;
}

.equipment-install__check {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid #1a75ca;
  border-radius: 50%;
  color: #1a75ca;
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .equipment-install {
    padding: 58px 16px 68px;
  }

  .equipment-install__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 36px 24px 34px;
  }

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

  .equipment-install__label {
    justify-content: center;
  }

  .equipment-install h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .equipment-install__free {
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .equipment-install {
    padding: 46px 12px 56px;
  }

  .equipment-install::before {
    width: 320px;
    height: 320px;
    right: -150px;
    top: 230px;
  }

  .equipment-install::after {
    width: 92px;
    height: 92px;
    right: 18px;
    top: 38px;
    background-size: 14px 14px;
  }

  .equipment-install__inner {
    padding: 28px 16px 30px;
    border-width: 2px;
    border-radius: 16px;
  }

  .equipment-install__label {
    gap: 8px;
    margin-bottom: 22px;
  }

  .equipment-install__label::before,
  .equipment-install__label::after {
    width: 40px;
    height: 40px;
  }

  .equipment-install__label span {
    padding: 11px 16px 12px;
    font-size: 15px;
    box-shadow: 0 4px 0 #075096;
  }

  .equipment-install h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .equipment-install__lead {
    font-size: 16px;
    text-align: left;
  }

  .equipment-install__free {
    grid-template-columns: 78px 1fr;
    gap: 14px;
    padding: 16px 14px;
  }

  .equipment-install__free::after {
    top: -18px;
    right: 10px;
    font-size: 30px;
    text-shadow: 22px 18px 0 #f6db33;
  }

  .equipment-install__free-icon img {
    width: 72px;
    height: 72px;
  }

  .equipment-install__free-text h3 {
    font-size: 25px;
  }

  .equipment-install__free-text p {
    font-size: 13px;
    line-height: 1.55;
  }

  .equipment-install__gallery {
    grid-template-columns: 0.8fr 0.8fr;
    gap: 20px;
    margin-bottom: -60px;
  }

  .equipment-install-card__icon {
    width: 76px;
    height: 76px;
    top: -36px;
  }

  .equipment-install-card h3 {
    font-size: 16px;
    margin: -12px auto 40px;
  }

  .equipment-install__bottom-note {
    display: block;
    margin-top: 0;
    font-size: 15px;
    text-align: left;
  }

  .equipment-install__check {
    display: inline-grid;
    width: 38px;
    height: 38px;
    margin: 0 8px 0 0;
    font-size: 18px;
    vertical-align: middle;
  }
}

/* =========================================
Area Block / Kanagawa Wide Area v1.4.3
========================================= */
.area--kanagawa {
  position: relative;
  overflow: hidden;
  padding: 68px 32px 44px;
  background:
    radial-gradient(circle at 78% 16%, rgba(101, 185, 255, .16) 0 180px, transparent 181px),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.area--kanagawa .area__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(480px, 1fr);
  gap: 42px 54px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,251,255,.98) 100%);
  border: 2px solid #cfe7ff;
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(0, 91, 172, .14);
}

.area--kanagawa .area__inner::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 36px;
  width: 120px;
  height: 120px;
  opacity: .38;
  background-image: radial-gradient(#76b9f2 2px, transparent 2px);
  background-size: 16px 16px;
  pointer-events: none;
}

.area--kanagawa .area__map-panel {
  position: relative;
  z-index: 1;
}

.area--kanagawa .area__map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.area--kanagawa .area__map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.area--kanagawa .area__speed-card {
  width: min(100%, 500px);
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  background: #fff;
  border: 2px solid #d7ebff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 91, 172, .1);
}

.area--kanagawa .area__speed-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.area--kanagawa .area__speed-card p {
  margin: 0;
  color: #102a45;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
}

.area--kanagawa .area__speed-card span:not(.area__speed-icon) {
  margin: 0 4px;
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
}

.area--kanagawa .area__content {
  position: relative;
  z-index: 1;
}

.area--kanagawa .area__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 9px 30px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #1f83d7 0%, #005bac 100%);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 91, 172, .18);
}

.area--kanagawa .area__label::before,
.area--kanagawa .area__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.area--kanagawa .area__label::before {
  left: -42px;
  background-image: url("../images/deco-title-left.png");
}

.area--kanagawa .area__label::after {
  right: -42px;
  background-image: url("../images/deco-title-right.png");
}

.area--kanagawa .area__title {
  max-width: 460px;
  display: block;
  margin: 0;
  color: var(--blue);
  font-size: clamp(42px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .06em;
  background: linear-gradient(transparent 66%, rgba(255, 236, 102, .7) 66%);
}

.area--kanagawa .area__lead {
  margin: 24px 0 22px;
  color: #102a45;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}

.area--kanagawa .area__lead strong {
  color: var(--blue);
}

.area--kanagawa .area__description {
  margin: 0 0 24px;
  padding-top: 24px;
  color: #1c2b39;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .05em;
  border-top: 4px dotted #acd6ff;
}

.area--kanagawa .area__city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.area--kanagawa .area__city-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  background: #fff;
  border: 2px solid #d7ebff;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 91, 172, .08);
}

.area--kanagawa .area__subnote {
  margin: 20px 0 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.area--kanagawa .area__bottom {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  margin-top: 6px;
  padding: 24px 220px 24px 34px;
  background: linear-gradient(90deg, #eef7ff 0%, #f8fcff 100%);
  border-radius: 18px;
  overflow: hidden;
}

.area--kanagawa .area__bottom-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #1f83d7 0%, #005bac 100%);
  border-radius: 50%;
}

.area--kanagawa .area__bottom p {
  margin: 0;
  color: #102a45;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: .04em;
}

.area--kanagawa .area__bottom strong {
  color: var(--blue);
  font-size: 28px;
}

.area--kanagawa .area__staff {
  position: absolute;
  right: 290px;
  bottom: 0;
  width: 170px;
  max-height: 120px;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 1024px) {
  .area--kanagawa {
    padding: 52px 22px 34px;
  }

  .area--kanagawa .area__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 28px;
  }

  .area--kanagawa .area__map-panel {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .area--kanagawa .area__content {
    text-align: center;
  }

  .area--kanagawa .area__description {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .area--kanagawa {
    padding: 38px 14px 24px;
  }

  .area--kanagawa .area__inner {
    padding: 22px 16px 18px;
    border-radius: 22px;
    gap: 22px;
  }

  .area--kanagawa .area__inner::before {
    width: 80px;
    height: 80px;
    top: 18px;
    right: 14px;
    background-size: 12px 12px;
  }

  .area--kanagawa .area__map-wrap {
    padding: 10px;
    border-width: 3px;
  }

  .area--kanagawa .area__speed-card {
    margin-top: 16px;
    padding: 12px 14px;
    gap: 10px;
  }

  .area--kanagawa .area__speed-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .area--kanagawa .area__speed-card p {
    font-size: 17px;
  }

  .area--kanagawa .area__speed-card span:not(.area__speed-icon) {
    font-size: 32px;
  }

  .area--kanagawa .area__label {
    max-width: calc(100% - 54px);
    margin-bottom: 16px;
    padding: 8px 18px;
    font-size: 12px;
  }

  .area--kanagawa .area__label::before,
  .area--kanagawa .area__label::after {
    width: 24px;
    height: 24px;
  }

  .area--kanagawa .area__label::before {
    left: -28px;
  }

  .area--kanagawa .area__label::after {
    right: -28px;
  }

  .area--kanagawa .area__title {
    font-size: 32px;
    line-height: 1.18;
  }

  .area--kanagawa .area__lead {
    margin: 16px 0 16px;
    font-size: 22px;
  }

  .area--kanagawa .area__description {
    padding-top: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .area--kanagawa .area__city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .area--kanagawa .area__city-list li {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .area--kanagawa .area__subnote {
    font-size: 15px;
  }

  .area--kanagawa .area__bottom {
    display: block;
    min-height: 0;
    padding: 20px 16px 130px;
    text-align: center;
  }

  .area--kanagawa .area__bottom-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    font-size: 26px;
  }

  .area--kanagawa .area__bottom p {
    font-size: 16px;
  }

  .area--kanagawa .area__bottom strong {
    font-size: 20px;
  }

  .area--kanagawa .area__staff {
    right: 50%;
    width: 130px;
    transform: translateX(50%);
  }
}

/* WEB限定クーポン */
.web-coupon-banner {
  padding: 48px 20px;
  background: #fff;
}

.web-coupon-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.web-coupon-banner picture,
.web-coupon-banner img {
  display: block;
  width: 100%;
}

.web-coupon-banner img {
  height: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .final-cta__inner {
  max-width: 480px;
  margin: 0 auto;
}
.flow__grid {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.equipment-install__bottom-note {
  display: block;
}
.area--kanagawa .area__staff {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 170px;
  max-height: 120px;
  object-fit: contain;
  object-position: bottom center;
}
}