/* =========================================================
   Business Connect EC - Clean CSS
   使用色：#000000 / #ffffff / #FFD700 のみ
   対象：
   - TOPページ body_class: bconect-ec-page
   - 商品一覧 body_class: bconect-product-list
   - 商品詳細 body_class: bconect-product-detail
========================================================= */


/* =========================================================
   01. Common / EC-CUBE Layout Reset
========================================================= */

.bconect-ec-page,
.bconect-product-list,
.bconect-product-detail {
    background: #ffffff;
    color: #000000;
}

.bconect-ec-page *,
.bconect-product-list *,
.bconect-product-detail * {
    box-sizing: border-box;
}

.bconect-ec-page .ec-layoutRole,
.bconect-product-list .ec-layoutRole,
.bconect-product-detail .ec-layoutRole {
    background: #ffffff !important;
}

.bconect-ec-page .ec-layoutRole .ec-layoutRole__contents,
.bconect-product-list .ec-layoutRole .ec-layoutRole__contents,
.bconect-product-detail .ec-layoutRole .ec-layoutRole__contents {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

.bconect-ec-page .ec-layoutRole__main,
.bconect-ec-page .ec-layoutRole__mainTop,
.bconect-ec-page .ec-layoutRole__mainWithColumn,
.bconect-product-list .ec-layoutRole__main,
.bconect-product-list .ec-layoutRole__mainTop,
.bconect-product-list .ec-layoutRole__mainWithColumn,
.bconect-product-detail .ec-layoutRole__main,
.bconect-product-detail .ec-layoutRole__mainTop,
.bconect-product-detail .ec-layoutRole__mainWithColumn {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #000000;
}

.bconect-ec-page .ec-layoutRole__contents > .ec-layoutRole__main,
.bconect-product-list .ec-layoutRole__contents > .ec-layoutRole__main,
.bconect-product-detail .ec-layoutRole__contents > .ec-layoutRole__main {
    padding: 0 !important;
}

/* Header / Footer */
.ec-headerRole {
    background: #ffffff;
    border-bottom: 3px solid #000000;
}

.ec-headerRole a {
    color: #000000;
}

.ec-footerRole {
    background: #000000;
    color: #ffffff;
    border-top: 5px solid #FFD700;
}

.ec-footerRole a {
    color: #ffffff;
}

/* Common buttons */
.bconect-ec-page .ec-blockBtn--action,
.bconect-ec-page .ec-inlineBtn--action,
.bconect-product-list .ec-blockBtn--action,
.bconect-product-list .ec-inlineBtn--action,
.bconect-product-detail .ec-blockBtn--action,
.bconect-product-detail .ec-inlineBtn--action {
    background: #FFD700 !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
}

.bconect-ec-page .ec-blockBtn--action:hover,
.bconect-ec-page .ec-inlineBtn--action:hover,
.bconect-product-list .ec-blockBtn--action:hover,
.bconect-product-list .ec-inlineBtn--action:hover,
.bconect-product-detail .ec-blockBtn--action:hover,
.bconect-product-detail .ec-inlineBtn--action:hover {
    background: #000000 !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
}

.bconect-ec-page .ec-blockBtn--cancel,
.bconect-ec-page .ec-inlineBtn--cancel,
.bconect-product-list .ec-blockBtn--cancel,
.bconect-product-list .ec-inlineBtn--cancel,
.bconect-product-detail .ec-blockBtn--cancel,
.bconect-product-detail .ec-inlineBtn--cancel {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
    font-weight: 800 !important;
}

/* Common form */
.bconect-ec-page input,
.bconect-ec-page select,
.bconect-ec-page textarea,
.bconect-product-list input,
.bconect-product-list select,
.bconect-product-list textarea,
.bconect-product-detail input,
.bconect-product-detail select,
.bconect-product-detail textarea {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
}

.bconect-ec-page input:focus,
.bconect-ec-page select:focus,
.bconect-ec-page textarea:focus,
.bconect-product-list input:focus,
.bconect-product-list select:focus,
.bconect-product-list textarea:focus,
.bconect-product-detail input:focus,
.bconect-product-detail select:focus,
.bconect-product-detail textarea:focus {
    outline: 4px solid #FFD700 !important;
}

/* Breadcrumb */
.bconect-product-list .ec-topicpath,
.bconect-product-detail .ec-topicpath {
    max-width: 1180px;
    margin: 28px auto 0 !important;
    padding: 0 32px !important;
    color: #000000 !important;
}

.bconect-product-list .ec-topicpath a,
.bconect-product-detail .ec-topicpath a {
    color: #000000 !important;
    text-decoration: none;
}

.bconect-product-list .ec-topicpath a:hover,
.bconect-product-detail .ec-topicpath a:hover {
    color: #FFD700 !important;
}


/* =========================================================
   02. TOP Page
========================================================= */

.bc-ec {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #000000;
    line-height: 1.8;
}

.bc-label {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 900;
    color: #FFD700;
}

.bc-hero {
    background: #000000;
    color: #ffffff;
    padding: 90px 20px;
    border-bottom: 6px solid #FFD700;
}

.bc-hero__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.bc-hero h1 {
    margin: 0 0 24px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.25;
    letter-spacing: 0.04em;
    font-weight: 900;
    color: #ffffff;
}

.bc-hero__lead {
    max-width: 660px;
    margin: 0 0 32px;
    font-size: 16px;
    color: #ffffff;
}

.bc-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.25s ease;
    border: 3px solid #FFD700;
}

.bc-btn--main {
    background: #FFD700;
    color: #000000 !important;
}

.bc-btn--main:hover {
    background: #000000;
    color: #FFD700 !important;
}

.bc-btn--sub {
    background: #000000;
    color: #ffffff !important;
    border-color: #ffffff;
}

.bc-btn--sub:hover {
    background: #ffffff;
    color: #000000 !important;
}

.bc-hero__card {
    background: #ffffff;
    color: #000000;
    border: 4px solid #FFD700;
    border-radius: 28px;
    padding: 34px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 12px 12px 0 #FFD700;
}

.bc-hero__card-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 900;
    color: #000000;
}

.bc-hero__card-copy {
    margin: 0;
    color: #000000;
}

.bc-section {
    padding: 72px 20px;
    background: #ffffff;
}

.bc-section--light {
    background: #000000;
    color: #ffffff;
}

.bc-section--guide {
    padding-top: 40px;
    background: #ffffff;
}

.bc-section__head {
    max-width: 1120px;
    margin: 0 auto 32px;
    text-align: center;
}

.bc-section__head h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: #000000;
}

.bc-section--light h2,
.bc-section--light h3,
.bc-section--light p,
.bc-section--light .bc-section__head h2 {
    color: #ffffff;
}

.bc-feature-grid,
.bc-category-grid,
.bc-step-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.bc-feature-grid,
.bc-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bc-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bc-feature-card {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 8px 8px 0 #FFD700;
}

.bc-feature-card span,
.bc-step span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #FFD700;
    background: #000000;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 4px 10px;
}

.bc-feature-card h3,
.bc-step h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #000000;
    font-weight: 900;
}

.bc-feature-card p,
.bc-step p {
    margin: 0;
    color: #000000;
}

.bc-category-card {
    display: block;
    min-height: 180px;
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    text-decoration: none;
    color: #000000 !important;
    border: 3px solid #FFD700;
    transition: 0.25s ease;
}

.bc-category-card:hover {
    background: #FFD700;
    color: #000000 !important;
    transform: translateY(-4px);
}

.bc-category-card span {
    display: block;
    width: fit-content;
    margin-bottom: 18px;
    padding: 4px 10px;
    color: #FFD700;
    background: #000000;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.bc-category-card:hover span {
    color: #000000;
    background: #ffffff;
}

.bc-category-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
    color: #000000;
}

.bc-category-card small {
    color: #000000;
}

.bc-banner {
    max-width: 1120px;
    margin: 0 auto;
    background: #000000;
    color: #ffffff;
    border-radius: 28px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 4px solid #FFD700;
}

.bc-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 4vw, 36px);
    color: #ffffff;
}

.bc-banner p {
    margin: 0;
    color: #ffffff;
}

.bc-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 3px solid #000000;
    border-left: 10px solid #FFD700;
}

@media (max-width: 900px) {
    .bc-hero__inner {
        grid-template-columns: 1fr;
    }

    .bc-feature-grid,
    .bc-category-grid,
    .bc-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bc-banner {
        display: block;
    }

    .bc-banner .bc-btn {
        margin-top: 24px;
    }
}

@media (max-width: 640px) {
    .bc-hero {
        padding: 56px 18px;
    }

    .bc-hero__buttons {
        flex-direction: column;
    }

    .bc-btn {
        width: 100%;
    }

    .bc-feature-grid,
    .bc-category-grid,
    .bc-step-grid {
        grid-template-columns: 1fr;
    }

    .bc-section {
        padding: 54px 18px;
    }

    .bc-banner {
        padding: 30px 22px;
        border-radius: 22px;
    }
}


/* =========================================================
   03. Product List Page
   PC: 3列 / Tablet: 2列 / SP: 1列
========================================================= */

.bconect-product-list .ec-pageHeader {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 70px 20px !important;
    background: #000000 !important;
    color: #ffffff !important;
    border-bottom: 6px solid #FFD700;
    text-align: center;
}

.bconect-product-list .ec-pageHeader h1 {
    max-width: 1120px;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0.06em;
    border: none !important;
}

.bconect-product-list .ec-pageHeader h1::before {
    content: "BUSINESS CONNECT MARKET";
    display: block;
    margin-bottom: 12px;
    color: #FFD700;
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 900;
}

.bconect-product-list .ec-pageHeader h1::after {
    content: "ビジネスコネクト会員のこだわり商品を掲載しています";
    display: block;
    margin-top: 16px;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.bconect-product-list .ec-searchnavRole {
    max-width: 1180px !important;
    margin: 48px auto 36px !important;
    padding: 24px 32px !important;
    background: #ffffff !important;
    border: 3px solid #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #000000 !important;
}

.bconect-product-list .ec-searchnavRole__infos,
.bconect-product-list .ec-searchnavRole__counter,
.bconect-product-list .ec-searchnavRole__actions {
    color: #000000 !important;
}

.bconect-product-list .ec-searchnavRole__counter,
.bconect-product-list .ec-searchnavRole__counter span {
    color: #000000 !important;
    font-weight: 900;
}

.bconect-product-list .ec-searchnavRole__actions select,
.bconect-product-list .ec-select select {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    padding: 10px 38px 10px 12px !important;
    border-radius: 0 !important;
}

.bconect-product-list .ec-shelfRole {
    max-width: 1180px !important;
    margin: 0 auto 90px !important;
    padding: 0 32px !important;
    background: #ffffff !important;
}

.bconect-product-list .ec-shelfGrid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.bconect-product-list .ec-shelfGrid__item {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 24px !important;
    background: #ffffff !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
    overflow: hidden;
    transition: 0.25s ease;
}

.bconect-product-list .ec-shelfGrid__item:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 #FFD700;
}

.bconect-product-list .ec-shelfGrid__item a {
    display: block;
    color: #000000 !important;
    text-decoration: none !important;
}

.bconect-product-list .ec-shelfGrid__item-image {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 3px solid #000000 !important;
    overflow: hidden;
}

.bconect-product-list .ec-shelfGrid__item-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: 0.25s ease;
}

.bconect-product-list .ec-shelfGrid__item:hover .ec-shelfGrid__item-image img {
    transform: scale(1.04);
}

.bconect-product-list .ec-shelfGrid__item-name {
    min-height: 88px;
    margin: 0 !important;
    padding: 24px 0 10px !important;
    color: #000000 !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    font-weight: 900 !important;
}

.bconect-product-list .ec-shelfGrid__item-price,
.bconect-product-list .ec-price {
    margin: 0 !important;
    padding: 0 0 8px !important;
    color: #000000 !important;
    font-size: 19px !important;
    line-height: 1.5 !important;
    font-weight: 900 !important;
}

.bconect-product-list .ec-shelfGrid__item-price::before {
    content: "PRICE";
    display: inline-block;
    margin-right: 10px;
    padding: 3px 10px;
    background: #FFD700;
    color: #000000;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 900;
}

.bconect-product-list .ec-productRole__status,
.bconect-product-list .ec-shelfGrid__item-status {
    background: #000000 !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700;
    font-weight: 900;
}

.bconect-product-list .ec-searchnavRole + p,
.bconect-product-list .ec-shelfRole > p {
    max-width: 1120px;
    margin: 40px auto !important;
    padding: 40px 20px !important;
    background: #ffffff !important;
    border: 3px solid #000000;
    color: #000000 !important;
    text-align: center;
    font-weight: 700;
}

.bconect-product-list .ec-pagerRole {
    max-width: 1120px;
    margin: 40px auto 80px !important;
    padding: 0 20px !important;
}

.bconect-product-list .ec-pager {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bconect-product-list .ec-pager__item,
.bconect-product-list .ec-pager__item--active {
    margin: 0 !important;
}

.bconect-product-list .ec-pager__item a,
.bconect-product-list .ec-pager__item--active a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000;
    text-decoration: none;
    font-weight: 900;
}

.bconect-product-list .ec-pager__item a:hover,
.bconect-product-list .ec-pager__item--active a {
    background: #FFD700 !important;
    color: #000000 !important;
}

.bconect-product-list .ec-layoutRole__left,
.bconect-product-list .ec-layoutRole__right {
    background: #ffffff !important;
}

.bconect-product-list .ec-layoutRole__left .ec-role,
.bconect-product-list .ec-layoutRole__right .ec-role {
    border: 3px solid #000000;
    background: #ffffff !important;
    color: #000000 !important;
}

@media (max-width: 1024px) {
    .bconect-product-list .ec-shelfGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 32px !important;
    }

    .bconect-product-list .ec-shelfRole {
        padding: 0 24px !important;
    }
}

@media (max-width: 768px) {
    .bconect-product-list .ec-pageHeader {
        padding: 54px 18px !important;
    }

    .bconect-product-list .ec-searchnavRole {
        display: block;
        margin: 30px 18px 24px !important;
        padding: 18px !important;
    }

    .bconect-product-list .ec-searchnavRole__actions {
        margin-top: 14px;
    }

    .bconect-product-list .ec-shelfGrid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .bconect-product-list .ec-shelfRole {
        padding: 0 18px !important;
    }

    .bconect-product-list .ec-shelfGrid__item-name {
        padding: 20px 0 8px !important;
        font-size: 17px !important;
        min-height: auto;
    }

    .bconect-product-list .ec-shelfGrid__item-price,
    .bconect-product-list .ec-price {
        padding: 0 0 8px !important;
        font-size: 18px !important;
    }
}


/* =========================================================
   04. Product Detail Page
   1カラム / ゆったり表示
========================================================= */

.bconect-product-detail .ec-productRole {
    display: block !important;
    max-width: 1180px !important;
    margin: 50px auto 90px !important;
    padding: 0 32px !important;
    background: #ffffff !important;
}

.bconect-product-detail .ec-productRole__img {
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto 40px !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 4px solid #000000 !important;
    position: static !important;
    overflow: hidden;
}

.bconect-product-detail .ec-productRole__img img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #ffffff;
}

.bconect-product-detail .ec-productRole__profile {
    width: 100% !important;
    max-width: 860px !important;
    margin: 0 auto 40px !important;
    padding: 40px !important;
    background: #ffffff !important;
    border: 4px solid #000000 !important;
    box-shadow: 12px 12px 0 #FFD700 !important;
}

.bconect-product-detail .ec-productRole__title {
    margin: 0 0 22px !important;
    padding: 0 0 20px !important;
    border-bottom: 4px solid #FFD700;
}

.bconect-product-detail .ec-productRole__title h1,
.bconect-product-detail .ec-productRole__title h2,
.bconect-product-detail .ec-productRole__title {
    color: #000000 !important;
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em;
}

.bconect-product-detail .ec-productRole__title::before {
    content: "BUSINESS CONNECT MARKET";
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 12px;
    color: #FFD700;
    background: #000000;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.bconect-product-detail .ec-productRole__price {
    margin: 0 0 30px !important;
    padding: 26px !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #FFD700 !important;
}

.bconect-product-detail .ec-productRole__price::before {
    content: "PRICE";
    display: block;
    margin-bottom: 8px;
    color: #FFD700;
    font-size: 12px;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.bconect-product-detail .ec-productRole__price .ec-price,
.bconect-product-detail .ec-productRole__price small,
.bconect-product-detail .ec-productRole__price span {
    color: #ffffff !important;
}

.bconect-product-detail .ec-productRole__price .ec-price {
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1.3;
}

.bconect-product-detail .ec-productRole__code,
.bconect-product-detail .ec-productRole__priceRegular {
    color: #000000 !important;
    font-weight: 700;
}

.bconect-product-detail .ec-productRole__category {
    margin: 0 0 26px !important;
    padding: 18px !important;
    background: #ffffff !important;
    border: 3px solid #000000;
}

.bconect-product-detail .ec-productRole__category div,
.bconect-product-detail .ec-productRole__category a {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 700;
}

.bconect-product-detail .ec-productRole__category a {
    display: inline-block;
    margin: 6px 6px 0 0;
    padding: 5px 12px;
    background: #FFD700;
    color: #000000 !important;
    font-size: 13px;
}

.bconect-product-detail .ec-productRole__actions {
    margin: 30px 0 !important;
    padding: 28px !important;
    background: #ffffff !important;
    border: 3px solid #000000 !important;
}

.bconect-product-detail .ec-productRole__actions label,
.bconect-product-detail .ec-productRole__quantity label {
    display: block;
    margin-bottom: 8px;
    color: #000000 !important;
    font-weight: 900;
}

.bconect-product-detail .ec-productRole__btn,
.bconect-product-detail .ec-blockBtn--action,
.bconect-product-detail .ec-inlineBtn--action {
    width: 100% !important;
    min-height: 66px !important;
    background: #FFD700 !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em;
    transition: 0.25s ease;
}

.bconect-product-detail .ec-productRole__favorite,
.bconect-product-detail .ec-productRole__favoriteBtn {
    margin-top: 16px !important;
}

.bconect-product-detail .ec-productRole__favorite a,
.bconect-product-detail .ec-productRole__favoriteBtn,
.bconect-product-detail .ec-inlineBtn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
    font-weight: 800;
}

.bconect-product-detail .ec-productRole__description {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 60px auto 0 !important;
    padding: 0 !important;
    color: #000000 !important;
    background: #ffffff !important;
}

.bconect-product-detail .ec-productRole__description h2,
.bconect-product-detail .ec-productRole__description h3 {
    color: #000000 !important;
    font-weight: 900;
}

.bconect-product-detail .ec-productRole__description ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.bconect-product-detail .ec-productRole__description li {
    margin: 0 0 10px;
    padding: 12px 16px;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
}

.bconect-product-detail .ec-modal {
    color: #000000 !important;
}

.bconect-product-detail .ec-modal .ec-modal-box {
    background: #ffffff !important;
    border: 4px solid #000000;
}

.bconect-product-detail .ec-modal .ec-modal-title {
    color: #000000 !important;
    font-weight: 900;
}

.bconect-product-detail .ec-productRole + .ec-role,
.bconect-product-detail .ec-role {
    max-width: 1180px;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 600px) {
    .bconect-product-detail .ec-topicpath {
        padding: 0 18px !important;
    }

    .bconect-product-detail .ec-productRole {
        padding: 0 18px !important;
        margin: 32px auto 64px !important;
    }

    .bconect-product-detail .ec-productRole__profile {
        padding: 26px !important;
        box-shadow: 6px 6px 0 #FFD700 !important;
    }

    .bconect-product-detail .ec-productRole__title h1,
    .bconect-product-detail .ec-productRole__title h2,
    .bconect-product-detail .ec-productRole__title {
        font-size: 26px !important;
    }

    .bconect-product-detail .ec-productRole__price .ec-price {
        font-size: 26px !important;
    }
}


/* =========================================================
   05. Product Detail Free Area
   豆富製法：div構成 / PC 2カラム / SP 1カラム
========================================================= */

.bc-free-method {
    max-width: 1000px;
    margin: 70px auto 0;
    padding: 0 24px 40px;
    background: #ffffff;
    color: #000000;
}

.bc-free-method * {
    box-sizing: border-box;
}

.bc-free-method > h3 {
    margin: 40px 0 14px;
    padding-left: 14px;
    border-left: 8px solid #FFD700;
    color: #000000;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.5;
}

.bc-free-method > p {
    margin: 0 0 18px;
    color: #000000;
    font-size: 16px;
    line-height: 2;
}

.bc-free-method > ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.bc-free-method > ul li {
    margin: 0 0 10px;
    padding: 12px 16px;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
}

.bc-method-head {
    margin: 64px 0 36px;
    padding: 42px 32px;
    border: 4px solid #000000;
    background: #ffffff;
    box-shadow: 10px 10px 0 #FFD700;
    text-align: center;
}

.bc-method-head--black {
    background: #000000;
    color: #ffffff;
}

.bc-method-label {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    background: #000000;
    color: #FFD700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.bc-method-head--black .bc-method-label {
    background: #ffffff;
    color: #000000;
}

.bc-method-head h2 {
    margin: 0 0 16px;
    color: #000000;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.45;
    font-weight: 900;
}

.bc-method-head p {
    max-width: 760px;
    margin: 0 auto;
    color: #000000;
    font-size: 16px;
    line-height: 2;
}

.bc-method-head--black h2,
.bc-method-head--black p {
    color: #ffffff;
}

.bc-method-section {
    display: flex !important;
    align-items: center;
    gap: 36px;
    margin: 0 0 44px;
    padding: 28px;
    border: 3px solid #000000;
    background: #ffffff;
}

.bc-method-section--reverse {
    flex-direction: row-reverse !important;
}

.bc-method-image {
    flex: 0 0 45%;
    border: 3px solid #000000;
    background: #ffffff;
    overflow: hidden;
}

.bc-method-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.bc-method-text {
    flex: 1;
}

.bc-method-text span {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    background: #FFD700;
    color: #000000;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.14em;
    font-weight: 900;
}

.bc-method-text h3 {
    margin: 0 0 16px;
    padding: 0 0 12px;
    border: none;
    border-bottom: 4px solid #FFD700;
    color: #000000;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.45;
    font-weight: 900;
}

.bc-method-text p {
    margin: 0 0 14px;
    color: #000000;
    font-size: 15.5px;
    line-height: 2;
}

.bc-method-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bc-free-method {
        padding: 0 18px 36px;
    }

    .bc-method-head {
        padding: 34px 22px;
        box-shadow: 7px 7px 0 #FFD700;
    }

    .bc-method-section,
    .bc-method-section--reverse {
        display: block !important;
        padding: 20px;
        margin-bottom: 32px;
    }

    .bc-method-image {
        margin-bottom: 22px;
    }

    .bc-method-text p {
        font-size: 15px;
    }
}