/* /menu.css — 公開メニューページ スタイル
 * 2026-05-05: WAF 回避のため menu.php から CSS 外出し
 */

:root {
    --bg:        #1c130d;
    --panel:     #251a14;
    --panel-2:   #2d2018;
    --line:      #3d2c20;
    --text:      #f3e9d8;
    --text-mute: #b8a890;
    --accent:    #c9a063;
    --accent-2:  #8b4513;
    --accent-3:  #d4af37;
    --line-green:#06c755;
    --hpb-orange:#ff6c00;
    --tel-blue:  #2a7ec5;
    --bg-female: #e91e63;
    --bg-male:   #2196f3;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
}
a { color: var(--accent-3); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== sticky-top: ヘッダ + タブ を 一括で 上部固定 ===== */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, #2d2018 0%, #1c130d 100%);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* ===== ヘッダ ===== */
.site-header {
    padding: 14px 16px 8px;
    text-align: center;
}
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 4px;
}
.brand-mark {
    font-size: 22px;
    color: var(--accent-3);
    line-height: 1;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.brand-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-3);
    letter-spacing: 0.12em;
    line-height: 1.2;
}
.site-header .sub {
    font-size: 10px;
    color: var(--accent-3);
    letter-spacing: 0.18em;
    opacity: 0.65;
}
@media (min-width: 480px) {
    .brand-name { font-size: 21px; }
    .brand-mark { font-size: 26px; }
}

/* ===== タブ ===== */
.tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--line);
}
.tab {
    flex: 1;
    padding: 12px 2px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mute);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-family: inherit;
    letter-spacing: 0;
}
@media (min-width: 480px) {
    .tab { font-size: 14px; padding: 14px 4px; }
}
.tab.active {
    color: var(--accent-3);
    border-bottom-color: var(--accent);
}
.tab-icon { display: block; font-size: 18px; margin-bottom: 2px; }

/* ===== コンテナ ===== */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 14px 64px;
}
.panel { display: none; }
.panel.active { display: block; }

/* ===== カード ===== */
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.card-img {
    /* 2026-05-05: 元画像の縦横比に追従 (LIFFメニューと同じ方針)。
       cover + aspect-ratio で 強制切抜きすると 上下が見切れる事故になるため、
       width 固定 + height auto で 画像全体を 必ず表示。 */
    width: 100%;
    height: auto;
    max-height: 60vh; /* 縦長画像の暴走防止 (画面の60%まで) */
    object-fit: contain;
    background: var(--panel-2);
    border-bottom: 1px solid var(--line);
    display: block;
}
.card-body { padding: 14px 14px 16px; }
.card-title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-3);
    line-height: 1.4;
}
.card-desc {
    font-size: 13px;
    color: var(--text);
    margin: 0 0 12px;
    white-space: pre-wrap;
    line-height: 1.7;
}

/* バッジ */
.badge {
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 999px;
    margin: 0 4px 4px 0;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: var(--panel-2);
    color: var(--text);
    border: 1px solid var(--line);
    vertical-align: middle;
}
.badge-female { background: var(--bg-female); color: #fff; border-color: var(--bg-female); }
.badge-male   { background: var(--bg-male);   color: #fff; border-color: var(--bg-male); }
.badge-new    { background: #4caf50; color: #fff; border-color: #4caf50; }
.badge-repeat { background: #9c27b0; color: #fff; border-color: #9c27b0; }
.badge-birth  { background: #ff9800; color: #fff; border-color: #ff9800; }
.badge-first  { background: #00bcd4; color: #fff; border-color: #00bcd4; }
.badge-day    { background: #795548; color: #fff; border-color: #795548; }
.badge-age    { background: #607d8b; color: #fff; border-color: #607d8b; }
.badge-code   { background: #f44336; color: #fff; border-color: #f44336; }
.badge-period { background: linear-gradient(135deg, #f06292 0%, #d4af37 100%); color: #fff; border: none; }
.badges-row { margin: 0 0 10px; }

/* 特別プラン: 含まれるオプション 一覧 / オプション: 対象メニュー 一覧 (共通スタイル) */
.included-options,
.target-menus {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    padding: 10px 12px;
    margin: 10px 0;
}
.included-options strong,
.target-menus strong {
    display: block;
    color: var(--accent-3);
    font-size: 13px;
    margin-bottom: 6px;
}
.included-options ul,
.target-menus ul {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: none;
}
.included-options li,
.target-menus li {
    font-size: 13px;
    color: var(--text);
    padding: 2px 0;
    position: relative;
}
.included-options li::before,
.target-menus li::before {
    content: "・";
    position: absolute;
    left: -14px;
    color: var(--accent);
}

/* 価格テーブル */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0 14px;
    background: var(--panel-2);
    border-radius: 6px;
    overflow: hidden;
}
.price-table th, .price-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: none; }
.price-table th {
    width: 22%;
    font-weight: 600;
    color: var(--accent-3);
    background: rgba(0,0,0,0.15);
    text-align: center;
}
.price-table td { color: var(--text); }
.price-table .ptype {
    display: inline-block;
    font-size: 10px;
    color: var(--text-mute);
    background: rgba(0,0,0,0.25);
    padding: 2px 5px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
}
.price-table .pval {
    font-weight: 700;
    color: var(--text);
    vertical-align: middle;
}

/* オプション・クーポン用シンプル価格 */
.simple-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-3);
    margin: 4px 0 10px;
}
.simple-price small { font-size: 11px; color: var(--text-mute); font-weight: 400; margin-left: 6px; }
.discount-line { font-size: 17px; font-weight: 700; color: var(--accent-3); margin: 6px 0 10px; }
.period-line { font-size: 12px; color: var(--text-mute); margin: 0 0 6px; }
.scope-line  { font-size: 12px; color: var(--text-mute); margin: -4px 0 8px; }

/* ===== 予約ボタン群 ===== */
.book-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: opacity 0.2s, transform 0.1s;
    font-family: inherit;
    cursor: pointer;
}
.btn:active { transform: scale(0.98); }

/* メイン LINE: ゴールド塗りで 強調 */
.btn-line {
    background: linear-gradient(180deg, var(--accent-3) 0%, var(--accent) 100%);
    color: #1c130d;
    border-color: var(--accent-3);
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
/* サブ HPB / 電話: 控えめ ゴールド枠 */
.btn-hpb,
.btn-tel {
    background: rgba(212, 175, 55, 0.06);
    color: var(--accent-3);
    border-color: rgba(212, 175, 55, 0.4);
}
.btn-icon { font-size: 18px; line-height: 1; }
.btn-sub { font-size: 11px; opacity: 0.78; font-weight: 500; margin-left: 4px; }
.btn-line .btn-sub { color: rgba(28, 19, 13, 0.7); opacity: 1; }

/* 注記 */
.note {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text-mute);
    margin: 0 0 18px;
    line-height: 1.6;
}
/* 2026-07-02: 注意書き 文字サイズ調整 (設定→各管理パネル から選択)。 既定(未指定)は 従来通り 12px。 */
.note--size-md { font-size: 14px; }
.note--size-lg { font-size: 16px; }
.note strong { color: var(--accent-3); }

/* 空表示 */
.empty {
    text-align: center;
    color: var(--text-mute);
    padding: 60px 20px;
    font-size: 14px;
}

/* タブ下部 共通 連絡先 */
.contact-foot {
    margin-top: 28px;
    padding: 18px 14px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
}
.contact-foot h3 {
    margin: 0 0 12px;
    color: var(--accent-3);
    font-size: 15px;
}
.contact-foot .book-btns { max-width: 360px; margin: 0 auto; }

/* ===== お知らせ (キャンセルポリシー / 確認事項) ===== */
.notices {
    max-width: 720px;
    margin: 32px auto 0;
    padding: 0 14px;
}
.notices-title {
    color: var(--accent-3);
    font-size: 13px;
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: 0.15em;
    font-weight: 600;
    opacity: 0.9;
}
.notice-acc {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.notice-acc summary {
    padding: 14px 16px;
    cursor: pointer;
    color: var(--accent-3);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    list-style: none;
    user-select: none;
    position: relative;
    transition: background 0.2s;
}
.notice-acc summary::-webkit-details-marker { display: none; }
.notice-acc summary::after {
    content: "▾";
    margin-left: auto;
    color: var(--accent);
    transition: transform 0.25s;
    font-size: 12px;
}
.notice-acc[open] summary::after { transform: rotate(180deg); }
.notice-acc summary:hover { background: rgba(212, 175, 55, 0.04); }
.notice-icon {
    margin-right: 10px;
    font-size: 16px;
}
.notice-body {
    padding: 4px 16px 16px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text);
    border-top: 1px dashed var(--line);
    margin-top: 4px;
    padding-top: 14px;
}
.notice-item {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
}
.notice-item:last-child { border-bottom: none; padding-bottom: 0; }
.notice-item-no {
    flex-shrink: 0;
    color: var(--accent-3);
    font-weight: 700;
    min-width: 22px;
}
.notice-item-text {
    flex: 1;
    font-size: 12.5px;
    line-height: 1.7;
}
/* mypage_cards 用 — 直接リンク (type: url / tel) */
.notice-link {
    display: flex;
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 10px;
    color: var(--accent-3);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.notice-link:hover, .notice-link:active { background: rgba(212, 175, 55, 0.06); }
.notice-link-title { flex: 1; margin-left: 6px; }
.notice-link-arrow { margin-left: auto; color: var(--accent); font-size: 14px; }

/* mypage_cards 用 — 画像 / 本文 */
.notice-image {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    background: var(--panel-2);
    border-radius: 6px;
    margin-bottom: 10px;
    display: block;
}
.notice-text { white-space: pre-wrap; }
.notice-inline-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    color: var(--accent-3);
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
}
.notice-inline-link:hover, .notice-inline-link:active { background: rgba(212, 175, 55, 0.18); }

/* ===== トップへ戻る フローティングボタン ===== */
.to-top {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent-3) 0%, var(--accent) 100%);
    color: #1c130d;
    border: 1px solid var(--accent-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 0 8px rgba(212, 175, 55, 0.25);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 200;
    pointer-events: none;
    font-family: inherit;
    padding: 0;
    line-height: 1;
}
.to-top.visible {
    opacity: 0.95;
    transform: translateY(0);
    pointer-events: auto;
}
.to-top:active { transform: scale(0.92); opacity: 1; }

/* ===== 店舗情報 (リッチ) ===== */
.shop-info {
    position: relative;
    margin: 56px 0 0;
    padding: 48px 20px 36px;
    background: linear-gradient(180deg, #1a110a 0%, var(--panel) 60%, #1a110a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.shop-info::before, .shop-info::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 280px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}
.shop-info::before { top: 12px; }
.shop-info::after  { bottom: 12px; }

.shop-info-ornament {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 32px;
    background: var(--bg);
    text-align: center;
    line-height: 32px;
}
.shop-info-ornament span {
    color: var(--accent-3);
    font-size: 24px;
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

.shop-info-title {
    margin: 0 auto 4px;
    color: var(--accent-3);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.4em;
    opacity: 0.85;
}
.shop-info .shop-name {
    margin: 0 0 4px;
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.18em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.shop-info .shop-tagline {
    margin: 0 0 28px;
    font-size: 11px;
    color: var(--text-mute);
    text-align: center;
    letter-spacing: 0.25em;
    opacity: 0.8;
}

.shop-blocks {
    max-width: 540px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.shop-block {
    padding: 14px 16px 16px;
    background: rgba(212, 175, 55, 0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.shop-block-title {
    color: var(--accent-3);
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.95;
}
.shop-block-content {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text);
}
.shop-block-sub {
    display: inline-block;
    color: var(--text-mute);
    font-size: 11px;
    margin-left: 4px;
}
.shop-link-row {
    margin-top: 6px;
}
.shop-landmarks {
    margin: 8px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.shop-landmark-row {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.03em;
    line-height: 1.6;
}
.shop-link {
    color: var(--accent-3);
    text-decoration: none;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.6);
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.shop-link:hover, .shop-link:active { opacity: 0.7; }
.shop-link.big-tel {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: none;
    padding: 6px 0 2px;
}

@media (min-width: 600px) {
    .shop-info { padding: 56px 30px 40px; }
    .shop-blocks {
        grid-template-columns: 1fr 1fr;
    }
    .shop-block-title { font-size: 12px; }
}

/* ===== 予約 CTA (店舗情報の下) — ゴールド基調で 統一 ===== */
.booking-cta {
    background: linear-gradient(180deg, var(--bg) 0%, #14100a 100%);
    padding: 24px 16px 28px;
}
.cta-heading {
    text-align: center;
    color: var(--accent-3);
    font-size: 11px;
    letter-spacing: 0.4em;
    margin: 0 0 14px;
    opacity: 0.85;
}
.cta-buttons {
    max-width: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 10px;
}
.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 4px;
    border-radius: 6px;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.2;
    transition: all 0.25s;
    min-height: 78px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%);
    color: var(--accent-3);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25), inset 0 1px 0 rgba(212, 175, 55, 0.08);
}
.cta-btn:active { transform: scale(0.97); }

/* メイン: LINE — ゴールド塗りで 強調 */
.cta-line {
    background: linear-gradient(180deg, var(--accent-3) 0%, var(--accent) 100%);
    color: #1c130d;
    border-color: var(--accent-3);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
}
.cta-line .cta-label { font-weight: 700; }
.cta-line .cta-sub { color: rgba(28, 19, 13, 0.75); }

.cta-icon { font-size: 22px; line-height: 1; margin-bottom: 5px; opacity: 0.9; }
.cta-line .cta-icon { opacity: 1; }
.cta-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }
.cta-sub { font-size: 10px; opacity: 0.7; margin-top: 2px; letter-spacing: 0.05em; }

/* フッター */
.site-footer {
    text-align: center;
    color: var(--text-mute);
    font-size: 11px;
    padding: 18px 16px 28px;
    background: var(--bg);
    letter-spacing: 0.05em;
}

/* 大きめ画面 */
@media (min-width: 600px) {
    .card-title { font-size: 19px; }
    .container { padding: 22px 18px 64px; }
    .shop-info { margin: 40px auto 0; }
}

/* ────────────────────────────────────────────
 * 2026-05-08: メニュー外部リンク (LP等) ボタン スタイル 5種
 * ──────────────────────────────────────────── */
.ext-link-wrap { display: flex; justify-content: center; }
.btn-ext-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
    cursor: pointer;
}

/* スタイル1: シンプル (枠線のみ) */
.ext-link-style-simple .btn-ext-link {
    padding: 8px 16px;
    border: 1px solid var(--accent, #d4af37);
    background: transparent;
    color: var(--accent, #d4af37);
    border-radius: 6px;
    font-size: 13px;
}
.ext-link-style-simple .btn-ext-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* スタイル2: アクセント (ゴールド塗り) */
.ext-link-style-accent .btn-ext-link {
    padding: 10px 20px;
    background: var(--accent, #d4af37);
    color: #1c130d;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}
.ext-link-style-accent .btn-ext-link:hover {
    background: #c79d2c;
    transform: translateY(-1px);
}

/* スタイル3: 目立つ (大きめCTA) */
.ext-link-style-cta .btn-ext-link {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent, #d4af37), #b8941f);
    color: #1c130d;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    text-transform: none;
    letter-spacing: 0.02em;
}
.ext-link-style-cta .btn-ext-link::after { content: " ➜"; }
.ext-link-style-cta .btn-ext-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.45);
}

/* スタイル4: 写真風 (背景画像 + 半透明オーバーレイ) */
.ext-link-style-photo .btn-ext-link {
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(28, 19, 13, 0.7), rgba(28, 19, 13, 0.5)), var(--accent, #d4af37);
    color: #fff;
    border: 1px solid var(--accent, #d4af37);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
}
.ext-link-style-photo .btn-ext-link::after { content: " 📖"; }
.ext-link-style-photo .btn-ext-link:hover {
    background: linear-gradient(135deg, rgba(28, 19, 13, 0.5), rgba(28, 19, 13, 0.3)), var(--accent, #d4af37);
}

/* スタイル5: ミニマル (テキストリンク) */
.ext-link-style-minimal .btn-ext-link {
    padding: 4px 10px;
    background: transparent;
    color: var(--accent, #d4af37);
    border: none;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 500;
}
.ext-link-style-minimal .btn-ext-link::after { content: " →"; opacity: .7; }
.ext-link-style-minimal .btn-ext-link:hover { color: #c79d2c; }
