/* --- [基礎設定] --- */
body {
    margin: 0; padding: 0;
    background-color: #f5f5f0;
    color: #2d2d2d;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    position: relative;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

/* --- [質感ノイズ] 不透明度0.04固定 --- */
body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04; pointer-events: none; z-index: 9998;
}

/* --- [パンくずリスト] --- */
.breadcrumb-container { position: relative; padding: 85px 25px 20px; z-index: 10; }
.breadcrumbs { list-style: none; display: flex; align-items: center; padding: 0; margin: 0; font-size: 10px; letter-spacing: 0.05em; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin: 0 10px; color: #ccc; }
.breadcrumbs a { text-decoration: none; color: #2d2d2d; opacity: 0.5; }

/* --- [ページタイトル] --- */
.page-header { padding: 20px 25px 40px; text-align: center; }
.page-title { font-family: 'Noto Sans JP', sans-serif; font-weight: 600; font-size: 24px; letter-spacing: 0.1rem; margin: 0; color: #1a2a40; }
.page-title span { display: block; font-size: 10px; font-family: 'Inter', sans-serif; letter-spacing: 0.3em; margin-top: 10px; opacity: 0.6; }

/* --- [コンテンツ・インナーラッパー] --- */
.content-inner-wrapper {
    max-width: 650px;
    margin: 0 auto 150px;
    padding: 0 15px;
    box-sizing: border-box;
}

.subs-nav {
    max-width: 650px;
    margin: 0 auto 40px;
    padding: 0 15px;
    box-sizing: border-box;
}

.subs-lead {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a2a40;
    line-height: 1.6;
    margin: 0 0 14px;
}
.subs-lead-note {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #55534d;
    margin-top: 4px;
    line-height: 1.5;
}

/* ネイティブのラジオボタン本体は常にこのクラスで完全に隠す */
.subs-tab-radio {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.subs-tabs {
    position: relative;
    display: flex;
    background: rgba(26, 42, 64, 0.06);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 14px;
}

.subs-tab-thumb {
    position: absolute;
    top: 4px; bottom: 4px; left: 4px;
    width: calc(50% - 4px);
    background: #1a2a40;
    border-radius: 999px;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
#subs-tab-course:checked ~ .subs-tabs .subs-tab-thumb {
    transform: translateX(100%);
}

.subs-tabs label {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 6px;
    border-radius: 999px;
    cursor: pointer;
    color: #1a2a40;
    opacity: 0.5;
    transition: color 0.2s ease, opacity 0.2s ease;
}
#subs-tab-item:checked ~ .subs-tabs label[for="subs-tab-item"],
#subs-tab-course:checked ~ .subs-tabs label[for="subs-tab-course"] {
    color: #fff;
    opacity: 1;
}

.subs-panel-title { display: none; }

.subs-panel { display: none; }
#subs-tab-item:checked ~ .subs-panels .subs-panel-item,
#subs-tab-course:checked ~ .subs-panels .subs-panel-course {
    display: block;
}

/* --- [単品/組み合わせコース 本体の切り替え] --- */
.subs-content-item,
.subs-content-course {
    display: none;
}
section:has(#subs-tab-item:checked) .subs-content-item {
    display: contents;
}
section:has(#subs-tab-course:checked) .subs-content-course {
    display: contents;
}

.subs-list {
    list-style: none; margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subs-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    text-decoration: none;
    color: #2d2d2d;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    border: 1px solid #e5e2da;
    border-radius: 16px;
    padding: 14px 20px;
    transition: all 0.2s ease;
}
.subs-list a:active {
    transform: scale(0.97);
    background: #f5f5f0;
    border-color: #bda16b;
}

.subs-list a > span:first-child {
    min-width: 0;
}

.subs-list strong {
    display: block;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 17px;
    font-weight: 700;
    color: #1a2a40;
    white-space: nowrap;
    overflow: hidden;
}

.subs-list small {
    display: block;
    font-size: 15px;
    color: #2d2d2d;
    margin-top: 4px;
    font-weight: normal;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
}

.cat-line {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
}
.cat-icon {
    display: none;
}
.tablet-break {
    display: none;
}
.subs-list .cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    flex: none;
    margin-right: 3px;
}
.subs-list .cat-icon svg {
    display: block;
    width: 100%;
    height: auto;
}
.cat-line + .cat-line {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #e5e2da;
}
.cat-conj {
    font-weight: 700;
}
.cat-note {
    font-size: 13.5px;
}
.cat-subline {
    display: block;
    padding-left: 14px;
    white-space: nowrap;
    overflow: hidden;
}
.cat-line + .cat-subline,
.cat-subline + .cat-subline,
.cat-subline + .cat-line {
    margin-top: 3px;
}
.subs-select-btn {
    display: none;
}

.cat-tag {
    font-size: 15px;
    margin: 0 2px 0 0;
    font-weight: 700;
}

.subs-arrow {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-top: 3px solid #2d2d2d;
    border-right: 3px solid #2d2d2d;
    opacity: .4;
    transform: rotate(45deg);
}

/* --- [単品タブ アンカー目次] 5_通常商品一覧と同一デザイン --- */
.anchor-index-card {
    background: #ffffff;
    border: 1px solid #e5e2da;
    border-radius: 16px;
    padding: 4px 18px;
}
.anchor-group { padding: 16px 0; border-bottom: 1px solid #e5e2da; }
.anchor-group:last-child { border-bottom: none; }

.anchor-group-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.anchor-group-icon { flex: none; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.anchor-group-icon svg { width: 16px; height: 16px; }
.anchor-group-title { font-size: 17px; font-weight: 700; color: #1a2a40; }

.anchor-group-rows { display: flex; flex-direction: column; }
.anchor-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; min-height: 44px; padding: 12px 2px 12px 31px; box-sizing: border-box;
    font-size: 15px; font-weight: 600; color: #2d2d2d;
    text-decoration: none; border-top: 1px dashed #e5e2da;
}
.anchor-group-rows .anchor-row:first-child { border-top: none; }
.anchor-row-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.anchor-row svg { flex: none; width: 16px; height: 16px; opacity: .4; }
.anchor-row:hover, .anchor-row:focus-visible { background: #f5f5f0; color: #bda16b; }
.anchor-row:hover svg, .anchor-row:focus-visible svg { opacity: .8; }
.anchor-row:active { background: #f5f5f0; }

/* --- [おすすめバナー] --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.recommend-image {
    width: 90%;
    max-width: 100%;
    margin: 0 auto 20px;
    view-timeline-name: --image-show;
    view-timeline-axis: block;
    animation: fadeInUp linear both;
    animation-timeline: --image-show;
    animation-range: entry 0% cover 45%;
}

.anchor-link {
    color: #bda16b;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.text-large-bold {
    font-weight: bold;
    font-size: 16px;
}

.text-bold {
    font-weight: bold;
}

/* --- [単品カード] 5_通常商品一覧SPと同一デザイン --- */
.product-card-sep {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "pkg"
        "info"
        "desc"
        "more"
        "price"
        "cart";
    row-gap: 4px;
    padding: 0 0 25px;
    background: #ffffff;
    border: 1.5px solid #e5e2da;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}
.visual-area-sep,
.info-area-sep {
    display: contents;
}

.pkg-frame {
    grid-area: pkg;
    width: 100%;
    box-sizing: border-box;
    padding: 22px 16px 14px;
    margin-bottom: 10px;
    background: #e9e9e9;
    border-radius: 4px;
}
.img-pkg {
    width: 62%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(10px 15px 25px rgba(26, 42, 64, 0.08));
}
#item-s_mf .img-pkg {
    position: relative;
    top: -20px;
}

.grain-frame { display: none; }

.item-info-row {
    grid-area: info;
    display: flex;
    align-items: stretch;
}
.item-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin: 0 0 0 20px;
    min-width: 0;
}
.item-h2 {
    margin: 0;
    font-size: clamp(1.4rem, 10.7vw - 1rem, 1.6rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 1.2;
    color: #1a2a40;
}
.item-h2 .fs-mfl-suffix { font-size: 20px; }
.item-amount-text {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
    color: #1a2a40;
}
.grain-frame-sp {
    flex: 0 0 34%;
    align-self: center;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0 0;
    box-sizing: border-box;
}
.img-grain-sp {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(5px 10px 15px rgba(0,0,0,0.06));
}

.item-desc-group { grid-area: desc; }
.item-spec-text {
    grid-area: desc;
    margin: 4px 20px 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.item-note-text {
    margin: 0 20px 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #bda16b;
}
#item-s_mf .item-spec-text {
    margin-bottom: 0;
}
.item-note-mineral {
    color: #666666;
}

.more-link-sep {
    grid-area: more;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 47.5px;
    margin: 0 auto 18px;
    padding: 0;
    background: #d3d3d3;
    color: #1a2a40;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #1a2a40;
    border-radius: 26px;
    text-decoration: none;
}

.price-shipping-row {
    grid-area: price;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    text-align: center;
    padding: 14px 24px 0px;
    margin: 0 20px;
    box-sizing: border-box;
    background: #f5f5f0;
    border: 1px solid #e5e2da;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}
.price-num { font-size: 30px; font-weight: 600; font-family: 'Inter'; color: #1a2a40; }
.price-tax { font-size: 14px; opacity: 0.6; }
.shipping-fee-inline {
    display: inline-block;
    font-size: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(189, 161, 107, 0.14);
    color: #bda16b;
    font-weight: 700;
}

@media (max-width: 360px) {
    .price-shipping-row {
        flex-wrap: nowrap;
        gap: 4px;
        padding: 14px 12px 0px;
    }
    .price-num { font-size: 22px; }
    .price-tax { font-size: 11px; }
    .shipping-fee-inline {
        font-size: 11px;
        padding: 3px 6px;
    }
}

.cart-btn-wrapper {
    grid-area: cart;
    width: auto;
    padding: 20px 24px 20px;
    box-sizing: border-box;
    background: #f5f5f0;
    border: 1px solid #e5e2da;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin: -4px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qty-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 12px;
    font-size: 14px;
    color: #2d2d2d;
    white-space: nowrap;
    margin-bottom: 20px;
    width: 100%;
}
.qty-wrapper > span { grid-column: 1; justify-self: end; }
.qty-wrapper > .qty-controls { grid-column: 2; }

.qty-controls { display: flex; align-items: center; }

.qty-btn {
    width: 46px;
    height: 46px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #2d2d2d;
    margin: 0;
    padding: 0;
    cursor: pointer;
    background: #f8f8f8;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
}

.qty-input {
    width: 46px;
    height: 46px;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    color: #2d2d2d;
    margin: 0;
    padding: 0;
    outline: none;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    border-radius: 0;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn:first-child { border-radius: 4px 0 0 4px; }
.qty-btn:last-child { border-radius: 0 4px 4px 0; }

.cart-btn-jp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bda16b;
    color: #fff;
    text-decoration: none;
    height: 60px;
    width: 100%;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.cart-btn-jp svg { width: 19px; height: 19px; fill: currentColor; margin-right: 8px; flex: 0 0 auto; }
.cart-btn-jp:active { background: #bda16b; transform: scale(0.97); }

.delivery-note {
    margin: 10px 0 0;
    font-size: 13px;
    color: #2d2d2d;
    text-align: center;
}
.delivery-days {
    font-weight: 700;
    color: #bda16b;
    font-size: 17px;
}

/* --- [セクションタイトル] --- */
.section-sub-title {
    text-align: center; font-size: 28px; font-weight: 700; color: #1a2a40;
    margin: 80px 0 0; position: relative;
}
.course-furigana {
    display: block; text-align: center; font-size: 13px; color: #bda16b;
    letter-spacing: 0.1em; margin-bottom: 20px; font-weight: 500;
}

/* --- [製品グリッド 2列] --- */
.product-grid-2 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px 15px; margin-bottom: 60px;
}
.product-item { background: rgba(255,255,255,0.4); padding: 15px 5px; border-radius: 4px; text-align: center; position: relative; scroll-margin-top: 100px; }
.img-wrap { width: 100%; margin-bottom: 15px; }
.img-wrap img { width: 100%; height: auto; filter: drop-shadow(5px 10px 15px rgba(0,0,0,0.08)); }

.item-name { font-size: 18px; font-weight: 700; color: #1a2a40; margin-bottom: 4px; }
.item-capacity { font-size: 11px; color: #888; margin-bottom: 8px; display: block; }

.detail-link { font-size: 14px; color: #bda16b; text-decoration: none; font-weight: 700; display: block; margin-bottom: 15px; }

.price-box { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 15px; margin-bottom: 12px; }
.p-price { font-size: 15px; font-weight: 700; font-family: 'Inter'; }
.p-shipping { font-size: 10.5px; color: #bda16b; font-weight: 700; margin-top: 4px; }
.item-delivery-note { font-size: 8px; color: #888; margin-top: 5px; line-height: 1.3; text-align: left; padding: 0 5px; }

.btn-apply {
    display: block; width: 100%; background: #1a2a40; color: #fff; text-decoration: none;
    font-size: 13px; font-weight: 700; padding: 12px 0; border-radius: 25px; transition: 0.3s;
    border: none; cursor: pointer; box-sizing: border-box;
}
.btn-apply:active { transform: scale(0.95); background: #bda16b; }

/* --- [コース 4分割共通] --- */
.course-info-area { text-align: center; max-width: 600px; margin: 0 20px 30px; padding: 0 5px; scroll-margin-top: 100px; }

.course-desc { max-width: 480px; margin: 0 auto; font-size: 15px; line-height: 1.8; color: #666; text-align: left; }
.course-desc-heading { display: block; font-size: 18px; text-align: center; margin-bottom: 30px; }

.grid-4-wrapper {
    display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px;
}
.grid-4-wrapper:has(.course-card-v2) {
    gap: 21px;
}
.grid-4-item { background: #fff; padding: 15px 6px; border-radius: 5px; text-align: center; display: flex; flex-direction: column; justify-content: space-between; }
.course-item-name { font-family: 'Inter'; font-weight: 800; font-size: 16px; margin: 20px 0; }
.course-contents { font-size: 12px; color: #666666; line-height: 1.6; margin-bottom: 20px; text-align: left; padding: 0; flex-grow: 1; }

.c-main { color: #1a2a40; font-weight: 700; }
.c-sub  { color: #bda16b; font-weight: 700; }

/* --- [組み合わせコース カード v2] SP専用デザイン --- */
.course-card-v2 {
    background: #ffffff;
    border: 2px solid #e5e2da;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.course-banner {
    width: 100%;
    aspect-ratio: 20 / 9;
    background: #e9e9e9;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}
.course-banner img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; display: block; }
.course-banner-zoom img { transform: scale(1.1); transform-origin: center bottom; }
.course-banner-zoom-plus img { transform: scale(1.2); transform-origin: center bottom; }

.course-head-block { padding: 10px 14px 0; position: relative; }
.course-head-top { display: block; }
.course-name-v2 { display: block; font-size: 25px; font-weight: 800; font-family: 'Inter'; color: #1a2a40; white-space: nowrap; }
.course-duration { font-size: 13px; color: #bda16b; font-weight: 700; letter-spacing: 0.02em; margin-top: 2px; }
.course-more-link {
    position: absolute;
    right: 14px;
    bottom: 0;
    font-size: 14px; color: #1a2a40; font-weight: 700;
    background: #d3d3d3;
    border: 1px solid #1a2a40; border-radius: 16px; padding: 6px 20px;
    white-space: nowrap; text-decoration: none; flex: 0 0 auto;
}

.course-item-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 10px 14px; }
.course-item-cell { background: #f7f6f2; border-radius: 8px; padding: 8px 9px; }
.course-item-cell .pname { font-size: 14px; font-weight: 700; color: #2d2d2d; display: block; margin-bottom: 3px; }
.course-item-cell .form-row { display: flex; align-items: center; gap: 5px; }
.course-form-badge {
    display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 700;
    padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.course-form-badge svg { width: 12px; height: 12px; fill: currentColor; flex: 0 0 auto; }
.course-form-badge.tablet { background: rgba(26,42,64,0.08); color: #1a2a40; }
.course-form-badge.powder { background: rgba(189,161,107,0.14); color: #bda16b; }
.course-item-cell .amt { font-size: 14px; color: #6b6a63; }

.course-bottom { padding: 10px 14px 14px; border-top: 1px solid rgba(26,42,64,0.10); margin-top: 2px; }
.course-price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 8px; }
.course-price-v2 { font-size: 30px; font-weight: 700; font-family: 'Inter'; color: #1a2a40; }
.course-tax-v2 { font-size: 14px; color: #6b6a63; }
.course-ship-badge {
    display: inline-block;
    font-size: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(189, 161, 107, 0.14);
    color: #bda16b;
    font-weight: 700;
    margin-left: 4px;
}

.course-qty-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 12px;
    margin-bottom: 12px;
}
.course-qty-row > .course-qty-label { grid-column: 1; justify-self: end; }
.course-qty-row > .course-qty-controls { grid-column: 2; }
.course-qty-label { font-size: 14px; font-weight: 700; color: #6b6a63; }
.course-qty-controls { display: flex; align-items: center; }
.course-qty-btn {
    width: 46px; height: 46px; border: 1px solid rgba(26,42,64,0.10); box-sizing: border-box;
    display: flex; align-items: center; justify-content: center; font-size: 16px; color: #2d2d2d;
    background: #f5f5f0; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.course-qty-btn:first-child { border-radius: 4px 0 0 4px; }
.course-qty-btn:last-child { border-radius: 0 4px 4px 0; }
.course-qty-input {
    width: 46px; height: 46px; border: 1px solid rgba(26,42,64,0.10); border-left: none; border-right: none;
    box-sizing: border-box; text-align: center; font-size: 16px; color: #2d2d2d; background: #ffffff;
    margin: 0; padding: 0; outline: none; -webkit-appearance: none; -moz-appearance: textfield; appearance: none; border-radius: 0;
}
.course-qty-input::-webkit-outer-spin-button,
.course-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.course-form-note {
    margin: 0 0 5px;
    font-size: 13px;
    color: #666666;
    text-align: center;
}

.course-cta-btn {
    background: #bda16b; color: #fff; font-size: 16px; font-weight: 700; border: none;
    border-radius: 18px; width: 100%; height: 56px; margin-bottom: 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    white-space: nowrap; cursor: pointer;
}
.course-cta-btn svg { width: 19px; height: 19px; fill: currentColor; }
.course-cta-btn:active { background: #1a2a40; }

.guide-links-area { text-align: center; margin: -40px 0 60px; }
.guide-links-area a { display: block; font-size: 13px; color: #1a2a40; text-decoration: none; margin-bottom: 15px; font-weight: 500; }
.guide-links-area a::after { content: ' ＞'; font-size: 9px; color: #bda16b; }

.bottom-nav-container {
    margin: 15px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.btn-regular-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #ffffff;
    color: #1a2a40;
    border: 1px solid #1a2a40;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}
.btn-regular-link-tight {
    letter-spacing: 0.02em;
    background-color: #d3d3d3;
}
.btn-regular-link:hover,
.btn-regular-link:active {
    background-color: #1a2a40;
    color: #fff;
}

/* 注意文章 */
.notice-text {
    font-size: 10px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}
.notice-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 11px;
}

/* TOPへ戻るボタン */
.totop-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 68px;
    height: 68px;
    background-color: #bda16b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.1em;
}
.totop-button:hover { opacity: 0.8; transform: translateY(-3px); }
.totop-button.is-show { opacity: 1; visibility: visible; }

/* --- [メルゲン ポップアップ] --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}
.popup-content {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 90vh;
    max-height: 90dvh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: popupShow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes popupShow {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-image {
    margin: 15px 15px 0;
    box-sizing: border-box;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
}
.popup-image img {
    width: 100%;
    height: auto;
    display: block;
}
.popup-body {
    padding: 0px 40px 20px;
    line-height: 1.7;
    color: #444;
}
.main-text {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 30px 0 15px 0;
    color: #2d2d2d;
}
.highlight {
    color: #c4391d;
    font-weight: bold;
    border-bottom: 2px solid #f8d7da;
}
.sub-text {
    font-size: 0.85rem;
    color: #1a2a40;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
}
.popup-footer {
    padding: 20px 25px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.popup-footer.is-visible {
    opacity: 1;
    visibility: visible;
}
.btn-confirm {
    width: 75%;
    padding: 14px;
    background: #f3c92f;
    color: #2d2d2d;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    margin: 0 auto;
}

html.popup-open,
body.popup-open {
    overflow: hidden !important;
}

/* ============================================================
   PC・タブレット レイアウト（768px以上）
   ============================================================ */
@media (min-width: 768px) {
    .br-sp {
        display: none;
    }
    .course-desc-heading {
        margin-bottom: 30px;
    }
    .breadcrumb-container {
        max-width: 960px;
        margin: 0 auto;
    }
    .breadcrumbs {
        font-size: 12px;
    }
    .page-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-title {
        font-size: 1.8rem;
        font-weight: 600;
    }
    .page-title span {
        font-size: 12px;
    }
    .recommend-image {
        max-width: 625px;
        margin: 0 auto 20px;
    }
    .subs-nav {
        max-width: 960px;
        padding: 0 25px;
    }
    .subs-lead {
        font-size: 20px;
    }
    .subs-lead-note br {
        display: none;
    }
    .subs-tabs {
        max-width: 460px;
        margin: 30px auto;
    }
    .subs-tabs label {
        padding: 16px 6px;
        font-size: 16px;
    }
    .anchor-index-card {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
    .anchor-group {
        padding: 24px 28px;
        border-bottom: none;
        border-left: 1px solid #e5e2da;
    }
    .anchor-group-head {
        justify-content: center;
        padding-bottom: 10px;
        border-bottom: 1px dashed #bda16b;
    }
    .anchor-group:first-child {
        border-left: none;
    }
    .anchor-row[href="#item-s_m"],
    .anchor-row[href="#item-s_mf"],
    .anchor-row[href="#item-s_mfl"] {
        padding-left: 10px;
    }

    /* --- [組み合わせコース 目次] PC・タブレット共通：単品コース目次(.anchor-index-card)と同一の値で移植 --- */
    .subs-list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        background: #ffffff;
        border: 1px solid #e5e2da;
        border-radius: 16px;
    }
    .subs-list li {
        min-width: 0;
        border-left: 1px solid #e5e2da;
    }
    .subs-list li:first-child {
        border-left: none;
    }
    .subs-list a {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        height: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 22px 10px;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    .subs-list a:active {
        background: #f7f6f2;
        transform: none;
    }
    .subs-content {
        display: contents;
    }
    .subs-head {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px dashed #bda16b;
    }
    .subs-count-icon {
        display: inline-flex;
        align-items: center;
        width: 20px;
        vertical-align: -4px;
        flex: none;
    }
    .subs-count-icon svg {
        display: block;
        width: 100%;
        height: auto;
    }
    .subs-list strong {
        display: inline-flex;
        align-items: center;
        font-size: 24px;
        font-weight: 700;
        color: #1a2a40;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    .subs-list small {
        display: block;
        min-width: 0;
        margin-top: 0;
        white-space: normal;
        overflow: visible;
    }
    .subs-head {
        min-width: 0;
    }
    .subs-list .cat-tag {
        background: none;
        color: inherit;
        padding: 0;
        margin: 0;
        border-radius: 0;
        font-weight: 700;
        font-size: inherit;
    }
    .subs-list .cat-line {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        min-height: 44px;
        padding: 12px 2px;
        box-sizing: border-box;
        white-space: normal;
        overflow: visible;
        font-size: 18px;
        font-weight: 600;
        color: #2d2d2d;
        border-top: 1px dashed #e5e2da;
        margin-top: 0 !important;
    }
    .subs-list .cat-line:first-child {
        border-top: none;
        padding-top: 0;
    }
    .subs-list .cat-line:has(+ .cat-subline) {
        padding-bottom: 0;
    }
    .subs-list .cat-subline {
        display: block;
        white-space: normal;
        overflow: visible;
        padding-left: 14px;
        margin-top: 2px !important;
        margin-bottom: 12px;
        font-size: 16px;
        font-weight: normal;
        color: #6b6a63;
    }
    .subs-list .cat-subline:has(+ .cat-subline) {
        margin-bottom: 0;
    }
    .subs-arrow {
        display: none;
    }
    .subs-select-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        align-self: center;
        margin-top: auto;
        padding: 9px 30px;
        background: #bda16b;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        border-radius: 999px;
        letter-spacing: 0.04em;
    }
    .subs-select-icon {
        display: flex;
        align-items: center;
        width: 16px;
        flex: none;
        color: #fff;
    }
    .subs-select-icon svg {
        display: block;
        width: 100%;
        height: auto;
    }
    .subs-list a {
        padding-left: 18px;
        padding-right: 18px;
    }
    .subs-list strong {
        font-size: 20px;
    }
    .subs-list .cat-line {
        font-size: 15px;
    }
    .subs-list .cat-subline {
        font-size: 15px;
    }
    .subs-list .cat-bullet {
        display: none;
    }
    .subs-list .cat-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        flex: none;
        margin-right: 2px;
    }
    .subs-list .cat-icon svg {
        display: block;
        width: 100%;
        height: auto;
    }
    .subs-count-icon,
    .subs-select-icon {
        display: none;
    }

    /* --- [単品カード] PC/タブレット共通レイアウト（5_通常商品一覧と同一） --- */
    .item-info-row,
    .item-text-block {
        display: contents;
    }
    .grain-frame-sp {
        display: none;
    }
    .product-card-sep {
        display: grid;
        grid-template-columns: 30% 40% 30%;
        grid-template-areas: "visual info cart";
        align-items: stretch;
        padding: 40px;
        gap: 0;
        margin-bottom: 120px;
        container-type: inline-size;
        container-name: productcard;
    }
    @container productcard (max-width: 720px) {
        .product-card-sep { grid-template-columns: 24% 38% 38%; }
        .cart-btn-wrapper { padding: 16px; }
        .price-num { font-size: 24px; }
        .price-tax { font-size: 12px; }
        .shipping-fee-inline { font-size: 12px; padding: 2px 8px; }
        .qty-wrapper { gap: 6px; margin-bottom: 14px; }
        .qty-wrapper > span { font-size: 12px; }
        .qty-btn { width: 32px; height: 36px; font-size: 14px; }
        .qty-input { width: 38px; height: 36px; font-size: 13px; }
        .cart-btn-jp { height: 48px; font-size: 13px; }
        .cart-btn-jp svg { width: 15px; height: 15px; margin-right: 5px; }
        .item-h2 { font-size: 20px; margin-bottom: 6px; }
        .item-amount-text { font-size: 12px; margin-bottom: 10px; }
        .item-spec-text { font-size: 13.5px; line-height: 1.7; margin-bottom: 10px; }
        .more-link-sep { font-size: 12.5px; }
    }
    .visual-area-sep {
        grid-area: visual;
        flex: none;
        padding: 0;
        position: relative;
        display: block;
    }
    .pkg-frame {
        padding: 0;
        margin-bottom: 0;
        background: transparent;
    }
    .img-pkg {
        width: 112%;
        margin-left: -0.5%;
        margin-top: 44px;
        filter: none;
    }
    .product-card-sep:not(#item-s_mf) > .visual-area-sep .img-pkg {
        position: relative;
        top: -35px;
    }
    .grain-frame {
        display: block;
        position: absolute;
        left: -81px; bottom: -101px;
        width: 70%; aspect-ratio: 1;
        border-radius: 50%; overflow: hidden;
        border: 4px solid #ffffff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        background: #f5f5f0;
    }
    .img-grain {
        width: 100%; height: 100%;
        object-fit: cover;
        margin: 0;
        filter: none;
    }
    .info-area-sep {
        grid-area: info;
        flex: none;
        padding: 0 24px;
        box-sizing: border-box;
        margin-top: 0;
        display: block;
    }
    .item-h2 { font-size: 28px; margin: 20px 0 8px; line-height: 1.3; white-space: normal; overflow: visible; text-overflow: clip; }
    .item-amount-text { font-size: 15px; margin: 0 0 16px; }
    .item-spec-text { font-size: 15px; line-height: 1.85; margin: 0 0 16px; }
    .item-note-text { font-size: 13px; line-height: 1.5; margin: 0 0 10px; }
    .more-link-sep {
        margin: 20px 0 18px;
    }
    .cart-btn-wrapper {
        grid-area: cart;
        width: 100%;
        padding: 26px;
        margin: 0;
        box-sizing: border-box;
        align-items: stretch;
        background: #f5f5f0;
        border: 1px solid #e5e2da;
        border-top: 1px solid #e5e2da;
        border-radius: 12px;
    }
    .price-shipping-row {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: start;
        column-gap: 6px;
        row-gap: 10px;
        margin: 0 0 46px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    .price-num { font-size: 32px; white-space: nowrap; }
    .price-tax { font-size: 13px; white-space: nowrap; }
    .shipping-fee-inline {
        grid-column: 1 / -1;
        justify-self: start;
        margin-left: 0;
        margin-top: 0;
        width: fit-content;
    }
    .qty-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 10px;
        margin-bottom: 22px;
        margin-left: 0;
        width: auto;
    }
    .qty-wrapper > span { font-size: 13px; font-weight: 700; color: #767066; letter-spacing: 0.04em; }
    .qty-btn { width: 42px; height: 42px; font-size: 17px; }
    .qty-input { width: 52px; height: 42px; font-size: 15px; }
    .cart-btn-jp {
        width: 100%;
        max-width: none;
        height: 60px;
        font-size: 17px;
    }
    .cart-btn-jp svg { width: 19px; height: 19px; }

    .content-inner-wrapper {
        max-width: 960px;
        padding: 0 25px;
    }
    .course-info-area {
        max-width: 960px;
        margin: 0 auto 30px;
        padding: 0 25px;
    }
    .grid-4-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-4-item {
        padding: 15px 10px;
    }
    .course-contents {
        font-size: 11px;
    }
    .product-grid-2 {
        grid-template-columns: repeat(6, 1fr);
        gap: 30px 15px;
    }
    .product-item {
        grid-column: span 2;
    }
    #item-s_mf {
        grid-column: 2 / span 2;
        grid-row: 2;
    }
    #item-s_mfl {
        grid-column: 4 / span 2;
        grid-row: 2;
    }
    #item-s_g,
    #item-s_gf,
    #item-s_pl {
        grid-row: 3;
    }
    .empty-spacer {
        display: none;
    }

    .p-price {
        font-size: 18px;
    }

    .p-shipping {
        font-size: 11px;
    }
    .item-delivery-note {
        font-size: 11px;
        margin-top: 10px;
        padding: 0 25px 10px;
    }

    .bottom-nav-container {
        flex-direction: row;
        justify-content: center;
    }
    .btn-regular-link {
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
    }
}

/* ============================================================
   ワイドデスクトップ（1024px以上）
   ============================================================ */
@media (min-width: 1024px) {
    .course-desc {
        max-width: 720px;
    }
    #item-s_mf .img-pkg {
        margin-top: 4px;
    }
    #item-s_mf .item-note-text + .item-note-text {
        margin-top: 20px;
    }
    .info-area-sep {
        padding-left: 20px;
        padding-right: 40px;
    }
    .subs-nav {
        max-width: 1100px;
    }
    .recommend-image {
        max-width: 750px;
    }
    .content-inner-wrapper {
        max-width: 1100px;
    }
    .course-info-area {
        max-width: 1100px;
    }
    .grid-4-item {
        padding: 20px 12px;
    }
    .course-item-name {
        font-size: 17px;
    }
    .course-contents {
        font-size: 12px;
    }
    .btn-apply {
        font-size: 14px;
        padding: 14px 0;
    }

    .section-sub-title {
        font-size: 30px;
    }
    .course-furigana {
        margin-bottom: 50px;
    }
    .course-desc-heading {
        font-size: 22px;
    }
    .course-desc {
        font-size: 16px;
    }
    .br-tablet {
        display: none;
    }
    .bottom-nav-container {
        margin: 80px 0 40px;
    }

    /* --- [組み合わせコース] PC：2列2段（下段は左からC・D）＋カードをコンパクト化 --- */
    .grid-4-wrapper:has(.course-card-v2) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "a b"
            "c d";
    }
    .course-card-v2:nth-child(1) { grid-area: a; }
    .course-card-v2:nth-child(2) { grid-area: b; }
    .course-card-v2:nth-child(3) { grid-area: c; }
    .course-card-v2:nth-child(4) { grid-area: d; }

    .course-banner {
        aspect-ratio: auto;
        height: 146px;
    }

    .course-head-block {
        display: flex;
        align-items: flex-end;
        gap: 15px;
        text-align: left;
        padding: 25px 30px 0;
    }
    .course-name-v2 { font-size: 28px; line-height: 1; margin-left: -5px; }
    .course-duration { font-size: 12px; margin-top: 0; }
    .course-more-link { font-size: 13px; padding: 5px 16px; }

    .course-item-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-flow: row;
    }
    .course-item-cell {
        padding: 7px 6px;
        min-width: 0;
    }
    .course-item-cell .pname {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .course-item-cell .amt { font-size: 11px; }
    .course-form-badge { font-size: 14px; padding: 2px 6px; }
    .course-form-badge svg { width: 11px; height: 11px; }

    .course-bottom {
        text-align: center;
        padding: 20px 14px 15px;
    }
    .course-price-row {
        display: inline-flex;
        vertical-align: middle;
        margin: 0 8px 0 0;
    }
    .course-price-v2 { font-size: 26px; }
    .course-tax-v2 { font-size: 11px; }
    .course-ship-badge { font-size: 12px; padding: 2px 8px; }

    .course-qty-row {
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
        margin: 0;
    }
    .course-qty-label { display: none; }
    .course-qty-btn { width: 32px; height: 32px; font-size: 13px; }
    .course-qty-input { width: 32px; height: 32px; font-size: 14px; text-align: center; }

    .course-form-note { margin: 10px 0 0; }
    .course-cta-btn {
        height: 52px;
        width: 75%;
        margin: 0 auto 6px;
    }
    .course-bottom .delivery-note { margin: 0; }
}

/* ============================================================
   タブレット専用レイアウト（768px〜1023px）
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .tablet-break {
        display: inline;
    }
    .subs-list strong {
        display: block;
    }
    .subs-list .course-suffix {
        font-size: 17px;
    }
    .anchor-group {
        padding: 24px 6px;
    }
    .anchor-group-title {
        font-size: 15px;
        white-space: nowrap;
    }
    .anchor-row {
        font-size: 13px;
        white-space: nowrap;
    }

    .cart-btn-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
        gap: 8px 10px;
        padding: 14px 14px;
    }
    .cart-btn-wrapper .delivery-note {
        flex: 0 0 100%;
        text-align: center;
        margin: 8px 0 0;
        padding-top: 8px;
        border-top: 1px solid rgba(26, 42, 64, 0.1);
    }
    .cart-btn-wrapper .price-shipping-row,
    .cart-btn-wrapper .qty-wrapper {
        flex: 0 1 auto;
        min-width: 0;
    }
    .price-shipping-row {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: start;
        align-items: baseline;
        column-gap: 4px;
        row-gap: 2px;
        margin-bottom: 0;
    }
    .price-num { font-size: 23px; }
    .price-tax { font-size: 10.5px; }
    .shipping-fee-inline {
        grid-column: 1 / -1;
        justify-self: start;
        font-size: 10px;
        padding: 2px 8px;
        margin-left: 0;
        margin-top: 2px;
        width: fit-content;
    }
    .qty-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 0;
    }
    .qty-wrapper > span { font-size: 10px; }
    .qty-btn { width: 34px; height: 34px; font-size: 14px; }
    .qty-input { width: 34px; height: 34px; font-size: 13px; }
    .cart-btn-jp {
        flex: 0 0 auto;
        width: auto;
        height: 52px;
        padding: 0 14px;
        font-size: 15px;
        white-space: nowrap;
    }
    .cart-btn-jp svg { width: 18px; height: 18px; margin-right: 5px; }

    .product-card-sep {
        padding-left: 30px;
        padding-right: 30px;
        grid-template-columns: 30% 70%;
        grid-template-areas:
            "visual info"
            "visual cart";
        column-gap: 20px;
        row-gap: 24px;
    }
    #item-s_mf.product-card-sep {
        row-gap: 0;
    }
    #item-s_mf .item-desc-group .item-note-text:last-of-type {
        margin-top: 34px;
        margin-bottom: 0;
    }
    #item-s_mf .cart-btn-wrapper {
        padding-top: 14px;
    }
    .grain-frame {
        left: -41px;
        bottom: -90px;
        width: 80.5%;
    }
    .info-area-sep {
        position: relative;
        padding-left: 0;
    }
    .more-link-sep {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
        width: 160px;
    }
    .img-pkg {
        margin-top: 149px;
    }
    #item-s_mf .img-pkg {
        margin-top: 109px;
    }
    .product-card-sep:not(#item-s_mf) > .visual-area-sep .img-pkg {
        top: -55px;
    }
    #item-s_pl.product-card-sep > .visual-area-sep .img-pkg {
        top: -35px;
    }

    .course-bottom .delivery-note {
        text-align: center;
        font-size: 13px;
        margin: 8px 0 0;
    }
    .course-bottom .delivery-days {
        font-size: 13px;
    }

    /* --- [組み合わせコース] タブレット：2列2段（下段は左からC・D） --- */
    .grid-4-wrapper:has(.course-card-v2) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "a b"
            "c d";
    }
    .course-card-v2:nth-child(1) { grid-area: a; }
    .course-card-v2:nth-child(2) { grid-area: b; }
    .course-card-v2:nth-child(3) { grid-area: c; }
    .course-card-v2:nth-child(4) { grid-area: d; }

    .course-desc-heading {
        font-size: 22px;
    }
    .course-desc {
        max-width: 495px;
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }

    .course-furigana {
        margin-bottom: 50px;
    }

    .section-sub-title {
        font-size: 30px;
    }

    .course-head-block {
        padding: 10px 30px 0;
    }
    .course-name-v2,
    .course-duration {
        margin-left: -16px;
    }
    .course-duration {
        margin-top: 6px;
    }
    #course-s_basic_plus + .grid-4-wrapper .course-more-link {
        padding: 6px 14px;
    }

    .course-item-cell .pname {
        font-size: 16px;
    }
    .course-form-badge {
        font-size: 15.5px;
    }
    .course-form-badge svg {
        width: 14px;
        height: 14px;
    }
}
