@charset "UTF-8";
/* ==========================================================================
   カスタマイズ用CSS
   商品詳細ページ（RESP-ACT）の可読性・レイアウト改善  2026-07-13 木本
   ========================================================================== */

:root {
    --rp-ink: #1c1c1e;
    --rp-sub: #5c5c66;
    --rp-line: #e6e6ea;
    --rp-bg: #faf9f7;
    --rp-gold: #b8912f;
    --rp-gold-lt: #f3ead6;
}

/* --------------------------------------------------------------------------
   1. 商品詳細：説明文エリア（グリッドの外＝フル幅で表示）
   -------------------------------------------------------------------------- */
.ec-productRole .rp-detail {
    max-width: 860px;
    margin: 56px auto 0;
    padding: 0 4px;
    color: var(--rp-ink);
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .02em;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
}

/* 見出し */
.ec-productRole .rp-detail h2,
.ec-productRole .rp-detail h3,
.ec-productRole .rp-detail h4 {
    margin: 48px 0 20px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--rp-line);
    color: var(--rp-ink);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
    position: relative;
}
.ec-productRole .rp-detail h2::after,
.ec-productRole .rp-detail h3::after,
.ec-productRole .rp-detail h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 3px;
    background: var(--rp-gold);
}
.ec-productRole .rp-detail > h3:first-child,
.ec-productRole .rp-detail > h2:first-child {
    margin-top: 0;
}

/* 本文 */
.ec-productRole .rp-detail p {
    margin: 0 0 20px;
}
.ec-productRole .rp-detail strong {
    font-weight: 700;
}
.ec-productRole .rp-detail small {
    display: inline-block;
    margin-top: 4px;
    color: var(--rp-sub);
    font-size: 13px;
    line-height: 1.7;
}
.ec-productRole .rp-detail a {
    color: var(--rp-gold);
    text-decoration: underline;
}

/* 余分な空行（連続する br）を抑制 */
.ec-productRole .rp-detail > br,
.ec-productRole .rp-detail dl > br,
.ec-productRole .rp-detail ul > br,
.ec-productRole .rp-detail ol > br,
.ec-productRole .rp-detail table > br,
.ec-productRole .rp-detail tbody > br,
.ec-productRole .rp-detail br + br {
    display: none;
}

/* 表（商品情報・栄養成分表示） */
.ec-productRole .rp-detail table {
    width: 100%;
    margin: 0 0 24px;
    border-collapse: collapse;
    border-top: 1px solid var(--rp-line);
    font-size: 15px;
    background: #fff;
}
.ec-productRole .rp-detail th,
.ec-productRole .rp-detail td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--rp-line);
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}
.ec-productRole .rp-detail th {
    width: 32%;
    min-width: 8em;
    background: var(--rp-bg);
    color: var(--rp-sub);
    font-weight: 600;
    white-space: nowrap;
}
.ec-productRole .rp-detail td {
    color: var(--rp-ink);
}

/* よくあるご質問 */
.ec-productRole .rp-detail dl {
    margin: 0 0 24px;
}
.ec-productRole .rp-detail dt {
    margin: 0;
    padding: 16px 18px 12px;
    background: var(--rp-bg);
    border-left: 3px solid var(--rp-gold);
    font-weight: 700;
    line-height: 1.7;
}
.ec-productRole .rp-detail dd {
    margin: 0 0 16px;
    padding: 14px 18px 18px;
    border-left: 3px solid var(--rp-line);
    color: var(--rp-sub);
    line-height: 1.9;
}

/* 注意書き等のリスト */
.ec-productRole .rp-detail ul,
.ec-productRole .rp-detail ol {
    margin: 0 0 24px;
    padding-left: 1.4em;
    list-style: none;
}
.ec-productRole .rp-detail ol {
    list-style: decimal;
    padding-left: 1.6em;
}
.ec-productRole .rp-detail ul > li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.9;
}
.ec-productRole .rp-detail ul > li::before {
    content: "";
    position: absolute;
    left: -1.1em;
    top: .78em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rp-gold);
}
.ec-productRole .rp-detail ol > li {
    margin-bottom: 10px;
    line-height: 1.9;
}

/* 説明内の画像 */
.ec-productRole .rp-detail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px;
}

/* --------------------------------------------------------------------------
   2. 商品詳細：上部（画像・価格・カート）の微調整
   -------------------------------------------------------------------------- */
.ec-productRole__title .ec-headingTitle {
    font-size: 26px;
    line-height: 1.5;
}
.ec-productRole__price .ec-price__price {
    color: #c9302c;
    font-weight: 700;
}
.ec-productRole__btn {
    max-width: 320px;
}
.ec-sliderItemRole .item_visual img,
.ec-sliderItemRole .slideThumb img {
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. スマートフォン
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
    .ec-productRole .rp-detail {
        margin-top: 32px;
        padding: 0;
        font-size: 15px;
        line-height: 1.85;
    }
    .ec-productRole .rp-detail h2,
    .ec-productRole .rp-detail h3,
    .ec-productRole .rp-detail h4 {
        margin: 36px 0 16px;
        font-size: 18px;
    }
    /* 表：ラベルと値を縦積みにして横スクロールを防ぐ */
    .ec-productRole .rp-detail table,
    .ec-productRole .rp-detail tbody,
    .ec-productRole .rp-detail tr,
    .ec-productRole .rp-detail th,
    .ec-productRole .rp-detail td {
        display: block;
        width: 100%;
    }
    .ec-productRole .rp-detail table {
        border-top: none;
    }
    .ec-productRole .rp-detail tr {
        margin-bottom: 8px;
        border: 1px solid var(--rp-line);
        border-radius: 4px;
        overflow: hidden;
    }
    .ec-productRole .rp-detail th {
        min-width: 0;
        padding: 10px 14px;
        border-bottom: 1px solid var(--rp-line);
        font-size: 13px;
        white-space: normal;
    }
    .ec-productRole .rp-detail td {
        padding: 12px 14px;
        border-bottom: none;
    }
    .ec-productRole .rp-detail dt {
        padding: 14px 14px 10px;
    }
    .ec-productRole .rp-detail dd {
        padding: 12px 14px 14px;
    }
    .ec-productRole__btn {
        max-width: 100%;
    }
    .ec-productRole__title .ec-headingTitle {
        font-size: 20px;
    }
}

/* ==========================================================================
   ショップ全体の体裁（RESP-ACT SHOP / 黒×ゴールド）  2026-07-13 木本
   ========================================================================== */

body {
    color: var(--rp-ink);
}

/* ---- ヘッダー ---- */
.ec-layoutRole__header {
    background: #111114;
}
.ec-headerNaviRole {
    padding: 12px 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.ec-headerNaviRole .ec-headerNav__item,
.ec-headerNaviRole .ec-headerNav__itemIcon,
.ec-headerNaviRole .ec-headerNaviRole__nav a,
.ec-headerRole__cart a,
.ec-cartNavi__price,
.ec-cartNavi {
    color: #fff !important;
}
.ec-headerNaviRole .ec-headerNaviRole__nav a:hover,
.ec-headerRole__cart a:hover {
    color: var(--rp-gold) !important;
    opacity: 1;
}
.ec-headerRole {
    padding: 22px 0 18px;
    margin-bottom: 0;
}
.ec-headerRole__title .ec-headerTitle__title h1 {
    margin: 0;
}
.ec-headerRole__title .ec-headerTitle__title h1 a {
    display: inline-block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .18em;
    text-decoration: none;
    line-height: 1.2;
}
.ec-headerRole__title .ec-headerTitle__title h1 a:hover {
    color: #fff;
    opacity: .85;
}
.rp-logo__sub {
    display: inline-block;
    margin-left: .5em;
    color: var(--rp-gold);
    font-size: .58em;
    letter-spacing: .3em;
    vertical-align: middle;
}
.ec-headerSearch .ec-select select,
.ec-headerSearch .ec-input input {
    border-radius: 2px;
}

/* カテゴリナビ */
.ec-categoryNaviRole {
    background: #111114;
    padding-bottom: 14px;
}
.ec-itemNav__nav li a {
    background: transparent;
    color: #fff;
    font-weight: 500;
    letter-spacing: .06em;
}
.ec-itemNav__nav li a:hover {
    background: transparent;
    color: var(--rp-gold);
}
.ec-itemNav__nav li ul li a {
    background: #1c1c20;
    color: #fff;
}
.ec-itemNav__nav li ul li a:hover {
    background: var(--rp-gold);
    color: #111114;
}

/* ---- フッター ---- */
.ec-footerRole {
    margin-top: 72px;
    background: #111114;
    border-top: 3px solid var(--rp-gold);
}
.ec-footerNavi__link a {
    color: #fff;
    letter-spacing: .04em;
}
.ec-footerNavi__link a:hover {
    color: var(--rp-gold);
    text-decoration: none;
}
.ec-footerTitle__logo a {
    color: #fff;
    font-size: 20px;
    letter-spacing: .18em;
}
.ec-footerTitle__logo a:hover {
    color: var(--rp-gold);
    text-decoration: none;
}
.ec-footerTitle__copyright {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    letter-spacing: .04em;
}

/* ---- ボタン ---- */
.ec-blockBtn--action,
.ec-inlineBtn--action,
.ec-blockBtn--top {
    background: var(--rp-gold);
    border-color: var(--rp-gold);
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 2px;
    transition: opacity .2s;
}
.ec-blockBtn--action:hover,
.ec-inlineBtn--action:hover,
.ec-blockBtn--top:hover {
    background: #a37f26;
    border-color: #a37f26;
    color: #fff;
    opacity: 1;
}
.ec-blockBtn--cancel,
.ec-inlineBtn--cancel {
    background: #2b2b31;
    border-color: #2b2b31;
    color: #fff;
    border-radius: 2px;
    letter-spacing: .08em;
}
.ec-blockBtn--cancel:hover,
.ec-inlineBtn--cancel:hover {
    background: #45454e;
    border-color: #45454e;
    color: #fff;
}

/* ---- 見出し・パンくず ---- */
.ec-pageHeader h1 {
    margin: 0 0 24px;
    padding: 0 0 12px 0;
    border-top: none;
    border-bottom: 1px solid var(--rp-line);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .06em;
    position: relative;
}
.ec-pageHeader h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 56px;
    height: 3px;
    background: var(--rp-gold);
}
.ec-secHeading__line,
.ec-secHeading--tandem .ec-secHeading__line {
    background: var(--rp-gold);
}

/* ---- 商品一覧 ---- */
.ec-shelfGrid__item {
    padding: 0 12px 32px;
}
.ec-shelfGrid__item img {
    border-radius: 3px;
    transition: opacity .25s;
}
.ec-shelfGrid__item a:hover img {
    opacity: .82;
}
.ec-shelfGrid__item-image {
    margin-bottom: 14px;
}
.ec-shelfGrid__item .ec-productRole__price,
.ec-shelfGrid__item .price02-default {
    color: #c9302c;
    font-weight: 700;
}

/* ---- トップページ：ヒーロー ---- */
.rp-hero {
    background: radial-gradient(120% 100% at 15% 20%, #2a2119 0%, #111114 60%);
    color: #fff;
    margin-bottom: 8px;
}
.rp-hero__inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 64px 20px;
    display: flex;
    align-items: center;
    gap: 48px;
}
.rp-hero__body {
    flex: 1 1 50%;
}
.rp-hero__en {
    margin: 0 0 14px;
    color: var(--rp-gold);
    font-size: 14px;
    letter-spacing: .32em;
    font-weight: 600;
}
.rp-hero__title {
    margin: 0 0 20px;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: .06em;
    font-weight: 700;
    color: #fff;
}
.rp-hero__lead {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, .82);
}
.rp-hero__image {
    flex: 1 1 45%;
    text-align: center;
}
.rp-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

.rp-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--rp-gold);
    color: #fff;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    border-radius: 2px;
    transition: background .2s;
}
.rp-btn:hover {
    background: #a37f26;
    color: #fff;
    text-decoration: none;
}
.rp-btn--ghost {
    background: transparent;
    color: var(--rp-ink);
    border: 1px solid var(--rp-ink);
}
.rp-btn--ghost:hover {
    background: var(--rp-ink);
    color: #fff;
}

/* ---- トップページ：セクション ---- */
.rp-section {
    margin-top: 72px;
}
.rp-secHeading {
    text-align: center;
    margin-bottom: 40px;
}
.rp-secHeading__en {
    display: block;
    color: var(--rp-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3em;
    margin-bottom: 10px;
}
.rp-secHeading__ja {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--rp-ink);
}

.rp-features {
    display: flex;
    gap: 24px;
}
.rp-featureCard {
    flex: 1 1 33%;
    padding: 32px 28px;
    background: var(--rp-bg);
    border-top: 3px solid var(--rp-gold);
}
.rp-featureCard__no {
    margin: 0 0 12px;
    color: var(--rp-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
}
.rp-featureCard__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}
.rp-featureCard__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--rp-sub);
}

.rp-productList {
    display: flex;
    justify-content: center;
}
.rp-productCard {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 860px;
    width: 100%;
    padding: 32px;
    border: 1px solid var(--rp-line);
    text-decoration: none;
    color: var(--rp-ink);
    transition: box-shadow .25s, border-color .25s;
}
.rp-productCard:hover {
    border-color: var(--rp-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-decoration: none;
    color: var(--rp-ink);
}
.rp-productCard__image {
    flex: 0 0 42%;
}
.rp-productCard__image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}
.rp-productCard__body {
    flex: 1 1 auto;
}
.rp-productCard__title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}
.rp-productCard__text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--rp-sub);
}
.rp-productCard__link {
    display: inline-block;
    color: var(--rp-gold);
    font-weight: 700;
    letter-spacing: .06em;
}
.rp-productCard__link::after {
    content: " →";
}
.rp-more {
    margin-top: 40px;
    text-align: center;
}

/* ---- スマートフォン（全体） ---- */
@media only screen and (max-width: 767px) {
    .ec-headerRole {
        padding: 16px 0 12px;
    }
    .ec-headerRole__title .ec-headerTitle__title h1 a {
        font-size: 22px;
        letter-spacing: .12em;
    }
    .ec-footerRole {
        margin-top: 48px;
    }
    .rp-hero__inner {
        flex-direction: column;
        gap: 32px;
        padding: 40px 20px;
        text-align: center;
    }
    .rp-hero__title {
        font-size: 26px;
    }
    .rp-hero__lead {
        font-size: 15px;
    }
    .rp-hero__image {
        width: 100%;
    }
    .rp-btn {
        display: block;
        padding: 14px 20px;
    }
    .rp-section {
        margin-top: 48px;
    }
    .rp-secHeading__ja {
        font-size: 20px;
    }
    .rp-features {
        flex-direction: column;
        gap: 16px;
    }
    .rp-featureCard {
        padding: 24px 20px;
    }
    .rp-productCard {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .rp-productCard__image {
        flex: none;
        width: 100%;
    }
    .rp-productCard__title {
        font-size: 18px;
    }
}

/* ---- 商品一覧：カードの高さ・行間を揃える ---- */
.ec-shelfGrid__item {
    display: flex;
    flex-direction: column;
}
.ec-shelfGrid__item > a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    text-decoration: none;
    color: var(--rp-ink);
}
.ec-shelfGrid__item > a:hover {
    text-decoration: none;
    color: var(--rp-ink);
}
.ec-shelfGrid__item .ec-shelfGrid__item-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ec-shelfGrid__item .ec-shelfGrid__item-image img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
}
.ec-shelfGrid__item > a > p:nth-of-type(2):not(.price02-default) {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ec-shelfGrid__item > a > p:nth-of-type(3):not(.price02-default) {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--rp-sub);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ec-shelfGrid__item .price02-default {
    margin-top: auto;
    padding-top: 4px;
    font-size: 16px;
}

/* ==========================================================================
   2026-07-13 追補：ヘッダー可読性 / 余白 / スライダー
   ========================================================================== */

/* ヘッダーのメニュー文字を白に（黒背景で見えない問題の修正） */
.ec-headerNaviRole a,
.ec-headerNaviRole .ec-headerNav__item,
.ec-headerNaviRole .ec-headerNav__itemIcon,
.ec-headerNaviRole .ec-headerNav__itemLink,
.ec-headerRole__cart .ec-cartNavi,
.ec-headerRole__cart .ec-cartNavi__icon,
.ec-headerRole__cart .ec-cartNavi__price,
.ec-headerRole__navSP a,
.ec-headerRole__navSP .fas {
    color: #fff !important;
}
.ec-headerNaviRole a:hover,
.ec-headerNaviRole a:hover .ec-headerNav__itemLink,
.ec-headerNaviRole a:hover .ec-headerNav__itemIcon {
    color: var(--rp-gold) !important;
    text-decoration: none;
}
/* カートボタン（白い塊をやめて黒背景になじませる） */
.ec-cartNavi {
    background: rgba(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, .25);
}
.ec-cartNavi:hover {
    background: rgba(184, 145, 47, .25) !important;
    border-color: var(--rp-gold);
}
.ec-cartNavi__badge {
    background: var(--rp-gold);
    color: #fff;
}
.ec-cartNaviNull__message p,
.ec-cartNaviIsset__cart {
    color: var(--rp-ink) !important;
}
/* 検索窓 */
.ec-headerSearch .ec-input input {
    background: #fff;
    border: none;
}

/* ヘッダーとコンテンツの間に余白を確保 */
.ec-layoutRole__contents {
    padding-top: 40px;
}
.ec-layoutRole__mainWithColumn,
.ec-layoutRole__main {
    padding-top: 0;
}
.front_page .ec-layoutRole__contents {
    padding-top: 32px;
}
.ec-categoryNaviRole {
    padding-bottom: 18px;
}

/* メインビジュアル（スライドショー） */
.rp-slider {
    max-width: 1130px;
    margin: 0 auto;
}
.rp-slider .item img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}
.ec-sliderRole {
    margin-bottom: 56px;
}

@media only screen and (max-width: 767px) {
    .ec-layoutRole__contents,
    .front_page .ec-layoutRole__contents {
        padding-top: 20px;
    }
    .ec-sliderRole {
        margin-bottom: 40px;
    }
}

/* ---- PCのカテゴリメニューを非表示（商品1点のため） 2026-07-13 ---- */
.ec-categoryNaviRole {
    display: none;
}
.ec-headerRole {
    padding: 26px 0 26px;
}
@media only screen and (max-width: 767px) {
    .ec-headerRole {
        padding: 16px 0 16px;
    }
}

/* ==========================================================================
   2026-07-13 追補2：森さん指摘（トップ充実／カートボタン／SP不具合）
   ========================================================================== */

/* ---- 横スクロール防止（SP：カートバッジが画面外にはみ出していた） ---- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.ec-cartNavi__badge {
    right: 0 !important;
}
img, table, iframe {
    max-width: 100%;
}

/* ---- SPドロワー（ハンバーガーメニュー）：黒背景＋白文字で確実に見えるように ---- */
.ec-drawerRole {
    background: #111114 !important;
    color: #fff;
}
.ec-drawerRole .ec-headerLinkArea {
    background: #111114 !important;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.ec-drawerRole .ec-headerLink__item,
.ec-drawerRole .ec-headerLink__item span,
.ec-drawerRole .ec-headerLink__icon,
.ec-drawerRole .ec-headerLink__item i,
.ec-drawerRole .ec-headerLink__item .fas {
    color: #fff !important;
}
.ec-drawerRole .ec-headerLink__item {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: transparent !important;
}
.ec-drawerRole .ec-headerLink__item:hover,
.ec-drawerRole .ec-headerLink__item:active {
    background: rgba(184, 145, 47, .25) !important;
}
/* ドロワー内の検索フォームは白ベースで見やすく */
.ec-drawerRole .ec-headerSearch {
    background: #1c1c20 !important;
    color: #fff !important;
}
.ec-drawerRole .ec-headerSearch .ec-input input,
.ec-drawerRole .ec-headerSearch select {
    background: #fff !important;
    color: var(--rp-ink) !important;
    border: none;
}
/* カテゴリ一覧はドロワー内でも非表示（商品1点のため。検索で代替） */
.ec-drawerRole .ec-headerCategoryArea {
    display: none !important;
}
/* 閉じるボタン（白い丸）をブランド色に */
.ec-drawerRoleClose {
    background: #111114 !important;
    border: 1px solid var(--rp-gold);
    color: #fff !important;
}
.ec-drawerRoleClose .fas {
    color: #fff !important;
}

/* ---- トップ：リード文 ---- */
.rp-lead {
    max-width: 760px;
    margin: -12px auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 2.1;
    color: var(--rp-sub);
}

/* ---- トップ：商品カード＋カートフォーム ---- */
.rp-productCard__title a {
    color: var(--rp-ink);
    text-decoration: none;
}
.rp-productCard__title a:hover {
    color: var(--rp-gold);
    text-decoration: none;
}
.rp-productCard__price {
    margin: 0 0 20px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}
.rp-price__regular {
    color: #8b8b96;
    font-size: 15px;
    text-decoration: line-through;
}
.rp-price__sale {
    color: #c9302c;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .02em;
}
.rp-price__tax {
    color: var(--rp-sub);
    font-size: 13px;
}
.rp-cartForm__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.rp-cartForm__label {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.rp-cartForm__qty {
    padding: 8px 12px;
    border: 1px solid var(--rp-line);
    border-radius: 2px;
    background: #fff;
    font-size: 15px;
    min-width: 84px;
}
.rp-btn--cart {
    display: block;
    width: 100%;
    max-width: 360px;
    padding: 17px 24px;
    border: none;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}
.rp-btn--cart .fas {
    margin-right: 6px;
}
.rp-cartForm .rp-btn--ghost {
    display: block;
    width: 100%;
    max-width: 360px;
    margin-top: 12px;
    padding: 14px 24px;
    text-align: center;
    font-size: 15px;
}
.rp-productCard__note {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--rp-sub);
}
.rp-productCard {
    align-items: flex-start;
}

/* ---- トップ：エンパワーメント・バンド ---- */
.rp-band {
    margin-top: 80px;
    padding: 64px 20px;
    background: radial-gradient(120% 100% at 20% 20%, #2a2119 0%, #111114 65%);
    color: #fff;
    text-align: center;
}
.rp-band__inner {
    max-width: 860px;
    margin: 0 auto;
}
.rp-band__title {
    margin: 12px 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .04em;
    color: #fff;
}
.rp-band__text {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 2.1;
    color: rgba(255, 255, 255, .84);
}
.rp-band__note {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

/* ---- トップ：商品情報テーブル ---- */
.rp-infoGrid {
    max-width: 900px;
    margin: 0 auto;
}
.rp-table {
    width: 100%;
    margin: 0 0 32px;
    border-collapse: collapse;
    border-top: 1px solid var(--rp-line);
    font-size: 15px;
    background: #fff;
}
.rp-table__caption {
    caption-side: top;
    padding: 0 0 10px;
    text-align: left;
    font-weight: 700;
    color: var(--rp-ink);
}
.rp-table th,
.rp-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--rp-line);
    text-align: left;
    vertical-align: top;
    line-height: 1.9;
}
.rp-table th {
    width: 26%;
    min-width: 7em;
    background: var(--rp-bg);
    color: var(--rp-sub);
    font-weight: 600;
}

/* ---- トップ：ご購入の流れ ---- */
.rp-steps {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.rp-step {
    flex: 1 1 33%;
    padding: 28px 24px;
    border: 1px solid var(--rp-line);
    background: #fff;
}
.rp-step__no {
    margin: 0 0 10px;
    color: var(--rp-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
}
.rp-step__title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
}
.rp-step__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: var(--rp-sub);
}

/* ---- トップ：FAQ・注意書き ---- */
.rp-faq {
    max-width: 860px;
    margin: 0 auto 40px;
}
.rp-faq dt {
    margin: 0;
    padding: 16px 18px 12px;
    background: var(--rp-bg);
    border-left: 3px solid var(--rp-gold);
    font-weight: 700;
    line-height: 1.7;
}
.rp-faq dd {
    margin: 0 0 16px;
    padding: 14px 18px 18px;
    border-left: 3px solid var(--rp-line);
    color: var(--rp-sub);
    line-height: 1.9;
}
.rp-caution {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 26px;
    background: var(--rp-bg);
    border: 1px solid var(--rp-line);
}
.rp-caution__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
}
.rp-caution ul {
    margin: 0 0 14px;
    padding-left: 1.2em;
    list-style: none;
}
.rp-caution li {
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--rp-sub);
}
.rp-caution li::before {
    content: "";
    position: absolute;
    left: -1em;
    top: .8em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rp-gold);
}
.rp-caution__note {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    color: var(--rp-sub);
}

/* ---- トップ：最後のCTA ---- */
.rp-cta {
    margin-top: 72px;
    padding: 48px 20px;
    text-align: center;
    background: var(--rp-bg);
    border-top: 1px solid var(--rp-line);
}
.rp-cta__text {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
}
.rp-cta__btn {
    display: inline-block;
    width: auto;
    max-width: none;
    padding: 16px 48px;
}

/* ---- SP ---- */
@media only screen and (max-width: 767px) {
    .rp-lead {
        font-size: 15px;
        line-height: 2;
        text-align: left;
        margin-bottom: 28px;
    }
    .rp-band {
        margin-top: 48px;
        padding: 40px 20px;
    }
    .rp-band__title {
        font-size: 21px;
    }
    .rp-band__text {
        font-size: 15px;
        text-align: left;
    }
    .rp-price__sale {
        font-size: 26px;
    }
    .rp-btn--cart,
    .rp-cartForm .rp-btn--ghost {
        max-width: 100%;
    }
    .rp-steps {
        flex-direction: column;
        gap: 14px;
    }
    /* 商品情報テーブルは縦積みにして横スクロールを防ぐ */
    .rp-table,
    .rp-table tbody,
    .rp-table tr,
    .rp-table th,
    .rp-table td {
        display: block;
        width: 100%;
    }
    .rp-table {
        border-top: none;
    }
    .rp-table tr {
        margin-bottom: 8px;
        border: 1px solid var(--rp-line);
        border-radius: 4px;
        overflow: hidden;
    }
    .rp-table th {
        min-width: 0;
        padding: 10px 14px;
        border-bottom: 1px solid var(--rp-line);
        font-size: 13px;
    }
    .rp-table td {
        padding: 12px 14px;
        border-bottom: none;
        font-size: 14px;
    }
    .rp-cta {
        margin-top: 48px;
        padding: 36px 20px;
    }
    .rp-cta__btn {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }
}

/* ---- SP：ハンバーガーボタン（白丸の中の白アイコンで見えなかった問題の修正） ---- */
.ec-headerNavSP {
    background: #111114 !important;
    border: 1px solid var(--rp-gold) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.ec-headerNavSP .fas,
.ec-headerNavSP i {
    color: #fff !important;
}


/* ---- 2026-07-13 追補3：森さん指摘（PCヘッダー幅・SPカートはみ出し・SP見出し崩れ） ---- */
/* SP：カートアイコン／バッジが右端からはみ出さないように */
@media only screen and (max-width: 767px) {
    .ec-headerRole__cart,
    .ec-cartNavi {
        margin-right: 4px;
    }
    .ec-cartNavi__badge {
        right: 2px !important;
    }
    /* テーブルのキャプション（栄養成分表示 等）が縦1文字ずつに潰れるのを防ぐ */
    .rp-table caption,
    .rp-table .rp-table__caption {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0 0 10px;
        font-size: 15px;
        line-height: 1.6;
        white-space: normal;
    }
}

/* ---- 2026-07-13 追補4：SPのカートボタンが潰れる／はみ出す問題（森さん再指摘） ---- */
@media only screen and (max-width: 767px) {
    .ec-headerRole__cart {
        margin-right: 10px;
    }
    .ec-cartNaviWrap {
        width: auto;
    }
    /* 枠と余白をやめ、40x40のアイコンボタンにする */
    .ec-cartNavi {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px !important;
        min-width: 0 !important;
        height: 40px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .ec-cartNavi__icon {
        position: relative;
        margin: 0;
        font-size: 20px;
        color: #fff !important;
    }
    .ec-cartNavi__label,
    .ec-cartNavi__price {
        display: none !important;
    }
    .ec-cartNavi__badge {
        position: absolute;
        top: -8px;
        right: -8px !important;
        min-width: 16px;
        height: 16px;
        padding: 0 4px !important;
        line-height: 16px;
        border-radius: 8px;
        font-size: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   2026-07-13 追補5：トップLP強化（こんな方へ／配合成分／品質）
   ========================================================================== */
.rp-checkList {
    max-width: 760px;
    margin: 0 auto 16px;
    padding: 28px 32px;
    list-style: none;
    background: var(--rp-bg);
    border: 1px solid var(--rp-line);
}
.rp-checkList li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--rp-ink);
}
.rp-checkList li:last-child {
    margin-bottom: 0;
}
.rp-checkList li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 11px;
    color: #fff;
    background: var(--rp-gold);
    border-radius: 3px;
}
.rp-checkList__note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    color: var(--rp-sub);
}
.rp-inlineCta {
    margin-top: 32px;
    text-align: center;
}

.rp-ingredients {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 24px;
}
.rp-ingredient {
    padding: 26px 28px;
    background: #fff;
    border: 1px solid var(--rp-line);
    border-left: 3px solid var(--rp-gold);
}
.rp-ingredient__name {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}
.rp-ingredient__name span {
    font-size: 13px;
    font-weight: 500;
    color: var(--rp-sub);
}
.rp-ingredient__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: var(--rp-sub);
}
.rp-note {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 18px;
    background: var(--rp-bg);
    border: 1px dashed var(--rp-line);
    font-size: 12px;
    line-height: 1.9;
    color: var(--rp-sub);
}

@media only screen and (max-width: 767px) {
    .rp-checkList {
        padding: 20px 18px;
    }
    .rp-checkList li {
        font-size: 15px;
        padding-left: 30px;
    }
    .rp-checkList__note {
        text-align: left;
    }
    .rp-ingredients {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .rp-ingredient {
        padding: 20px;
    }
}

/* ---- 2026-07-13 追補6：SPカートのバッジ位置（アイコンに重なって切れる） ---- */
@media only screen and (max-width: 767px) {
    .ec-cartNavi {
        position: relative !important;
        overflow: visible !important;
    }
    .ec-cartNavi__icon {
        position: static !important;
    }
    /* バッジはボタン（40x40）の右上に置く。アイコンの上に重ねない */
    .ec-cartNavi__badge {
        position: absolute;
        top: 0 !important;
        right: 0 !important;
        transform: none;
        min-width: 16px;
        height: 16px;
        padding: 0 4px !important;
        line-height: 16px;
        border-radius: 8px;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        border: 1px solid #111114;
        box-sizing: content-box;
    }
}

/* ---- 2026-07-13 追補7：カートバッジ内の数字を中央に（FontAwesomeのフォント/行間を継承して上寄りになっていた） ---- */
.ec-cartNavi__badge {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    min-width: 17px;
    height: 17px;
    line-height: 1 !important;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 700;
    font-size: 10px;
    border-radius: 9px;
    box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
    .ec-cartNavi__badge {
        top: -2px !important;
        right: -2px !important;
        border: 1px solid #111114;
    }
}

/* ==========================================================================
   2026-07-13 追補8：お客様の声（VOICE）／サンプル表記
   ========================================================================== */
.rp-sampleBadge {
    max-width: 1000px;
    margin: -20px auto 28px;
    padding: 8px 14px;
    text-align: center;
    font-size: 12px;
    color: var(--rp-sub);
    background: var(--rp-bg);
    border: 1px dashed var(--rp-line);
}
.rp-voices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
}
.rp-voice {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px 26px;
    background: #fff;
    border: 1px solid var(--rp-line);
    border-top: 3px solid var(--rp-gold);
}
.rp-voice__avatar {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
}
.rp-voice__avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}
.rp-voice__meta {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--rp-gold);
    font-weight: 700;
}
.rp-voice__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}
.rp-voice__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: var(--rp-sub);
    text-align: left;
}
@media only screen and (max-width: 767px) {
    .rp-voices {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .rp-voice {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }
    .rp-voice__avatar {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    .rp-voice__title {
        font-size: 15px;
    }
}

/* ==========================================================================
   2026-07-13 追補9：期待できる効果（EFFECT）セクション
   ========================================================================== */
.rp-effects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 8px;
}
.rp-effect {
    padding: 32px 24px;
    text-align: center;
    background: #111114;
    color: #fff;
    border-bottom: 3px solid var(--rp-gold);
}
.rp-effect__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 145, 47, .18);
    border: 1px solid var(--rp-gold);
    color: var(--rp-gold);
    font-size: 22px;
}
.rp-effect__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}
.rp-effect__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .78);
}
.rp-secHeading--sub {
    margin-top: 64px;
}
.rp-ingredient__lead {
    margin: 0 0 10px;
    color: var(--rp-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
}
.rp-ingredient__text strong {
    color: var(--rp-ink);
    font-weight: 700;
    background: linear-gradient(transparent 62%, rgba(184, 145, 47, .28) 62%);
}
@media only screen and (max-width: 767px) {
    .rp-effects {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .rp-effect {
        padding: 24px 20px;
    }
    .rp-secHeading--sub {
        margin-top: 44px;
    }
}

/* ---- 2026-07-13 追補10：PCのカートバッジがアイコンの下に落ちる（position:relative のまま流れていた） ---- */
@media only screen and (min-width: 768px) {
    .ec-cartNavi__icon {
        position: relative !important;
    }
    .ec-cartNavi__badge {
        position: absolute !important;
        top: -7px !important;
        right: -9px !important;
        margin: 0 !important;
    }
}
@media only screen and (min-width: 768px) {
    .ec-cartNavi__badge {
        left: auto !important;
        width: 17px;
    }
}

/* ---- 2026-07-13 追補11：ショップ名が上下中央にならない（インラインの行内余白＝strut/descender） ---- */
.ec-headerRole__title .ec-headerTitle,
.ec-headerRole__title .ec-headerTitle__title {
    line-height: 1;
}
.ec-headerRole__title .ec-headerTitle__title h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.ec-headerRole__title .ec-headerTitle__title h1 a {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    padding: 0;
}
.rp-logo__sub {
    line-height: 1;
    vertical-align: baseline;
}
/* 追補11-2：ヘッダーのタイトル列が他要素の高さに引き伸ばされるため、列ごと中央寄せする */
.ec-headerRole__title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ec-headerRole__title .ec-headerTitle,
.ec-headerRole__title .ec-headerTitle__title {
    width: 100%;
}
/* 追補11-3：真因＝EC-CUBE標準がロゴの <a> に margin-bottom:30px を付けていた */
.ec-headerRole__title .ec-headerTitle__title h1 a {
    margin: 0 !important;
}

/* ---- 2026-07-28: full-width SP main slider ---- */
@media only screen and (max-width: 767px) {
    .ec-sliderRole.rp-slider {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 0;
        padding-right: 0;
    }
    .ec-sliderRole.rp-slider .item img {
        border-radius: 0;
    }
}

/* ---- 2026-07-28: remove SP top gap above main slider ---- */
@media only screen and (max-width: 767px) {
    .front_page .ec-layoutRole__contents {
        padding-top: 0;
    }
}

/* ---- 2026-07-28: voice avatars as photos ---- */
.rp-voice__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    object-position: center;
}
