/* review.css — crafters-jin */

.review-wrap {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    font-family: inherit;
}

/* ————————————————————————
   ヒーロー
———————————————————————— */
.rv-hero {
    padding: 32px 36px 26px;
    border-bottom: 1px solid #e2ddd6;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.rv-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27500A 0%, #5a9e18 60%, #3B6D11 100%);
}
.rv-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #3B6D11;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.rv-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #3B6D11;
}
.rv-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 8px 0 18px;
    line-height: 1.3;
    letter-spacing: 0.02em;
}
.rv-meta-row { display: flex; gap: 6px; flex-wrap: wrap; }
.rv-tag      { font-size: 12px; padding: 4px 13px; border-radius: 20px; display: inline-block; letter-spacing: 0.04em; font-weight: 500; }
.rv-tag.green { background: #EAF3DE; color: #27500A; border: 1px solid #b8d88a; }
.rv-tag.gray  { background: #f0efeb; color: #555; border: 1px solid #d5d2cb; }

/* ————————————————————————
   メイン
———————————————————————— */
.rv-main { padding: 28px 36px; background: #ffffff; }

/* サムネイル */
.rv-thumb     { border-radius: 10px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.rv-thumb img { width: 100%; height: auto; display: block; }

/* ————————————————————————
   目次
———————————————————————— */
.rv-toc {
    background: #ffffff;
    border: 1px solid #e2ddd6;
    border-radius: 10px;
    padding: 22px 28px;
    margin-bottom: 32px;
    counter-reset: toc-counter;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.rv-toc-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2ddd6;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.rv-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.rv-toc-list li {
    counter-increment: toc-counter;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #e2ddd6;
}
.rv-toc-list li:last-child { border-bottom: none; }
.rv-toc-list li::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-size: 11px;
    font-weight: 700;
    color: #3B6D11;
    flex-shrink: 0;
    min-width: 22px;
}
.rv-toc-list a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.15s;
}
.rv-toc-list a:hover { color: #3B6D11; }

/* ————————————————————————
   セクションタイトル
———————————————————————— */
.rv-section-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #3B6D11;
    text-transform: uppercase;
    margin-bottom: 14px;
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.rv-section-title::after { content: ''; flex: 1; height: 1px; background: #d8d4cc; }
.rv-section-title:first-child { margin-top: 0; }

/* ————————————————————————
   蒸留所カード
———————————————————————— */
.rv-distillery-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 22px;
    border: 1px solid #e2ddd6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.rv-distillery-name { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.rv-distillery-pref { font-size: 13px; color: #888780; margin-bottom: 14px; }
.rv-distillery-link {
    font-size: 12px;
    color: #27500A;
    text-decoration: none;
    padding: 7px 16px;
    border: 1px solid #b8d88a;
    border-radius: 6px;
    background: #EAF3DE;
    display: inline-block;
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s;
}
.rv-distillery-link:hover { background: #d2eab8; border-color: #95c65a; }

/* ————————————————————————
   スペック
———————————————————————— */
.rv-spec-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.rv-spec-item  { background: #ffffff; border-radius: 10px; padding: 16px 18px; border: 1px solid #e2ddd6; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.rv-spec-label { font-size: 10px; color: #888780; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.rv-spec-val   { font-size: 22px; font-weight: 700; color: #1a1a1a; }
.rv-spec-full  { grid-column: span 4; }
.rv-spec-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }

/* ————————————————————————
   味わい（PC横並び）
———————————————————————— */
.rv-taste-pc              { display: flex; gap: 28px; align-items: flex-start; }
.rv-taste-pc .rv-chart-wrap { flex-shrink: 0; }
.rv-taste-pc .rv-taste-bars { flex: 1; padding-top: 10px; }
.rv-taste-mobile          { display: none; }

/* レーダーチャート */
.rv-chart-wrap {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e2ddd6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 272px;
    height: 272px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.rv-chart-wrap canvas { display: block !important; }

/* 味わいバー */
.rv-taste-bars  { display: flex; flex-direction: column; gap: 14px; }
.rv-taste-row   { display: flex; align-items: center; gap: 12px; }
.rv-taste-label { font-size: 13px; color: #555; width: 90px; flex-shrink: 0; }
.rv-taste-track { flex: 1; height: 7px; background: #e2ddd6; border-radius: 4px; overflow: hidden; }
.rv-taste-fill  { height: 100%; background: linear-gradient(90deg, #3B6D11 0%, #68a81c 100%); border-radius: 4px; transition: width 0.6s ease; }
.rv-taste-val   { font-size: 13px; font-weight: 600; color: #3B6D11; width: 22px; text-align: right; flex-shrink: 0; }

/* ————————————————————————
   スマホ：タブ切り替え
———————————————————————— */
.rv-taste-tabs { display: flex; margin-bottom: 14px; border: 1px solid #e2ddd6; border-radius: 8px; overflow: hidden; background: #f0ede8; }
.rv-taste-tab {
    flex: 1;
    font-size: 13px;
    padding: 10px;
    border: none;
    background: transparent;
    color: #888780;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.rv-taste-tab.active { background: #EAF3DE; color: #27500A; }

/* ————————————————————————
   タグ
———————————————————————— */
.rv-tag-wrap { display: flex; flex-wrap: wrap; gap: 6px; }

/* ————————————————————————
   本文
———————————————————————— */
.rv-content   { font-size: 15px; color: #333; line-height: 2; }
.rv-content p { margin-bottom: 1.4em; color: #333; }

/* ————————————————————————
   本文 見出し
———————————————————————— */
.rv-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2em 0 0.8em;
    padding: 0.7em 1em;
    background: #EAF3DE;
    border-left: 4px solid #3B6D11;
    border-radius: 0 6px 6px 0;
    line-height: 1.5;
}
.rv-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.6em 0 0.6em;
    padding: 0.5em 0;
    border-bottom: 2px solid #3B6D11;
    line-height: 1.5;
}
.rv-content ul  { padding-left: 1.4em; margin-bottom: 1em; }
.rv-content li  { margin-bottom: 0.4em; color: #333; }
.rv-content img { max-width: 100%; border-radius: 8px; margin: 1em 0; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* ————————————————————————
   フッター
———————————————————————— */
.rv-footer    { padding: 18px 36px; border-top: 1px solid #e2ddd6; background: #ffffff; display: flex; align-items: center; justify-content: space-between; }
.rv-back-link { font-size: 13px; color: #555; text-decoration: none; transition: color 0.15s; }
.rv-back-link:hover { color: #3B6D11; }
.rv-date      { font-size: 12px; color: #888780; letter-spacing: 0.08em; }

/* ————————————————————————
   レスポンシブ
———————————————————————— */
@media (max-width: 680px) {
    .rv-hero   { padding: 22px 18px 18px; }
    .rv-main   { padding: 18px 16px; }
    .rv-footer { padding: 14px 18px; }
    .rv-toc    { padding: 16px 18px; }

    .rv-title  { font-size: 22px; }

    .rv-spec-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .rv-spec-full { grid-column: span 2; }
    .rv-spec-val  { font-size: 17px; }

    .rv-taste-pc     { display: none; }
    .rv-taste-mobile { display: block; }

    .rv-chart-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 300px;
        padding: 12px;
        margin: 0 auto;
    }
}
