/* =========================================================
   スペシャルメンバーズ案内ページのスタイル（全文字中央寄せ版）
   ========================================================= */

/* 1. 全体の箱のデザイン */
.fs-p-spm-page {
    background-color: #ffffff;
    border: 1px solid #d4c6b5;
    max-width: 900px;
    width: 100%;
    padding: 70px 60px;
    margin: 100px auto 80px;
    box-shadow: 0 4px 15px rgba(94, 76, 65, 0.1);
    position: relative;
    box-sizing: border-box;
    color: #5e4c41;
    line-height: 1.8;
    text-align: center; /* ★ページ内の文字をすべて中央寄せに強制 */
}

/* 内側の二重線 */
.fs-p-spm-page::before {
    content: ""; position: absolute; top: 5px; right: 5px; bottom: 5px; left: 5px;
    border: 1px solid #d4c6b5; pointer-events: none; z-index: 10;
}

/* 2. タイトルのデザイン */
.fs-p-spm-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 20;
}
.fs-p-spm-title {
    font-size: 1.8rem;
    color: #5e4c41;
    letter-spacing: 0.1em;
    margin: 0 0 5px 0;
    font-weight: normal;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
}
.fs-p-spm-subtitle {
    font-size: 0.8rem;
    color: #a89a8d;
    font-family: "Times New Roman", serif;
    letter-spacing: 0.2em;
}

/* 3. 導入テキストとボタン */
.fs-p-spm-intro {
    margin-bottom: 40px;
    position: relative; z-index: 20;
    font-size: 16px;
}
.fs-p-spm-btn-wrap {
    margin-bottom: 60px;
    position: relative; z-index: 20;
}
.fs-p-spm-btn {
    display: inline-block;
    background-color: #5e4c41;
    color: #ffffff;
    border: 1px solid #5e4c41;
    padding: 18px 40px;
    font-size: 16px;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 2px;
    letter-spacing: 0.05em;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
.fs-p-spm-btn:hover {
    background-color: #ffffff;
    color: #5e4c41;
}

/* 4. 各セクションのデザイン */
.fs-p-spm-section {
    margin-bottom: 50px;
    position: relative; z-index: 20;
}
.fs-p-spm-section h2 {
    font-size: 20pxrem;
    color: #5e4c41;
    border-bottom: 1px solid #e8e2da;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: inline-block; 
}
.fs-p-spm-note {
    font-size: 16px;
    color: #8c7b70;
    margin-top: 10px;
}

/* 5. 会員ランク（横並びのカード） */
.fs-p-spm-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.fs-p-spm-tier {
    background-color: #fcfaf5;
    border: 1px solid #e8e2da;
    padding: 25px 15px;
}
.fs-p-spm-tier-name {
    font-size: 16px;
    color: #5e4c41;
    margin: 0 auto 15px auto;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
    border-bottom: 1px dashed #d4c6b5;
    padding-bottom: 15px;
    width: 80%; 
}
.fs-p-spm-tier-text {
    font-size: 16px;
    margin: 0;
}
.fs-p-spm-tier-text strong {
    font-size: 16px;
    color: #5e4c41;
}

/* 6. 対象期間と注意書き */
.fs-p-spm-attention {
    color: #bf4d4d;
    font-weight: bold;
    margin-bottom: 15px;
}
.fs-p-spm-period-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.fs-p-spm-period-list li {
    margin-bottom: 10px;
    
}
.fs-p-spm-period-list li::before {
    content: "■";
    color: #d4c6b5;
    font-size: 16px;
    margin-right: 5px;
}
.fs-p-spm-period-main {
    font-weight: bold;
    color: #5e4c41;
}
.fs-p-spm-period-sub {
    color: #8c7b70;
    font-size: 16px;
}

/* 7. ご注意エリア（薄い枠で囲む） */
.fs-p-spm-warning {
    border: 1px solid #e8e2da;
    background-color: #ffffff;
    padding: 25px 30px;
    position: relative; z-index: 20;
}
.fs-p-spm-warning-title {
    font-size: 16px;
    color: #5e4c41;
    margin: 0 0 15px 0;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
}
.fs-p-spm-warning p {
    margin: 0;
    font-size: 16px;
}

/* 8. スマホ表示（レスポンシブ対応） */
@media screen and (max-width: 1028px) {
    .fs-p-spm-page { padding: 50px 20px; margin: 80px auto 40px; }
    .fs-p-spm-title { font-size: 1.4rem; }
    .fs-p-spm-tiers { grid-template-columns: 1fr; gap: 15px; }
    .fs-p-spm-warning { padding: 20px 15px; }
    .fs-p-spm-btn { padding: 15px 20px; }
}