/* ============================================
 * ドールについて 系列页面 共通スタイル
 * (real-photos / gallery / videos / faq)
 * ============================================ */

.info-archive {
    background: #fafafa;
}

.info-archive .container {
    padding-top: 50px;
    padding-bottom: 80px;
}

/* ---------- 顶部标题区 ---------- */
.info-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.info-archive-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.info-archive-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e53935;
    border-radius: 2px;
}

.info-archive-sub {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.7;
}

/* ---------- 胶囊筛选条 ---------- */
.info-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.info-filter-tab {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1.4;
}

.info-filter-tab:hover {
    border-color: #e53935;
    color: #e53935;
}

.info-filter-tab.active {
    background: #e53935;
    border-color: #e53935;
    color: #fff;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.25);
}

/* ---------- 卡片通用 ---------- */
.info-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.12);
}

/* ---------- 翻页 ---------- */
.info-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.info-pagination .page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.info-pagination .page-btn:hover:not(:disabled) {
    border-color: #e53935;
    color: #e53935;
}

.info-pagination .page-btn.current {
    background: #e53935;
    border-color: #e53935;
    color: #fff;
}

.info-pagination .page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
 * 实物写真 masonry
 * ============================================ */
.photo-masonry {
    column-count: 4;
    column-gap: 20px;
}

.photo-masonry .photo-card {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    cursor: zoom-in;
    transition: transform 0.25s;
}

.photo-masonry .photo-card:hover {
    transform: translateY(-3px);
}

.photo-masonry .photo-card img {
    width: 100%;
    display: block;
    height: auto;
}

.photo-masonry .photo-card .photo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s;
}

.photo-masonry .photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay .overlay-name {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.photo-overlay .overlay-meta {
    font-size: 11px;
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .photo-masonry { column-count: 3; }
}
@media (max-width: 768px) {
    .photo-masonry { column-count: 2; }
}
@media (max-width: 480px) {
    .photo-masonry { column-count: 1; }
}

/* ============================================
 * 画像 gallery (官方写真)
 * ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-grid .gallery-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-grid .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.12);
}

.gallery-card .gallery-img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-card .gallery-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-card .gallery-brand-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(229, 57, 53, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.gallery-card .gallery-body {
    padding: 16px 18px 20px;
}

.gallery-card .gallery-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-card .gallery-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 14px;
}

.gallery-card .gallery-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
 * 動画 videos
 * ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-grid .video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.video-grid .video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.12);
}

.video-card .video-thumb {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: #222;
}

.video-card .video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 0.5s, opacity 0.3s;
}

.video-card:hover .video-thumb img {
    transform: scale(1.06);
    opacity: 1;
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card .duration-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.video-card .video-body {
    padding: 16px 18px 20px;
}

.video-card .video-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card .video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

@media (max-width: 900px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .video-grid { grid-template-columns: 1fr; }
}

/* ============================================
 * FAQ
 * ============================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-sidebar h3 {
    margin: 0 20px 12px;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.faq-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-sidebar li a {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
}

.faq-sidebar li a:hover {
    background: #fff5f5;
    color: #e53935;
}

.faq-sidebar li a.active,
.faq-sidebar li a:target {
    background: #fff5f5;
    color: #e53935;
    border-left-color: #e53935;
    font-weight: 600;
}

.faq-content {
    min-width: 0;
}

.faq-group {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.faq-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-group-title .group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e53935;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    padding: 18px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    background: #fff5f5;
}

.faq-item .q-mark {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.faq-item .q-text {
    flex: 1;
    line-height: 1.5;
}

.faq-item .toggle-icon {
    flex-shrink: 0;
    color: #bbb;
    transition: transform 0.25s;
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
}

.faq-item[open] .toggle-icon {
    transform: rotate(45deg);
    color: #e53935;
}

.faq-answer {
    padding: 0 24px 22px 64px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; }
}

/* ============================================
 * サポート系 共通（控えめな紙面デザイン）
 * ============================================ */
.support-intro {
    max-width: 820px;
    margin: 0 auto 48px;
    padding: 0 10px;
    font-size: 15px;
    line-height: 1.95;
    color: #444;
    text-align: center;
}

.support-section {
    max-width: 880px;
    margin: 0 auto 56px;
}

.support-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.support-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 44px;
    height: 2px;
    background: #e53935;
}

.support-text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0;
}

.support-text a {
    color: #e53935;
    text-decoration: underline;
}

.support-closing {
    max-width: 880px;
    margin: -20px auto 0;
    text-align: center;
    color: #666;
}

/* ---------- シンプルな STEP カード ---------- */
.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    padding: 24px 26px 22px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.step-card .step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e53935;
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {
    .step-grid { grid-template-columns: 1fr; }
}

/* ---------- 定義リスト（dt/dd） ---------- */
.support-deflist {
    margin: 0;
    padding: 0;
}

.support-deflist dt {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    padding: 16px 0 6px;
    border-top: 1px solid #eee;
}

.support-deflist dt:first-child {
    border-top: none;
    padding-top: 4px;
}

.support-deflist dd {
    margin: 0 0 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.95;
    color: #555;
}

/* ---------- 番号付きリスト ---------- */
.support-ordered {
    list-style: none;
    counter-reset: ol;
    padding: 0;
    margin: 0;
}

.support-ordered li {
    counter-increment: ol;
    position: relative;
    padding: 14px 0 14px 42px;
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.support-ordered li:last-child { border-bottom: none; }

.support-ordered li::before {
    content: counter(ol);
    position: absolute;
    left: 0;
    top: 13px;
    width: 26px;
    height: 26px;
    border: 1px solid #e53935;
    color: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: #fff;
}

/* ---------- ポイント表（控えめ版） ---------- */
.point-table {
    border-top: 1px solid #eee;
}

.point-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 4px;
    border-bottom: 1px solid #eee;
}

.point-row .point-label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.point-row .point-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.point-row .point-value {
    font-size: 15px;
    font-weight: 700;
    color: #e53935;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .point-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .point-row .point-value {
        justify-self: start;
        font-size: 14px;
    }
}

/* =========================================================
   会社概要 (/company/) page
   ========================================================= */
.company-page {
    color: #333;
}
.company-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Hero ---- */
.co-hero {
    padding: 70px 0 60px;
    background: #fff;
}
.co-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 60px;
    align-items: stretch;
}
.co-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.co-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    color: #c8102e;
    font-weight: 600;
    margin: 0 0 18px;
}
.co-hero-title {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #1a1a1a;
    letter-spacing: 2px;
    line-height: 1.25;
}
.co-title-bar {
    display: block;
    width: 64px;
    height: 4px;
    background: #c8102e;
    margin: 0 0 34px;
    border-radius: 2px;
}
.co-para {
    font-size: 18px;
    line-height: 2.1;
    color: #4a4a4a;
    margin: 0 0 20px;
    letter-spacing: 0.03em;
}
.co-para:last-of-type {
    margin-bottom: 0;
}
.co-hero-media {
    position: relative;
    display: flex;
    align-items: center;
}
.co-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.25);
}
.co-hero-badge {
    position: absolute;
    left: -24px;
    bottom: -24px;
    background: #c8102e;
    color: #fff;
    padding: 18px 24px;
    border-radius: 4px;
    box-shadow: 0 12px 30px -10px rgba(200, 16, 46, 0.5);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.co-hero-badge-num {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.co-hero-badge-sub {
    font-size: 12px;
    opacity: 0.9;
}

/* ---- Stats strip ---- */
.co-stats-wrap {
    padding: 10px 0 0;
}
.co-stats {
    background: linear-gradient(135deg, #fff5f6 0%, #ffe9ec 100%);
    border-radius: 6px;
    padding: 44px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.co-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    border: 1px solid rgba(200, 16, 46, 0.12);
    pointer-events: none;
}
.co-stat {
    text-align: center;
    position: relative;
}
.co-stat + .co-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(200, 16, 46, 0.18);
}
.co-stat-num {
    font-size: 42px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    font-family: Georgia, serif;
}
.co-stat-suf {
    font-size: 26px;
    margin-left: 2px;
}
.co-stat-label {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

/* ---- Section headers ---- */
.co-certs-section {
    padding: 70px 0 40px;
}
.co-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
}
.co-section-head--left {
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 24px;
}
.co-section-rule {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8102e, transparent);
}
.co-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 2px;
    white-space: nowrap;
}
.co-section-head--left .co-section-title {
    position: relative;
    padding-left: 16px;
}
.co-section-head--left .co-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background: #c8102e;
    border-radius: 2px;
}
.co-section-sub {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin: 0 0 40px;
}

/* ---- Certificates grid ---- */
.co-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}
.co-cert {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.co-cert-frame {
    width: 100%;
    aspect-ratio: 300 / 450;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 10px;
    box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.co-cert:hover .co-cert-frame {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.3);
}
.co-cert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.co-cert-caption {
    font-size: 13px;
    color: #444;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
}

/* ---- Info table ---- */
.co-info-section {
    padding: 70px 0 80px;
}
.co-info-table {
    margin: 0;
    border-top: 2px solid #1a1a1a;
    border-bottom: 1px solid #e0e0e0;
}
.co-info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #ebebeb;
}
.co-info-row:last-child {
    border-bottom: 0;
}
.co-info-term {
    padding: 22px 24px;
    background: #fafafa;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.co-info-desc {
    margin: 0;
    padding: 22px 28px;
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    display: flex;
    align-items: center;
}
.co-link {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 16, 46, 0.3);
    transition: border-color 0.2s;
}
.co-link:hover {
    border-bottom-color: #c8102e;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .co-hero {
        padding: 40px 0;
    }
    .co-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .co-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    .co-para {
        font-size: 15px;
        line-height: 1.95;
        margin-bottom: 14px;
    }
    .co-hero-badge {
        left: 16px;
        bottom: 16px;
    }
    .co-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        padding: 30px 20px;
    }
    .co-stat + .co-stat::before {
        display: none;
    }
    .co-stat-num {
        font-size: 32px;
    }
    .co-certs-section {
        padding: 50px 0 20px;
    }
    .co-certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .co-section-title {
        font-size: 18px;
        letter-spacing: 1px;
        white-space: normal;
        text-align: center;
    }
    .co-section-rule {
        max-width: 40px;
    }
    .co-info-section {
        padding: 50px 0 60px;
    }
    .co-info-row {
        grid-template-columns: 1fr;
    }
    .co-info-term {
        padding: 14px 16px;
    }
    .co-info-desc {
        padding: 14px 16px 18px;
    }
}

/* ============================================================
   特定商取引法ページ (tokushoho)
   ============================================================ */
.tk-page {
    background: #fafafa;
    padding-bottom: 80px;
}

.tk-hero {
    background: linear-gradient(180deg, #fff 0%, #fff5f7 100%);
    padding: 72px 0 56px;
    border-bottom: 1px solid #f1d9dd;
    text-align: center;
}

.tk-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    color: #c8102e;
    font-weight: 600;
    margin: 0 0 14px;
}

.tk-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.3;
}

.tk-title-bar {
    display: inline-block;
    width: 64px;
    height: 4px;
    background: #c8102e;
    border-radius: 2px;
    margin-bottom: 28px;
}

.tk-lede {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.02em;
}

.tk-info-section {
    padding: 72px 0 48px;
    background: #fafafa;
}

.tk-terms-section {
    padding: 48px 0 24px;
    background: #fafafa;
}

.tk-cards {
    display: grid;
    gap: 20px;
    margin-top: 36px;
}

.tk-card {
    display: flex;
    gap: 28px;
    background: #fff;
    border: 1px solid #eee;
    border-left: 4px solid #c8102e;
    border-radius: 6px;
    padding: 32px 36px;
    box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tk-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -22px rgba(200, 16, 46, 0.25);
}

.tk-card-num {
    flex: 0 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    padding-top: 4px;
    min-width: 54px;
    letter-spacing: 1px;
}

.tk-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.tk-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.tk-card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #c8102e;
    border-radius: 1px;
}

.tk-card-content p {
    font-size: 14.5px;
    line-height: 1.95;
    color: #4a4a4a;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}

.tk-card-content p:last-child {
    margin-bottom: 0;
}

.tk-card-content strong {
    color: #c8102e;
    font-weight: 700;
}

.tk-subtitle {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-top: 16px !important;
    margin-bottom: 8px !important;
}

.tk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.tk-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 14.5px;
    line-height: 1.9;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    border-bottom: 1px dashed #f0dfe2;
}

.tk-list li:last-child {
    border-bottom: none;
}

.tk-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 17px;
    width: 6px;
    height: 6px;
    background: #c8102e;
    border-radius: 50%;
}

.tk-note {
    display: inline-block;
    margin-top: 4px;
    font-size: 12.5px;
    color: #888;
}

@media (max-width: 900px) {
    .tk-hero {
        padding: 48px 0 36px;
    }
    .tk-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    .tk-lede {
        font-size: 14px;
        line-height: 1.9;
    }
    .tk-info-section {
        padding: 48px 0 28px;
    }
    .tk-terms-section {
        padding: 28px 0 12px;
    }
    .tk-card {
        flex-direction: column;
        gap: 14px;
        padding: 24px 20px;
    }
    .tk-card-num {
        font-size: 26px;
        min-width: 0;
    }
    .tk-card-title {
        font-size: 17px;
    }
    .tk-card-content p,
    .tk-list li {
        font-size: 13.5px;
        line-height: 1.85;
    }
}

/* ---- Payment page: methods grid + alert ---- */
.pay-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.pay-method {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 26px 28px;
    box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pay-method:hover {
    transform: translateY(-3px);
    border-color: #f4c2c9;
    box-shadow: 0 18px 38px -22px rgba(200, 16, 46, 0.28);
}

.pay-method-num {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8102e 0%, #e5405c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 18px -8px rgba(200, 16, 46, 0.5);
}

.pay-method-body {
    flex: 1 1 auto;
    min-width: 0;
}

.pay-method-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.pay-method-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

.pay-method-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #c8102e;
    background: #fff1f3;
    border: 1px solid #fbd3d9;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.pay-method-desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: #555;
    margin: 0;
    letter-spacing: 0.02em;
}

/* 注意事項バナー */
.pay-alert {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    padding: 26px 30px;
    background: #fff8e6;
    border: 1px solid #f4d785;
    border-left: 4px solid #e0a900;
    border-radius: 8px;
}

.pay-alert-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e0a900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    font-family: Georgia, serif;
    line-height: 1;
}

.pay-alert-body {
    flex: 1 1 auto;
    min-width: 0;
}

.pay-alert-body p {
    font-size: 13.5px;
    line-height: 1.9;
    color: #5a4200;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}

.pay-alert-body p:last-child {
    margin-bottom: 0;
}

.pay-alert-body strong {
    color: #c8102e;
    font-weight: 700;
}

@media (max-width: 900px) {
    .pay-methods {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
    .pay-method {
        padding: 22px 20px;
    }
    .pay-method-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .pay-method-title {
        font-size: 15.5px;
    }
    .pay-alert {
        padding: 20px;
        gap: 14px;
    }
    .pay-alert-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* ============================================================
   納期と配送について (shipping)
   控えめでエディトリアルなトーン
   ============================================================ */
.sh-page {
    background: #fff;
    color: #2a2a2a;
    padding-bottom: 96px;
}

/* Hero — 控えめな上下罫線 */
.sh-hero {
    padding: 84px 0 64px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.sh-eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    color: #c8102e;
    font-weight: 600;
    margin: 0 0 18px;
}

.sh-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin: 0 0 22px;
    line-height: 1.35;
}

.sh-lede {
    max-width: 640px;
    margin: 0 auto 42px;
    font-size: 15px;
    line-height: 2;
    color: #666;
    letter-spacing: 0.02em;
}

.sh-hero-meta {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.sh-hero-meta > div {
    padding: 0 40px;
    border-right: 1px solid #e5e5e5;
    text-align: center;
}

.sh-hero-meta > div:last-child {
    border-right: none;
}

.sh-hero-meta dt {
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

.sh-hero-meta dd {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

/* セクション共通 */
.sh-section {
    padding: 72px 0;
}

.sh-section--muted {
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.sh-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.sh-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin: 0 0 14px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.sh-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: #c8102e;
}

.sh-section-sub {
    max-width: 680px;
    margin: 0 auto;
    font-size: 13.5px;
    line-height: 1.9;
    color: #777;
    letter-spacing: 0.02em;
}

/* タイムライン */
.sh-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sh-timeline::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #ebebeb;
}

.sh-step {
    display: flex;
    gap: 28px;
    padding: 0 0 36px 0;
    position: relative;
}

.sh-step:last-child {
    padding-bottom: 0;
}

.sh-step-marker {
    flex: 0 0 auto;
    width: 56px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.sh-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: #c8102e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50%;
}

.sh-step-body {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 6px;
}

.sh-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.sh-step-desc {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0;
    letter-spacing: 0.02em;
}

/* 配送不可地域 — おとなしいタグ */
.sh-country-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    max-width: 960px;
    margin: 0 auto;
    justify-content: center;
}

.sh-country {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12.5px;
    color: #666;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    letter-spacing: 0.02em;
}

/* 注意事項 notes — 上下の罫線だけのエディトリアル調 */
.sh-notes {
    max-width: 840px;
    margin: 0 auto;
}

.sh-note {
    padding: 28px 0;
    border-bottom: 1px solid #ececec;
}

.sh-note:first-child {
    border-top: 1px solid #ececec;
}

.sh-note-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    padding-left: 14px;
    border-left: 3px solid #c8102e;
    line-height: 1.3;
}

.sh-note p {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}

.sh-note p:last-child {
    margin-bottom: 0;
}

.sh-note strong {
    color: #c8102e;
    font-weight: 700;
}

.sh-note-small {
    font-size: 12.5px !important;
    color: #888 !important;
}

/* 配送業者 */
.sh-carriers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.sh-carrier {
    background: #fff;
    border: 1px solid #ececec;
    padding: 28px 26px 26px;
    border-top: 3px solid #c8102e;
}

.sh-carrier-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #ececec;
}

.sh-carrier-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.sh-carrier-sub {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.02em;
}

.sh-slot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.sh-slot-list li {
    font-size: 13.5px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px dashed #f4f4f4;
    letter-spacing: 0.02em;
}

.sh-slot-list li:last-child {
    border-bottom: none;
}

.sh-carrier-note,
.sh-carrier-desc {
    font-size: 12.5px;
    line-height: 1.85;
    color: #888;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .sh-hero {
        padding: 56px 0 40px;
    }
    .sh-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    .sh-lede {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .sh-hero-meta > div {
        padding: 12px 18px;
    }
    .sh-hero-meta dd {
        font-size: 14px;
    }
    .sh-section {
        padding: 48px 0;
    }
    .sh-section-head {
        margin-bottom: 32px;
    }
    .sh-section-title {
        font-size: 19px;
        letter-spacing: 1px;
    }
    .sh-timeline::before {
        left: 22px;
    }
    .sh-step {
        gap: 18px;
        padding-bottom: 28px;
    }
    .sh-step-num {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }
    .sh-step-marker {
        width: 44px;
    }
    .sh-step-title {
        font-size: 15.5px;
    }
    .sh-step-desc {
        font-size: 13px;
        line-height: 1.9;
    }
    .sh-country {
        font-size: 11.5px;
        padding: 5px 10px;
    }
    .sh-carriers {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sh-carrier {
        padding: 22px 20px;
    }
}

/* シンプルなリスト（配送ページ等と共通） */
.sh-plain-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 12px;
}

.sh-plain-list li {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    padding: 4px 0 4px 18px;
    position: relative;
    letter-spacing: 0.02em;
}

.sh-plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 1px;
    background: #c8102e;
}

/* ============================================================
   商品の返品特約 (returns) — 落ち着いたエディトリアル調
   ============================================================ */
/* 先読みサマリー */
.rt-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.rt-point {
    background: #fff;
    border: 1px solid #ececec;
    padding: 28px 26px 26px;
    position: relative;
}

.rt-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 2px;
    background: #c8102e;
}

.rt-point-kanji {
    display: inline-block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.rt-point p {
    font-size: 13.5px;
    line-height: 1.95;
    color: #4a4a4a;
    margin: 0;
    letter-spacing: 0.02em;
}

.rt-point strong {
    color: #c8102e;
    font-weight: 700;
}

/* 規約本文 */
.rt-clauses {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececec;
}

.rt-clause {
    display: flex;
    gap: 24px;
    padding: 30px 36px;
    border-bottom: 1px solid #f0f0f0;
}

.rt-clause:last-child {
    border-bottom: none;
}

.rt-clause-side {
    flex: 0 0 auto;
    width: 60px;
    padding-top: 4px;
}

.rt-clause-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8102e;
    letter-spacing: 1px;
}

.rt-clause-body {
    flex: 1 1 auto;
    min-width: 0;
}

.rt-clause-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ececec;
}

.rt-clause-content p {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}

.rt-clause-content p:last-child {
    margin-bottom: 0;
}

.rt-clause-content strong {
    color: #c8102e;
    font-weight: 700;
}

/* 連絡先 */
.rt-contact {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.rt-contact-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.rt-contact-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: #c8102e;
}

.rt-contact p {
    font-size: 13.5px;
    line-height: 1.9;
    color: #555;
    margin: 0 auto 18px;
    max-width: 520px;
    letter-spacing: 0.02em;
}

.rt-contact-mail {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #c8102e;
    text-decoration: none;
    padding: 10px 28px;
    border: 1px solid #c8102e;
    margin-bottom: 14px;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}

.rt-contact-mail:hover {
    background: #c8102e;
    color: #fff;
}

.rt-contact-sub {
    font-size: 12.5px !important;
    color: #888 !important;
}

@media (max-width: 900px) {
    .rt-points {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .rt-point {
        padding: 22px 20px;
    }
    .rt-point-kanji {
        font-size: 26px;
    }
    .rt-clause {
        flex-direction: column;
        gap: 10px;
        padding: 22px 22px;
    }
    .rt-clause-side {
        width: auto;
        padding-top: 0;
    }
    .rt-clause-num {
        font-size: 18px;
    }
    .rt-clause-title {
        font-size: 15.5px;
    }
    .rt-contact {
        padding: 36px 22px;
    }
    .rt-contact-mail {
        font-size: 15px;
        padding: 9px 20px;
    }
}

/* ============================================================
   取引注意事項 (notes)
   ============================================================ */
.nt-toc {
    display: flex;
    gap: 18px;
    max-width: 720px;
    margin: 0 auto;
    justify-content: center;
}

.nt-toc-item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
    background: #fff;
    border: 1px solid #ececec;
    border-top: 3px solid #c8102e;
    color: #1a1a1a;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nt-toc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -18px rgba(200, 16, 46, 0.25);
}

.nt-toc-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8102e;
    letter-spacing: 1px;
}

.nt-toc-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nt-section-kicker {
    font-size: 11px;
    letter-spacing: 3px;
    color: #999;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.nt-alert {
    margin-top: 14px !important;
    padding: 10px 14px;
    background: #fff6f7;
    border-left: 2px solid #c8102e;
    font-size: 13px !important;
    color: #c8102e !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nt-muted {
    color: #888;
    font-size: 12.5px;
    line-height: 1.85;
}

/* ケアグリッド */
.nt-care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.nt-care {
    background: #fff;
    border: 1px solid #ececec;
    padding: 32px 32px 30px;
    position: relative;
}

.nt-care-index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.nt-care-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    letter-spacing: 1px;
}

.nt-care-dash {
    flex: 1 1 auto;
    height: 1px;
    background: #ececec;
}

.nt-care-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.nt-care-desc {
    font-size: 13.5px;
    line-height: 2;
    color: #555;
    margin: 0;
    letter-spacing: 0.02em;
}

.nt-footnote {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 20px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.nt-footnote p {
    font-size: 13px;
    line-height: 1.9;
    color: #666;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .nt-toc {
        flex-direction: column;
        gap: 12px;
    }
    .nt-toc-item {
        padding: 16px 20px;
    }
    .nt-care-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .nt-care {
        padding: 24px 22px;
    }
    .nt-care-title {
        font-size: 15.5px;
    }
    .nt-care-desc {
        font-size: 13px;
        line-height: 1.9;
    }
}

/* ============================================================
   プライバシーポリシー (privacy-policy)
   ============================================================ */
.pp-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.pp-clause {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #ececec;
}

.pp-clause:first-child {
    padding-top: 8px;
}

.pp-clause:last-child {
    border-bottom: none;
}

.pp-clause-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
    border-right: 1px solid #ececec;
    padding-right: 24px;
}

.pp-clause-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    letter-spacing: 1px;
}

.pp-clause-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.pp-clause-body {
    min-width: 0;
}

.pp-clause-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.pp-clause-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #c8102e;
}

.pp-clause-content p {
    font-size: 14px;
    line-height: 2.05;
    color: #555;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}

.pp-clause-content p:last-child {
    margin-bottom: 0;
}

.pp-clause-content strong {
    color: #c8102e;
    font-weight: 700;
}

.pp-contact {
    max-width: 680px;
    margin: 64px auto 0;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #ececec;
}

.pp-contact p {
    font-size: 13.5px;
    line-height: 1.9;
    color: #666;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .pp-clause {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 0;
    }
    .pp-clause-side {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px dashed #ececec;
        padding-bottom: 12px;
    }
    .pp-clause-num {
        font-size: 22px;
    }
    .pp-clause-eyebrow {
        font-size: 10px;
    }
    .pp-clause-title {
        font-size: 16px;
    }
    .pp-clause-content p {
        font-size: 13.5px;
        line-height: 1.9;
    }
    .pp-contact {
        margin-top: 40px;
        padding-top: 28px;
    }
}

/* ============================================================
   ご利用規約 (terms)
   ============================================================ */
/* 目次 */
.tm-toc {
    max-width: 820px;
    margin: 0 auto;
    background: #fafafa;
    border: 1px solid #ececec;
    padding: 32px 40px;
}

.tm-toc-title {
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    font-weight: 700;
    margin: 0 0 18px;
    text-transform: uppercase;
    text-align: center;
}

.tm-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 32px;
    counter-reset: tm-toc;
}

.tm-toc-list li a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #e8e8e8;
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.tm-toc-list li a:hover {
    color: #c8102e;
}

.tm-toc-num {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: #c8102e;
    letter-spacing: 0.5px;
    min-width: 52px;
}

.tm-toc-label {
    font-size: 13.5px;
    letter-spacing: 0.02em;
}

/* 条文本文 */
.tm-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.tm-article {
    padding: 40px 0;
    border-bottom: 1px solid #ececec;
    scroll-margin-top: 100px;
}

.tm-article:first-child {
    padding-top: 8px;
}

.tm-article:last-child {
    border-bottom: none;
}

.tm-article-head {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c8102e;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.tm-article-num {
    flex: 0 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 700;
    color: #c8102e;
    letter-spacing: 1px;
    padding: 3px 10px;
    background: #fff1f3;
    border: 1px solid #f5c7ce;
}

.tm-article-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
}

.tm-article-body {
    font-size: 14px;
    line-height: 2.05;
    color: #555;
    letter-spacing: 0.02em;
}

.tm-article-body > p {
    margin: 0 0 12px;
}

.tm-article-body > p:last-child {
    margin-bottom: 0;
}

.tm-article-body strong {
    color: #c8102e;
    font-weight: 700;
}

.tm-ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: tm-article-item;
}

.tm-ol > li {
    counter-increment: tm-article-item;
    position: relative;
    padding: 6px 0 6px 32px;
    font-size: 14px;
    line-height: 2.05;
    color: #555;
    letter-spacing: 0.02em;
}

.tm-ol > li::before {
    content: counter(tm-article-item);
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #c8102e;
    color: #c8102e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tm-sub {
    list-style: none;
    padding: 8px 0 8px 0;
    margin: 10px 0 0;
    border-left: 2px solid #f0dfe2;
}

.tm-sub li {
    position: relative;
    padding: 4px 0 4px 20px;
    font-size: 13.5px;
    line-height: 1.95;
    color: #666;
    letter-spacing: 0.02em;
}

.tm-sub li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 16px;
    width: 6px;
    height: 1px;
    background: #c8102e;
}

@media (max-width: 900px) {
    .tm-toc {
        padding: 24px 20px;
    }
    .tm-toc-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .tm-toc-num {
        min-width: 46px;
    }
    .tm-article {
        padding: 28px 0;
    }
    .tm-article-head {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .tm-article-title {
        font-size: 16px;
    }
    .tm-article-body,
    .tm-ol > li {
        font-size: 13.5px;
        line-height: 1.95;
    }
}

/* ============================================================
   アフィリエートプログラム (affiliate)
   ============================================================ */
.af-hero {
    padding: 96px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #fff5f7 60%, #ffeaef 100%);
    border-bottom: 1px solid #f1d9dd;
}

.af-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.af-hero-text .sh-eyebrow {
    text-align: left;
    margin-bottom: 20px;
}

.af-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    letter-spacing: 1px;
    margin: 0 0 24px;
}

.af-hero-lede {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin: 0 0 32px;
    letter-spacing: 0.02em;
    max-width: 520px;
}

.af-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.af-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.af-btn--primary {
    background: #c8102e;
    color: #fff;
    border-color: #c8102e;
    box-shadow: 0 10px 24px -14px rgba(200, 16, 46, 0.55);
}

.af-btn--primary:hover {
    background: #a60d26;
    border-color: #a60d26;
}

.af-btn--ghost {
    background: transparent;
    color: #c8102e;
    border-color: #c8102e;
}

.af-btn--ghost:hover {
    background: #c8102e;
    color: #fff;
}

.af-hero-card {
    background: #fff;
    border: 1px solid #f5c7ce;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 24px 60px -30px rgba(200, 16, 46, 0.3);
    border-top: 4px solid #c8102e;
}

.af-hero-card-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    font-weight: 600;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.af-hero-card-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.af-hero-card-num span {
    font-size: 18px;
    color: #999;
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.af-hero-card-sub {
    font-size: 12.5px;
    line-height: 1.85;
    color: #777;
    margin: 0;
    letter-spacing: 0.02em;
}

/* スタッツ */
.af-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid #ececec;
    background: #fff;
}

.af-stat {
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid #ececec;
}

.af-stat:last-child {
    border-right: none;
}

.af-stat-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 700;
    color: #c8102e;
    line-height: 1;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.af-stat-unit {
    font-size: 18px;
    color: #999;
    font-weight: 500;
}

.af-stat-label {
    margin-top: 12px;
    font-size: 12.5px;
    color: #777;
    letter-spacing: 1px;
}

/* 選ぶ理由 */
.af-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.af-reason {
    background: #fff;
    border: 1px solid #ececec;
    padding: 32px 30px;
    border-top: 3px solid #c8102e;
}

.af-reason-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ececec;
}

.af-reason p {
    font-size: 13.5px;
    line-height: 1.95;
    color: #555;
    margin: 0;
    letter-spacing: 0.02em;
}

/* 注意事項 */
.af-notice-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 860px;
}

.af-notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #ececec;
}

.af-notice-list li:first-child {
    border-top: 1px solid #ececec;
}

.af-notice-num {
    flex: 0 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    color: #c8102e;
    min-width: 32px;
    line-height: 1.5;
}

.af-notice-text {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.95;
    color: #555;
    letter-spacing: 0.02em;
}

/* 申込みフォーム */
.af-form {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececec;
    padding: 48px 52px;
}

.af-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
}

.af-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.af-field--full {
    grid-column: 1 / -1;
}

.af-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
}

.af-label em {
    display: inline-block;
    font-style: normal;
    font-size: 10px;
    color: #fff;
    background: #c8102e;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 2px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.af-field input,
.af-field select,
.af-field textarea {
    font-family: inherit;
    font-size: 14px;
    color: #1a1a1a;
    padding: 12px 14px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.af-field textarea {
    resize: vertical;
    min-height: 110px;
}

.af-field input:focus,
.af-field select:focus,
.af-field textarea:focus {
    border-color: #c8102e;
    background: #fff;
}

.af-field input::placeholder,
.af-field textarea::placeholder {
    color: #b8b8b8;
}

.af-form-actions {
    margin-top: 32px;
    text-align: center;
}

.af-btn--submit {
    padding: 16px 48px;
    font-size: 15px;
}

.af-form-note {
    margin: 16px 0 0;
    font-size: 12px;
    color: #888;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

@media (max-width: 960px) {
    .af-hero {
        padding: 64px 0 52px;
    }
    .af-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .af-hero-title {
        font-size: 26px;
        line-height: 1.5;
    }
    .af-hero-lede {
        font-size: 14px;
    }
    .af-hero-card {
        padding: 32px 24px;
    }
    .af-hero-card-num {
        font-size: 44px;
    }
    .af-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .af-stat {
        border-right: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }
    .af-stat:nth-child(2n) {
        border-right: none;
    }
    .af-stat:nth-child(n + 3) {
        border-bottom: none;
    }
    .af-stat-num {
        font-size: 30px;
    }
    .af-reasons {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .af-reason {
        padding: 24px 22px;
    }
    .af-form {
        padding: 32px 22px;
    }
    .af-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .af-btn--submit {
        padding: 14px 28px;
        font-size: 14px;
    }
}
