@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
}

main {
  padding: 2rem 1.5rem 4rem;
}

._mt {
  margin-top: 1rem;
}

._mt-2 {
  margin-top: 2rem;
}

._ta-c {
  text-align: center;
}

.premium-hero {
  position: relative;
  aspect-ratio: 390/300;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a2e;
  background-image: url("/common/images/premium/hero_sp.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.premium-hero__text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.premium-body h2 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
}
.premium-body p {
  line-height: 2;
  color: #444;
}

.premium-list {
  list-style: none;
}
.premium-list li {
  line-height: 1.75;
  color: #333;
  padding: 3px 0;
}
.premium-list li::before {
  content: "・";
}

.premium-note {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

.premium-price__label {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 4px;
}
.premium-price__amount {
  color: #444;
}
.premium-price__list {
  list-style: none;
}
.premium-price__list li {
  line-height: 1.75;
  color: #333;
  padding: 2px 0;
}
.premium-price__list li::before {
  content: "・";
}

.premium-cta .premium-cta__message {
  border-radius: 4px;
  padding: 1em;
  background-color: #eee;
  color: #666;
}
.premium-cta .premium-cta__button {
  display: block;
  width: fit-content;
  margin-inline: auto;
  background-color: #F28130;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
  padding: 1em 3em;
}
.premium-cta .premium-cta__button:hover, .premium-cta .premium-cta__button:active {
  background-color: #F28130;
}

@media (min-width: 768px) {
  ._mt-2 {
    margin-top: 2.4rem;
  }
  body {
    font-size: 16px;
  }
  main {
    padding: 3rem 2rem 6rem;
    max-width: 800px;
    margin-inline: auto;
  }
  .premium-hero {
    aspect-ratio: revert;
    height: 500px;
    background-image: url("/common/images/premium/hero_pc.jpg");
  }
  .premium-hero__text {
    font-size: clamp(28px, 4vw, 48px);
  }
  .premium-body h2 {
    font-size: 24px;
    font-weight: 700;
  }
  .premium-body p {
    font-size: 18px;
  }
  .premium-body .premium-note {
    font-size: 14px;
  }
  .premium-cta {
    text-align: center;
  }
  .premium-cta a {
    display: inline-block;
    padding: 1em 4em;
  }
  .premium-cta a:hover, .premium-cta a:active {
    opacity: 0.8;
  }
}/*# sourceMappingURL=premium.css.map */