:root {
  --blue: #078bdc;
  --orange: #ff6b00;
  --text: #333;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: linear-gradient(180deg, #dff5ff, #fff 46%, #e8f7ff);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  padding-bottom: 86px;
}

.phone-lp {
  width: min(100%, 430px);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 34px rgba(0, 104, 166, .18);
}

.slice-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}

.slice-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  outline-offset: 4px;
  -webkit-tap-highlight-color: rgba(255, 107, 0, .18);
}

.hotspot:focus-visible {
  outline: 3px solid rgba(0, 138, 219, .85);
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 20;
  width: min(calc(100% - 28px), 402px);
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff8a10, #ff6400);
  box-shadow: 0 10px 24px rgba(130, 70, 0, .24);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  transform: translateX(-50%);
}

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

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 55, 88, .48);
}

.modal__panel {
  position: relative;
  width: min(100%, 360px);
  padding: 28px 24px 24px;
  border: 2px solid rgba(0, 138, 219, .35);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 80, 130, .28);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #555;
  background: #eef8ff;
  font-size: 26px;
  line-height: 1;
}

.modal__eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.modal__panel h2 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.35;
}

.modal__panel p {
  margin: 0 0 22px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.modal__ok {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff8a10, #ff6400);
  font-size: 15px;
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) {
  body {
    padding-top: 28px;
    padding-bottom: 108px;
  }

  .phone-lp {
    border-radius: 22px;
    overflow: hidden;
  }
}
