@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap");

:root {
  --stage-max: 500px; /* PC position fixed */
  --design-w: 1000; /* base image 1000px fixed */
  --max-scale: 1; /* scale size 1 */
}

body {
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  color: #fff;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    radial-gradient(
      at top center,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(0, 0, 0, 0.75) 120%
    );
  background-blend-mode: multiply, multiply;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-attachment: fixed;
}

.lp {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 0;
}

/* middle position fixed */
.stage {
  width: min(100vw, var(--stage-max));
  position: relative;

  --s: min(
    calc((min(100vw, var(--stage-max))) / var(--design-w)),
    var(--max-scale)
  );
}

.hero {
  position: relative;
  width: 100%;
}

/* base image */
.hero.base {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 10px 8px rgba(152, 152, 152, 0.4);
}

/* absolute positon */
.abs {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(var(--w) * 1%);
}

/* bottun */
.btn img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.45));
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.btn:active img {
  transform: translateY(1px) scale(0.99);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

/* 実績 */
.resultsText {
  z-index: 6;
  color: #111;
}

.resultsText__titleTop {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: clamp(10px, calc(14px * var(--s)), 14px);
  line-height: 1.1;
  margin: 0 0 4px;
}

.resultsText__titleMain {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(12px, calc(18px * var(--s)), 18px);
  line-height: 1.1;
  margin: 0 0 10px;
}

.resultsText__viewport {
  overflow: hidden;
  height: calc(1.9em * 5 + 6px);
  margin-top: 30px;
}

.resultsText__track {
  display: grid;
  gap: 4px;
  will-change: transform;
}

.resultsRow {
  font-weight: 900;
  color: #111;
  font-size: clamp(12px, calc(16px * var(--s)), 16px);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* FAQ */
.block {
  color: #111;
  border-radius: calc(14px * var(--s) + 10px);
  padding: calc(18px * var(--s) + 8px);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #b8babc;
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: clamp(13px, calc(15px * var(--s)), 15px);

  /* 長文でもはみ出さない */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq__icon {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.faq__a {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__aInner {
  padding: 12px 14px 14px;
  font-size: clamp(12px, calc(14px * var(--s)), 14px);
  color: rgba(0, 0, 0, 0.8);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

/* ▼ FAQ */
.faqFlow {
  width: 100%;
  background-color: #f7f7f7;
  padding: 0 0 18px;
  margin-top: -6px;
}

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

.faqFlow .block--faq {
  width: 100%;
  max-width: 92%;
  margin: 10px auto 0;
  padding-left: max(12px, calc(18px * var(--s)));
  padding-right: max(12px, calc(18px * var(--s)));
  padding-top: calc(14px * var(--s) + 10px);
  padding-bottom: calc(16px * var(--s) + 10px);
  background: transparent;
}

/*  ▼ shop info */
.infoSection {
  width: 100%;
  background: transparent;
}

.infoStage {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.infoMap {
  position: absolute;
  left: calc(var(--map-x, 6) * 1%);
  top: calc(var(--map-y, 60) * 1%);
  width: calc(var(--map-w, 88) * 1%);
  height: calc(var(--map-h, 24) * 1%);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  z-index: 10;
}

.infoMap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .resultsText__viewport {
    height: calc(1.9em * 4 + 6px); /* SP 4low */
  }

  .resultsRow {
    font-size: 16px;
  }
}

/* fllow heading */
.fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #333;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;

  line-height: 0;
}

.fixedHeader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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


.abs.btn.shine img {
  animation: shineGlowStrong 1.2s ease-in-out infinite;
  will-change: filter, opacity;
}

/* btn_1group */
.btn-group {
  display: flex;
  gap: 0px !important;
}

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

.btn-item {
  flex: 1;
}

@keyframes shineGlowStrong {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  45% {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.45));
  }
  55% {
    filter: brightness(1.65) drop-shadow(0 0 26px rgba(255, 255, 255, 0.95));
  }
}
/* sparkle animation*/
.abs.btn.sparkle {
  position: absolute; /* absolute */
}

/* sparkle */
.abs.btn.sparkle::before,
.abs.btn.sparkle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 22%;
  aspect-ratio: 1 / 1;
  top: 18%;
  left: 62%;
  opacity: 0;

  /* sparkle */
  clip-path: polygon(
    50% 0%,
    60% 35%,
    100% 50%,
    60% 65%,
    50% 100%,
    40% 65%,
    0% 50%,
    40% 35%
  );

  /* sparkle animation */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(255, 255, 255, 0.25) 55%,
    rgba(255, 255, 255, 0) 75%
  );

  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
  transform: scale(0.2) rotate(15deg);
}

/* main sparkle */
.abs.btn.sparkle::before {
  animation: kirarin 1.6s ease-in-out infinite;
}

/* second sparklr */
.abs.btn.sparkle::after {
  width: 16%;
  top: 52%;
  left: 18%;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  animation: kirarin 1.6s ease-in-out infinite;
  animation-delay: 0.35s;
}

@keyframes kirarin {
  0% {
    opacity: 0;
    transform: scale(0.15) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: scale(1.05) rotate(20deg);
  }
  18% {
    opacity: 0.85;
    transform: scale(0.75) rotate(35deg);
  }
  30% {
    opacity: 0;
    transform: scale(0.2) rotate(55deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.2) rotate(55deg);
  }
}

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

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

/* 97% animation */
.rate97PngWrap::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    transparent 40%,
    rgba(255, 255, 255, 1) 50%,
    transparent 60%
  );
  background-size: 250% 100%;
  background-position: -120% 0;

  /* 97% animation */
  -webkit-mask-image: url("./images/97.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  mask-image: url("./images/97.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;

  mix-blend-mode: screen;
  filter: blur(1px) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));

  animation: shinePngSweep 4s ease-in-out infinite;
}

@keyframes shinePngSweep {
  0% {
    background-position: 120% 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    background-position: -120% 0;
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    background-position: -120% 0;
    opacity: 0;
  }
}


#line_cta_head_follow_btn {
  display: flex;
  gap: 0;
  align-items: stretch;
}


#line_cta_head_follow_btn .fixedHeader__btn {
  position: static; 
  flex: 1;
  display: block;
}


#line_cta_head_follow_btn .fixedHeader__btn img {
  width: 100%;
  height: auto;
  display: block;
}
