:root {
  --yellow: #ffd21c;
  --pale-yellow: #fff2a6;
  --orange: #ff7a00;
  --red: #e72116;
  --green: #09a846;
  --black: #14110a;
  --ink: #211a05;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.35)),
    var(--pale-yellow);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.55;
}

body {
  padding-bottom: 122px;
}

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

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

button,
select {
  font: inherit;
}

.lp-shell {
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff4bf;
  box-shadow: 0 0 32px rgba(84, 55, 0, 0.24);
}

.hero,
.image-section {
  background: #ffd21c;
}

.section-divider {
  position: relative;
  height: 34px;
  overflow: hidden;
  margin-top: -1px;
  background: #ffd21c;
  --divider-color: #ffd21c;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--divider-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.section-divider::after {
  display: none;
}

.hero + .section-divider,
.image-section + .section-divider {
  --divider-color: #ffd21c;
}

.cta-section + .section-divider,
.bottom-cta + .section-divider {
  --divider-color: #ffbc00;
}

.faq + .section-divider {
  --divider-color: #fff;
}

.section-divider.to-diagnosis {
  background: #ff9900;
}

.section-divider.to-image {
  background: #ffd21c;
}

.section-divider.to-cta {
  background: #ffbc00;
}

.section-divider.to-white {
  background: #fff;
}

.section-divider.to-ivory {
  background: #fffaf0;
}

.diagnosis {
  padding: 0 13px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(180deg, #ff9900 0%, #ff7700 100%);
}

.diagnosis__title-img {
  margin: 0 auto;
  filter: drop-shadow(0 6px 6px rgba(90, 45, 0, 0.22));
}

.diagnosis__form {
  display: grid;
  gap: 14px;
  margin-top: -2px;
  padding: 18px 15px 17px;
  background: var(--white);
  border-top: 5px solid var(--black);
  box-shadow: 0 12px 0 rgba(105, 50, 0, 0.22), 0 14px 28px rgba(96, 47, 0, 0.22);
}

.diagnosis label {
  display: grid;
  gap: 7px;
}

.diagnosis label span {
  color: var(--black);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.diagnosis select {
  width: 100%;
  min-height: 56px;
  padding: 13px 14px;
  border: 2px solid #d7c8aa;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  box-shadow: inset 0 2px 0 rgba(20, 17, 10, 0.04);
}

.diagnosis select:focus {
  outline: 3px solid rgba(255, 122, 0, 0.28);
  border-color: var(--orange);
}

.diagnosis__button {
  min-height: 62px;
  margin-top: 4px;
  border: 0;
  border-bottom: 5px solid #8f2f00;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #ffb027 0%, #ff7200 46%, #e34d00 100%);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(83, 25, 0, 0.36);
  cursor: pointer;
}

.bee-diagnosis-box {
  overflow: hidden;
  margin-top: -2px;
  background: #fff;
  border: 3px solid #14110a;
  box-shadow: 0 12px 0 rgba(105, 50, 0, 0.22), 0 14px 28px rgba(96, 47, 0, 0.22);
}

.bee-diagnosis-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff7cf;
  border-bottom: 3px solid #14110a;
}

.bee-diagnosis-step-tab {
  position: relative;
  padding: 11px 2px 9px;
  text-align: center;
  color: #7a5a11;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
}

.bee-diagnosis-step-tab + .bee-diagnosis-step-tab {
  border-left: 1px solid #e6c949;
}

.bee-diagnosis-step-tab::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 5px;
  background: #f0d64b;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  color: #14110a;
  font-size: 15px;
  font-weight: 950;
}

.bee-diagnosis-step-tab.is-active {
  color: #d71919;
}

.bee-diagnosis-step-tab.is-active::before {
  background: linear-gradient(180deg, #ff3a22, #d71919);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(215, 25, 25, 0.12);
}

.bee-diagnosis-step {
  display: none;
  padding: 18px 14px 20px;
  background:
    radial-gradient(circle at 16px 16px, rgba(255, 214, 54, 0.32) 0 2px, transparent 3px) 0 0 / 24px 24px,
    linear-gradient(180deg, #fff 0%, #fff8d9 100%);
}

.bee-diagnosis-step.is-active {
  display: block;
}

.bee-diagnosis-question {
  margin: 0 0 10px;
  text-align: center;
  color: #14110a;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 950;
}

.bee-diagnosis-note {
  margin: 0 0 15px;
  text-align: center;
  color: #6d4612;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.bee-diagnosis-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bee-diagnosis-option {
  position: relative;
  min-height: 104px;
  padding: 13px 10px 12px;
  border: 2px solid #e1c251;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 201, 0, 0.24) 0 28%, transparent 28% 100%),
    #fff;
  color: #14110a;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(87, 49, 0, 0.12);
}

.bee-diagnosis-option::after {
  content: "TAP";
  position: absolute;
  right: 8px;
  bottom: 7px;
  padding: 2px 7px;
  background: #14110a;
  color: #ffd600;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 950;
}

.bee-diagnosis-option:hover,
.bee-diagnosis-option:focus-visible {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.14), 0 7px 16px rgba(87, 49, 0, 0.16);
}

.bee-diagnosis-option.is-selected {
  border-color: #d71919;
  background:
    linear-gradient(135deg, rgba(255, 214, 0, 0.34) 0 28%, transparent 28% 100%),
    #fff4da;
  box-shadow: 0 0 0 4px rgba(215, 25, 25, 0.12), 0 7px 16px rgba(87, 49, 0, 0.16);
}

.bee-diagnosis-option--wide {
  min-height: 92px;
}

.bee-diagnosis-option-main {
  display: block;
  color: #14110a;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.bee-diagnosis-option-sub {
  display: block;
  margin-top: 6px;
  color: #6a4a10;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.bee-diagnosis-result-frame {
  position: relative;
  margin: 0 auto;
  max-width: 390px;
  aspect-ratio: 969 / 1624;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.bee-diagnosis-result-img {
  display: block;
  width: 100%;
  height: auto;
}

.bee-diagnosis-price {
  position: absolute;
  top: 29.8%;
  left: 50%;
  width: 74%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #e91b15;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff;
}

.bee-diagnosis-yen {
  flex: 0 0 auto;
  margin: 32px 5px 0 0;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.bee-diagnosis-price strong {
  flex: 0 0 auto;
  font-size: 78px;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -1px;
}

.bee-diagnosis-suffix {
  display: grid;
  width: 62px;
  flex: 0 0 auto;
  align-content: start;
  margin: 20px 0 0 3px;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  text-align: left;
}

.bee-diagnosis-suffix small {
  display: block;
  margin: 0 0 2px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.bee-diagnosis-unit {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.bee-diagnosis-wave {
  display: inline-block;
  font-size: 30px;
  line-height: 0.9;
}

.bee-diagnosis-selected {
  position: absolute;
  top: 39.6%;
  left: 11.5%;
  right: 10%;
  margin: 0;
  padding: 0 0 0 19px;
  color: #14110a;
  font-size: 12.7px;
  line-height: 1.28;
  font-weight: 900;
}

.bee-diagnosis-selected li {
  margin: 1px 0;
}

.bee-result-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  border-radius: 9px;
}

.bee-result-hotspot--line {
  left: 3.5%;
  bottom: 3.2%;
  width: 38.5%;
  height: 11.8%;
}

.bee-result-hotspot--tel {
  left: 43%;
  bottom: 3.2%;
  width: 53.5%;
  height: 11.8%;
}

.bee-diagnosis-back {
  display: block;
  width: 86%;
  min-height: 48px;
  margin: 14px auto 0;
  border: 0;
  border-bottom: 4px solid #8f2f00;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffb027 0%, #ff7200 52%, #e34d00 100%);
  color: #fff;
  font: inherit;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
  text-shadow: 0 2px 0 rgba(83, 25, 0, 0.36);
  cursor: pointer;
}

.cta-section,
.bottom-cta {
  position: relative;
  background: #ffbc00;
  border-top: 0;
  border-bottom: 0;
}

.cta-section.no-bottom-border {
  border-bottom: 0;
}

.cta-panel-img {
  width: 100%;
}

.cta-hotspot {
  position: absolute;
  display: block;
  z-index: 2;
  overflow: hidden;
  border-radius: 12px;
}

.cta-hotspot--tel {
  left: 4.8%;
  right: 4.8%;
  bottom: 18.4%;
  height: 17%;
}

.cta-hotspot--line {
  left: 4.8%;
  right: 4.8%;
  bottom: 5.4%;
  height: 11%;
}

.media-warning {
  background: #090909;
}

.payment-methods {
  background: #ffe14a;
}

.service-area {
  padding: 22px 14px 24px;
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 210, 28, 0.18) 0 3px, transparent 4px) 0 0 / 30px 28px,
    #fff;
  color: var(--black);
}

.service-area__kicker {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 5px 14px;
  background: var(--black);
  color: var(--yellow);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.service-area h2 {
  margin: 0;
  color: var(--black);
  font-size: 30px;
  line-height: 1.18;
  text-align: center;
  font-weight: 950;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.68);
}

.service-area__lead {
  margin: 10px 0 15px;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
  font-weight: 800;
}

.service-area .code-area-copy {
  display: block;
  margin: 0 auto 8px;
  color: #0068b7;
  font-size: clamp(23px, 6.2vw, 34px);
  line-height: 1.35;
  text-align: center;
  font-weight: 1000;
}

.service-area .code-area-copy::after {
  content: "";
  display: block;
  width: min(360px, 96%);
  height: 8px;
  margin: -4px auto 0;
  background: #ffe21a;
}

.service-area .area-subcopy {
  margin: 12px 0 18px;
  color: #000;
  font-size: clamp(21px, 5.2vw, 30px);
  line-height: 1.35;
  text-align: center;
  font-weight: 1000;
}

.service-area .code-map {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.service-area .accurate-kanto-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: 390px;
}

.service-area .geo-pref polygon,
.service-area .geo-pref path {
  fill: #ffe21a;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.service-area .geo-pref.tokyo path {
  stroke-width: 2.2;
}

.service-area .accurate-lines path {
  fill: none;
  stroke: #0068b7;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.service-area .accurate-dots circle {
  fill: #0068b7;
}

.service-area .accurate-labels rect {
  fill: #0068b7;
  filter: drop-shadow(0 2px 0 rgba(0, 76, 151, 0.25));
}

.service-area .accurate-labels text {
  fill: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 1000;
  text-anchor: middle;
}

.service-area__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.service-area__badges span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 5px 3px;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  font-weight: 900;
}

.service-area-list {
  margin-top: 14px;
}

.service-area-list details {
  overflow: hidden;
  margin: 10px 0;
  border: 2px solid #2a2106;
  background: #fff;
  box-shadow: 0 4px 0 rgba(90, 55, 0, 0.16);
}

.service-area-list summary {
  min-height: 50px;
  padding: 13px 14px;
  list-style: none;
  background: linear-gradient(90deg, #14110a, #2e2408);
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-area-list summary::-webkit-details-marker {
  display: none;
}

.service-area-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.service-area-list details[open] summary::after {
  content: "-";
}

.service-area-list__text {
  padding: 13px 14px 14px;
  background: #fffaf0;
  color: #241a04;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.service-area-list__note {
  margin: 13px 0 0;
  padding: 13px 12px;
  border: 2px solid var(--black);
  background: #fff8cc;
  color: var(--black);
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 900;
}

.faq {
  padding: 22px 14px 24px;
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 197, 0, 0.2) 0 4px, transparent 5px) 0 0 / 32px 28px,
    #fff;
}

.faq__label {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 4px 14px;
  background: var(--black);
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.faq h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 28px;
  line-height: 1.18;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0;
}

.faq details {
  margin: 11px 0;
  border-left: 5px solid var(--orange);
  background: #fff8d7;
  box-shadow: 0 3px 0 rgba(20, 17, 10, 0.08);
}

.faq summary {
  min-height: 56px;
  padding: 14px 38px 14px 13px;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 13px 14px;
  font-size: 15px;
  font-weight: 500;
}

.fixed-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  width: min(100%, 430px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 -8px 18px rgba(20, 17, 10, 0.24);
}

.fixed-cta__copy {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 0 12px;
  background: linear-gradient(180deg, #fffce0, #ffe872);
  color: var(--black);
  border-top: 0;
  border-bottom: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.fixed-cta__copy::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #ffe872;
  border-right: 0;
  border-bottom: 0;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

.fixed-cta__row {
  position: relative;
  height: auto;
  padding: 0;
  margin-top: 7px;
  overflow: hidden;
  border-top: 0;
}

.fixed-cta__row > img {
  width: 100%;
  height: auto;
}

.fixed-hotspot {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.fixed-hotspot--line {
  left: 0;
  width: 25%;
}

.fixed-hotspot--tel {
  right: 0;
  width: 75%;
}

.bee-result-hotspot::after,
.cta-hotspot::after,
.fixed-hotspot::after,
.footer-hotspot::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -65%;
  width: 44%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.35) 42%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.42) 58%,
    rgba(255, 255, 255, 0) 76%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(0.2px);
  transform: skewX(-18deg) translateX(-130%);
  animation: ctaShine 3.8s ease-in-out infinite;
}

.bee-result-hotspot--line::after,
.cta-hotspot--line::after,
.fixed-hotspot--line::after {
  animation-delay: 0.45s;
}

@keyframes ctaShine {
  0%,
  46% {
    transform: skewX(-18deg) translateX(-130%);
    opacity: 0;
  }

  52% {
    opacity: 0.95;
  }

  68% {
    transform: skewX(-18deg) translateX(410%);
    opacity: 0;
  }

  100% {
    transform: skewX(-18deg) translateX(410%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-result-hotspot::after,
  .cta-hotspot::after,
  .fixed-hotspot::after,
  .footer-hotspot::after {
    animation: none;
  }
}

.footer {
  position: relative;
  padding: 0 0 112px;
  background: #ffcf00;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 14px 10px 12px;
  background: #1b1606;
  border-top: 3px solid #ffcf00;
  border-bottom: 3px solid #ffcf00;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.footer-image-wrap {
  position: relative;
}

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

.footer-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.footer-hotspot--tel {
  left: 7%;
  right: 7%;
  bottom: 7.6%;
  height: 13.9%;
}

.subpage {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 214, 54, 0.28) 0 2px, transparent 3px) 0 0 / 28px 28px,
    #fff4bf;
}

.subpage .lp-shell {
  min-height: 100vh;
  background: #fffdf5;
}

.subpage-header {
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, #ffcf00 0%, #ffae00 100%);
  border-bottom: 5px solid #171207;
  text-align: center;
}

.subpage-header__brand {
  margin: 0 0 8px;
  color: #171207;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.subpage-header h1 {
  margin: 0;
  color: #171207;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
}

.subpage-content {
  padding: 22px 16px 28px;
  color: #1b1606;
}

.subpage-card {
  margin: 0 0 18px;
  padding: 18px 16px;
  background: #fff;
  border: 2px solid #efc21a;
  box-shadow: 0 5px 0 #f1a900;
}

.subpage-card h2 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffcf00;
  color: #171207;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
}

.subpage-card p,
.subpage-card li {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.subpage-card p {
  margin: 0 0 10px;
}

.subpage-card ul {
  margin: 0;
  padding-left: 20px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.company-table th,
.company-table td {
  padding: 12px 0;
  border-bottom: 1px dashed #e1bd24;
  vertical-align: top;
}

.company-table th {
  width: 34%;
  color: #b36a00;
  text-align: left;
  font-weight: 900;
}

.company-table td {
  font-weight: 700;
}

.company-table a,
.subpage-card a {
  color: #d71919;
  font-weight: 900;
}

.subpage-cta {
  display: block;
  margin: 20px 0 0;
  padding: 15px 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff3f1f 0%, #e20f0f 100%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
  box-shadow: 0 5px 0 #8f1300;
}

.subpage-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px 132px;
  background: #1b1606;
}

.subpage-nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.modal__panel {
  position: relative;
  width: min(100%, 392px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.38));
}

.modal__bg {
  width: 100%;
}

.modal__close {
  position: absolute;
  top: -12px;
  right: -8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal__price {
  position: absolute;
  top: 32.2%;
  left: 50%;
  width: 82%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: var(--red);
  font-size: 0;
  line-height: 1.05;
  text-align: center;
  font-weight: 900;
  text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff;
}

.modal__yen {
  display: inline-block;
  margin-right: 5px;
  font-size: 34px;
  font-weight: 950;
  vertical-align: 20px;
}

.modal__price strong {
  display: inline-block;
  font-size: 86px;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -2px;
}

.modal__suffix {
  display: inline-block;
  margin-left: 4px;
  font-size: 28px;
  font-weight: 950;
  vertical-align: 10px;
}

.modal__suffix small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.modal__selected {
  position: absolute;
  top: 42.5%;
  left: 16%;
  right: 16%;
  margin: 0;
  padding: 4px 8px 4px 26px;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.modal__selected li {
  margin: 2px 0;
}

.modal-hotspot {
  position: absolute;
  display: block;
  z-index: 2;
}

.modal-hotspot--tel {
  left: 43%;
  bottom: 3.2%;
  width: 53.5%;
  height: 11.8%;
}

.modal-hotspot--line {
  left: 3.5%;
  bottom: 3.2%;
  width: 38.5%;
  height: 11.8%;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 360px) {
  .fixed-cta__copy {
    font-size: 10px;
  }

  .bee-diagnosis-step-tab {
    font-size: 10px;
  }

  .bee-diagnosis-option-main {
    font-size: 16px;
  }

  .bee-diagnosis-price strong {
    font-size: 64px;
  }

  .bee-diagnosis-yen {
    font-size: 25px;
    margin-top: 27px;
  }

  .bee-diagnosis-suffix {
    width: 54px;
    margin-top: 16px;
    font-size: 23px;
  }

  .bee-diagnosis-suffix small {
    font-size: 11px;
  }

  .bee-diagnosis-wave {
    font-size: 24px;
  }

  .bee-diagnosis-selected {
    top: 39.4%;
    font-size: 11px;
    line-height: 1.22;
  }

  .modal__price strong {
    font-size: 66px;
  }

  .modal__yen {
    font-size: 30px;
  }

  .modal__suffix {
    font-size: 24px;
  }
}
