:root {
  --canvas: #050203;
  --line: #06c755;
  --text: #fff7f2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, #0b0506, #020102 55%, #0b0506);
  background-size: 56px 56px, auto;
}

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

.phone-lp {
  width: min(100%, 430px);
  margin: 0 auto;
  background: var(--canvas);
  box-shadow: 0 0 44px rgba(0, 0, 0, .56);
}

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

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

.reels {
  padding: 28px 14px 32px;
  background: #050203;
  text-align: center;
}

.reels__title {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
}

.reels__lead {
  margin: 0 0 18px;
  color: #c9b8b0;
  font-size: 13px;
  letter-spacing: .04em;
}

.reels__grid {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.reel-card {
  position: relative;
  flex: 1 1 0;
  max-width: 132px;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(160deg, #7638c9, #d6249f 55%, #f77737);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .42);
}

.reel-card__play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .2);
  font-size: 15px;
  padding-left: 3px;
}

.reel-card__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.reels__more {
  display: inline-block;
  margin-top: 20px;
  color: #d8aa5c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.recruit {
  padding: 30px 20px 34px;
  background: linear-gradient(180deg, #0b0506, #050203);
  border-top: 1px solid rgba(216, 170, 92, .28);
  text-align: center;
}

.recruit__eyebrow {
  margin: 0 0 8px;
  color: #d8aa5c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
}

.recruit__title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .03em;
}

.recruit__lead {
  margin: 0 0 18px;
  color: #c9b8b0;
  font-size: 13px;
  line-height: 1.6;
}

.recruit__btn {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(216, 170, 92, .6);
  border-radius: 999px;
  color: #f7e3bf;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #0b0506;
  line-height: 0;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-link {
  display: block;
  padding: 14px 18px 18px;
  color: #d8aa5c;
  background: #050203;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  text-decoration: none;
  line-height: 1;
}

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

.hotspot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .86);
}

.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(100deg, #7638c9, #d6249f 55%, #f77737);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .4), 0 0 22px rgba(214, 36, 159, .5);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  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, 0, 0, .72);
}

.modal__panel {
  position: relative;
  width: min(100%, 360px);
  padding: 28px 24px 24px;
  border: 1px solid rgba(216, 170, 92, .45);
  border-radius: 18px;
  background: linear-gradient(180deg, #16080a, #070304);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .62);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 26px;
  line-height: 1;
}

.modal__eyebrow {
  margin: 0 0 8px;
  color: #d8aa5c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

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

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

.modal__ok {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, #ee1438, #f77737);
  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;
  }
}
