:root {
  --brand-gold: #c99412;
  --brand-black: #171717;
  --green: #347a2b;
  --green-dark: #245f21;
  --cream: #fffbc6;
  --red: #d51f32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brand-black);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 224, 118, 0.42), transparent 24rem),
    linear-gradient(180deg, #f7fad7 0%, #e0f7c9 100%);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

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

.lp-shell {
  width: min(500px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 36px rgba(43, 66, 31, 0.18);
}

.lp-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 3px solid var(--brand-gold);
}

.brand-link {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 282px;
  height: auto;
}

.header-phone {
  display: flex;
  flex: 0 0 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, #488d3a, #255e25);
  border-radius: 18px;
  box-shadow: inset 0 3px rgba(255, 255, 255, 0.13), 0 4px 0 #bed681;
}

.header-phone span {
  font-size: 12px;
  font-weight: 800;
}

.header-phone strong {
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.header-phone small {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 700;
}

.image-stage {
  position: relative;
  overflow: hidden;
}

.safe-badge {
  position: absolute;
  top: 43.6%;
  z-index: 2;
  display: flex;
  width: 20.6%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f5d566;
  text-align: center;
  background: #211f1c;
  border-radius: 50%;
}

.safe-badge-left {
  left: 10.2%;
}

.safe-badge-right {
  right: 9.2%;
}

.safe-badge span {
  font-size: clamp(9px, 2.5vw, 13px);
  font-weight: 800;
}

.safe-badge strong {
  margin-top: 2px;
  font-size: clamp(16px, 4.8vw, 24px);
  line-height: 1;
}

.safe-badge small {
  position: absolute;
  top: 88%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 170%;
  min-height: 22%;
  place-items: center;
  padding: 3px 5px;
  color: #211805;
  font-size: clamp(7px, 1.9vw, 10px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffe382 0%, #e0a319 54%, #ffdc68 100%);
  border: 1px solid rgba(155, 101, 2, 0.58);
  border-radius: 3px;
  transform: translateX(-50%);
}

.hero-note {
  position: absolute;
  z-index: 1;
  top: 68.2%;
  right: 2%;
  display: grid;
  width: 25%;
  height: 3.2%;
  place-items: center;
  color: #fff;
  font-size: clamp(8px, 2.2vw, 12px);
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(54, 133, 184, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(27, 92, 132, 0.22);
}

.hero-ribbon {
  position: absolute;
  z-index: 3;
  right: 4.5%;
  bottom: 4.2%;
  left: 4.5%;
  display: flex;
  min-height: 10%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: #fff;
  font-size: clamp(13px, 4vw, 22px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 2px 1px rgba(82, 25, 16, 0.45);
  background: linear-gradient(120deg, #f44837, #d9252d 68%, #b71d28);
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
}

.hero-ribbon strong {
  color: #fff36a;
}

.hero-ribbon span {
  display: block;
}

.area-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 18px 15px;
  color: #fff;
  text-align: center;
  background: linear-gradient(100deg, #232323, #5d4716);
  border-top: 4px solid #e3bb3e;
  border-bottom: 4px solid #e3bb3e;
}

.area-strip span {
  padding: 2px 14px;
  color: #231b08;
  font-size: 12px;
  font-weight: 800;
  background: #f8d55f;
  border-radius: 999px;
}

.area-strip strong {
  margin-top: 5px;
  font-size: clamp(16px, 4.8vw, 25px);
  letter-spacing: 0.02em;
}

.cta-link {
  display: block;
  transition: filter 180ms ease, transform 180ms ease;
}

.cta-link:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.phone-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 120px;
  padding: 14px 36px;
  color: #fff;
  background: #fff;
}

.phone-banner::before {
  position: absolute;
  z-index: 0;
  width: min(390px, calc(100% - 54px));
  height: 90px;
  content: "";
  background: linear-gradient(135deg, #4d913a, #245b25);
  border-radius: 26px;
  box-shadow: 0 6px 0 #aecb78;
}

.phone-icon,
.phone-copy {
  position: relative;
  z-index: 1;
}

.phone-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #37782e;
  font-family: sans-serif;
  font-size: 32px;
  background: #fff;
  border-radius: 50%;
}

.phone-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-copy strong {
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(30px, 9vw, 48px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.phone-copy small {
  margin-top: 6px;
  font-size: clamp(11px, 3.3vw, 17px);
  font-weight: 800;
}

.phone-banner-compact {
  min-height: 92px;
  background: var(--green);
}

.phone-banner-compact::before {
  height: 76px;
}

.stage-03 .proof-panel {
  position: absolute;
  z-index: 4;
  top: 18%;
  left: 0;
  display: flex;
  width: 100%;
  height: 20.8%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5% 7%;
  text-align: center;
  background:
    linear-gradient(rgba(201, 148, 18, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 148, 18, 0.07) 1px, transparent 1px),
    #fffdf7;
  background-size: 18px 18px;
  border-top: 5px solid var(--brand-gold);
  border-bottom: 5px solid var(--brand-gold);
}

.proof-panel > img {
  display: block;
  width: 62%;
  max-width: 320px;
  height: auto;
  margin-bottom: 18px;
}

.proof-panel .proof-kicker {
  margin: 0 0 10px;
  padding: 4px 16px;
  color: #fff;
  font-size: clamp(11px, 3.2vw, 17px);
  font-weight: 800;
  background: var(--brand-black);
  border-radius: 999px;
}

.proof-panel h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(22px, 6.6vw, 36px);
  line-height: 1.28;
}

.proof-panel > p:not(.proof-kicker) {
  margin: 13px 0 16px;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 600;
  line-height: 1.75;
}

.proof-areas {
  display: grid;
  width: 100%;
  max-width: 390px;
  margin-bottom: 14px;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.proof-areas span {
  padding: 7px 3px;
  color: #32260c;
  font-size: clamp(10px, 2.8vw, 15px);
  font-weight: 900;
  background: #f2d479;
  border: 1px solid #c89a25;
  border-radius: 8px;
}

.proof-panel ul {
  display: grid;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  list-style: none;
}

.proof-panel li {
  padding: 9px 3px;
  color: #fff;
  font-size: clamp(10px, 2.9vw, 15px);
  font-weight: 800;
  background: #3e7d37;
  border-radius: 999px;
}

.proof-panel .proof-note {
  margin: 15px 0 0;
  color: #5f532f;
  font-size: clamp(10px, 2.8vw, 14px);
  font-weight: 800;
}

.brand-title-cover {
  position: absolute;
  z-index: 4;
  top: 38.7%;
  left: 0;
  display: flex;
  width: 100%;
  height: 4.9%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #438141;
  text-align: center;
  background: #d5eefc;
}

.brand-title-cover small {
  color: #111;
  font-size: clamp(11px, 3.2vw, 17px);
  font-weight: 800;
}

.brand-title-cover strong {
  margin-top: 7px;
  font-size: clamp(23px, 6.8vw, 37px);
  line-height: 1.16;
}

.stage-07-brand {
  position: absolute;
  z-index: 3;
  top: 14.5%;
  left: 2%;
  display: flex;
  width: 96%;
  height: 25.5%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  background: #fff;
}

.stage-07 {
  aspect-ratio: 1366 / 1128;
}

.stage-07 > .lp-image {
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.stage-07-brand small,
.stage-07-brand strong {
  display: block;
  font-weight: 900;
  line-height: 1.25;
}

.stage-07-brand small {
  color: #000;
  font-size: clamp(16px, 4.6vw, 24px);
}

.stage-07-brand strong {
  margin-top: 6px;
  color: #ff6400;
  font-size: clamp(20px, 5.3vw, 28px);
  letter-spacing: -0.04em;
}

.services-brand-cover {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 3.2%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #43833d;
  text-align: center;
  background: #fffbc5;
}

.services-brand-cover small {
  color: #171717;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 800;
}

.services-brand-cover strong {
  margin-top: 3px;
  font-size: clamp(22px, 6.2vw, 34px);
}

.about-brand-cover {
  position: absolute;
  z-index: 3;
  top: 55.15%;
  left: 5.5%;
  display: flex;
  width: 66%;
  height: 1.55%;
  align-items: center;
  padding: 0 8px;
  color: #111;
  font-size: clamp(17px, 4.7vw, 26px);
  font-weight: 900;
  background: #fff;
}

.about-brand-cover strong {
  margin: 0 3px;
  color: #ff6200;
}

.representative-cover {
  position: absolute;
  z-index: 4;
  top: 93.55%;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2% 8%;
  background-color: #fffdf8;
  background-image:
    linear-gradient(rgba(205, 158, 46, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 158, 46, 0.09) 1px, transparent 1px);
  background-size: 18px 18px;
}

.representative-cover > img {
  width: 58%;
  margin: 0 auto 5px;
}

.representative-cover h2 {
  margin: 0 0 5px;
  color: #3e7d37;
  font-size: clamp(20px, 5.8vw, 30px);
  text-align: center;
}

.representative-cover p {
  margin: 0 0 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(10px, 2.8vw, 14px);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.signature {
  margin-top: 2px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(9px, 2.5vw, 13px);
  line-height: 1.45;
  text-align: right;
}

.signature strong {
  font-size: 1.35em;
}

.phone-banner-final {
  min-height: 110px;
  background: var(--cream);
}

.company-card {
  padding: 42px 28px 44px;
  background: #fffbc5;
}

.company-card > img {
  display: block;
  width: 82%;
  margin: 0 auto 24px;
}

.company-card h2 {
  margin: 0 0 20px;
  color: #3d7937;
  font-size: 28px;
  text-align: center;
}

.company-card dl {
  display: grid;
  margin: 0;
  overflow: hidden;
  grid-template-columns: 92px 1fr;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e5dca1;
  border-radius: 16px;
}

.company-card dt,
.company-card dd {
  margin: 0;
  padding: 12px 13px;
  border-bottom: 1px solid #eee7bd;
}

.company-card dt {
  color: #365f2d;
  font-weight: 800;
  background: #f8f4d9;
}

.company-card dd {
  line-height: 1.65;
}

.company-card dt:nth-last-of-type(1),
.company-card dd:last-child {
  border-bottom: 0;
}

.company-card a {
  color: #28702c;
  font-weight: 800;
  text-decoration: underline;
}

.form-section {
  padding: 34px 22px 44px;
  background: #fff;
  scroll-margin-top: 16px;
}

.form-section > div {
  min-height: 220px;
}

.lp-footer {
  padding: 34px 28px 28px;
  text-align: center;
  background: #fff;
  border-top: 5px solid var(--brand-gold);
}

.lp-footer img {
  width: 78%;
  max-width: 360px;
}

.lp-footer nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
}

.lp-footer nav a {
  color: #5c4a1b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-footer p {
  margin: 24px 0 0;
  font-size: 11px;
}

@media (max-width: 430px) {
  .brand-header {
    min-height: 66px;
    padding: 8px;
  }

  .brand-logo {
    max-width: 220px;
  }

  .header-phone {
    flex-basis: 146px;
    min-height: 54px;
    padding: 5px 6px;
    border-radius: 14px;
  }

  .header-phone span {
    font-size: 9px;
  }

  .header-phone strong {
    font-size: 18px;
  }

  .header-phone small {
    font-size: 7px;
  }

  .phone-banner {
    min-height: 102px;
    gap: 12px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .phone-banner::before {
    width: calc(100% - 32px);
    height: 78px;
    border-radius: 20px;
  }

  .phone-icon {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .phone-banner-compact {
    min-height: 82px;
  }

  .phone-banner-compact::before {
    height: 68px;
  }

  .proof-panel > p:not(.proof-kicker) {
    margin: 8px 0 12px;
    line-height: 1.6;
  }

  .proof-panel > img {
    margin-bottom: 10px;
  }

  .proof-areas {
    margin-bottom: 10px;
    gap: 4px;
  }

  .proof-panel li {
    padding: 7px 2px;
  }

  .proof-panel .proof-note {
    margin-top: 10px;
  }

  .representative-cover {
    padding: 1% 7%;
  }

  .representative-cover > img {
    margin-bottom: 3px;
  }

  .representative-cover h2 {
    margin-bottom: 3px;
  }

  .representative-cover p {
    margin-bottom: 3px;
    line-height: 1.5;
  }

  .company-card {
    padding: 34px 18px 38px;
  }

  .company-card dl {
    grid-template-columns: 80px 1fr;
    font-size: 12px;
  }

  .company-card dt,
  .company-card dd {
    padding: 10px;
  }
}
