:root {
    --base-font-size: 14px;
  }

.container-item-page {
    display: block;
    width: 80%;
    container-type: inline-size;
}

.item-list-item-page {
    display: flex;
    padding: 10px 0px;
    box-sizing: border-box;
    flex-direction: column;
    font-size: var(--base-font-size) !important;
}

.item-pair-item-page {
    display: flex;
    width: 100%;
    align-items: stretch;
    flex-direction: row;
}

.item-key-item-page {
    background-color: #eeeada;
    width: 130px;
    position: relative;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-right: none;
    flex-shrink: 0;
}

.item-value-item-page {
    flex-grow: 1;
    margin: 0;
    padding: 10px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
    border-left: none;
    overflow-wrap: break-word;
}

/* Remove the top border of dt and dd for the 2nd element and beyond */
.item-pair-item-page:not(:first-child) .item-key-item-page,
.item-pair-item-page:not(:first-child) .item-value-item-page {
    border-top: none;
}

/* 画面幅が480px以下のときに適用するスタイル */
@container (max-width: 480px) {
    .item-pair-item-page {
        flex-direction: column;
    }

    .item-key-item-page {
        width: 100%;
        border: 1px solid #dddddd;
        border-bottom: none;
    }

    .item-value-item-page {
        margin-left: 0;
        border: 1px solid #dddddd;
        border-top: none;
    }
}

/* バリエーション */
.item-container-item-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 12px;
    row-gap: 0px;
}

.item-container-item-page * {
    font-size: var(--base-font-size);
}


.item-item-page {
    list-style-type: none;
    margin: 10px 0;
    border: 1px solid #968341;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    letter-spacing: 1.8px;
}

.is-selected-item-page {
    font-weight: bold;
    border-width: 2px;
    background-color: #fffdf4;
    pointer-events: none
}

.item-price-item-page {
    display: block;
    padding: 10px;
    box-sizing: border-box;
    font-size: var(--base-font-size) !important;
}

.discount-item-page {
    color: #ff0000;
    margin-left: 5px;
}

p.frame-text {
    /* border: 1px solid #dddddd; */
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: var(--base-font-size);
}

.ttl_item-page {
    margin-top: 10px;  /* 上に10pxのマージンを追加 */
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: bold;  
    text-align: left;
    font-size: var(--base-font-size);
}



/* 同梱におすすめ */


.product-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    /* 行間に余白を追加 */
}

.product {
    display: flex;
    width: 50%;
    padding: 10px;
    /* 上下左右に余白を追加 */
    box-sizing: border-box;
    /* paddingをwidthに含める */
}

.product-image,
.product-description {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    flex: 2;
    margin-right: 10px;
    /* 画像とテキストの間に余白を追加 */
}

.product-description {
    flex: 3;
}

.product-description {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}


.product-image img {
    max-width: 100%;
    height: auto;
}

span.fs-c-productNameHeading__copy {
    font-weight: 100;
}
