@charset "utf-8";
/* CSS Document */

#premium-hero .premium-title{
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 900;
    letter-spacing: .03em;
}

#premium-hero .premium-lead{
    color: rgba(0,0,0,.65);
    line-height: 1.8;
}

/* Steps */
.steps{
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 560px;
}

.step{
    display: flex;
    gap: 1rem;
    align-items: flex-start;

    background: #fff;
    border-radius: 20px;

    padding: 1rem 1rem;
    margin-bottom: .75rem;

    box-shadow: 0 1px 6px rgba(0, 0, 0, .12);
}

.step:last-child{
    margin-bottom: 0;
}

.step h3{
    margin: 0 0 .25rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.step p{
    margin: 0;
    color: rgba(0,0,0,.7);
    line-height: 1.6;
}

.step-ic{
  flex: 0 0 46px; width:46px; height:46px; border-radius: 16px;
  display:grid; place-items:center;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(14,165,233,.16));
  border: 1px solid rgba(14,165,233,.22);
}
.st
/* Specs */
.specs{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items:start; }
.spec-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 38px rgba(15,23,42,.06);
}
.spec-table th, .spec-table td{ padding: 14px 14px; border-bottom: 1px solid var(--line); }
.spec-table tr:last-child th, .spec-table tr:last-child td{ border-bottom: none; }
.spec-table th{ text-align:left; width: 30%; color: rgba(15,23,42,.86); }
.spec-table td{ color: var(--muted); }
.spec-media{ position:relative; }
.spec-media img{ border-radius: var(--radius2); border:1px solid rgba(15,23,42,.08); box-shadow: var(--shadow); }
.callouts{ position:absolute; left: 14px; bottom: 14px; display:flex; flex-direction:column; gap: 8px; width: min(420px, calc(100% - 28px)); }
.pill{
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(15,23,42,.82);
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 14px 38px rgba(15,23,42,.06);
}
.warn{
  margin-top: 16px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(239,68,68,.22);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: rgba(15,23,42,.86);
}

.price-table{
    width: 100%;
    max-width: 560px;
    margin: 0 auto;

    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
}

.price-table table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table th,
.price-table td{
    padding: 14px 16px;
    vertical-align: middle;
}

.price-table tr{
    position: relative;
}
.price-table tr::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--line);
}
.price-table tr:last-child::after{
    display: none;
}

.price-table th{
    text-align: left;
    width: 60%;
    color: rgba(15,23,42,.86);
    font-weight: 700;
}
.price-table td{
    text-align: left;
    color: var(--muted);
    white-space: nowrap;
}
.note-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.price-note{
    width: 100%;
    padding: .9rem 1.7rem;
    border-radius: 3px;
    border: 1px solid #89add5;
    color: #333;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

#premium-gift-use .gift-use-box{
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.78);
}

/* アイコン（丸背景） */
#premium-gift-use .use-ic{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eef6ff;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

/* Bootstrap Icons */
#premium-gift-use .use-ic i{
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(0,0,0,.70);
}

/* テキスト */
#premium-gift-use .gift-use-box p{
    color: rgba(0,0,0,.70);
    line-height: 1.7;
}

/* FAQ */
.faq{
    margin: 0;
}

.faq .qa{
    margin: 0 auto .75rem;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f7ff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .12);
}

/* 最後だけ余白なし */
.faq .qa:last-child{
    margin-bottom: 0;
}

/* summary（質問行） */
.faq .qa summary{
    list-style: none;
    cursor: pointer;

    padding: 1rem 1.25rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* デフォルトの三角を消す（Chrome/Safari対応） */
.faq .qa summary::-webkit-details-marker{
    display: none;
}

/* ＋ を右端に出す */
.faq .qa summary::after{
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    opacity: .8;
}

/* 開いたら － にする */
.faq .qa[open] summary::after{
    content: "－";
}

/* answer */
.faq .qa .answer{
    padding: 0 1.25rem 1rem;
    color: rgba(0,0,0,.75);
    line-height: 1.7;
}

#price .price-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    background: #fff;
}

#price .price-table th,
#price .price-table td{
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

#price .price-table tr:last-child th,
#price .price-table tr:last-child td{
    border-bottom: none;
}

#price .price-table th{
    text-align: left;
    width: 60%;
    font-weight: 600;
}

#price .price-table td{
    white-space: nowrap;
}

/* 定価（取り消し線） */
.price-old{
    margin-right: .6rem;
    color: rgba(0,0,0,.45);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

/* キャンペーン価格（強調） */
.price-new{
    font-weight: 900;
    font-size: 1.15rem;
    color: #111;
    letter-spacing: .02em;
}

/* キャンペーン枠 */
.price-campaign{
    margin: 0 auto;
    padding: .9rem 1.2rem;
    width: 100%;
    max-width: 560px;
    text-align: center;
    border: 1px solid rgba(37,145,57,.35);
    border-radius: var(--bs-border-radius);
    background: rgba(37,145,57,.06);

}

.price-campaign-badge{
    margin-bottom: 1rem;
    padding: .3rem .7rem;
    text-align: center;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: #fff;
    background: #259139;
    border-radius: 999px;
}

/* sm以下 */
@media (max-width: 575.98px){
    .price-table tr::after {
        background: none;
    }
    #price .price-table th,
    #price .price-table td{
        display: block;
        width: 100%;
        text-align: left;
        border: 0;
    }

    #price .price-table tr{
        display: block;
        padding: .75rem 0;
        border-bottom: 1px solid #ddd;
    }

    #price .price-table tr:last-child{
        border-bottom: none;
    }

    #price .price-table th{
        font-weight: 700;
        margin-bottom: .25rem;
    }

    #price .price-table td{
        font-size: 1.05rem;
        font-weight: 700;
        border: 0;
    }
}
