/* KNTリフォーム LP — Figma準拠（max-width 1500px・中央は margin auto / text-align） */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  color: #000;
  background: #fff9f7;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* 共通：水平方向の中央寄せは margin auto（左右 padding による擬似中央寄せは使わない） */
.shell {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.875rem min(3.125rem, 4vw);
}

.header__brand {
  text-align: center;
}

.header__logo {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.12em;
  line-height: 1.17;
}
.header__logo a {
  transition: opacity 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.6;
}

.header__tagline {
  margin: 0.25rem 0 0;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}

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

.header__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

.header__tel-label {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  color: #ff4000;
}

.header__tel-num {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.6875rem);
  letter-spacing: 0.03em;
}

.header__tel-hours {
  margin: 0.125rem 0 0;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.header__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9375rem 1.875rem;
  border-radius: 300px;
  background: #ff4000;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.45;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.header__cta:hover {
  transform: scale(1.04);
  opacity: 0.9;
  filter: brightness(1.05);
}

/* -------------------------------------------------------------------------
   FV
   ------------------------------------------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  overflow: hidden;
  min-height: 0;
  padding: 0;
}

.fv__hero {
  width: 100%;
}

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

.fv__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1512 / 785;
  max-height: 785px;
  margin-left: auto;
  margin-right: auto;
}

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

.fv__deco {
  position: absolute;
  pointer-events: none;
}

.fv__deco--house {
  width: 111.8%;
  max-width: none;
  height: auto;
  left: 18%;
  top: -29%;
}

.fv__deco--roof {
  width: 75.6%;
  max-width: none;
  height: auto;
  right: -5%;
  top: 6%;
}

.fv__shell {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
}

.fv__grid {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1rem, 3vw, 2.5rem) min(3.125rem, 4vw) 0;
  pointer-events: none;
}

.fv__headline-group {
  position: absolute;
  left: min(54%, calc(100% - 420px));
  top: 11%;
  width: min(38%, 574px);
  text-align: left;
}

.fv__lead {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.2vw, 2.88rem);
  line-height: 1.28;
}

.fv__lead-line {
  display: block;
}

.fv__stat {
  margin: 0.5rem 0 0;
  font-weight: 900;
  line-height: 1.35;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.fv__stat-prefix {
  margin-right: 0.25em;
}

.fv__stat-num {
  font-family: Roboto, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.625rem);
  line-height: 1.1;
  color: #ff4000;
  margin: 0 0.15em;
}

.fv__stat-mid {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.fv__stat-accent {
  font-size: clamp(1.75rem, 3vw, 3.12rem);
}

.fv__stat-suffix {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-left: 0.15em;
}

.fv__subcopy {
  position: absolute;
  right: min(4%, 3rem);
  bottom: 32%;
  width: min(90%, 538px);
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: clamp(0.85rem, 1.35vw, 1.27rem);
  line-height: 1.88;
  pointer-events: none;
}

.fv__offer {
  position: absolute;
  right: min(3%, 2rem);
  bottom: 8%;
  width: min(94%, 748px);
  pointer-events: auto;
}

.fv__offer-shape {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff4000 0%, #fe7c01 100%);
  box-shadow: none;
}

.fv__offer-inner {
  position: relative;
  padding: clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2.5rem);
  color: #fff;
}

.fv__offer-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  border: 1.6px solid #fff;
  font-weight: 900;
  font-size: clamp(0.85rem, 1.4vw, 1.33rem);
  letter-spacing: 0.02em;
}

.fv__offer-row {
  position: relative;
  margin: 0;
  min-height: 5rem;
}

.fv__offer-pct {
  position: absolute;
  left: 42%;
  top: -0.5rem;
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 9.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.fv__offer-unit {
  position: absolute;
  left: 72%;
  top: 2.5rem;
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3.28rem);
  letter-spacing: -0.03em;
}

.fv__offer-label {
  position: absolute;
  right: 6%;
  top: 1.25rem;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.66rem);
  letter-spacing: 0.02em;
}

.fv__offer-note {
  margin: 0.5rem 0 0;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 2.23rem);
  letter-spacing: 0.03em;
}

/* -------------------------------------------------------------------------
   Section title & label
   ------------------------------------------------------------------------- */
.section-title {
  margin: 0 auto 2rem;
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.section-title--dark {
  color: #000;
}

.section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.section-label__text {
  display: inline-block;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid #ff4000;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.45;
  text-align: center;
  color: #ff4000;
}

.section-label--light .section-label__text {
  color: #fff;
  border-bottom-color: #fff;
}

.section-label--compact .section-label__text {
  font-size: clamp(1.35rem, 3.8vw, 3.75rem);
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------------------------
   Signs
   ------------------------------------------------------------------------- */
.signs {
  padding: 3.125rem 0;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.signs .shell {
  padding: 0 min(3.125rem, 4vw);
}

.signs__layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.375rem);
  margin-bottom: 2rem;
}

.signs__photo {
  flex: 0 0 auto;
  text-align: center;
}

.signs__photo picture {
  display: block;
  width: 312px;
  max-width: 100%;
}

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

.signs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
}

.signs__item {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  font-weight: 500;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  letter-spacing: 0.02em;
}

.signs__icon {
  flex-shrink: 0;
}

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

.signs__note {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 500px;
  font-weight: 700;
  font-size: clamp(1.1rem, 1vw + 0.8rem, 1.75rem); /* サイズ可変 */
  white-space: nowrap; 
  line-height: 1.45;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.btn--primary {
  background: #ff4000;
  color: #fff;
  padding: 1.25rem clamp(1.5rem, 4vw, 3.125rem);
}

.btn--primary:hover {
  transform: scale(1.04);
  opacity: 0.9;
  filter: brightness(1.06);
}

.btn--line:hover {
  transform: scale(1.04);
  opacity: 0.9;
  filter: brightness(1.05);
}

.btn--lg img {
  width: 32px;
  height: 32px;
}

.btn--line {
  background: #00ca41;
  color: #fff;
  padding: 1rem 2rem;
}

.btn--wide {
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------
   Diagnosis
   ------------------------------------------------------------------------- */
.diagnosis {
  background: #f5f5f5;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.125rem 0;
}

.diagnosis__shell {
  padding: 0 min(3.125rem, 4vw);
  text-align: center;
}

.diagnosis__intro {
  margin: 0 auto 5rem;
  max-width: 46rem;
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.45;
}

.diagnosis__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.worry-card {
  position: relative;
  flex: 0 1 305px;
  max-width: 100%;
  text-align: left;
}

.worry-card__num {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: calc(100% - 10px);
  left: 0;
  width: 100%;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  pointer-events: none;
}

.worry-card__body {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  overflow: hidden;
}

.worry-card__thumb img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.worry-card__text {
  margin: 0;
  padding: 1.25rem 1.875rem;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.diagnosis__closing {
  margin: 0 auto;
  max-width: 70rem;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.2;
}

/* -------------------------------------------------------------------------
   Reasons
   ------------------------------------------------------------------------- */
.reasons {
  padding: 3.125rem 0;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.reasons__shell {
  padding: 0 min(3.125rem, 4vw);
}

.reasons__banner {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.reasons__banner p {
  margin: 0;
  padding: 0.625rem 1.875rem;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.875rem);
  line-height: 1.45;
  text-align: center;
}

.reasons__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 1.875rem);
}

.reason-card {
  flex: 0 1 478px;
  max-width: 100%;
}

.reason-card__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.reason-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 478 / 299;
  object-fit: cover;
}

.reason-card__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.875rem;
  background: #fff;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.65;
}

.reason-card__body {
  margin-top: 1.3125rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.reason-card__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.33;
  text-align: center;
}
.reason-card__title span , .reason-card__desc span{
  color: #ff4000;
  font-weight: 900;
}

.reason-card__desc {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.91;
}

/* -------------------------------------------------------------------------
   Greeting
   ------------------------------------------------------------------------- */
.greeting {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.125rem 0 6rem;
  background-image: url("image/greeting-bg_01.png");
  background-repeat: repeat;
  background-size: 614px auto;
  background-color: #fff;
}

.greeting__shell {
  position: relative;
  padding: 0 min(3.125rem, 4vw);
}

.greeting__layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.125rem);
}

.greeting__profile {
  flex: 0 1 601px;
  max-width: 100%;
}

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

.greeting__photo {
  width: 100%;
  max-width: 601px;
  height: auto;
}

.greeting__name-block {
  margin-top: 1.5rem;
}

.greeting__role {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
}

.greeting__name {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.greeting__quote-visual {
  position: relative;
  margin-top: 2rem;
  padding: 0.875rem 3rem 0.875rem 3rem;
  min-height: 7rem;
}

.greeting__catch {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.67;
}

.greeting__quote-mark {
  position: absolute;
  width: 47px;
  height: 46px;
}

.greeting__quote-mark--open {
  left: 0;
  top: 0;
}

.greeting__quote-mark--close {
  right: 0;
  bottom: 0;
}

.greeting__rep-deco {
  margin-top: 1.5rem;
}

.greeting__rep-deco img {
  display: block;
  width: 100%;
  max-width: 816px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.greeting__article {
  flex: 1 1 400px;
  max-width: 48rem;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.88;
}
.greeting__intro {
  font-size: 18px;
  line-height: 1.88;
}
.greeting__article p {
  margin: 0 0 1.25rem;
}

.greeting__emphasis {
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
}

.greeting__emphasis--accent {
  color: #ff4000;
}

.greeting__emphasis--bold {
  font-weight: 900;
}

.greeting__bullets {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.91;
}

.greeting__bullets li {
  position: relative;
  padding-left: 1.25rem;
}

.greeting__bullets li::before {
  content: "●";
  position: absolute;
  left: 0;
}

.greeting__deco {
  display: none;
}

@media (min-width: 1000px) {
  .greeting__deco {
    display: block;
    position: absolute;
    right: min(8%, 4rem);
    bottom: 2rem;
    width: 340px;
    pointer-events: none;
  }

  .greeting__deco img {
    position: absolute;
    width: 290px;
    height: auto;
    border-radius: 4px;
    box-shadow: none;
  }

  .greeting__deco img:first-child {
    left: 0;
    top: 0;
    z-index: 1;
  }

  .greeting__deco img:last-child {
    left: 4rem;
    top: 3.9rem;
    z-index: 2;
  }
}

/* -------------------------------------------------------------------------
   Service area
   ------------------------------------------------------------------------- */
.service-area {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.125rem 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.6) url("image/area-bg.png") center / cover no-repeat;
  background-blend-mode: multiply;
}

.service-area__shell {
  padding: 0 min(3.125rem, 4vw);
}

.service-area__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 3rem, 3.5rem);
      max-width: 1110px;
      width: 100%;
      margin: 0 auto;
  }

.service-area__col {
  flex: 1;
  max-width: 100%;
}
.service-area__heading {
  display: flex;
  align-items: center;
  gap: 1.1875rem;
  margin-bottom: 1.25rem;
}

.service-area__bar {
  display: block;
  width: 27px;
  height: 5px;
  background: #fff;
}

.service-area__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
}

.service-area__text {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.91;
}

/* -------------------------------------------------------------------------
   Reviews
   ------------------------------------------------------------------------- */
.reviews {
  padding: 3.125rem 0;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.reviews__shell {
  padding: 0 min(3.125rem, 4vw);
}

.reviews__inner {
  width: 100%;
}

.reviews__embed {
  width: 100%;
}

.reviews__widget {
  width: 100%;
  max-width: none;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reviews__iframe {
  display: block;
  width: 100%;
  height: 381px;
  border: 0;
}

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
.contact {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.125rem 0 4rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.63) url("image/contact-bg.png") center / cover no-repeat;
  background-blend-mode: multiply;
}

.contact__shell {
  padding: 0 min(3.125rem, 4vw);
}

.contact__headline {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
  min-height: 0;
}

.contact__headline-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.contact__lead {
  margin: 0 auto;
  max-width: 36rem;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2.23rem);
  line-height: 1.52;
  color: #fff;
}

.contact__lead-gap {
  display: inline-block;
  width: clamp(5rem, 18vw, 12rem);
}

.contact__off {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-8%);
  margin: 0;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.36rem);
  line-height: 1.52;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.4),
    2px 2px 0 rgba(0, 0, 0, 0.15),
    -1px -1px 0 rgba(0, 0, 0, 0.1);
}

.contact__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-card {
  flex: 1 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.contact-card__label-wrap {
  text-align: center;
  border-bottom: 3px solid #fff;
  padding-bottom: 0.625rem;
}

.contact-card__label {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.45;
}

.contact-card__desc {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.91;
}

.contact-card__tel-block {
  width: 100%;
}

.contact-card__tel-caption {
  margin: 0 0 0.5rem;
  font-weight: 500;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.contact-card__tel-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.15em;
}

.contact-card__tel-label {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  letter-spacing: 0.03em;
}

.contact-card__tel-num {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.03em;
}

.contact-card__tel-num:hover {
  opacity: 0.6;
}

.contact-card__tel-hours {
  margin: 0.5rem 0 0;
  font-weight: 500;
  font-size: 0.89rem;
  letter-spacing: 0.07em;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  padding: 1.875rem 0;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #000;
}

/* -------------------------------------------------------------------------
   Fixed CV (<=1000px)
   ------------------------------------------------------------------------- */
.cv-fixed {
  display: none;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
.br--768 {
  display: none;
}

/* 1000px以下のときだけ改行するための <br> 用クラス */
.br--1000 {
  display: none;
}

/* 480px以下のときだけ改行するための <br> 用クラス */
.br--480 {
  display: none;
}

@media (max-width: 1000px) {
  body {
    padding-bottom: 58px;
  }

  .cv-fixed {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: none;
  }

  .cv-fixed__inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .cv-fixed__half {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-height: 58px;
    padding: 12px 10px;
    font-weight: 700;
    font-size: clamp(12px, 2.4vw, 15px);
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: center;
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  }

  .cv-fixed__half--tel {
    background: #fff;
    color: #000;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }

  .cv-fixed__half--form {
    background: #ff4000;
    color: #fff;
  }

  .cv-fixed__half:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    filter: brightness(1.03);
  }

  .header__inner {
    padding: 1.875rem min(20px, 4vw);
}

  .header__tel-block {
    display: none;
  }

  .header__cta {
    display: none;
  }
  .fv__headline-group {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem min(3.125rem, 4vw) 0;
  }

  .fv__subcopy {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 1rem auto 0;
    padding: 0 min(3.125rem, 4vw);
  }

  .fv__offer {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 1.5rem auto 0;
    padding: 0 min(3.125rem, 4vw);
  }

  .fv__visual {
    aspect-ratio: auto;
    max-height: none;
  }

  .fv__deco--house,
  .fv__deco--roof {
    display: none;
  }

  .fv__shell {
    position: relative;
  }

  .fv__grid {
    position: relative;
    height: auto;
    padding-bottom: 2rem;
  }

  .fv {
    min-height: 0;
  }
  .service-area__cols {
    flex-direction: column;
}

.diagnosis__cards {
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.worry-card {
  width: 100%;
}
.worry-card__thumb img {
  height: 350px;
}
.reason-card {
  width: 100%;
  flex: auto;
}
.reason-card__visual img {
  height: 350px;
}

  .br--1000 {
    display: block;
  }
}
@media (max-width: 768px) {
  .header__inner {
    text-align: center;
    padding: 20px;
  }

  .header__brand {
    text-align: left;
  }

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

  .signs__photo {
    width: 100%;
  }

  .signs__photo picture {
    width: 100%;
    max-width: none;
  }

  .worry-card {
    width: 100%;
  }


  .contact__off {
    position: relative;
    left: auto;
    transform: none;
    margin-top: 0.5rem;
  }

  .br--768 {
    display: block;
  }
  .greeting__quote-mark {
    height: 30px;
}
.greeting__catch {
  font-size: 20px;
}
.greeting__quote-visual
 {
    padding: 0.875rem 2rem 0.875rem 2rem;
}
}

@media (max-width: 480px) {
  body {
    padding-bottom: 54px;
  }
  .header__inner {
    padding: 10px 20px;
}
  .cv-fixed__inner {
    padding: 0;
  }

  .cv-fixed__half {
    min-height: 54px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .header__actions {
    display: none;
  }

  .br--480 {
    display: block;
  }

  .signs__list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1.0625rem;
  }

  .signs__item {
    width: 100%;
}

  .fv__offer-pct {
    position: relative;
    left: auto;
    top: auto;
    display: inline;
  }

  .fv__offer-unit {
    position: relative;
    left: auto;
    top: auto;
    display: inline;
    margin-left: 0.25em;
  }

  .fv__offer-label {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    margin-top: 0.5rem;
  }

  .fv__offer-row {
    min-height: 0;
    text-align: center;
  }

  .worry-card__num {
    font-size: 40px;
    bottom: calc(100% - 5px);
  }
  .diagnosis__intro {
    margin: 0 auto 4rem;
}
.diagnosis__cards {
  gap: 55px;
}
.btn--primary {
  padding: 1rem clamp(1.5rem, 4vw, 3.125rem);
  width: 100%;
}
.greeting__catch
 {
        font-size: 22px;
    }
  .btn{
    font-size: 16px;
  }
  .btn--lg img {
    width: 18px;
    height: 18px;
}
.greeting {
  padding: 3.125rem 0 3rem;
}
.worry-card__thumb img {
  height: 250px;
}
.reason-card__visual img {
  height: 250px;
}
.section-label__text {
  font-size: 26px;
}
.greeting__emphasis {
  font-size: 20px;
}
}
