/** Shopify CDN: Minification failed

Line 275:13 Expected ":"

**/
/* 20240522 オーサ情報追加対応 START */
.article-custom__author-info {
    display: flex;
    align-items: center;
    border: 10px solid #eee;
    max-width: 72.6rem;
    margin: 0 auto;
    margin-top: 30px;
    padding: 10px 30px;
}
@media screen and (max-width: 767px) {
    .article-custom__author-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 15px;
        margin-top: 20px;
        padding: 10px 15px;
    }
}

.author-info__content {
    padding: 10px 15px;
    line-height: 1.6;
}

.author-info__img {
    width: 12em;
    height: 12em;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 50%;
}

.author-info__name {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: -10px;
}

.author-info .metafield-multi_line_text_field {
    font-size: 12px;
    font-weight: lighter;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .author-info__name {
        text-align: center;
    }

    .author-info__name,
    .author-info__profile {
        margin-left: 0;
    }
}
/* 20240522 オーサ情報追加対応 END */

/* 20240628 ブログ掲載画面 - 仕様変更対応  START */

/* 記事カテゴリー / タグ情報 */
.article-custom__tags {
    max-width: 72.6rem;
    margin: 0 auto;
    padding: 10px 15px;
}

.article-custom__category-container {
    display: flex;
    align-items: baseline;
}

.article-custom__category {
    white-space: nowrap;
}

.article-category__category-items {
    margin-left: 20px;
    display: flex;
}

@media screen and (max-width: 767px) {
    .article-category__category-items {
        display: block;
        gap: 10px;
        padding: 0 10px;
    }

    .article-category__category-item {
        display: inline;
    }
}

.category-separator {
    margin: 0 5px;
}

.article-custom__tag-container {
    margin-top: 10px;
}

.article-custom__tag-items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 5px;
}

.tag__item {
    border: 3px solid #bebebe;
    max-width: fit-content;
    width: 100%;
    padding: 0 10px;
    border-radius: 20px;
}

/* 関連記事 */
.related-articles__inner {
    max-width: 72.6rem;
    margin: 0 auto;
    padding: 10px 15px;
}

.related-articles__section-title {
    font-weight: normal;
}

.cards {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto; /* 横スクロールを.cardsに適用 */
    }

    .cards__item {
        flex: 0 0 auto;
        width: 70%; /* スマートフォン表示時の各カードの幅、必要に応じて調整 */
        white-space: normal; /* カード内でテキストが折り返されるように設定 */
    }
}

.card__img {
    aspect-ratio: 8 / 5;
    object-fit: cover;
}

.card__title {
    margin-bottom: 0.6rem;
    white-space: normal; /* タイトルが折り返されるように設定 */
}

.card__times {
    font-size: 1rem;
    letter-spacing: 0.13rem;
    line-height: calc(1 + 0.2 / var(--font-body-scale));
    text-transform: uppercase;
}

.card__category {
    font-size: 12px;
    padding: 4px 8px;
    color: #000;
    border: 1px solid #000;
}

.card__text {
    font-size: 14px;
    margin-top: 8px;
    color: #000;
    white-space: normal; /* テキストが折り返されるように設定 */
}

/* SNSシェア */
.sns-share__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sns-share-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-left: 10px;
}

.sns-share-button li {
    width: 30px;
    height: 30px;
    display: block;
    color: #fff;
    font-size: 20px;
    transition: 0.3s all;
    border-radius: 100%;
}

.sns-share-button li:hover {
    opacity: 0.6;
}

.sns-share-button li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.sns-share-button li.x {
    background-color: #000;
}

.sns-share-button li.fb {
    background-color: #1877f2;
}

.sns-share-button li.line {
    background-color: #00b900;
}

/* 目次 */
.tableContent-wrapper {
    margin: 20px 0;
    line-height: 1.6;
}

.tableContent {
    border: 0.1rem solid rgba(var(--color-foreground), 0.2);

    overflow: hidden;
    transition: height 0.3s ease-out;
    height: auto; /* 初期状態で非表示 */
}

.tableContent-title {
    color: #333;
    cursor: pointer;
    padding: 5px 30px 5px 20px; /* 右のパディングを増やして矢印のスペースを作る */
    width: 100%;
    border: 4px solid #c9c9c9;
    text-align: left;
    outline: none;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    position: relative; /* 擬似要素の位置基準 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

.tableContent-title::after {
    position: absolute;
    top: 40%;
    right: 25px;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    transform 0.3s ease-in-out,
    transition:
        top 0.3s ease-in-out;
    transform: rotate(135deg);
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

/* アクティブ時の矢印（上向き） */
.tableContent-title.active::after {
    top: 45%;
    transform: rotate(-45deg);
}

.tableContent-h2 {
    padding: 7px 10px;
    display: none;
    overflow: hidden;
    margin: 0;
}

.tableContent-h2 a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 0;
}
/* 20240628 ブログ掲載画面 - 仕様変更対応  END */

/* 20240724 商品詳細ページ - 仕様変更対応 START */
.tooltip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    width: 20px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    max-width: 310px;
    width: max-content;
    background-color: #f2f2f2;
    color: #121212;
    text-align: left;
    border-radius: 6px;
    padding: 5px 10px;

    /* 位置の設定 */
    position: absolute;
    z-index: 1;
    bottom: 50%; /* 要素の中央に合わせる */
    left: 100%; /* 要素の右側に配置 */
    margin-left: 10px; /* 少し余裕を持たせる */
    margin-top: -30px; /* ツールチップの高さの半分だけ上にずらす */

    /* ホバー時の表示設定 */
    opacity: 0;
    transition: opacity 0.5s;

    /* font-size: 14px; */
}
@media screen and (max-width: 767px) {
    .tooltip .tooltiptext {
        top: 50%;
        bottom: auto;
    }
}
@media screen and (max-width: 546px) {
    .tooltip .tooltiptext {
        max-width: 210px;
    }
}
@media screen and (max-width: 425px) {
    .tooltip .tooltiptext {
        margin-top: 5px;
        margin-left: 0;
        top: 100%;
        left: -100%;
        font-weight: 300;
        /* font-size: 11px; */
    }
}
@media screen and (max-width: 375px) {
    .tooltip .tooltiptext {
        max-width: 200px;
    }
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.product__info-container .c-variant_btn_blocks_wrap {
    margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
    .md-none {
        display: none;
    }
}
/* 20240724 商品詳細ページ - 仕様変更対応 END */

/* 20240805 ヘッダー変更 - 仕様変更対応 START */
.iconNav a.c-flex {
    display: flex;
    align-items: center;
    width: 149px;
}
@media (max-width: 768px) {
    .iconNav a.c-flex {
        width: auto;
    }
}

.c-customer__wrap.c-flex,
.drawer__nav li a.c-flex,
.drawer__nav .c-customer__wrap.c-flex {
    display: flex;
    align-items: center;
}

.drawer__nav .c-customer__name-suffix,
.iconNav span.c-customer__name-suffix {
    display: inline-block;
    font-weight: 400;
    color: rgba(18, 18, 18, 0.75);
    font-size: 11px;
    padding-left: 0px;
}

.iconNav img.c-customer__img {
    margin: 0 5px 0 0;
}

.iconNav a:hover.c-customer__name--login,
.iconNav a:hover.c-customer__register-link {
    text-decoration: underline;
}
.iconNav li small.c-customer__register {
    text-align: left;
}

.iconNav a.c-customer {
    margin: 0;
}
.iconNav a.c-customer__name {
    font-size: 11px;
    font-weight: bold;
}

.iconNav a.c-customer__name--mypage {
    color: #009fbe;
}
.iconNav a:hover.c-customer__name--mypage {
    text-decoration: underline;
}

.iconNav a.c-customer__name--login {
    color: #ee9949;
    font-size: 13px;
}

.iconNav a small.c-customer__mypage {
    color: rgba(18, 18, 18, 0.75);
    margin-top: 0;
}

.hdrMiddle__right--2 .searchForm.c-searchForm {
    width: 220px;
    margin-right: 25px;
}

.iconNav--text > ul > li:not(:last-child) {
    margin-right: 18px;
}

@media (max-width: 991px) {
    .iconNav--text > ul > li:not(:last-child) {
        margin-right: 4px;
    }
}

@media (max-width: 768px) {
    .c-customer {
        margin: 0;
    }
    .c-customer__name {
        font-size: 11px;
        font-weight: bold;
    }
    .c-customer__name {
        font-size: 14px;
        max-width: 140px;
    }

    .c-customer__name--mypage {
        color: #009fbe;
    }

    .c-customer__name--login {
        color: #ee9949;
        font-size: 13px;
    }
}
/* 20240805 ヘッダー変更 - 仕様変更対応 END */

/* 20240819 問い合わせフォーム - 仕様変更対応 START */
.variant_btn_block.padding-bottom__reset {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .minimum-purchase-quantity__wrap {
        border-top: 1px dotted #ddd;
        margin-top: 10px;
        width: 100%;
    }

    .minimum-purchase-quantity {
        margin: 0;
    }
}
/* 20240819 問い合わせフォーム - 仕様変更対応 END */

/* 20241011 10月仕様変更対応 START */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 5px 0 20px;
}
.product-table th,
.product-table td {
    border: 1px solid #000;
    padding: 10px;
    text-align: left;
}
.product-table th {
    background-color: #f4f4f4;
    width: 30%;
}

.product-table td {
    text-align: left;
    padding-left: 20px; /* 必要に応じて余白を追加 */
}
/* 20241011 10月仕様変更対応 END */

/* 20241220 12月仕様変更対応 START */
.c__flex {
    display: flex;
    align-items: center;
}

.c__flex--end {
    display: flex;
    align-items: flex-end;
}

.c__bold {
    font-weight: bold;
}

small.tax_in.c__tax-in {
    font-weight: 400;
    margin: 0;
}

.price.c__price {
    font-size: 1.68rem;
    letter-spacing: 0;
}

.c__min-item-price {
    font-size: 12px;
}
@media screen and (max-width: 425px) {
    .c__min-item-price {
        font-size: calc(12 / 425 * 100vw);
    }
}

.c__postage {
    margin: 0;
    font-weight: bold;
}

.c__delivery-date {
    font-size: 1.5rem;
}
@media screen and (max-width: 425px) {
    .c__delivery-date {
        font-size: 12px;
    }
}

.c__variant_pricewrap .tax_in {
    margin-left: 3px;
    display: inline-block;
}

.c__variant_pricewrap p strong {
    font-size: 28px;
    color: #000;
}

.c__itemprice--xl {
    margin: 0;
}

.c__itemprice--value {
    font-size: 18px;
}

.variant_pricewrap p.c__postage {
    font-size: 2.3rem;
}

.variant_pricewrap p span.c__itemprice--value {
    display: inline-block;
}
@media screen and (max-width: 425px) {
    .variant_pricewrap p span.c__itemprice--value {
        font-size: 14px;
    }
}

@media screen and (max-width: 1131px) {
    .c__fdc.v_btn_block_title_wrap {
        width: 100%;
    }
}

@media screen and (max-width: 749px) {
    .c__fdc.v_btn_block_title_wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

.c__product-info .c__postage {
    color: #000;
    font-size: 2.3rem;
}

.c__product-info .c__delivery-date {
    margin-top: 0;
    color: #000;
    font-size: 1.68rem;
}

.md-show {
    display: none;
}
@media screen and (max-width: 749px) {
    .md-show {
        display: block;
    }
}

@media screen and (max-width: 749px) {
    .md-none--2 {
        display: none;
    }
}

@media screen and (max-width: 1131px) {
    .xl-none {
        display: none;
    }
}
.xl-show {
    display: none;
}
@media screen and (max-width: 1131px) {
    .xl-show {
        display: block;
    }
}
/* 20241220 12月仕様変更対応 END */

/* 20250117 1月仕様変更対応 START */
.card-information .c__lowest-price {
    color: #fff;
}

@media screen and (max-width: 749px) {
    .product__info-container .c__lowest-price-wrap {
        margin-bottom: 30px;
    }
}

.c__lowest-price {
    color: #fff;
    font-size: 14px;
    background-color: #e20000;
    border-radius: 5px;
    max-width: max-content;
    width: 100%;
    padding: 1px 10px;
    margin: 0;
}

.c__lowest-price--main {
    padding: 1px 20px;
    font-size: 16px;
}

.c__lowest-price-text {
    font-size: 12px;
    margin-top: 5px;
}
@media screen and (max-width: 435px) {
    .c__lowest-price-text {
        font-size: calc(14 / 435 * 100vw - 0.2px);
    }
}

.c__lowest-price-subtext {
    display: block;
    font-size: 11px;
}
@media screen and (max-width: 435px) {
    .c__lowest-price-subtext {
        font-size: calc(14 / 435 * 100vw);
    }
}

.c__lowest-price-text a.c__lowest-price-link {
    text-decoration: underline;
    color: #009fbe;
}
@media screen and (max-width: 435px) {
    .c__lowest-price-text a.c__lowest-price-link {
        font-size: calc(15 / 435 * 100vw - 0.2px);
    }
}

.alternative-product__wrap {
    position: absolute;
    z-index: 0;
    top: 10%;
    left: 5%;
    background-color: #ee9949;
    border-radius: 5px;
    padding: 0 10px;
}
@media screen and (max-width: 749px) {
    .alternative-product__wrap {
        top: 20%;
        left: 10%;
    }
}

.alternative-product__title {
    font-size: 14px;
    color: #fff;
    margin: 0;
}
@media screen and (max-width: 1440px) {
    .alternative-product__title {
        font-size: calc(14 / 1440 * 100vw + 2px);
    }
}

@media screen and (max-width: 989px) {
    .alternative-product__title {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    .alternative-product__title {
        font-size: calc(14 / 500 * 100vw + 2px);
    }
}

.alternative-product__wra.alternative-product__wrap--detail {
    position: absolute;
    z-index: 0;
    top: 12%;
    left: 10%;
    background-color: #ee9949;
    border-radius: 8px;
    padding: 0 10px;
}
@media screen and (max-width: 989px) {
    .alternative-product__wra.alternative-product__wrap--detail {
        top: 9%;
        left: 12%;
    }
}
@media screen and (max-width: 749px) {
    .alternative-product__wra.alternative-product__wrap--detail {
        top: 30%;
        left: 15%;
        transform: translateY(-10px);
    }
}
@media screen and (max-width: 500px) {
    .alternative-product__wra.alternative-product__wrap--detail {
        top: 23%;
        left: 12%;
        transform: translateY(-10px);
    }
}

.alternative-product__title.alternative-product__title--detail {
    font-size: 17px;
    color: #fff;
    margin: 0;
}

@media screen and (max-width: 989px) {
    .alternative-product__title.alternative-product__title--detail {
        font-size: calc(17 / 989 * 100vw + 2px);
    }
}

@media screen and (max-width: 749px) {
    .alternative-product__title.alternative-product__title--detail {
        font-size: 20px;
    }
}

@media screen and (max-width: 500px) {
    .alternative-product__title.alternative-product__title--detail {
        font-size: calc(18 / 500 * 100vw + 2px);
    }
}
/* 20250117 1月仕様変更対応 END */

/* 20250201 2月仕様変更対応 START */
.c-recover__password--success {
    justify-content: center;
}

.c-customer__error-container .errors ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4141;

    position: relative;
    padding-left: 24px;
}

.c-customer__error-container .errors ul li::before {
    content: "";
    display: inline-block;
    width: 16px; /* SVGのサイズ */
    height: 16px;
    background-image: url('data:image/svg+xml,%3Csvg aria-hidden="true" focusable="false" role="presentation" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="6.5" cy="6.50049" r="5.5" stroke="white" stroke-width="2"/%3E%3Ccircle cx="6.5" cy="6.5" r="5.5" fill="%23EB001B" stroke="%23EB001B" stroke-width="0.7"/%3E%3Cpath d="M5.87413 3.52832L5.97439 7.57216H7.02713L7.12739 3.52832H5.87413ZM6.50076 9.66091C6.88091 9.66091 7.18169 9.37267 7.18169 9.00504C7.18169 8.63742 6.88091 8.34917 6.50076 8.34917C6.12061 8.34917 5.81982 8.63742 5.81982 9.00504C5.81982 9.37267 6.12061 9.66091 6.50076 9.66091Z" fill="white"/%3E%3Cpath d="M5.87413 3.17832H5.51535L5.52424 3.537L5.6245 7.58083L5.63296 7.92216H5.97439H7.02713H7.36856L7.37702 7.58083L7.47728 3.537L7.48617 3.17832H7.12739H5.87413ZM6.50076 10.0109C7.06121 10.0109 7.5317 9.57872 7.5317 9.00504C7.5317 8.43137 7.06121 7.99918 6.50076 7.99918C5.94031 7.99918 5.46982 8.43137 5.46982 9.00504C5.46982 9.57872 5.94031 10.0109 6.50076 10.0109Z" fill="white" stroke="%23EB001B" stroke-width="0.7"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0; /* `li` の左側に配置 */
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 425px) {
    .c-customer__error-container .errors ul {
        padding-left: 0;
    }

    .c-customer__error-container .errors ul li::before {
        top: 25%;
    }
}

.c__bulk-order-text {
    display: block;
    font-size: 16px;
    letter-spacing: 0;
}
@media screen and (max-width: 435px) {
    .c__bulk-order-text {
        font-size: 15px;
        letter-spacing: 0.1em;
    }
}

.c__bulk-order-text a.c__bulk-order-link {
    text-decoration: underline;
    color: #009fbe;
}
@media screen and (max-width: 435px) {
    .c__bulk-order-text a.c__bulk-order-link {
        font-size: calc(15 / 435 * 100vw - 0.2px);
    }
}

.c-delivery-date.c-cart__blocks--left {
    width: 100%;
}

.cart__footer.c-cart__footer .c-cart__blocks--left {
    display: flex;
    flex-direction: column;
    row-gap: 25px;

    width: 63%;
}

@media screen and (max-width: 749px) {
    .cart__footer.c-cart__footer .c-cart__blocks--left {
        width: 100%;
    }
}

@media screen and (max-width: 749px) {
    .cart__footer.c-cart__footer .cart__note {
        margin-bottom: 0;
    }
}

.cart__delivery-wrapper {
    margin-bottom: 10px;
}
@media screen and (max-width: 749px) {
    .cart__delivery-wrapper {
        margin-bottom: 20px;
    }
}

.cart__delivery-input {
    margin-top: 0;
}

.cart__delivery-input input {
    height: 30px;
    font-size: 16px;
}

.delivery-date__description {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.5;
}

@media screen and (max-width: 749px) {
    .cart-item__media.c-cart-item__media {
        grid-row: 1/2;
    }

    .cart-item__details.c-cart-item__details {
        grid-column: 2 / 6;
    }

    .c-cart-item__totals {
        grid-column: 1 / 6;
        order: 1;
    }
    .cart-item__quantity.c-cart-item__quantity {
        grid-column: 1 / 5;
    }
    .cart-item__quantity-wrapper.c-cart-item__quantity-wrapper {
        flex-wrap: nowrap;
    }

    .c-cart-item__delivery {
        grid-column: 5/5;
    }
}

a.variant-plan__link {
    text-decoration: underline;
    color: #009fbe;
}

a.variant-plan__link:hover {
    text-decoration: underline;
    color: #009fbe;
}

.to_specialpriceBox p.c-fz14 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media screen and (max-width: 749px) {
    .to_specialpriceBox p.c-fz14 {
        font-size: 12px;
    }

    .side_to_top_btn_sec--floating {
        bottom: 22vw;
    }
}

.article-custom__representative-info {
    max-width: 120rem;
    width: 100%;

    display: flex;
    align-items: center;
    border: 10px solid #eee;
    margin: 40px auto;
    padding: 10px 15px;
    justify-content: center;
    gap: 25px;
}
@media screen and (max-width: 767px) {
    .article-custom__representative-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        gap: 12px;
    }
}

.representative-info__img {
    width: calc(12em * 2 / 3);
    height: calc(12em * 2 / 3);
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 50%;
}

.representative-info__name {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: -10px;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .representative-info__name {
        text-align: center;
        display: block;
    }

    .representative-info__name,
    .representative-info__profile {
        margin-left: 0;
    }
}

.representative-info__content {
    max-width: 900px;
    width: 100%;
}

.representative-info__content p {
    font-size: 14px;
    line-height: 1.5;
}

.representative-info__content p:not(:first-child) {
    margin: 6px 0;
}

@media screen and (max-width: 767px) {
    .representative-info__content p {
        font-size: 12px;
    }

    .representative-info__content p:not(:first-child) {
        margin: 12px 0;
    }
}

.representative-info__content a {
    text-decoration: underline;
    color: #009fbe;
}

.representative-info__content p.representative-info__title {
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    .representative-info__content p.representative-info__title {
        text-align: center;
        margin-bottom: 25px;
    }
}

.c-cart-item__price-wrapper .price.price--end.c-price {
    font-size: 1.7rem;
    margin-top: 0;
}

.cart__footer.c-cart__footer .c-cart__blocks--left .text-area {
    min-height: 14rem;
}
@media screen and (max-width: 767px) {
    .cart__footer.c-cart__footer .c-cart__blocks--left .text-area {
        min-height: 6rem;
    }
}
/* 20250201 2月仕様変更対応 END */

/* 20250326 3月仕様変更対応 START */

.filter-description {
    text-align: center;
}
/* 20250326 3月仕様変更対応 END */

/* 20250412 4月仕様変更対応 START */
@media (max-width: 768px) {
    .js-readmore {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .readmore-button {
        display: inline-block;
        margin-top: 8px;
        background-color: transparent;
        color: #bcbcbc;
        border: none;
        cursor: pointer;
        font-size: 12px;
        padding: 0;
    }
}

.introductory-text__content {
    line-height: 1.6;
}

.article-template__content {
    line-height: 1.6;
}

.article-template__title {
    font-weight: 600;
}
/* 20250412 4月仕様変更対応 END */

.profile-card {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ddd;
    padding: 20px;
    max-width: 72.6rem;
    /* font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif; */
    position: relative;
    margin: 30px auto 0;
}

.profile-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.profile-image {
    width: 7.875em;
    height: 7.875em;
    border-radius: 50%;
    border: 1px solid rgba(238, 238, 238, 0.7);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ribbon {
    width: fit-content;
    margin-top: -15px;
    background: #009fbe;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.8;
    padding: 0 30px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        calc(100% - 0px) 0%,
        calc(100% - 10px) 50%,
        calc(100% - 0px) 100%,
        calc(100% - 10px) 100%,
        0 100%,
        10px 50%
    );
}

.ribbon::before,
.ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    z-index: 1;
}

.ribbon::before {
    left: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 10px solid #009fbe;
}

.ribbon::after {
    right: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 10px solid #009fbe;
}

.profile-info {
    flex: 1;
}

.profile-title {
    font-size: 14px;
    margin-bottom: 4px;
}

.profile-name {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 0;
}

.profile-description {
    font-size: 12px;
    line-height: 1.6;
}
/* 20250412 4月仕様変更対応 END */

/* 20250510 5月仕様変更対応 START */
.tab-content-multiple .slider-wrapper:not(:first-child) {
    margin-top: 30px;
}

.tab-content-multiple .multiple-slider {
    margin-top: 20px;
}

.slider-subtitle {
    position: relative;
    padding-left: 3.5rem;
}

.slider-subtitle::before {
    content: "\25b6\fe0e";
    display: block;
    width: 30px;
    color: #009fbe;
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 749px) {
    .tab-content-multiple .slider-wrapper:not(:first-child) {
        margin-top: 20px;
    }

    .slider-subtitle {
        position: relative;
        padding-left: 2rem;
    }

    .slider-subtitle::before {
        content: "\25b6\fe0e";
        display: block;
        width: 30px;
        color: #009fbe;
        position: absolute;
        left: -0.5rem;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}
/* 20250510 5月仕様変更対応 END */

/* 20250606 6月仕様変更対応 START */
.to_specialpriceBoxBlock {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.customer-register__titleWrap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;

    padding-top: 27px;
}

.customer_registerWrap p {
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    .to_specialpriceBox a {
        padding: 12px 20px 12px 8px;
    }

    .customer_registerWrap p {
        font-size: 15px;
    }
}
/* 20250606 6月仕様変更対応 END */

/* 20250720 7月仕様変更対応 START */
.brand_text_label {
    max-width: 140px;
    width: 100%;
}

.feature_text_label {
    max-width: 120px;
    width: 100%;
}

.brand_text_group,
.feature_text_group {
    display: flex;
    gap: 30px;
    align-items: baseline;
    padding-bottom: 20px;
}

.brand_text_links,
.feature_text_links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.brand_text_link,
.feature_text_link {
    padding: 5px 20px;
    line-height: 2;

    border: 1px solid #000;
    border-radius: 100vh;
    background: #fff;

    font-size: 12px;
}

.brand_text_linkItem a.brand_text_link:hover,
.feature_text_linkItem a.feature_text_link:hover {
    color: #549eb2;
    transition: 0.5s;
    border-color: #549eb2;
}
@media screen and (max-width: 749px) {
    .brand_text_group,
    .feature_text_group {
        gap: 15px;
        padding-bottom: 40px;
        flex-wrap: wrap;
    }

    .brand_text_links,
    .feature_text_links {
        gap: 20px 15px;
        flex-wrap: wrap;
    }
}
/* 20250720 7月仕様変更対応 END */

/* 20250820 8月仕様変更対応 START */
a.c-link {
    text-decoration: underline;
    color: #009fbe;
}

a.c-link:hover {
    text-decoration: underline;
    color: #009fbe;
}

.variant_pricewrap p span.c__itemprice--value span {
    display: inline-block;
}

/* 20250820 8月仕様変更対応 END */

/* 20250920 9月仕様変更対応 START */
.mxpr-review__list-item-meta {
    align-items: center;
}

.mxpr-review__list-item-meta-shop {
    font-size: 0.875em;
    font-weight: 700;
    color: #f86408;
    margin-left: 5px;
}

.mxpr-review__list-item-meta-title {
    margin: 0;
}

.c-product__tags-wrap {
    overflow-x: auto; /* 横スクロール有効 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* iOS でスムーズスクロール */
}
.c-product__tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 20px;
}

a.c-product__tag-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #549eb2;
    color: #549eb2;
    font-size: 12px;
    line-height: 16px;
    padding: 8.5px 20px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s;

    width: max-content;
}
a.c-product__tag-link:hover {
    background: #549eb2;
    color: #ffffff;
    /* border-color: #888888; */
}

@media screen and (max-width: 749px) {
    .mxpr-review__list-item-meta-shop {
        font-size: 12px;
        margin-right: 5px;
    }

    .mxpr-review__list-item-meta-title {
        font-size: 14px;
    }
    .mxpr-review__list-item-body-conent {
        font-size: 13px;
    }

    .mxpr-review__list-item-top-review {
        margin-left: 5px;
    }

    .c-product__tags-wrap {
        overflow-x: auto; /* 横スクロール有効 */
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* iOS でスムーズスクロール */
    }

    .c-product__tags {
        flex-wrap: nowrap; /* 折り返しを無効にして横一列に */
        gap: 8px; /* モバイルでは少し狭く */
        padding-bottom: 8px; /* スクロールバー分の余白 */
    }

    a.c-product__tag-link {
        flex-shrink: 0; /* 圧縮されないように */
        font-size: 11px; /* モバイルでは少し小さく */
        padding: 5px 16px; /* パディングも調整 */
        width: max-content;
    }
}
/* 20250920 9月仕様変更対応 END */
