@charset "UTF-8";

/* ================================================
基本設定（全製品共通のスタイル）
================================================ */
.item-detail-block.desc-block.top {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* hrのスタイル */
.hr-1 {
    margin: 30px auto;
}

.hr-2 {
    width: 340px;
}

/* 背景グレー */
.bg_gray {
    background-color: #F9F9F9;
}

/* ================================================
見出し
================================================ */
.c-heading-top {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: normal;
    text-align: center;
    margin-bottom: 60px;
}

.c-heading-1 {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-heading-top {
        text-align: left;
        margin: 10px auto 45px;
    }
}

/* ================================================
box
================================================ */
.c-box-text p+p {
    margin-top: 15px;
}

/* ================================================
香調画像
================================================ */
.fragranceChart-area {
    display: flex;
    justify-content: center;
}

.fragranceChart-area__item {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

@media screen and (max-width: 767px) {
    .fragranceChart-area {
        flex-direction: column;
    }

    .fragranceChart-area__item {
        max-width: 100%;
    }
}

/* ↓ホバーで拡大 */
/* .image_mouseover_2 {
width: 300px;
}

.image_mouseover_2.--left {
margin:10px 20px 10px 10px;
}

.image_mouseover_2.--right {
margin:10px 10px 10px 20px;
}
@media screen and (max-width: 767px) {
.image_mouseover_2.--left, .image_mouseover_2.--right {
margin: 10px;
}
} */


/* ================================================
スタッフコメント
================================================ */
.staffComment {
    display: flex;
    align-items: center;
}

.staffComment+.staffComment {
    margin-top: 30px;
}

.staffComment__img {
    position: relative;
    flex: 0 0 75px;
    margin-right: 20px;
}

/* ================================================
INGREDIENTS
================================================ */
.ingredientsBlock {
    display: flex;
    align-items: center;
}

.ingredientsBlock+.ingredientsBlock {
    margin-top: 4rem;
}

.ingredientsBlock__item.--img {
    flex: 0 0 20%;
    margin-right: 2rem;
}

.ingredientsBlock__item.--img img {
    aspect-ratio: 4 / 3;
}

.ingredientsBlock__item.--text {
    flex: 1 1 80%;
}

.ingredientsName {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 767px) {
    .ingredientsBlock {
        flex-direction: column;
    }

    .ingredientsBlock__item {
        width: 100%;
    }

    .ingredientsBlock__item.--img {
        width: 60%;
        margin: 0 auto 2rem;
    }
}

/* ================================================
balance__bar
================================================ */
.product-c__balance {
    max-width: 300px;
    flex: 1;
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-c__bar {
    flex: 1;
    position: relative;
    height: 2px;
    background: #000;
    position: relative;
    margin: 0 8px;
}

.product-c__bar-line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #393C41;
    transform: translateY(-50%);
    z-index: 1;
}

.product-c__tick {
    width: 1px;
    height: 8px;
    background: #393C41;
    z-index: 2;
    position: relative;
    margin: 0;
}

.product-c__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.product-c__marker {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.marker-pos-1 {
    left: 0%;
}

.marker-pos-2 {
    left: 25%;
}

.marker-pos-3 {
    left: 50%;
}

.marker-pos-4 {
    left: 75%;
}

.marker-pos-5 {
    left: 100%;
}

@media screen and (max-width: 767px) {
    .product-c__balance {
        flex-wrap: wrap;
    }

    .product-c__balance .barText__l,
    .product-c__balance .barText__r {
        display: block;
        width: 50%;
        font-size: 1rem;
    }

    .product-c__balance .barText__l {
        order: 1;
    }

    .product-c__balance .barText__r {
        order: 2;
        text-align: right;
    }

    .product-c__balance .product-c__bar {
        order: 3;
        width: 100%;
        margin: 6px 0px 0px;
    }
}


/* ================================================
余白・テキスト
================================================ */
.u-text-align--right {
    text-align: right;
}

.u-text-align--center {
    text-align: center;
}

.u-font-weight--700 {
    font-weight: 700;
}

.u-text-decoration--underline {
    text-decoration: underline;
}

.u-mb-16 {
    margin-bottom: 1.6rem;
}

.u-mb-20 {
    margin-bottom: 2rem;
}

.u-mb-24 {
    margin-bottom: 2.4rem;
}

.u-mb-48 {
    margin-bottom: 4.8rem;
}

.u-mt-15 {
    margin-top: 1.5rem;
}

.u-mt-16 {
    margin-top: 1.6rem;
}

.u-mt-24 {
    margin-top: 2.4rem;
}

.u-mt-30 {
    margin-top: 3rem;
}

.u-mt-48 {
    margin-top: 4.8rem;
}

.u-mt-80 {
    margin-top: 8rem;
}

.u-mt-15-pc {
    margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
    .u-mb-16-sp {
        margin-bottom: 1.6rem;
    }

    .u-mb-20-sp {
        margin-bottom: 2rem;
    }

    .u-mb-24-sp {
        margin-bottom: 2.4rem;
    }

    .u-mb-48-sp {
        margin-bottom: 4.8rem;
    }

    .u-mt-16-sp {
        margin-top: 1.6rem;
    }

    .u-mt-24-sp {
        margin-top: 2.4rem;
    }

    .u-mt-48-sp {
        margin-top: 4.8rem;
    }

    .u-mt-15-pc {
        margin-top: 0rem;
    }
}

/* ================================================
さくら
================================================ */
.item-detail-block.desc-block.contents-sakura {
    padding: 0;
}

.contents-sakura__inner {
    max-width: 1240px;
    border-radius: 4px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 11.29032%;
    padding-left: 11.29032%;
}

.contents-sakura__inner--bg {
    background-color: #FEF4F5;
}

@media screen and (max-width: 767px) {
    .contents-sakura__inner {
        padding: 30px 15px 20px;
    }
}

/* ================================================
香り説明用のボックス
================================================ */
.border-area {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 30px 0;
}

.border-area .title {
    font-weight: bold;
    margin-bottom: 15px;
}

.border-area a {
    text-decoration: underline;
}

/* ================================================
LINE UP
================================================ */
.lineup-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.lineup {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.lineup__img {
    position: relative;
    flex: 0 0 22%;
    margin-right: 20px;
}

.lineup p+p {
    margin-top: 15px;
}

.lineup a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .lineup {
        flex-direction: column;
        margin: 0;
    }

    .lineup__img {
        width: 90%;
        justify-content: center;
        margin: 30px auto;
    }

    .lineup-title {
        margin-top: 80px;
        font-size: 18px;
    }
}

/* ================================================
LINE UP SP左揃え
================================================ */

.lineup-lt {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.lineup-lt p+p {
    margin-top: 15px;
}

.lineup-lt a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .lineup-lt {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }
}

/* ================================================
RECOMMENDED
================================================ */
.recommended__ttl {
    font-size: 2rem;
    text-align: center;
}

.recommended__desc {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 20px;
}

.recommended__itembox {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    width: 80%;
    margin: 20px auto 0px;
}

.recommended__item {
    width: 50%;
}

.recommended__item__img {
    width: 66%;
    display: block;
    margin: 0 auto;
}

.recommended__item__ttl {
    text-align: center;
    font-size: 1.4rem;

    .sub {
        display: block;
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }

    .link {
        display: inline-block;
        padding-top: 6px;
        text-decoration: underline;
        transition: .3s;
    }

    .link:hover {
        opacity: .7;
    }
}

.recommended__item__itemInfo {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 4px;

    .amount {
        padding-right: 1em;
    }
}

.recommended__item__cartIn {
    display: block;
    width: 56%;
    margin: 0 auto;

    .btn_cart {
        display: block;
        background-color: #0E0E2A;
        border: 1px solid transparent;
        color: #FFFFFF;
        font-size: 1.4rem;
        text-align: center;
        padding: 12px 36px;
        margin: 18px auto;
        transition: .3s;
    }

    .btn_cart:hover {
        background-color: #fff;
        border: 1px solid #0E0E2A;
        color: #0E0E2A;
    }
}

.recommended__item__desc {
    padding: 14px;
    font-size: 1.4rem;
    background-color: #F3F3F3;
}

@media screen and (max-width: 767px) {
    .recommended__ttl {
        margin-top: 48px;
        font-size: 18px;
    }

    .recommended__desc {
        text-align: left;
        font-size: 1.4rem;
    }

    .recommended__itembox {
        width: 100%;
        flex-direction: column;
        margin-top: 0px;
        gap: 20px;
    }

    .recommended__item {
        width: 100%;
    }

    .recommended__item__desc {
        font-size: 1.4rem;
    }
}

/* ================================================
TIPS FROM STAFF
================================================ */

.tips--staff-comment {
    margin: 0 0 0 20px;
    padding: 20px;
    border: 1px solid #dee2e6;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .tips--staff-comment {
        margin: 0 0 0 10px;
        padding: 15px;
    }
}

/* ================================================
「SHIRO BEAUTY」ギフトカード
================================================ */

.beauty-giftcard__border {
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-top: 20px;
}

.beauty-giftcard__points-to-note {
    color: #ff0000;
}

.beauty-giftcard__points-to-note a {
    color: #ff0000;
    text-decoration: underline;
}

.beauty-giftcard__mt20 {
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .beauty-giftcard__border {
        padding: 15px;
        border-radius: 3px;
    }
}

/* ================================================
FRAGRANCE LAYERED
================================================ */
.l-content__box {
    padding: 6rem;
    background-color: #f9f9f9;
}

.l-content__box .h4 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
    text-align: center;
}

.l-content__box .h5 {
    font-size: 1.6rem;
    margin: 2.2rem 0 4rem;
    text-align: left;
}

.l-content__box .line-bottom__black {
    border-bottom: 1px solid #393c41;
    padding-bottom: 2.2rem;
}

.l-content__box .flex__media.fragrance-layering {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 0;
}

@media(min-width: 768px) {
    .l-content__box .fragrance-layering .media__thumb {
        display: flex;
        flex-direction: column;
        width: calc((100% - 12rem) /3);
        margin-top: 0;
        margin-right: 0;
        flex-shrink: 0;
    }

    .l-content__box .flex__media .media__link:hover {
        opacity: 0.75;
    }
}

.layered-heading {
    margin-bottom: 0;
}

.layered-name {
    font-size: 1.2rem;
    min-height: 36px;
    margin-bottom: 0.8rem;
}

.layered-disc {
    margin-bottom: 0;
    min-height: 124px;
}

.product-price {
    font-size: 1.2rem;
}

.btn--navy {
    color: #fff;
    background: #2c2e33;
    display: block;
    width: 630px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    margin: auto;
    margin-top: 6rem;
    padding: 12px 50px;
    position: relative;
}

.btn--navy::after {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    content: '';
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
    transform: rotate(0deg) translate(-50%, -50%);
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn--navy:hover {
    color: #fff;
    transition: .5s;
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .l-content__box {
        padding: 4rem 1.8rem;
    }

    .l-content__box .h4 {
        text-align: left;
    }

    .l-content__box .flex__media.fragrance-layering {
        display: block;
    }

    .l-content__box .fragrance-layering .media__thumb {
        margin-bottom: 4rem;
    }

    .layered-name {
        min-height: fit-content;
        margin-bottom: 0.8rem;
    }

    .layered-disc {
        min-height: fit-content;
        margin-bottom: 2.4rem;
    }

    .media__thumb .img-perfume {
        display: block;
        width: 60%;
        margin: 0 auto 2.4rem;
    }

    .btn--navy {
        display: block;
        width: 100%;
    }
}



/* ================================================
定番ゆず POINTの画像サイズ変更 タグ追加 ラインアップ左揃え
================================================ */

.lineup__point-img {
    position: relative;
    flex: 0 0 20%;
    margin-right: 20px;
}

.lineup__icon-new::after,
.lineup__icon-renewal::after {
    position: absolute;
    padding: 4px 10px 3px;
    font-size: 9px;
    background: #7E8C91;
    color: #fff;
    text-align: center;
    margin-left: 10px;
    top: -2%;
}

.lineup__icon-new::after {
    content: "NEW";
}

.lineup__icon-renewal::after {
    content: "RENEWAL";
}

.lineup-product__icon {
    position: relative;
}

.lineup-product__yuzu {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.lineup-product__yuzu p+p {
    margin-top: 15px;
}

.lineup-product__yuzu a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {

    .lineup__point-img {
        width: 90%;
        justify-content: center;
        margin: 30px auto;
    }

    .lineup__icon-new::after,
    .lineup__icon-renewal::after {
        padding: 4px 10px 4px;
    }

    .lineup-product__yuzu {
        flex-direction: column;
        margin: 0;
        align-items: flex-start;
    }
}

/* ================================================
カテゴリページタブ風ボタン
================================================ */

.categorytagBlock {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1.6rem;
}

.categorytagBlock__list {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 2.4rem;
    border-bottom: 2px solid #79888b;
    padding: 0.8rem 0.8rem 0.7rem;
    min-width: max-content;
}

.categorytagBlock__item {
    flex: 0 0 auto;
}

.categorytagBlock__link {
    padding: 0.8rem 2.4rem;
    text-decoration: underline;
    white-space: nowrap;
    transition: .3s;
    font-size: 1.6rem;
}

.categorytagBlock__link.js-active {
    background-color: #79888b;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
    color: #fff;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .categorytagBlock__list {
        column-gap: 1.6rem;
        padding: 0.6rem 0.6rem 0.4rem;
    }

    .categorytagBlock__link {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
    }
}

/* ================================================
素材×素材オイルインセラム
================================================ */
.materialOilInSerum {
    .materialOilInSerum__ttl {
        margin-bottom: 3rem;
        text-align: center;
    }

    .product-c__inner {
        margin-top: 60px;
    }

    .product-c__inner:first-of-type {
        margin-top: 40px;
    }

    .product-coil_recommend_title {
        border-bottom: 1px solid #393C41;
        margin-bottom: 30px;
        padding-bottom: 14px;
    }

    .product-c__label {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .product-c__catch {
        font-size: 16px;
        margin-top: 8px;
    }

    .product-c__grid {
        display: flex;
        column-gap: 30px;
    }

    .product-c__image {
        width: 30%;
    }

    .product-c__image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .product-c__title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 8px;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .product-c__price {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .product-c__balance {
        margin-bottom: 18px;
    }

    .product-c__description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .product-c__ingredients {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 22px;
    }

    .product-c__ingredient {
        max-width: 305px;
    }

    .product-c__ingredient img {
        width: 100%;
        height: auto;
        display: block;
    }

    .product-c__x {
        font-weight: bold;
    }

    .product-c__button .button {
        display: inline-block;
        padding: 12px 24px;
        max-width: 236px;
        width: 100%;
        background-color: #393C41;
        color: #fff;
        text-align: center;
        text-decoration: none;
        transition: .3s;
    }

    .product-c__button .button:hover {
        opacity: .7;
    }
}


@media (max-width: 768px) {
    .materialOilInSerum {
        .materialOilInSerum__ttl {
            text-align: left;
        }

        .product-c__grid {
            display: grid;
            grid-template-columns: 40% 1fr;
            grid-template-areas:
                "image title"
                "image price"
                "image balance"
                "description description"
                "ingredients ingredients"
                "button button";
            /* gap: 12px; */
            column-gap: 10px;
            width: 88%;
            margin: 0 auto;
        }

        .product-c__image {
            grid-area: image;
        }

        .product-c__title {
            grid-area: title;
        }

        .product-c__price {
            grid-area: price;
        }

        .product-c__balance {
            grid-area: balance;
        }

        .product-c__description {
            grid-area: description;
        }

        .product-c__ingredients {
            grid-area: ingredients;
        }

        .product-c__button {
            grid-area: button;
        }

        .product-c__content {
            display: contents;
        }

        .product-c__description,
        .product-c__ingredients {
            width: 100%;
        }

        .product-c__image {
            width: 100%;
        }

        .product-c__title {
            line-height: 1.4;
            font-size: 1.6rem;
        }

        .product-c__ingredient {
            max-width: 100%;
        }

        .product-c__button {
            width: 68.41vw;
            margin: 0 auto;
        }

        .product-c__button .button {
            max-width: 100%;
        }
    }
}


/* ================================================
オイルインセラム関連製品
================================================ */
.materialOilRelated {
    &.bg_gray {
        padding: 60px;
    }

    .materialOilRelated__ttl {
        font-size: 1.8rem;
        font-weight: normal;
        text-align: center;
        margin-bottom: 30px;
    }

    .product-c {
        margin-top: 43px;
    }

    .product-c__flex {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
    }

    /* メイン製品画像サイズ */
    .product-c__inner:not(.sub__c) .product-c__image {
        width: 100%;
        max-width: 280px;
    }

    /* サブ製品画像サイズ */
    .product-c__image {
        width: 100%;
        max-width: 165px;
    }

    .product-c__title {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 8px;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .product-c__price {
        margin-bottom: 20px;
    }

    .product-c__description {
        margin-bottom: 20px;
    }

    .product-c__ingredients {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 22px;
    }

    .product-c__ingredient {
        max-width: 305px;
    }

    .product-c__ingredient img {
        width: 100%;
        height: auto;
        display: block;
    }

    .product-c__button {
        margin-top: 20px;
    }

    .product-c__button .button {
        display: inline-block;
        padding: 12px 24px;
        max-width: 236px;
        width: 100%;
        background-color: #393C41;
        color: #fff;
        text-align: center;
        text-decoration: none;
        transition: .3s;
    }

    .product-c__button .button:hover {
        opacity: .7;
    }

    .product-c__inner.sub__c {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        gap: 60px;
        align-items: center;
    }

    .product-c__inner.sub__c .product-c__flex {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .materialOilRelated {
        &.bg_gray {
            padding: 20px 18px;
        }

        .c-heading-top {
            text-align: center;
        }

        .product-c__flex,
        .product-c__inner.sub__c {
            flex-direction: column;
        }

        .product-c__inner.sub__c {
            gap: 15px;
        }

        .product-c__inner.sub__c .product-c__flex {
            flex-direction: row;
        }

        .product-c__inner:not(.sub__c) .product-c__image {
            max-width: 100%;
        }

        .product-c__image {
            max-width: 120px;
        }

        .product-c__inner:not(.sub__c) .product-c__title {
            text-align: center;
        }

        .product-c__inner:not(.sub__c) .product-c__price {
            text-align: center;
            margin-bottom: 10px;
        }

        .product-c__price {
            margin-bottom: 5px;
        }

        .product-c__inner.sub__c .product-c__flex {
            align-items: flex-start;
        }

        .product-c__ingredients {
            width: 100%;
            margin-bottom: 10px;
        }

        .product-c__description {
            margin-bottom: 10px;
        }

        .product-c__button {
            max-width: 236px;
            margin: 10px auto 0px;
        }
    }
}


/* ================================================
ピーチピオニー LINEUP
================================================ */

.peach-peony-lineup {
    display: flex;
    column-gap: 40px;
}

.peach-peony-lineup-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8rem;
    margin-top: 4rem;
}

.peach-peony-lineup__img {
    flex: 0 0 40%;
    margin: 0px auto 2rem;
}

.peach-peony-lineup p+p:nth-child(odd) {
    margin-top: 2rem;
}

.peach-peony-lineup a {
    font-weight: bold;
    text-decoration: underline;
}

.peach-peony-lineup__text {
    margin-top: 5px;
}

@media screen and (max-width: 767px) {

    .peach-peony-lineup {
        display: block;
        column-gap: 0px;
    }

    .peach-peony-lineup-title {
        margin-top: 40px;
        font-size: 18px;
        margin-bottom: 2rem;
    }

    .peach-peony-lineup__img {
        width: 100%;
        margin: 0px auto 2rem;
    }
}

/* ================================================
ピーチピオニー 素材について
================================================ */

.about-flower__contents {
    padding: 40px 30px;
    margin: 40px 0;
    background-color: #f5f5f5;
}

.about-flower__inner {
    display: flex;
    column-gap: 20px;
}

.about-flower__title {
    font-size: 2rem;
    text-align: center;
    margin: 0 auto 3rem;
}

.about-flower__image {
    flex: 0 0 20%;
}

.about-flower__text {
    margin-top: 5px;
}

.about-flower__text-red {
    color: #ff0000;
}

@media screen and (max-width: 767px) {
    .about-flower__contents {
        padding: 30px 20px;
    }

    .about-flower__inner {
        display: block;
    }

    .about-flower__title {
        font-size: 18px;
    }

    .about-flower__image {
        width: 60%;
        margin: 0px auto 2rem;
    }
}

/* ================================================
GIFT SET RECOMMENDATION
================================================ */

.set-recommendation {
    margin-top: 8rem;
    margin-bottom: 4rem;
}

.set-recommendation__contents+.set-recommendation__contents {
    margin-top: 6.4rem;
}

.set-recommendation .heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.set-recommendation .lead-text {
    text-align: center;
    margin-bottom: 2rem;
}

.set-recommendation .set-recommendation {
    overflow: hidden;
}

.set-recommendation .set-recommendation__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 4rem;
}

.set-recommendation .set-recommendation__item {
    width: calc((100% - 9rem)/4);
    display: flex;
    flex-direction: column;
}

.set-recommendation .u-link-text {
    text-decoration: underline;
    transition: .3s;
}

.set-recommendation .apple-product-name {
    margin-top: 1rem;
}

.set-recommendation .product-price {
    margin-top: auto;
    padding-top: 1rem;
    text-align: right;
}

.set-recommendation .u-link-text:hover {
    text-decoration: none;
}

.set-recommendation .cart-button {
    display: block;
    color: #fff;
    text-align: center;
    background-color: #2C2E33;
    border: 1px solid #2C2E33;
    height: 4.5rem;
    padding: 1.2rem;
    transition: .3s;
    margin-top: 1rem;
}

.set-recommendation .cart-button:hover {
    opacity: 0.8;
}

.apple-product-name {
    min-height: 3em;
}

.apple-product-text {
    margin-top: 1.5rem;
    padding: 1.4rem;
    background-color: #F3F3F3;
    flex-grow: 1;
}

@media screen and (max-width: 767px) {
    .set-recommendation .heading {
        font-size: 1.8rem;
    }

    .set-recommendation .lead-text {
        text-align: left;
    }

    .set-recommendation .set-recommendation {
        overflow-x: scroll;
    }

    .set-recommendation .set-recommendation__list {
        column-gap: 1.6rem;
        row-gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .set-recommendation .set-recommendation__item {
        width: clamp(36%, 36vw, 50%);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .apple-product-name {
        letter-spacing: 0.04em;
    }
}

/* ================================================
フェイスマスク おすすめスキンケアステップ
================================================ */

.block_facemask_cartin {
    margin-top: 3rem;
    margin-bottom: 4rem;
    background-color: #F9F9F9;
    padding: 60px;
}

.block_facemask_cartin__contents+.block_facemask_cartin__contents {
    margin-top: 6.4rem;
}

.block_facemask_cartin .heading {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.heading {
    font-weight: bold;
    ;
}

.block_facemask_cartin {
    margin-bottom: 2rem;
}

.block_facemask_cartin .lead-text {
    text-align: center;
}

.lead-text {
    margin-bottom: 4rem;
}

.block_facemask_cartin .facemask-product {
    overflow: hidden;
}

.block_facemask_cartin .facemask-product__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
    row-gap: 4rem;
}

.block_facemask_cartin .facemask-product__item {
    width: calc((100% - 8rem)/3);
    display: flex;
    flex-direction: column;
}

.block_facemask_cartin .u-link-text {
    text-decoration: none;
}

.block_facemask_cartin .facemask_product-name-link {
    margin-top: 1rem;
}

.block_facemask_cartin .facemask_product-price,
.facemask_product-price2,
.facemask_product-price3 {
    margin-top: auto;
    padding-top: 1rem;
}

.block_facemask_cartin {
    text-align: right;
}

.facemask_product-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.facemask_product-name-link {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #000030;
    padding-bottom: 0.8rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.facemask_product-name-link::after {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    content: "";
    border-top: solid 2px #000030;
    border-right: solid 2px #000030;
    transform: rotate(45deg);
}

.facemask_product-name-none {
    font-size: 16px;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
}

.facemask_product-text {
    font-size: 14px;
    margin-top: 1rem;
    text-align: left;
}

.facemask_product-name,
.facemask_product-name-link,
.facemask_product-price,
.facemask_product-price2,
.facemask_product-price3 {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .block_facemask_cartin {
        padding: 4rem 2rem;
    }

    .block_facemask_cartin .heading {
        font-size: 1.8rem;
    }

    .block_facemask_cartin .lead-text {
        text-align: left;
    }

    .block_facemask_cartin .facemask-product {
        overflow-x: scroll;
    }

    .block_facemask_cartin .facemask-product__list {
        column-gap: 1.6rem;
        row-gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .block_facemask_cartin .facemask-product__item {
        width: clamp(60%, 60vw, 60%);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .facemask_product-name,
    .facemask_product-name-link,
    .facemask_product-name-none {
        font-size: 14px;
    }

    .facemask_product-text {
        font-size: 12px;
    }

    .facemask_product-name-link::after {
        right: 0px;
    }

    .facemask_product-price2 {
        margin-top: 4.6rem;
        text-align: center;
    }

    .facemask_product-price3 {
        margin-top: 3.6rem;
        text-align: center;
    }
}

/* ================================================
フェイスマスク 左 文言　右 画像 のレイアウト
================================================ */

.img_facemask--inner-flex {
    display: flex;
    margin: 30px auto 0px;
    column-gap: 15px;
}

.img_facemask--inner {
    display: grid;
    grid-row-gap: 15px;
    grid-column-gap: 20px;
    grid-template-columns: 22% 1fr;
    grid-template-rows: auto 110px auto;
    margin: 15px auto 15px;
    grid-template-areas:
        "img2 text2"
        "img2 text3"
        "img3 text4";
}

.img_facemask--text p+p {
    margin-top: 1.5rem;
}

.img_facemask--img {
    width: 100%;
}

.img_facemask-img-3,
.img_facemask-img-2 {
    width: 100%;
}

.img_facemask-img-1 {
    flex: 0 0 22%;
    max-width: 22%;
}



.img_facemask-sub-text {
    font-weight: bold;
    margin-bottom: 2px;
}


.img_facemask-text-2 {
    grid-area: text2;
}

.img_facemask-img-2 {
    grid-area: img2;
}

.img_facemask-text-3 {
    grid-area: text3;
}

.img_facemask-img-3 {
    grid-area: img3;
}

.img_facemask-text-4 {
    grid-area: text4;
}

@media screen and (max-width: 767px) {

    .img_facemask--inner-flex {
        display: flex;
        flex-direction: column-reverse;
        margin: 0px auto 0px;
    }

    .img_facemask-img-1 {
        width: 100%;
        max-width: 100%;
    }

    .img_facemask-text-3 {
        margin-top: 15px;
    }

    .img_facemask--inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        margin: 0px auto 0px;
        grid-row-gap: 0px;
        grid-template-areas:
            "img2"
            "text2"
            "text3"
            "img3"
            "text4";
    }

    .img_facemask--img {
        margin: 30px 0px;
        width: 100%;
        display: block;
    }

    .img_facemask-img-3,
    .img_facemask-img-2 {
        margin: 30px 0px 0px;
        width: 100%;
        display: block;
    }

    .img_facemask-sub-text {
        margin-top: 30px;
    }

}


/* ================================================
フレグランス/パフューム 2SKU以上時のチャートスライダー用
================================================ */

@media screen and (min-width: 768px) {
    .fragrance-slider-list li {
        width: 300px;
    }

    .fragrance-slider-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .flickity-page-dots {
        bottom: 0;
    }

    .fragrance-slider-list li {
        width: 100%;
    }

    .fragrance-slider-list img {
        width: 100%;
        height: auto;
    }

    .fragrance-slider-mb {
        margin-bottom: 30px;
    }
}


/* ================================================
LAUREL LINEUP
================================================ */

.laurel-2025_lineup-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.laurel-2025_lineup-lt {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.laurel-2025_lineup-lt p+p {
    margin-top: 15px;
}

.laurel-2025_lineup-lt a {
    font-weight: bold;
    text-decoration: underline;
}

.laurel-2025_lineup-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.laurel-2025_lineup__img {
    flex: 0 0 20%;
    margin-right: 2rem;
}

.laurel-2025_lineup__img img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .laurel-2025_lineup-lt {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    .laurel-2025_lineup__img {
        width: 90%;
        justify-content: center;
        margin: 0px auto 30px;
    }

    .laurel-2025_lineup-heading {
        margin-bottom: 2rem;
    }

}


/* ================================================
テキストとテクスチャの枠組み
================================================ */

.product-texture_inner {
    display: flex;
    column-gap: 20px;
}

.product-texture_inner p+p:nth-last-of-type(even) {
    margin-top: 15px;
}

.product-texture_tite {
    font-weight: bold;
    margin-bottom: 3px;
}

.product-texture_image-pc {
    flex: 0 0 20%;
}

@media screen and (max-width: 767px) {
    .product-texture_inner {
        display: block;
    }

    .product-texture_image-sp {
        padding: 30px;
    }

    .product-texture_text {
        margin-bottom: 15px;
    }
}

/* ================================================
チャート画像を別タブで開く
================================================ */

.newtab {
    max-width: 210px;
    width: 100%;
    text-align: center;
    position: relative;
    padding: 10px 20px;
    border-radius: 4px;
    color: #393c41;
    border: none;
    cursor: pointer;
    display: block;
}

.newtab::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url(https://shiro-shiro.shop/client_info/SHIRO/view/userweb/images/icon/icon-target-black.svg) no-repeat center center / contain;
}


/* ================================================
LINE UP POINT
================================================ */


.lineup-product-point {
    display: flex;
    align-items: center;
    margin: 25px auto;
}

.lineup-product-point p+p {
    margin-top: 15px;
}

.lineup-product-point a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .lineup-product-point {
        flex-direction: column;
        margin: 0 0 15px;
    }

}

/* ================================================
ラワンぶきフェイスウォッシュ専用 LINE UP POINT
================================================ */


.lineup-butterbur-facewash-point {
    display: flex;
    align-items: center;
    margin: 25px auto;
}

.lineup-butterbur-facewash-point p+p {
    margin-top: 15px;
}

.lineup-butterbur-facewash-point a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .lineup-butterbur-facewash-point {
        flex-direction: column;
        margin: 0 0 30px;
    }

}


/* ================================================
サマーブーケ LINE UP POINT
================================================ */


.bouquet-lineup__point-img {
    position: relative;
    flex: 0 0 22%;
    margin-right: 20px;
}

.bouquet-lineup-product-point {
    display: flex;
    align-items: center;
    margin: 25px auto;
}

.bouquet-lineup-product-point p+p {
    margin-top: 15px;
}

.bouquet-lineup-product-point a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .bouquet-lineup-product-point {
        margin: 30px 0 0 0px;
        flex-direction: column-reverse;
    }

    .bouquet-lineup__point-img {
        width: 90%;
        justify-content: center;
        margin: 30px auto 0px;
    }
}


/* ================================================
    LINEUP 画像幅20% バージョン
    ================================================ */

.lineup__img_width20 {
    position: relative;
    flex: 0 0 20%;
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .lineup__img_width20 {
        width: 90%;
        justify-content: center;
        margin: 30px auto;
    }
}


/* ================================================
    カート下領域 返金・交換サービスの文言、タブ画像
    ================================================ */

.reservation-returned_newtab {
    max-width: 24rem;
    width: 100%;
    text-align: left;
    position: relative;
    padding: 10px 0px 0px 0px;
    border-radius: 4px;
    color: #393c41;
    border: none;
    cursor: pointer;
    display: block;
}

.reservation-returned_newtab::before {
    position: absolute;
    content: '';
    top: 67%;
    right: 12%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url(https://shiro-shiro.shop/client_info/SHIRO/view/userweb/images/icon/icon-target-black.svg) no-repeat center center / contain;
}

.reservation-returned_underline {
    text-decoration: underline;
}

.reservation-returned_text {
    color: #393c41;
    margin: 0 0 1.5rem 0;
}


/* ================================================
    SMP SILVER GOLD 予約コメントのボタン用
    ================================================ */

.product--smp-mypage_login {
    margin: 0 auto 0;
    border: solid 1px #dcdcdc;
    padding: 16px;
    background: #fdfdfd;
}

.product--smp-mypage_login a.product--smp-mypage_loginbtn {
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 16px;
    margin: 0 auto;
    display: block;
    text-align: center;
    background-color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.product--smp-mypage_login p {
    margin: 0 auto;
    padding: 8px 0 0;
    font-size: 1.2rem;
    text-align: center;
    color: #393c41;
}

@media screen and (max-width: 767px) {

    .product--smp-mypage_login {
        margin: 0px auto 0;
        border: solid 1px #dcdcdc;
        padding: 16px;
        background: #fdfdfd;
        font-size: 1.2rem;
    }

    .product--smp-mypage_login a.product--smp-mypage_loginbtn {
        border: solid 1px #ccc;
        border-radius: 3px;
        margin: 0 auto;
        display: block;
        text-align: center;
        background-color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        width: 280px;
        padding: 12px 16px;
    }

    .product--smp-mypage_login p {
        margin: 0 auto;
        padding: 8px 0 0;
        font-size: 1.2rem;
        width: 280px;
        text-align: left;
    }
}



/* ================================================
    SMP製品ページ 左テキスト 右画像 レイアウト
    ================================================ */

.smp_third-one-right__mb {
    float: right;
    padding: 0;
    width: 22%;
}

.smp_third-one-right__mb img {
    margin-bottom: 15px;
}

.smp_third-one-right__mb img:last-child {
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .smp_third-one-right__mb {
        margin: 20px 0;
        width: 100%;
        display: block;
    }
}


/* ================================================
    SMP製品ページ 右テキスト 左画像 レイアウト
    ================================================ */

.smp_third-one-left__mb {
    float: left;
    padding: 0;
    width: 22%;
}

.smp_third-one-left__mb img {
    margin-bottom: 15px;
}

.smp_third-one-left__mb img:last-child {
    margin-bottom: 0px;
}

.smp_mt-20 {
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .smp_third-one-left__mb {
        margin: 15px 0 0;
        width: 100%;
        display: block;
    }
}

.smp_one-third-right {
    float: right;
    padding: 0;
    width: 74%;
    ;
}

.smp_third-one-left__mb img {
    padding: 0;
}

@media screen and (max-width: 767px) {
    .smp_one-third-right {
        width: 100%;
    }

    .smp_mt-20 {
        margin-top: 0px;
    }
}


/* ================================================
    SMP製品ページ 灰色コメント部分
    ================================================ */

.smp_content__box {
    padding: 3rem 5rem;
    background-color: #f9f9f9;
    margin: 3rem 0 0;
}

.smp_content__box p {
    margin-top: 1.5rem;
}

.smp_content__box p:first-child {
    margin-top: 0;
}

.smp_content__box li {
    text-indent: -0.6em;
    padding-left: 0.6em;
}

@media screen and (max-width: 767px) {
    .smp_content__box {
        padding: 4rem 1.8rem;
    }

}


/* ================================================
    キット製品 香調画像 リスト
    ================================================ */

@media screen and (min-width: 768px) {
    .fragrance-list li {
        width: 300px;
    }

    .fragrance-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .flickity-page-dots {
        bottom: 0;
    }

    .fragrance-list li {
        width: 100%;
    }

    .fragrance-list img {
        width: 100%;
        height: auto;
    }
}

/* ================================================
   テキスト（左）と画像（右）配置
   ================================================ */

.product-illustration-img {
    position: relative;
    flex: 0 0 22%;
    margin-left: 40px;
}

.product-illustration {
    display: flex;
    align-items: center;
    margin: 15px auto;
}

.product-illustration p+p {
    margin-top: 15px;
}

.product-illustration a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .product-illustration {
        margin: 30px auto;
        flex-direction: column;
    }

    .product-illustration-img {
        width: 90%;
        justify-content: center;
        margin: 30px auto 0px;
    }
}

/* ================================================
比較チャート（固定無し）
================================================ */
.compare-chart {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.compare-chart::-webkit-scrollbar {
    background: #fff;
    width: 5px;
    height: 5px;
}

.compare-chart::-webkit-scrollbar-thumb {
    background-color: #E6E6E6;
}

.compare-chart__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 220px;
}

.compare-chart__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    border: 1px solid #E6E6E6;
    padding: 0 1rem;
}

.compare-chart__item:not(:first-of-type) {
    border-left: none;
}

.compare-chart__item .itemBox {
    padding-bottom: 1.5rem;
}

.compare-chart__item .productName {
    text-align: center;
    text-decoration: underline;
    transition: .3s;
}

.compare-chart__item .productPrice {
    text-align: center;
}

.compare-chart__item .tax {
    font-size: 65%;
}

.compare-chart__item .productName:hover {
    text-decoration: none;
}

.chart-tag {
    display: flex;
    column-gap: .8rem;
    justify-content: center;
    margin-top: .5rem;
}

.chart-tag__item {
    padding: .4rem 1rem .6rem;
    background-color: #F5F5DD;
    border-radius: 1.4rem;
    font-size: 1rem;
}

.balanceWrapper {
    padding: 0 .4rem;
}

.balanceText {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .compare-chart__list {
        grid-auto-columns: 200px;
    }

    .compare-chart__item {
        font-size: 1.2rem;
    }
}

/* ================================================
パフューム バナー設置
================================================ */

.product-banner_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-banner_image {
    width: 50%;
}

.product-banner_contents p+p {
    margin-top: 15px;
}

.product-banner_text {
    margin: 0 auto 0 30px;
}

@media (max-width: 767px) {

    .product-banner_contents {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-banner_image {
        width: 100%;
        margin-bottom: 15px;
    }

    .product-banner_text {
        margin: 0;
    }
}


/* ================================================
パフューム バナー設置
================================================ */

.product-banner_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-banner_image {
    width: 50%;
}

.product-banner_contents p+p {
    margin-top: 15px;
}

.product-banner_text {
    margin: 0 auto 0 30px;
}

@media (max-width: 767px) {

    .product-banner_contents {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-banner_image {
        width: 100%;
        margin-bottom: 15px;
    }

    .product-banner_text {
        margin: 0;
    }
}



/* ================================================
テキスト（左）と画像（右）
SP　画像（上）とテキスト（下）配置
================================================ */

.product-flex-text_img-img {
    position: relative;
    flex: 0 0 22%;
    margin-left: 40px;
}

.product-flex-text_img {
    display: flex;
    align-items: center;
    margin: 15px auto;
}

.product-flex-text_img p+p {
    margin-top: 15px;
}

.product-flex-text_img a {
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .product-flex-text_img {
        margin: 0;
        flex-direction: column-reverse;
        gap: 15px 0px;
        padding: 15px 0;
    }

    .product-flex-text_img-img {
        width: 90%;
        justify-content: center;
        margin: 0;
    }
}


/* ================================================
アドベントカレンダー レイアウト
================================================ */

.advent-carendar_inner {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    padding: 25px 0;
}

.advent-carendar_contents-img {
    flex: 22% 0 0;
}

.advent-carendar_contents {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0 15px;
}

.advent-carendar_contents-reverse {
    display: flex;
    align-items: center;
    gap: 0 15px;
    flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
    .advent-carendar_inner {
        display: block;
        padding: 0 0 30px;
    }

    .advent-carendar_contents {
        flex-direction: column-reverse;
    }

    .advent-carendar_contents-reverse {
        flex-direction: column-reverse;
    }

    .advent-carendar_contents-img {
        margin: 15px auto;
        width: 90%;
    }
}

/* ================================================
おすすめセット　おまとめカートボタン付き
================================================ */

.item-set_cartin {
    margin-top: 3rem;
    margin-bottom: 4rem;
    background-color: #F9F9F9;
    padding: 4rem 6rem;
}

.item-set_cartin .heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3.2rem;
    font-weight: 400;
}

.item-set {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
}

.item-set__img {
    position: relative;
    flex: 0 0 22%;
    margin-right: 20px;
}

.add-to-Cart {
    display: block;
    color: #fff;
    text-align: center;
    background-color: #2C2E33;
    border: 1px solid #2C2E33;
    height: 4.5rem;
    padding: 1.2rem;
    transition: .3s;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 50%;
}

.add-to-Cart:hover {
    opacity: 0.8;
}

.item-set_cartin .lead-text {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .item-set_cartin {
        padding: 4rem 2rem;
    }

    .item-set_cartin .heading {
        font-size: 1.8rem;
        margin-bottom: 2.4rem;
        text-align: center;
        font-weight: 400;
    }

    .item-set {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    .item-set__img {
        width: 90%;
        justify-content: center;
        margin: 30px auto;
    }

    .add-to-Cart {
        width: 100%;
        margin: 1rem auto;
        display: block;
        color: #fff;
        text-align: center;
        background-color: #2C2E33;
        border: 1px solid #2C2E33;
        height: 4.5rem;
        padding: 1.2rem;
        transition: .3s;
    }

    .item-set_cartin .lead-text {
        margin-bottom: 0;
    }
}

/* ================================================
ホリデーセット LINEUP
================================================ */

.block_holidayset-lineup {
    margin: 3rem auto 6rem;
}


.block_holidayset-lineup img {
    max-width: 100%;
    height: auto;
}

.block_holidayset-lineup .heading-1 {
    /* font-size: 2rem; */
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.block_holidayset-lineup .heading-2 {
    font-weight: 600;
    font-size: 1.6rem;
    /* margin-bottom: 2rem; */
}

.block_holidayset-lineup .heading-3 {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.block_holidayset-lineup .sub__text {
    margin-bottom: 2rem;
}

.block_holidayset-lineup .lineupList {
    margin-bottom: 3rem;
}

.block_holidayset-lineup .lineupList_title {
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid currentColor;
}

.block_holidayset-lineup .lineupList__item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 3.2rem;
}

.block_holidayset-lineup .p-grid-item {
    width: calc((100% - 6rem) / 3);
    display: grid;
    grid-template-areas:
        "image title"
        "image text";
    grid-template-columns: 1fr auto;
    align-content: center;
}

.block_holidayset-lineup .item-name {
    font-weight: bold;
}

.block_holidayset-lineup .p-grid-item__img {
    grid-area: image;
    margin-right: 1.6rem;
    width: 10rem;
    position: relative;
}

.block_holidayset-lineup .p-grid-item__title {
    grid-area: title;
    margin: auto 0;
}

.block_holidayset-lineup .p-grid-item__text {
    grid-area: text;
    margin-top: 0.8rem;
}

.block_holidayset-lineup .itemName {
    font-weight: 600;
    line-height: 1.5;
}

.block_holidayset-lineup .itemTag {
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #9F9F9F;
}

.block_holidayset-lineup .itemDesc {
    font-size: 1.2rem;
    line-height: 1.4;
}

.block_holidayset-lineup .notesText p {
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    .block_holidayset-lineup {
        margin: 3rem auto 4rem;
    }

    .block_holidayset-lineup .lineupList_title {
        font-weight: 400;
    }

    .block_holidayset-lineup .lineupList__item {
        flex-direction: column;
        row-gap: 1.6rem;
    }

    .block_holidayset-lineup .p-grid-item {
        width: 100%;
        grid-template-areas: "image title" "image text";
        grid-template-rows: auto auto auto;
        align-content: center;
        align-items: center;
    }

    .block_holidayset-lineup .p-grid-item__img {
        margin-right: 1.6rem;
        width: 10rem;
    }

    .block_holidayset-lineup .p-grid-item__title {
        margin: 0;
    }

    .block_holidayset-lineup .p-grid-item__text {
        margin-top: 0rem;
    }

}

/* バナー 空白調整用 */

.product-banner_mt {
    margin-top: 4rem;
}

@media screen and (max-width: 767px) {
    .product-banner_mt {
        margin-top: 3rem;
    }
}

/* ================================================
パフューム 香りご紹介 コンテンツ
================================================ */

        .contents-perfume {
            margin: 15px auto;
        }

        .contents-perfume--flex {
            display: flex;
            flex-wrap: wrap;
            column-gap: 65px;
            row-gap: 30px;
            justify-content: center;
        }

        .contents-perfume--flex02 {
            display: flex;
            width: 375px;
            column-gap: 10px;
            border: 1px solid #cccccc;
        }

        .contents-perfume--text {
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 10px 10px 0 0;
            font-size: 12px;
        }

        .contents-perfume--image {
            max-width: 125px;
            margin: 0;
            padding: 0;
        }

        .contents-title {
            font-weight: bold;
            padding-bottom: 5px;
            text-decoration: underline;
            font-size: 14px;
        }

        .contents-title-02 {
            font-weight: bold;
            padding: 5px 0;
            font-size: 14px;
        }

        .contents-perfume-sp-order1 {
            width: 375px;
        }

        .contents-perfume-sp-order2 {
            width: 375px;
        }

        .contents-border {
            background-color: #fff;
            color: #7E8C91;
            border: solid 1px #7E8C91;
            padding: 2px 4px;
        }

        @media screen and (max-width: 767px) {

            .contents-perfume--flex {
                column-gap: 0px;
                row-gap: 15px;
            }


            .contents-perfume--image {
                max-width: 120px;
                width: 100%;
            }

            .contents-perfume--flex02 {
                padding: 0px;
                width: 100%;
            }

            .contents-perfume--text {
                padding: 10px 10px 0px 0px;
            }

            .contents-perfume-sp-order1 {
                width: 100%;
            }

            .contents-perfume-sp-order2 {
                width: 100%;
            }
        }