@charset "UTF-8";
/* フルブリード背景を敷く共通mixin */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #e8eef7;
  background-color: #001018;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

a,
a:link,
a:visited {
  color: #ffffff;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

a:active {
  color: #ffffff;
}

.u-container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 20px;
}

.u-gradient {
  background: linear-gradient(90deg, #0638be, #0104c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.c-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.c-header__inner {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.c-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.c-logo a {
  color: white;
}

.c-logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0638be, #0104c0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.c-nav {
  display: flex;
  gap: 22px;
}

.c-nav__link {
  color: inherit;
}

.c-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: linear-gradient(90deg, #0638be, #0104c0);
  color: #001018;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.c-menuBtn {
  display: none;
}

@media (max-width: 980px) {
  .c-header__inner {
    max-width: 1220px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .c-nav {
    display: none;
  }
  .c-menuBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 0.55rem 0.8rem;
    border: 1px solid #203042;
    border-radius: 12px;
    font-weight: 700;
    background-color: #0043a0;
    cursor: pointer;
  }
  .c-nav.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #0f151d;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 14px;
    border-bottom: 1px solid #203042;
  }
  .c-cta {
    display: none;
  }
  .c-logo span {
    display: none;
  }
}
.c-hero {
  padding: 40px 20px;
}

.c-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .c-hero__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.c-hero__title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.25;
  margin: 1rem 0 2rem;
  font-weight: 900;
}

.c-hero__lead {
  color: #fff;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 32px;
}

.c-hero__img {
  /* 画面幅に応じて縮む: 最小180px, 通常は40vw, 上限300px */
  margin-inline: auto;
  position: relative;
}
@media (max-width: 980px) {
  .c-hero__img {
    width: 100%;
    max-width: 100%;
  }
}

.c-hero__img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .c-hero__img {
    /* スマホではさらに少し小さめに */
    width: 100%;
  }
}
.c-pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 44px auto;
}

.c-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(190deg, #0638be, #0104c0);
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 17px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: none;
}

.c-hero__price {
  margin: 20px 0;
}

.c-priceCom {
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
}

.u-accent {
  color: #ffb400;
  font-weight: 900;
}

.c-priceRow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .c-priceRow {
    text-align: center;
  }
}

.c-priceNote {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-top: 10px;
}

.c-priceLabel {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffb400;
}

.c-priceAmount {
  font-size: clamp(44px, 7.5vw, 82px);
  font-weight: 900;
  color: #ffb400;
  font-style: italic;
  line-height: 1;
}

.c-hero__btnArea {
  font-weight: 700;
  text-align: center;
  font-size: clamp(14px, 3vw, 28px);
  max-width: 600px;
  margin: 40px auto 0 auto;
}

.c-hero__btn {
  display: block;
  background-color: #c00;
  color: #e8eef7;
  padding: 20px 32px;
  border-radius: 40px;
  max-width: 100%;
  margin: 8px auto auto 0;
  text-align: center;
  font-size: 1.4rem;
}
.c-hero__btn:hover {
  background-color: rgb(163.2, 0, 0);
  text-decoration: none;
  background-color: #0104c0;
}

@media (max-width: 768px) {
  .c-priceLabel {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .c-hero__grid {
    grid-template-columns: 1fr;
  }
}
.u-eyebrow {
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffb400;
}

.u-kicker {
  display: inline-block;
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  border: 1px solid #203042;
}
@media screen and (max-width: 768px) {
  .u-kicker {
    display: block;
    margin: auto;
    text-align: center;
  }
}

.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 0.6rem;
  border: 1px solid #203042;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
}

.c-section {
  padding: 70px 20px;
}

.c-sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.c-sec__title {
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 900;
}

.c-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.c-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid #203042;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-card__title {
  font-weight: 700;
  margin: 0.2rem 0 0.4rem;
}

.c-card__txt {
  color: #fff;
  font-size: 80%;
  line-height: 1.6em;
}

@media (max-width: 980px) {
  .c-cards {
    grid-template-columns: 1fr;
  }
}
.c-spec {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #203042;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.c-table th,
.c-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #203042;
}

.c-table th {
  width: 30%;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 980px) {
  .c-spec {
    grid-template-columns: 1fr;
  }
}
.c-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.c-price {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid #203042;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-price__label {
  font-weight: 700;
  color: #fff;
}

.c-price__num {
  font-size: 2rem;
  font-weight: 900;
}

.c-price__note {
  color: #fff;
  font-size: 0.92rem;
}

.c-price--accent {
  outline: 2px solid rgba(0, 210, 255, 0.35);
}

@media (max-width: 980px) {
  .c-pricing {
    grid-template-columns: 1fr;
  }
}
.c-faq details {
  border: 1px solid #203042;
  border-radius: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  max-width: 1000px;
  margin: 0 auto;
}

.c-faq details + details {
  margin-top: 20px;
}

.c-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.c-faq p {
  color: #fff;
  margin: 0.6rem 0 0;
}

.c-footer {
  padding: 40px 20px;
  border-top: 1px solid #203042;
  color: #fff;
}

.c-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.c-footer small {
  display: block;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .c-footer__cols {
    grid-template-columns: 1fr;
  }
}
#top,
#features,
#merit,
#spec,
#voices,
#faq {
  position: relative;
  isolation: isolate;
  /* 擬似要素のz-index管理を安全に */
}
#top::before,
#features::before,
#merit::before,
#spec::before,
#voices::before,
#faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* セクションの背面へ */
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  /* ビューポート幅いっぱいに拡張 */
  pointer-events: none;
  /* 上端だけ柔らかくフェード（必要に応じて高さ可変） */
  background: linear-gradient(to bottom, #0b0f14 0%, rgba(11, 15, 20, 0) 10%), radial-gradient(1000px 600px at 12% 16%, rgba(1, 4, 192, 0.3), transparent 60%), radial-gradient(1000px 600px at 88% 14%, rgba(6, 56, 190, 0.4), transparent 60%);
}

.c-sec__head--center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.c-sec__subtitle {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
}

.c-sec__subtitle--red {
  color: #c00;
}

.c-feature__wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #203042;
  border-radius: 24px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Feature グリッド（PC=テキスト→画像 / スマホ=画像→テキスト） */
.c-feature__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

/* モバイルで上下逆（画像を先に）*/
@media (max-width: 980px) {
  .c-feature__grid {
    display: flex;
    flex-direction: column;
  }
  .c-feature__media {
    order: -1;
    margin-bottom: 28px;
  }
}
/* 画像調整（任意：モバイルで少し縮める）*/
@media (max-width: 768px) {
  .c-feature__media img {
    width: 100%;
    height: auto;
  }
}
.c-feature__h3 {
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.2em;
  font-weight: 900;
  margin: 0 0 16px;
}

.c-feature__sub {
  color: #fff;
  margin-bottom: 14px;
}

.c-feature__pills {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .c-feature__pills {
    grid-template-columns: 1fr;
  }
}

/* グレーのチェック付きチップ */
.c-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  background: rgba(7, 83, 223, 0.466);
  border: 1px solid #203042;
  color: #e8eef7;
  font-weight: 700;
  font-size: 0.95rem;
}

.c-chip--check::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.2em;
  height: 1.2em;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.6rem;
}

.c-feature__h4 {
  font-size: 1.05rem;
  font-weight: 900;
  margin: 12px 0 6px;
}

.c-feature__text {
  color: #fff;
  font-size: 0.95rem;
  padding-top: 12px;
}

.c-feature__media {
  border-radius: 16px;
  overflow: hidden;
}

.c-feature__media img {
  display: block;
  width: 100%;
  height: auto;
}

.c-intro {
  position: relative;
  isolation: isolate;
  /* 擬似要素のz-index管理を安全に */
}
.c-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* セクションの背面へ */
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  /* ビューポート幅いっぱいに拡張 */
  pointer-events: none;
  /* 上端だけ柔らかくフェード（必要に応じて高さ可変） */
  background: linear-gradient(to bottom, #0b0f14 0%, rgba(11, 15, 20, 0) 10%), radial-gradient(1100px 520px at 70% 8%, rgba(6, 56, 190, 0.16), transparent 60%);
}

.c-intro .c-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid #203042;
  border-radius: 18px;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 60px);
}

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

.c-intro__title {
  font-size: clamp(22px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.c-intro__lead {
  font-weight: 900;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.9;
  margin: 10px auto 14px;
  max-width: 900px;
}

.c-intro__text {
  max-width: 800px;
  margin: 0 auto 18px;
  text-align: left;
}

.c-intro__body {
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.c-price__promo {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.c-price__donation {
  font-size: 0.8rem;
  color: #fff;
  margin-top: 6px;
}

/* ===== Benefits grid ===== */
.c-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 980px) {
  .c-benefits {
    grid-template-columns: 1fr;
  }
}

.c-benefitCard {
  border: 1px solid rgba(172, 172, 172, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-benefitHead {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-benefitIcon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(7, 83, 223, 0.466);
  color: #fff;
  flex: 0 0 auto;
}

.c-benefitIcon__svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.c-benefitTitle {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.3;
}

.c-benefitSub {
  font-size: 0.9rem;
  color: #2c6fce;
  font-weight: 700;
  margin-top: 2px;
}

.c-benefitMedia {
  border-radius: 10px;
  overflow: hidden;
  margin: 8px 0;
}

.c-benefitMedia img {
  display: block;
  width: 100%;
  height: auto;
}

.c-benefitText {
  line-height: 1.9;
}

.c-benefitText strong {
  font-weight: 900;
}

/* ===== Bottom full-width link ===== */
.c-moreWrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.c-moreLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-weight: 900;
  border-radius: 999px;
  color: #fff;
  background-color: rgba(7, 83, 223, 0.466);
  text-decoration: none;
}
.c-moreLink:hover {
  text-decoration: none;
  background-color: #0104c0;
}

.c-moreLink svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.c-moreLink:hover {
  transform: translateY(-1px);
}

/* ===== User's Voice ===== */
.c-voices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 980px) {
  .c-voices {
    grid-template-columns: 1fr;
  }
}

.c-voiceCard {
  background: #e6e6e6;
  color: #111827;
  /* near-gray-900 */
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(16px, 2.2vw, 24px);
  opacity: 0.95;
}

.c-voiceTitle {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}

.c-voiceText {
  color: #374151;
  /* near-gray-700 */
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.c-offer {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(60px, 8vw, 120px) 0;
  isolation: isolate;
  /* 背景レイヤのz-indexを安全に */
}

.c-offer__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* フルブリード背景画像＋暗幕＋上下フェード */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.75) 100%), url("../img/cta_bg.jpg") center/cover no-repeat;
  /* 追加の質感レイヤ例（不要なら削除）
  background-blend-mode: normal;
  */
}

/* 見出し */
.c-offer__headline {
  text-align: center;
  margin-bottom: clamp(18px, 4vw, 32px);
}

.c-offer__kicker {
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0.95;
  font-size: 20px;
}

.c-offer__slash {
  opacity: 0.85;
  margin-left: 0.2em;
}

.c-offer__title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2em;
  margin: 6px 0 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* 白カードの説明 */
.c-offer__blurb {
  max-width: 880px;
  margin: 0 auto clamp(22px, 4vw, 32px);
  background: #fff;
  color: #0f172a;
  border-radius: 16px;
  padding: clamp(14px, 2.2vw, 20px);
  line-height: 1.6em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
@media screen {
  .c-offer__blurb {
    font-size: 14px;
  }
}

/* 価格帯 */
.c-offer__priceBlock {
  text-align: center;
  margin-top: clamp(8px, 2vw, 14px);
}

.c-offer__compare {
  color: white;
  font-weight: 900;
  margin-bottom: 8px;
  font-size: clamp(18px, 5vw, 24px);
}

.c-offer__priceRow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 14px;
  border-radius: 12px;
}

.c-offer__label {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffd54a;
}

.c-offer__price {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 900;
  font-style: italic;
  color: #ffd54a;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
  line-height: 1;
}

.c-offer__note {
  color: white;
  font-size: clamp(10px, 4vw, 14px);
  margin-top: 8px;
}

.c-offer__desc {
  margin-top: 10px;
  opacity: 0.95;
  font-weight: 800;
}

/* CTA */
.c-offer__ctaWrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(16px, 4vw, 28px);
}

.c-ctaBig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(120% 120% at 50% 0%, #f43f5e 20%, #dc2626 70%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.c-ctaBig:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.c-ctaBig:active {
  transform: translateY(0);
}

/* レスポンシブ細調整 */
@media (max-width: 980px) {
  .c-offer__blurb {
    margin-left: 20px;
    margin-right: 20px;
  }
  .c-offer__priceRow {
    padding: 8px 12px;
  }
}
.c-fax {
  margin-top: 40px;
  max-width: 800px;
  text-align: center;
  color: white;
}
.c-fax__title {
  font-size: clamp(16px, 4vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
  background-color: #c00;
}
@media (max-width: 768px) {
  .c-fax__txt {
    text-align: left;
    font-size: 14px;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
}

.pc-none {
  display: none;
}
@media (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}/*# sourceMappingURL=sirius-1.css.map */