﻿@charset "UTF-8";

#tblLayout {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

ol,
ul,
li {
    list-style: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    line-height: 1;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.inner {
    max-width: 92.4rem;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding: 0 1.2rem;
}

.subinner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 1rem 0;
}


.per_80 {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.per_75 {
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
}

.mgt_30 {
    margin-top: 3rem;
}

.mgt_60 {
    margin-top: 6rem;
}

.mgt_100 {
    margin-top: 10rem;
}

@media screen and (max-width: 767px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .subinner {
        padding: 0 1.6rem;
    }

    .mgt_30 {
        margin-top: 2rem;
    }

    .mgt_60 {
        margin-top: 2rem;
    }

    .mgt_100 {
        margin-top: 5rem;
    }

    .per_80 {
        max-width: 100%;
    }

    .per_75 {
        max-width: 100%;
    }
}

/* ==== mv ==== */
.mv .inner {
    max-width: 103.2rem;
}

.mvInr {
    background: url(/Contents/ImagesPkg/portal/p-spring-sale/202603/pc/mv_bg.png) center center no-repeat;
    background-size: cover;
}

.mvDate {
    background: #FCEEF4;
    padding: 2rem 0;
}

@media screen and (max-width: 767px) {
    .mvInr {
        background: unset;
    }

    .mv .inner {
        padding: 0;
    }

    .mvDate {
        padding: 1rem 0;
    }
}

/* ==== ナビゲーションボタン ==== */
.navBox {
    position: relative;
    z-index: 10;
}

.navBox.sticky {
    position: sticky;
    z-index: 20;
}

.fixedBox,
.floatBox {
    padding: .5rem;
    background: #fca9c4;
}

.navBox.sticky .fixedBox {
    background: transparent;
}

.shopNav .inner {
    max-width: 60rem;
}

.shopNav .shopNavItem {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navBox li {
    width: calc((100% / 4) - .5rem);
}

.navBox li a {
    display: inline-block;
    position: relative;
}

.fixedNav {
    width: 100%;
    overflow: hidden;
    display: block;
    width: 100%;
}

.fixedNavItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 0 1 auto;
    gap: .5rem;
}

ul.fixedNavItem li a img {
    width: 100%;
    height: auto;
}

.floatNav {
    display: none;
}

.floatNavItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 0 1 auto;
    gap: .5rem;
    padding: 1rem 0;
}

.navBox.sticky .fixedNav {
    display: none;
}

.navBox.sticky .floatNav {
    display: block;
}

/*　上に上がる動き　*/
.navBox.sticky .floatBox.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10rem);
    }
}

/*　下に下がる動き　*/

.navBox.sticky .floatBox.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-10rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-curnav-switch.is-current {
    position: relative;
}

.js-curnav-switch.is-current {
    opacity: .7;
}

a.js-curnav-switch.is-current::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

@media screen and (max-width: 767px) {
    .shopNav .inner {
        padding: 0;
    }

    .fixedBox,
    .floatBox {
        padding: .3rem 2rem;
    }

    .navBox li {
        width: calc((100% / 4) - .2rem);
    }


}

/* ===== comming soon ===== */
li.comingSoon a {
    position: relative;
    display: block;
    pointer-events: none;
}

li.comingSoon a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.5;
    z-index: 2;
}

li.comingSoon a:after {
    position: absolute;
    width: 100%;
    height: auto;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    content: "coming soon";
    display: inline-block;
    color: #c0c0c0;
    font-size: 4.4rem;
    line-height: 1.4;
    z-index: 3;
    font-weight: 600;
    /* padding-top: .5rem; */
    letter-spacing: .2rem;
    white-space: pre-line;
    padding: 1rem;
    text-align: center;
}

@media screen and (max-width: 767px) {

    /* coming soon */
    li.comingSoon a {
        position: relative;
    }

    li.comingSoon a:before {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #fff;
        top: 0;
        left: 0;
        content: "";
        opacity: 0.5;
        z-index: 2;
    }

    li.comingSoon a:after {
        position: absolute;
        width: 100%;
        height: auto;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        content: "coming soon";
        display: inline-block;
        color: #c0c0c0;
        font-size: 4.4rem;
        line-height: 1.4;
        z-index: 3;
        font-weight: 600;
        /* padding-top: .5rem; */
        letter-spacing: .2rem;
        white-space: pre-line;
        padding: 1rem;
        text-align: center;
    }

    .comingSoon:before {
        display: none !important;
    }

    .comingSoon:after {
        display: none !important;
    }

    .comingSoon:before {
        display: none;
    }

    .comingSoon:after {
        display: none;
    }

}

/* ===== popup ===== */
.yen-symbol {
    font-size: 1.2rem;
    /* 任意のサイズに変更 */
    margin-left: 1.25px;
}

.commonItem.commonItem--ranking {
    background: #fff;
    padding: .5rem;
    /* border: 1px solid #707070; */
}

.commonItem-list__ranking-img {
    /* border-bottom: solid .1rem #000; */
    padding-bottom: .5rem;
    width: 200px;
    height: 200px;
}

.commonItem__txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.commonItem__name {
    margin-top: .8rem;
}

.commonItem__price {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 1rem;
}

.commonItem__block-price-wrapper .commonItem__price dt {
    color: red;
    font-size: 1.2rem;
    width: 2.8rem;
}

.commonItem__block-price-wrapper .commonItem__price dd {
    font-size: 3.6rem;
    color: red;
    font-weight: 600;
    letter-spacing: -2.5px;
    margin-left: -3px;
}

.commonItem__tax-included {
    display: flex;
    margin-top: .3rem;
}

.commonItem__price dd.price-size {
    font-size: 2rem;
    letter-spacing: -.1rem;
}

.commonItem__price dd.price-size {
    font-size: 2rem;
    letter-spacing: -.1rem;
}

.commonItem__name.underline {
    font-size: 1.6rem;
    text-decoration: underline;
    font-weight: 700;
}

.commonItem__info_txt {
    font-size: .9rem;
    color: #323232;
    font-weight: 500;

}

.commonItem__info_txt.largeRed {
    color: red;
    font-size: 3rem;
    font-weight: 700;
}

.commonItem__price .commonItem__price-image {
    width: 90%;
}

/* 二重売価 */
.commonItem__original-price-wrapper .commonItem__price,
.commonItem__original-price-wrapper .commonItem__tax-included {
    position: relative;
    width: max-content;
    max-width: 100%;
    position: relative;
}

.commonItem__original-price-wrapper .commonItem__price::before,
.commonItem__original-price-wrapper .commonItem__tax-included::before {
    width: 100%;
    border-top: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    height: 40%;
    content: "";
    position: absolute;
    top: 49%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}


/* モーダルを開くボタン */
.modal-open {
    cursor: pointer;
}

/* モーダル本体の指定 + モーダル外側の背景の指定 */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 4rem 2rem;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}

/* モーダル本体の擬似要素の指定 */
.modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

/* モーダル本体に「active」クラス付与した時のスタイル */
.modal-container.active {
    opacity: 1;
    visibility: visible;
}

/* モーダル枠の指定 */
.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 36rem;
    width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4rem;
    right: -4rem;
    width: 4rem;
    height: 4rem;
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
}

/* モーダル内のコンテンツの指定 */
.modal-content {
    background: #fff;
    text-align: left;
    padding: 3rem;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

ul.modal-box {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.modalBox a {
    color: #fff;
    display: block;
    background: #3dc5ec;
    border-radius: 1.1rem;
    font-size: 1.4rem;
    margin: 0 auto;
    padding: .5rem;
    text-align: center;
    width: 13.6rem;
}

.modalBox+.modalBox {
    margin-top: 1rem;
}

.modalBox {
    margin-top: 1rem;
    width: 100%;
}

p.modalTxt {
    font-size: 1.4rem;
    line-height: 1.2;
}

p.price {
    padding: .5rem;
}

.modal_text {
    width: 100%;
}

p.modal-tit {
    background: #fff;
    color: #fff;
    padding: .7rem .5rem;
}

.modal-tit {
    display: none;
}

.modal-content {
    background: #fff;
    text-align: left;
    padding: 1vw;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.modal-content a {
    padding: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #fff;
    text-decoration: none;
}

p.modal_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.6rem;
}

p.modal-tit {
    background: #000;
    color: #fff;
    padding: .7rem .5rem;
}
.categoryinner img {
    width: 693px;
    height: 194px;
    object-fit: contain;
}
@media screen and (max-width: 767px) {
    .modal-close {
        top: -.6rem;
        right: -.4rem;
        color: #000;
    }

    .modal-body {
        width: 98%;
        top: 4%;
    }

    .modal-content {
        padding: 2vw 2vw 4vw;
    }

    p.price {
        font-size: 1.4rem;
    }

    .modalBox a {
        padding: .3rem;
    }

    .commonItem__price dd.price-size {
        font-size: 1.6rem;
        letter-spacing: -.1rem;
    }

    .commonItem__name.underline {
        font-size: 1.2rem;
    }

    .commonItem__info_txt {
        font-size: .8rem;
    }

    .commonItem__info_txt.largeRed {
        font-size: 1.8rem;
    }
}

/* ======= content ======= */
/* mvLottery */
.mvLottery {
    margin: 6rem auto;
    background: linear-gradient(#C0EEDA, #3BB6BA);
}


#centerpiece {
    padding-bottom: 12rem;
}

.pinkBg {
    background: #FCEEF4;
    padding: 0 2rem;
}

#menunavi02 {
    margin-top: 8rem;
}

.secHd {
    width: 100%;
    margin: auto;
}

.centerpieceItemHead {
    margin: 0 auto 10rem;
}


/* 完売御礼 */
li.ov a {
    position: relative;
    pointer-events: none;
}

li.ov a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    z-index: 7;
}

li.ov a::after {
    content: "完売御礼";
    position: absolute;
    width: 70%;
    height: auto;
    background-color: red;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.4;
    z-index: 8;
    font-weight: 600;
    padding-top: .5rem;
    letter-spacing: .2rem;
}

/* ====== 目玉商品 ====== */
/* .centerpieceItem .inner {
    max-width: 120rem;
} */

.arecomendation {
    padding-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1rem;
    position: relative;
}

.arecomendation::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    width: 70%;
    height: .1rem;
    transform: translateX(-50%);
    background: #707070;
}

.arecomendation>li {
    width: calc(50% - .5rem);
    position: relative;
    border-bottom: .3rem solid rgb(209, 160, 53, 0.6);
}

.arecomendation>li:nth-last-child(1),
.arecomendation>li:nth-last-child(2) {
    border-color: transparent;
}

.contentItem {
    background: #fff;
    overflow: hidden;
    padding: 2rem;
    display: block;
    position: relative;
}

.contentItem .headBox {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #774343;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 1rem;
    word-break: break-all;
}

.contentItem .headBox.head01 {
    font-size: 2rem;
}

.contentItem .headBox.head01.small {
    font-size: 1.8rem;
}

.contentItem .headBox span {
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.2;
    width: 100%;
    /* min-height: 9rem; */
}

.contentItem .imageBox {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0rem solid #707070;
}

.contentItem .imageBox .imageP img {
    max-height: 45rem;
    width: auto;
}

.contentItem .limitedLogo,
.contentItem .shoplogo {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 3;
}

.contentItem .limitedLogo li {
    width: 10rem;
}

.contentItem .shoplogo {
    width: 14rem;
    left: auto;
    top: auto;
    right: 1rem;
    bottom: 1rem;
}

.contentItem .shoplogo.logo2 {
    width: 12rem;
}

.contentItem .infoBox {
    padding: 1rem 0 2rem;
    color: #353535;
    background: #fff;
}

.contentItem .infoBox .limitedUl {
    /* display: flex;
    flex-wrap: wrap; */
    margin-bottom: 1.5rem;
}

.contentItem .infoBox .limitedUl li span {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    padding: .1rem .3rem;
    color: #fff;
}

.contentItem .infoBox .limitedUl li span.pink {
    background: #EB4168;
}

.contentItem .infoBox .limitedUl li span.blue {
    background: #495596;
}

.contentItem .infoBox .limitedUl li span.red {
    background: #AC1A3C;
}

.contentItem .infoBox .limitedUl li span.op {
    background: transparent;
}

.contentItem .infoBox .limitedUl li+li {
    /* margin-left: 1rem; */
    margin-top: 1rem;
}

.contentItem .infoBox .info_txt {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.14;
    word-break: break-all;
}

.contentItem .infoBox .info_txt small {
    font-size: 1.6rem;
}

.contentItem .infoBox .info_name {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.42;
}

.contentItem .infoBox .info_txt.largeRed {
    color: #FF0000;
    font-size: 5rem;
}

.underline {
    text-decoration: underline;
}

.contentItem .infoBox .info_note {
    font-size: 1.2rem;
}

.contentItem .infoBox .titImage {
    max-width: 26rem;
    width: 100%;
}

.contentItem .infoBox .iconLogo {
    max-width: 8.6rem;
    width: 100%;
    margin-bottom: 1rem;
}

.contentItem .infoBox .note {
    font-size: 1.6rem;
    display: block;
}

.contentItem .infoBox .point_box {
    margin-top: 3rem;
}

.contentItem .infoBox .point_box .point_img {
    width: 95%;
}

.contentItem .infoBox .point_box .point_txt {
    display: inline-block;
    font-size: 2rem;
    border: .1rem solid #707070;
    font-weight: 700;
    padding: .1rem .3rem;
    margin: .2rem 0;
}

.contentItem .infoBox .point_box .point_txt strong {
    font-size: 2.4rem;
}

.contentItem .infoBox dl {
    display: flex;
    align-items: flex-end;
}

.contentItem .infoBox dt {
    width: 2.2em;
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
}

.contentItem .infoBox dd {
    width: calc(100% - 2.2em);
}

.contentItem .infoBox .priceDl01 {
    color: #FF0000;
}

.contentItem .infoBox .priceDl01 dt {
    padding-bottom: .4rem;
}

.contentItem .infoBox .priceDl02 dt {
    font-size: 1.8rem;
    padding-bottom: .2rem;
}

.contentItem .infoBox .priceDl01 dd {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2.5px;
    font-family: "Roboto", sans-serif;
}

.contentItem .infoBox .priceDl01 dd small {
    font-size: 2rem;
}

.contentItem .infoBox .priceDl02 {
    margin-top: .5rem;
}

.contentItem .infoBox .priceDl02 dd {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.contentItem .infoBox .priceDl02 dd small {
    font-size: 1.8rem;
}

.contentItem .priceBox {
    margin-top: 3rem;
}

.contentItem .priceBox {

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contentItem .priceBox.off {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 10rem;
}

.contentItem .priceBox.off dl {
    align-items: center;
}

.contentItem .priceBox.off dt {
    width: 12rem;
    font-size: 1.6rem;
}

.contentItem .priceBox.off .priceTxt {
    font-size: 1.6rem;
    font-weight: 700;
}

.contentItem .priceBox.off .offBox {
    font-size: 5rem;
    font-weight: 700;
    color: #FF0000;
}

.contentItem .priceBox.off .offBox small {
    font-size: 2.5rem;
}

.contentItem .priceBox.off .offBox small.off {
    font-size: 4rem;
}

.contentItem .priceBox.point {
    position: relative;
    padding-left: 10rem;
}


.pointBox {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 8rem;
    height: 8rem;
    background: #FB0001;
    border-radius: 100%;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pointBox small {
    font-size: 60%;
}

.priceCont {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contentItem .priceBox .priceImage {
    width: 50%;
}

.arecomendationLink span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3dc5ec;
    padding-top: .6rem;
    color: #fff;
    height: 3rem;
    font-size: 2rem;
    letter-spacing: .3em;
    font-weight: 700;
}


.contentItem .infoBox .typeDl {
    align-items: flex-start;
}

.contentItem .infoBox .typeDl dt {
    width: 12rem;
    margin-right: 2rem;
    font-size: 1.6rem;
    border: .1rem solid #000;
    background: #fff;
    text-align: center;
    padding: .1rem;
}

.contentItem .infoBox .typeDl dd {
    width: calc(100% - 16rem);
    font-size: 1.4rem;
    display: flex;
    font-weight: 700;
    border: .1rem solid #000;
    background: #fff;
}

.contentItem .infoBox .typeDl dd .ttl {
    width: 4em;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #000;
    padding: .1rem .3rem;
}

.contentItem .infoBox .typeDl dd .txt {
    padding: .3rem;
}

.contentItem .infoBox .number {
    font-size: 1.4rem;
}

.contentItem .imageLogo {
    position: absolute;
    left: 0;
    bottom: 1.2rem;
    z-index: 2;
}


.contentPriceBox {
    margin-top: 2rem;
}

.op {
    opacity: 0;
}

.space-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* coupon クーポンご利用で */
.priceCoupon {
    background: #B50080;
    /* background: #3D3D3D; */
    padding: 1.5rem 1rem;
    color: #fff;
    position: relative;
    max-width: 95%;
    width: 100%;
    margin: 1.6rem auto 0;
}

/* .priceCoupon::before {
    content: "";
    position: absolute;
    left: 14rem;
    top: 0;
    z-index: 1;
    width: 3rem;
    height: 3.2rem;
    background: #3D3D3D;
    transform: translateY(-70%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
} */

.priceCouponEng {
    display: none;
    position: absolute;
    right: .6rem;
    top: 1rem;
    z-index: 2;
}

.priceCouponEng span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    font-size: 1.6rem;
    font-weight: 700;
    background: #fff;
    padding: 0rem .5rem;
}

.priceCouponTtl {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    /* color: #FFF60F; */
    /* color: #dfa233; */
    /* color: #E3BC58; */
}

.priceCouponFlex {
    display: flex;
}

.contentItem .infoBox .priceCoupon .priceDl01 {
    width: 50%;
}

.contentItem .infoBox .priceCoupon .priceDl02 {
    width: calc(50% - 1rem);
    margin-left: 1rem;
}

.contentItem .infoBox .priceCoupon .priceDl01,
.contentItem .infoBox .priceCoupon .priceDl02 {
    color: #fff;
}

.contentItem .infoBox .priceCoupon dt {
    width: 18%;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.contentItem .infoBox .priceCoupon .priceDl01 dd {
    font-size: 3.8rem;
    width: 82%;
}

.contentItem .infoBox .priceCoupon .priceDl02 dd {
    width: 82%;
}

.contentItem .infoBox .priceCoupon .priceDl02 dd small,
.contentItem .infoBox .priceCoupon .priceDl01 dd small {
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {

    /* mvLottery */
    .mvLottery {
        background: transparent;
        margin: 2rem auto 5rem;
    }
    
    #centerpiece {
        padding-bottom: 5rem;
    }

    .pinkBg {
        background: #FCEEF4;
        padding: 0 0 2rem 0;
    }

    #menunavi02 {
        margin-top: 3.5rem;
    }

    .secHd {
        max-width: 100%;
    }

    .centerpieceItemHead {
        margin: 0 auto 1.5rem;
    }

    .arecomendation {
        padding-top: 2rem;
        display: block;
        margin-top: 0;
    }

    .arecomendation::before {
        width: 90%;
    }

    .arecomendation>li {
        width: 100%;
        display: block;
        padding: 0;
        border-bottom-width: .2rem;
    }

    .arecomendation>li:nth-last-child(2) {
        border-color: rgb(209, 160, 53, 0.6);
    }

    .contentItem .headBox {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .contentItem .headBox.head01 {
        font-size: 1.2rem;
    }

    .contentItem .headBox.head01.small {
        font-size: 1.1rem;
    }

    .contentItem .headBox span {
        width: 100%;
        height: auto;
        min-height: unset;
    }

    .contentItem .imageBox {
        height: auto;
        padding: .8rem 0;
    }

    .contentItem .imageBox .imageP img {
        max-height: unset;
        width: auto;
        height: auto;
    }

    .contentItem .limitedLogo li {
        width: 6rem;
    }

    .contentItem .limitedLogo,
    .contentItem .shoplogo {
        left: .5rem;
        top: .5rem;
    }

    .contentItem .shoplogo {
        width: 10rem;
        left: auto;
        top: auto;
        right: .8rem;
        bottom: .8rem;
    }

    .contentItem .shoplogo.logo2 {
        width: 7rem;
    }

    .contentItem .infoBox {
        padding: 1rem 0 0;
    }

    .contentItem .infoBox .limitedUl {
        display: block;
        margin-bottom: .9rem;
    }

    .contentItem .infoBox .limitedUl li+li {
        margin-left: 0;
        margin-top: .5rem;
    }

    .contentItem .infoBox .limitedUl li span {
        font-size: 1.2rem;
        line-height: 1;
        font-weight: 700;
        padding: .1rem .4rem;
    }

    .contentItem .infoBox .limitedUl li span.op {
        display: none;
    }

    .contentItem .infoBox .info_txt {
        font-size: 1.6rem;
    }

    .contentItem .infoBox .info_txt small {
        font-size: 1.2rem;
    }


    .contentItem .infoBox .info_name {
        font-size: 1.2rem;
    }

    .contentItem .infoBox .info_txt.largeRed {
        font-size: 3.5rem;
    }

    .contentItem .infoBox .note {
        font-size: 1.4rem;
    }

    .contentItem .infoBox dt {
        font-size: 1.2rem;
    }

    .contentItem .infoBox .priceDl01 dd {
        font-size: 3.6rem;
    }

    .contentItem .infoBox .priceDl01 dd small {
        font-size: 1.2rem;
    }

    .contentItem .infoBox .priceDl02 {
        margin-top: .5rem;
    }

    .contentItem .infoBox .priceDl02 dt {
        font-size: 1.2rem;
    }

    .contentItem .infoBox .priceDl02 dd {
        font-size: 2rem;
    }

    .contentItem .infoBox .priceDl02 dd small {
        font-size: 1.2rem;
    }

    .contentItem .infoBox.hlg02,
    .contentItem .infoBox .info.hlg04 {
        height: auto !important;
    }

    .arecomendationLink span {
        height: 2.6rem;
        font-size: 1.6rem;
        padding-top: .4rem;
    }

    .centerpieceItem.special {
        margin-top: 2rem;
    }

    .contentItem {
        padding: 2rem 0;
    }

    .contentItem .infoBox .point_box .point_txt {
        font-size: 1.4rem;
    }

    .contentItem .infoBox .point_box .point_txt strong {
        font-size: 1.6rem;
    }

    .contentItem .imageLogo img {
        transform: scale(.6);
        transform-origin: left bottom;
    }

    .contentItem .priceBox.off {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: unset;
    }

    .contentItem .priceBox.off dl {
        align-items: center;
    }

    .contentItem .priceBox.off dt {
        width: 6rem;
        font-size: 1.2rem;
    }

    .contentItem .priceBox.off .priceTxt {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .contentItem .priceBox.off .offBox {
        font-size: 4rem;
    }

    .contentItem .priceBox.off .offBox small {
        font-size: 2rem;
    }

    .contentItem .priceBox.off .offBox small.off {
        font-size: 3rem;
    }

    .contentItem .priceBox .priceImage {
        width: 50%;
    }

    .contentItem .priceBox.point {
        padding-left: 8rem;
    }

    .pointBox  {
        width: 6rem;
        height: 6rem;
        font-size: 1.8rem;
    }
    /* 定期購入がおトク */
    .centerpieceItem.buy {
        margin-top: 6rem;
        padding: 1.2rem 0 3rem;
    }

    .centerpieceItem.buy .buyLink {
        max-width: 95%;
    }

    /* coupon クーポンご利用で */
    .priceCoupon {
        padding: 1.4rem .6rem 1rem;
    }

    .priceCont {
        margin-top: 1rem;
    }

    .priceCoupon::before {
        left: 12rem;
        width: 1.8rem;
        height: 2rem;
        transform: translateY(-70%);
        clip-path: polygon(50% 0, 0 100%, 100% 100%);
    }

    .contentItem .priceBox .priceImage {
        margin-bottom: 1rem;
    }

    .priceCouponEng {
        right: .6rem;
        top: .6rem;
    }

    .priceCouponEng span {
        font-size: 1.4rem;
    }

    .priceCouponTtl {
        font-size: 1.8rem;
        margin-bottom: 1.4rem;
    }

    .contentItem .infoBox .priceCoupon .priceDl01 dd {
        font-size: 3.2rem;
    }

    .contentItem .infoBox .priceCoupon .priceDl02 dd small,
    .contentItem .infoBox .priceCoupon .priceDl01 dd small {
        font-size: 1.4rem;
    }
}

/* menu navi */

.menuNavi {
    padding: 1.4rem 0 4rem;
}

.menuNavi ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menuNavi ul li {
    width: calc((100% / 4) - .5rem);
}

/* ======= おすすめ商品 ======= */

.goodsBtn {
    max-width: 60rem;
    width: 100%;
    margin: 5rem auto 0;
}

/* ==== area ==== */
.area {
    padding: 12rem 0 10rem;
}

.Category_title {
    text-align: center;
}

.categoryinner {
    max-width: 77%;
    width: 100%;
    margin: 0 auto 8rem;
}

.outWrap+.outWrap {
    margin-top: 10rem;
}

.outWrap .areaHead h2 {
    color: #2E2E2E;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 1rem;
    margin: 3rem auto 1.5rem;
    text-align: center;
    border-bottom: .3rem #E85384 dashed;
    max-width: 85%;
    width: 100%;
}

.outWrap .areaHead h2.colantotteH2 {
    border: none;
    margin-top: 10rem;
}

.outWrap .areaHead h2.colantotteH2 .colantotteHdImg {
    display: block;
    border-bottom: .2rem #BC198D dashed;
    padding-bottom: 1rem;
}

.outWrap .areaHead h2.colantotteH2 .colantotteHdImg img {
    max-width: 70%;
    width: 100%;
    margin: auto;
}

.colantotteHdTxt {
    display: inline-block;
    font-size: 3rem;
    line-height: 1.2;
    padding-top: 1rem;
    text-align: left;
}

.contLinksList {
    position: relative;
}

.outWrap .contLinksList .contentItem {
    padding: 0;
}

ul.contentBox {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2rem;
    width: 100%;
}

ul.contentBox li {
    width: calc(100% / 3);
    /* border: .1rem solid #707070; */
    position: relative;
    padding: .5rem;
}

ul.contentBox>li::before {
    content: "";
    position: absolute;
    left: .5rem;
    bottom: 0;
    z-index: 1;
    width: calc(100% - 1rem);
    height: .1rem;
    background: #D5D5D5;
}

ul.contentBox>li::after {
    content: "";
    position: absolute;
    right: 0;
    top: .5rem;
    z-index: 1;
    width: .1rem;
    height: calc(100% - 1rem);
    ;
    background: #D5D5D5;
}


ul.contentBox.rows-4>li:nth-last-child(1)::before,
ul.contentBox.rows-4>li:nth-last-child(2)::before,
ul.contentBox.rows-4>li:nth-last-child(3)::before,
ul.contentBox.rows-4>li:nth-last-child(4)::before {
    content: unset;
}

ul.contentBox.rows-4>li.empty-item::after {
    content: unset;
}

ul.contentBox.rows-4>li:nth-child(4n)::after {
    content: unset;
}

ul.contentBox li img {
    width: auto;
    margin: auto;
}

ul.contentBox.rows-4 li {
    width: calc(100% / 4);
}

ul.contentBox.rows-4 li.twoItem {
    width: 48.2%;
}

ul.contentBox.rows-4 li.threeItem {
    width: 73.7%;
}

.contLinksList {
    position: relative;
}

/* .contLinksList.show::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3rem;
    z-index: 1;
    width: 100%;
    height: 43rem;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(128, 226, 246, 1) 50%, rgba(128, 226, 246, 1) 90%, rgba(255, 255, 255, 0) 100%);
} */

.outWrap {
    position: relative;
}

/* .moreBtn {
    max-width: 37.5rem;
    width: 100%;
    margin: 0 auto 0;
    height: 10.3rem;
    background: url(/Contents/ImagesPkg/portal/p-formatlp/202510/common/more_btn.png) center center no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 5;
    transition: all .3s ease;
    display: none !important;
    margin-top: 1rem;
    top: -10rem;
}

.moreBtn.active {
    background: url(/Contents/ImagesPkg/portal/p-formatlp/202510/common/more_btn02.png) center center no-repeat;
    background-size: 100% 100%;
    transition: all .3s ease;
    margin: 2rem auto 0;
    top: 0;
} */

.outWrap .contentBox li {
    float: left;
    box-sizing: border-box;
    width: 25%;
    transition: all 0.4s ease-in-out;
    opacity: 1;
    max-height: 60rem;
}

/* .outWrap .contentBox li.hidden {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
} */

.outWrap .contentBox li img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.noteList ul {
    max-width: 96%;
    width: 100%;
    margin: 5rem auto 0;
}

.noteList li {
    font-size: 2rem;
    text-indent: -1em;
    margin-left: 1em;
    font-weight: 700;
    line-height: 1.32;
    color: #1A1A1A;
}

.areaBrn,
.areaBtn {
    max-width: 60rem;
    width: 100%;
    margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
    /* menu navi */

    .menuNavi {
        padding: 1.4rem 2rem 0;
    }


    /* area */
    .area {
        padding: 4.5rem 0 3rem;
        margin-top: 0;
    }

    .categoryinner {
        max-width: 80%;
        margin: 0 auto 3rem;
    }


    #beauty .Category_title .inner {
        padding: 0;
    }

    .outWrap+.outWrap {
        margin-top: 4.5rem;
    }

    .outWrap .areaHead h2 {
        max-width: 85%;
        width: 100%;
        font-size: 2.4rem;
        border-bottom-width: .1rem;
        margin: 2rem auto .2rem;
        padding-bottom: .5rem;
    }

    .outWrap .areaHead h2.colantotteH2 {
        margin-top: 5rem;
    }

    .outWrap .areaHead h2.colantotteH2 .colantotteHdImg {
        display: block;
        border-bottom-width: .1rem;
    }

    .outWrap .areaHead h2.colantotteH2 .colantotteHdImg img {
        max-width: 90%;
    }

    .colantotteHdTxt {
        font-size: 1.4rem;
    }

    ul.contentBox {
        gap: 0;
        padding: 1.2rem 0 0;
        margin: 0;
    }

    .outWrap .contLinksList.show .contentBox li {
        max-height: 300rem;
        transition: all 0.4s ease-in-out;
    }

    .outWrap .contLinksList .contentBox li {
        max-height: 300rem;
        transition: all 0.4s ease-in-out;
    }

    .outWrap .contLinksList.show .contentBox li.hidden {
        /* max-height: 0; */
    }

    ul.contentBox li {
        width: 50%;
        border-top: none;
        border-left: none;
    }

    ul.contentBox>li::after {
        content: "";
        position: absolute;
        right: 0;
        top: .5rem;
        z-index: 1;
        width: .1rem;
        height: calc(100% - 1rem);
        ;
        background: #D5D5D5;
    }

    ul.contentBox.rows-4>li:nth-last-child(3)::before,
    ul.contentBox.rows-4>li:nth-last-child(4)::before {
        content: "";
    }

    ul.contentBox.rows-4>li.no-right::after {
        content: unset;
    }

    ul.contentBox.rows-4>li:nth-child(4n)::after {
        content: "";
    }

    ul.contentBox.rows-4>li:nth-child(2n)::after {
        content: unset;
    }

    ul.contentBox.rows-4 li {
        width: 50%;
    }

    ul.contentBox.rows-4 li.half {
        width: 50%;
    }

    ul.contentBox.rows-4 li.half2 {
        margin-left: 0;
    }

    /* .contLinksList.show::before {
        bottom: -1rem;
        height: 18rem;
    } */

    /* .moreBtn {
        max-width: 20.8rem;
        width: 100%;
        height: 5.7rem;
        background: url(/Contents/ImagesPkg/portal/p-formatlp/202510/common/more_btn.png) center center no-repeat;
        background-size: 100% auto;
    }

    .moreBtn.active {
        margin-top: 2rem;
    } */

    .goodsBtn {
        margin: 3rem auto 0;
    }

    .goodsBtn .inner {
        padding: 0 10%;
    }

    .noteList ul {
        max-width: 100%;
        margin: 3rem auto 0;
    }

    .noteList li {
        font-size: 1.2rem;
    }

    .areaBrn {
        margin: 3rem auto 0;
    }
    .areaBtn {
        margin: 4rem auto 0;
    }

    .areaBrn .inner {
        padding: 0 1.2rem;
    }
    
    .areaBtn .inner {
        padding: 0 10%;
    }
}



/* 開催中のセール */
.addinner {
    margin-top: 8rem;
}

.featureList__contentsTtl {
    height: 4rem;
    background: var(--color-secondary);
    border-radius: 1rem 1rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.featureList-top__inner {
    padding: 1rem;
    background: #fefaf4;
}

ul.grid-featureList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.3rem;
}

ul.grid-featureList li {
    width: calc((100% / 4) - 1rem);
}

div#onGoingSale {
    max-width: 102rem;
    width: 100%;
    margin: 3rem auto;
}

/* イオンスタイルオンライン */
.onlineBtn {
    width: 65%;
    margin: 3rem auto 3rem;
}

@media screen and (max-width: 767px) {

    /* 開催中のセール */
    .addinner {
        margin-top: 3rem;
    }

    ul.grid-featureList li {
        width: calc((100% / 2) - .7rem);
    }

    /* イオンスタイルオンライン */
    .onlineBtn {
        width: 80%;
        margin: 8rem auto 2rem;
        padding-bottom: 2rem;
    }
}


/* キャンベーン */
.cpHd {
    max-width: 90%;
    margin-bottom: 5rem;
}

.cpSec {
    margin-top: 15rem;
}

.cpSec ul {
    max-width: 80%;
    width: 100%;
    margin: auto;
}

.cpSec ul li+li {
    margin-top: 4rem;
}

@media screen and (max-width: 767px) {

    /* キャンベーン */
    .cpHd {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .cpSec {
        margin-top: 7.5rem;
    }

    .cpSec ul {
        max-width: 100%;
    }

    .cpSec ul li+li {
        margin-top: 2.4rem;
    }

}


/* 限定商品 */
.limit-wrap {
    padding: 3rem 0 6rem;
    background: linear-gradient(#EB7AA0,#FDB3CC,#FFEBEB);
}

.limit-sec {
    max-width: 50rem;
    width: 100%;
    margin: 3rem auto 0;
}

.limit-sec .contentItem {
    box-shadow: 0 .3rem .6rem rgb(255, 78, 137, 0.6);
}


@media screen and (max-width: 767px) {
    .limit-sec {
        max-width: 50rem;
        width: calc(100% + 2.4rem);
        margin-left: -1.2rem;
    }

    .limit-sec .contentItem {
        padding: 1.2rem;
    }
}