@charset "UTF-8";
/* =====================
	母の日特集
 ======================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins&family=Zen+Old+Mincho&display=swap");

/* リセット */
/* 冒頭に追加 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: block;
    margin: 0; /* これで 8px を打ち消します */
    line-height: 1.6;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/** -------------------- ページ内共通 -------------------- **/
:root {
    --w_font_sansserif: "Noto Sans JP", sans-serif;
    --w_font_serif: "Zen Old Mincho", serif;
    --w_font_num: "Poppins", "Noto Sans JP", sans-serif;
    --w_c_red: #cf0037;
    --w_c_blk: #333333;
    --w_c_wht: #fff;
    --w_c_blue: #308eac;
    --w_filter_red: invert(16%) sepia(67%) saturate(6136%) hue-rotate(335deg) brightness(77%) contrast(116%);
    --w_filter_blk: invert(0%) sepia(7%) saturate(141%) hue-rotate(55deg) brightness(91%) contrast(82%);
    --w_filter_wht: brightness(0) invert(1);
    --w_anim: all 0.4s ease;
}

.mothersday {
    color: #333;
    font-family: var(--w_font_sansserif);
}

.mothersday-inner {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.mothersday-ttl {
    color: #e53c68;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 2.4px;
    margin-bottom: 16px;
}

.mothersday-ttl--recommend {
    margin-bottom: 50px;
}

.mothersday-ttl::before {
    content: "";
    width: 46px;
    height: 58px;
    background: url(../images/mothersday/medal.png) no-repeat center/contain;
    display: block;
    margin: 0 auto;
}

.mothersday-slider-scroll {
    padding: 0 15px;
    margin: 30px -15px;
    overflow-x: auto;
    overflow-y: hidden;
}
.mothersday-slider-scroll:first-child {
    margin-top: 0;
}
.mothersday-slider-scroll:last-child {
    margin-bottom: 0;
}
.mothersday-slider-scroll::-webkit-scrollbar {
    height: 4px;
}
.mothersday-slider-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.mothersday-slider-scroll::-webkit-scrollbar-thumb {
    background: var(--w_c_red);
    border-radius: 100px;
}
.mothersday-slider-scroll .mothersday-slider {
    overflow: visible;
}
.mothersday-slider-scroll .mothersday-slider .swiper-wrapper::after {
    content: "";
    width: 15px;
    margin-left: -16px;
    flex-shrink: 0;
}

.mothersday-slider-item a {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    color: #000;
}
.mothersday-slider-item-img {
    border-radius: 6px;
    overflow: hidden;
}
.mothersday-slider-item-name {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.mothersday-slider-item-txt {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.mothersday-slider-item-price {
    font-family: var(--w_font_num);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--w_c_red);
}
.mothersday-slider-item-price > span {
    font-size: 11px;
    font-weight: 400;
}
.mothersday-slider-item-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.mothersday-slider-item-tag > li {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    border-radius: 100px;
    padding: 0 6px;
}
.mothersday-slider-item-tag-ec {
    border: 1px solid var(--w_c_red);
    background: var(--w_c_wht);
    color: var(--w_c_red);
}
.mothersday-slider-item-tag-include {
    border: 1px solid #61b2d4;
    background: #61b2d4;
    color: var(--w_c_wht);
}
.mothersday-slider-item-tag-free {
    border: 1px solid #678fba;
    background: #678fba;
    color: var(--w_c_wht);
}
.mothersday-slider-item-tag-limited {
    border: 1px solid var(--w_c_red);
    background: var(--w_c_red);
    color: var(--w_c_wht);
}
.mothersday-slider-item-tag-cool {
    border: 1px solid #e0a641;
    background: #e0a641;
    color: var(--w_c_wht);
}

.mothersday-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    margin: 0 auto;
    background: var(--w_c_red);
    color: var(--w_c_wht);
    border: 1px solid var(--w_c_red);
    border-radius: 100px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 13px 17px 14px;
}
.mothersday-btn > span {
    flex-grow: 1;
}
.mothersday-btn::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/mothersday/arrow.png) no-repeat center/contain;
    flex-shrink: 0;
    filter: var(--w_filter_wht);
    transition: var(--w_anim);
}
.mothersday-btn:visited,
.mothersday-btn:active,
.mothersday-btn:hover {
    color: var(--w_c_wht);
}
.mothersday-btn--egift {
    background: #42c6c5;
    border-color: #42c6c5;
}

.mothersday-frame {
    position: relative;
    padding: 40px 10px 60px;
    background: #d5eae7;
}
.mothersday-frame02 {
    background: #f6f4d0;
}

.mothersday-frame03 {
    background: #ffeef3;
}
.mothersday-frame::before {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: var(--w_c_wht);
    position: absolute;
    left: 10px;
    top: 10px;
}
.mothersday-frame > * {
    position: relative;
}
.mothersday-frame .mothersday-inner {
    padding: 0 10px;
}
.mothersday-frame .mothersday-slider-scroll {
    padding: 0 10px;
    margin-right: -10px;
    margin-left: -10px;
}
.mothersday-frame .mothersday-slider .swiper-wrapper::after {
    width: 10px;
}

.mothersday-lead {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: normal;
    margin-bottom: 30px;
}
.mothersday-lead strong {
    color: #1ba59e;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 43.2px */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

#ranking .mothersday-lead {
    text-align: left;
}

/** -------------------- Pagetop -------------------- **/
#pagetop {
    display: none !important;
}

.mothersday-pagetop {
    position: fixed;
    right: 10px;
    bottom: 82px;
    z-index: 500;
    width: 40px;
    transition: var(--w_anim);
    opacity: 0;
    visibility: hidden;
}
.mothersday-pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

/** -------------------- MV -------------------- **/
.mothersday-mv {
    position: relative;
    padding: 0;
}
.mothersday-mv-fv img {
    width: 100%;
    display: block;
}
.mothersday-mv-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 0 40px;
    z-index: 10;
}
.mothersday-mv-flower {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 5;
}
.mothersday-mv-flower--left {
    background-image: url(../images/mothersday/flower_sp.png);
    width: 48.683px;
    height: 59.11px;
    transform: rotate(-12.313deg) scaleX(-1);
    left: 50%;
    margin-left: -118px;
    top: -5px;
}
.mothersday-mv-flower--right {
    background-image: url(../images/mothersday/flower_sp.png);
    width: 48.683px;
    height: 59.11px;
    transform: rotate(17.687deg);
    left: 50%;
    margin-left: 60px;
    top: -5px;
}
.mothersday-mv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.mothersday-mv-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 0 40px;
    z-index: 10;
}

.mothersday-mv-bg img {
    width: 100%;
}
.mothersday-mv-ttl {
    color: #e53c68;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 115.2px */
    letter-spacing: 3.2px;
}
.mothersday-mv-lead {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
    padding: 0 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.mothersday-mv-txt {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: normal;
    padding: 0 20px;
}

/** -------------------- ランキング -------------------- **/
.mothersday-ranking-section {
    margin-bottom: 60px;
}
.mothersday-ranking-section:last-child {
    margin-bottom: 0;
}
.mothersday-ranking-header {
    margin-bottom: 30px;
}
.mothersday-ranking-header-lead {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 10px;
}
.mothersday-ranking-header-lead::before {
    content: "＼ ";
}
.mothersday-ranking-header-lead::after {
    content: " ／";
}
.mothersday-ranking-header-ttl {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--w_c_red);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: fit-content;
    margin: 0 auto 20px;
    background: #fffbe1;
    padding: 3px 12px;
}
.mothersday-ranking-header-ttl::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/mothersday/ranking_icon.png) no-repeat center/contain;
    flex-shrink: 0;
}
.mothersday-ranking-header-txt {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    width: fit-content;
    margin: 0 auto;
}
.mothersday-ranking-header-txt strong {
    font-weight: 500;
    color: var(--w_c_red);
}
.mothersday-ranking-no1 {
    margin-bottom: 30px;
}
.mothersday-ranking-no1-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.mothersday-ranking-no1-img::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 80px 0px 0px;
    border-color: #d7a430 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.mothersday-ranking-no1-img::after {
    content: "1";
    font-family: var(--w_font_num);
    font-size: 29px;
    line-height: 1.5;
    color: var(--w_c_wht);
    position: absolute;
    top: 4px;
    left: 20px;
}
.mothersday-ranking-no1-img img {
    width: 100%;
}
.mothersday-ranking-no1-txtbox {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.mothersday-ranking-no1-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.mothersday-ranking-no1-sub img {
    border-radius: 10px;
    width: 100%;
}
.mothersday-ranking-no1-txt {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.mothersday-ranking-no1-price {
    color: var(--w_c_red);
    font-family: var(--w_font_num);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
.mothersday-ranking-no1-price > span {
    font-size: 11px;
    font-weight: 400;
}
.mothersday-ranking-no1-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.mothersday-ranking-no1-tag > li {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    border-radius: 100px;
    padding: 0 6px;
}
.mothersday-ranking-no1-tag-ec {
    border: 1px solid var(--w_c_red);
    background: var(--w_c_wht);
    color: var(--w_c_red);
}
.mothersday-ranking-no1-tag-include {
    border: 1px solid #61b2d4;
    background: #61b2d4;
    color: var(--w_c_wht);
}
.mothersday-ranking-no1-tag-free {
    border: 1px solid #678fba;
    background: #678fba;
    color: var(--w_c_wht);
}
.mothersday-ranking-no1-tag-limited {
    border: 1px solid var(--w_c_red);
    background: var(--w_c_red);
    color: var(--w_c_wht);
}
.mothersday-ranking-no1-tag-cool {
    border: 1px solid #e0a641;
    background: #e0a641;
    color: var(--w_c_wht);
}
.mothersday-ranking .mothersday-slider {
    counter-reset: cnt 1;
}
.mothersday-ranking .mothersday-slider-item {
    counter-increment: cnt;
}
.mothersday-ranking .mothersday-slider-item-img {
    position: relative;
}
.mothersday-ranking .mothersday-slider-item-img::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 36px 36px 0px 0px;
    border-color: #000 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.mothersday-ranking .mothersday-slider-item-img::after {
    content: counter(cnt);
    font-family: var(--w_font_num);
    font-size: 13px;
    line-height: 1.5;
    position: absolute;
    top: 2px;
    left: 7px;
    color: var(--w_c_wht);
}
.mothersday-ranking .mothersday-slider-item:nth-child(1) .mothersday-slider-item-img::before {
    border-color: #869098 transparent transparent transparent;
}
.mothersday-ranking .mothersday-slider-item:nth-child(2) .mothersday-slider-item-img::before {
    border-color: #c06544 transparent transparent transparent;
}

/** -------------------- その他の商品を探す -------------------- **/
.mothersday-search {
    padding: 60px 0;
}

.mothersday-search-subttl {
    display: flex;
    justify-content: center;
    align-items: baseline;
    column-gap: 1em;
    color: var(--w_c_red);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 40px 0 20px;
}
.mothersday-search-subttl::before,
.mothersday-search-subttl::after {
    content: "・・・";
    font-size: 10px;
    font-weight: 700;
}
.mothersday-search-subttl:first-child {
    margin-top: 0;
}

.mothersday-search-category {
    display: grid;
    gap: 20px; /* 項目間の余白（デザインに合わせて調整） */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px; /* コンテナの最大幅 */
    grid-template-columns: repeat(2, 1fr);
}
.mothersday-search-category-item a {
    text-align: center;
    display: block;
    color: #171717;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}
.mothersday-search-category-item a > div {
    background: #fffcea;
    border-radius: 6px;
    padding: 9px 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3px;
    margin-bottom: 8px;
}
.mothersday-search-category-item a > div img {
    width: 60px;
}
.mothersday-search-category-item a > div:after {
    content: "";
    width: 12px;
    height: 6px;
    background: url(../images/mothersday/search_arrow.png) no-repeat center/contain;
}

.mothersday-search-price {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 12px;
    margin: 0 15px;
}
.mothersday-search-price-item a {
    display: block;
    background: #fffcea;
    text-align: center;
    border-radius: 100px;
    font-family: var(--w_font_num);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 16px 0;
    border: 1px solid #fffcea;
    color: #171717;
}

/** -------------------- セレクション -------------------- **/
.mothersday-selection-section {
    margin-bottom: 60px;
}
.mothersday-selection-section:last-child {
    margin-bottom: 0;
}
.mothersday-selection-header {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}
.mothersday-selection-header-img img {
    width: 100%;
}
.mothersday-selection-header-txtbox {
    text-align: center;
}
.mothersday-selection-header-ttl {
    color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.56px;
}
.mothersday-selection-lead {
    font-size: 12px;
    line-height: 1.8;
    margin: 30px auto;
    width: fit-content;
}

#ichigo .mothersday-selection-header-txtbox {
    background: #6fb7cf;
    color: #fff;
}

#celeb .mothersday-selection-header-txtbox {
    background: #f5648b;
    color: #fff;
    display: flex;
    padding: 22px 0 16px 0;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

/** -------------------- サンリオ〜プリン　共通 -------------------- **/
.mothersday-category {
    margin-bottom: 60px;
}
.mothersday-category:last-child {
    margin-bottom: 0;
}
.mothersday-category-header {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.mothersday-category-header-img img {
    width: 100%;
}
.mothersday-category-header-txtbox {
    text-align: center;
    padding: 22px 6px 16px;
}
.mothersday-category-header-ttl {
}

.mothersday-category-header-ttl-eng {
    line-height: 120%; /* 38.4px */
}
.mothersday-category-header-ttl-jp {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}

.mothersday-category-header-ttl-egift {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}

.mothersday-category-header-txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.mothersday-category-lead {
    font-size: 12px;
    line-height: 1.8;
    margin: 20px auto;
    width: fit-content;
}
.mothersday-category-more {
    margin-top: 20px;
}

#sanrio .mothersday-category-header-txtbox {
    background: #f5648b;
    color: #fff;
}

#egift .mothersday-category-header-txtbox {
    background: #42c6c5;
    color: #fff;
}

#baked .mothersday-category-header-txtbox {
    background: #fbc93e;
    color: #fff;
}

#cake .mothersday-category-header-txtbox {
    background: #6fb7cf;
    color: #fff;
}

#pudding .mothersday-category-header-txtbox {
    background: #fbc93e;
    color: #fff;
}

/** -------------------- レコメンド -------------------- **/
.mothersday-recommend-section {
    margin-bottom: 50px;
}
.mothersday-recommend-section:last-child {
    margin-bottom: 0;
}
.mothersday-recommend-header {
    padding: 0px;
    margin-bottom: 30px;
}
.mothersday-recommend-ttl {
    text-align: center;
    color: #f5648b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.mothersday-recommend-txt {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
    width: fit-content;
    margin: 0 auto;
}
.mothersday-recommend-point {
    margin-top: 20px;
}
.mothersday-recommend-point-ttl {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 10px;
}
.mothersday-recommend-point-ttl > span {
    background: #fffbe1;
    color: var(--w_c_red);
    display: inline-block;
    padding: 0 10px;
}
.mothersday-recommend-point-ttl > span::before {
    content: "＼ ";
}
.mothersday-recommend-point-ttl > span::after {
    content: " ／";
}
.mothersday-recommend-point-txt {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
    width: fit-content;
    margin: 0 auto;
}

/** -------------------- おすすめコンテンツ -------------------- **/
.mothersday-voice {
    padding: 80px 0;
}
.mothersday-voice:last-child {
    padding-bottom: 0;
}

.mothersday-voice-ttl {
    text-align: center;
    margin: 0 0 40px;
}
.mothersday-voice-ttl-jp {
    margin: 16px 0 0;
    color: var(--w_c_red);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.mothersday-voice-item {
    margin: 0 0 40px;
}
.mothersday-voice-item:last-child {
    margin-bottom: 0;
}
.mothersday-voice-item-img {
    margin: 0 0 20px;
}
.mothersday-voice-item-img img {
    width: 100%;
}
.mothersday-voice-item-ttl {
    color: var(--w_c_red);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}
.mothersday-voice-item-txt {
    font-size: 12px;
    line-height: 2;
}
.mothersday-voice-item-txt strong {
    color: #308eac;
    font-weight: 700;
}
.mothersday-voice-item-more {
    margin: 10px 0 0;
    text-align: right;
}
.mothersday-voice-item-more a {
    display: inline-flex;
    align-items: center;
    column-gap: 15px;
    padding-bottom: 6px;
    color: var(--w_c_blk);
    border-bottom: 1px solid var(--w_c_blk);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.08em;
}
.mothersday-voice-item-more a::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/mothersday/arrow.png) no-repeat center/contain;
    filter: var(--w_filter_blk);
    flex-shrink: 0;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 1199px) {
    .u-onlyPC {
        display: none !important;
    }
}

/* タブレット対応
  ------------------------ */
@media (min-width: 768px) and (max-width: 1199px) {
    .mothersday-mv .u-onlyPC {
        display: block !important;
    }
    .mothersday-mv .u-onlySP {
        display: none !important;
    }
    .mothersday-mv-flower--left {
        background-image: url(../images/mothersday/flower_left.png);
        width: 110px;
        height: 133px;
        transform: rotate(162.31deg) scale(0.8);
        margin-left: -360px;
        top: 85px;
    }
    .mothersday-mv-flower--right {
        background-image: url(../images/mothersday/flower_right.png);
        width: 110px;
        height: 133px;
        transform: rotate(17.69deg) scale(0.8);
        margin-left: 250px;
        top: 83px;
    }
}

/* PC
  ------------------------ */
@media (min-width: 1200px) {
    .u-onlySP {
        display: none !important;
    }
    .mothersday-mv-content {
        padding-bottom: 80px;
    }
    .mothersday-mv-flower--left {
        background-image: url(../images/mothersday/flower_left.png);
        width: 162.16px;
        height: 196.89px;
        transform: rotate(162.31deg);
        margin-left: -600px;
        top: 198px;
    }
    .mothersday-mv-flower--right {
        background-image: url(../images/mothersday/flower_right.png);
        width: 162.16px;
        height: 196.89px;
        transform: rotate(17.69deg);
        margin-left: 400px;
        top: 196px;
    }
    /** -------------------- ページ内共通 -------------------- **/
    .mothersday-ttl {
        font-size: 50px;
        line-height: 150%;
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    .mothersday-ttl--recommend {
        margin-bottom: 80px;
    }
    .mothersday-ttl::before {
        width: 82px;
        height: 102px;
    }
    .mothersday-slider-scroll {
        overflow: hidden;
    }
    /** -------------------- Pagetop -------------------- **/
    /** -------------------- MV -------------------- **/
    /** -------------------- ランキング -------------------- **/
    /** -------------------- その他の商品を探す -------------------- **/
    /** -------------------- セレクション -------------------- **/
    /** -------------------- サンリオ〜プリン　共通 -------------------- **/
    /** -------------------- レコメンド -------------------- **/
    /** -------------------- おすすめコンテンツ -------------------- **/
}
@media (min-width: 1200px) and (min-width: 1280px) {
    .mothersday-slider-scroll {
        padding: 0 30px;
        margin: 30px -30px 60px;
        position: relative;
    }
}
@media (min-width: 1200px) and (min-width: 1328px) {
    .mothersday-slider-scroll {
        padding: 0 64px;
        margin: 30px -64px 60px;
    }
}
@media (min-width: 1200px) {
    .mothersday-slider-scroll .mothersday-slider {
        overflow: hidden;
    }
}
@media (min-width: 1200px) and (min-width: 1280px) {
    .mothersday-slider-scroll .mothersday-slider {
        position: initial;
    }
}
@media (min-width: 1200px) {
    .mothersday-slider-scroll .mothersday-slider .swiper-wrapper::after {
        display: none;
    }
    .mothersday-slider {
        padding: 0 15px;
        margin: 0 -15px;
    }
}
@media (min-width: 1200px) and (min-width: 1280px) {
    .mothersday-slider {
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    .mothersday-slider-item a {
        row-gap: 16px;
    }
    .mothersday-slider-item-img {
        border-radius: 10px;
        margin-bottom: 4px;
    }
    .mothersday-slider-item-name {
        font-size: 15px;
    }
    .mothersday-slider-item-txt {
        font-size: 13px;
    }
    .mothersday-slider-item-price {
        font-size: 15px;
    }
    .mothersday-slider-item-price > span {
        font-size: 13px;
    }
    .mothersday-slider-item-tag > li {
        font-size: 12px;
        padding: 0 14px 1px;
    }
    .mothersday-slider-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--w_c_wht);
        position: absolute;
        top: 0;
        margin-top: calc((100% - 60px - 60px) / 3 / 2);
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--w_anim);
    }

    .mothersday-mv-content {
        padding-bottom: 80px;
    }

    .mothersday-lead strong {
        font-size: 24px;
        margin-bottom: 24px;
    }
}
@media (min-width: 1200px) and (min-width: 1280px) {
    .mothersday-slider-arrow {
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    }
}
@media (min-width: 1200px) and (min-width: 1328px) {
    .mothersday-slider-arrow {
        box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
    }
}
@media (min-width: 1200px) {
    .mothersday-slider-arrow::before {
        content: "";
        width: 21px;
        height: 21px;
        background: url(../images/mothersday/arrow.png) no-repeat center/contain;
        filter: var(--w_filter_blk);
    }
    .mothersday-slider-arrow--prev {
        left: 0;
    }
}
@media (min-width: 1200px) and (min-width: 1328px) {
    .mothersday-slider-arrow--prev {
        left: 34px;
    }
}
@media (min-width: 1200px) {
    .mothersday-slider-arrow--prev::before {
        transform: scale(-1, 1);
    }
    .mothersday-slider-arrow--next {
        right: 0;
    }
}
@media (min-width: 1200px) and (min-width: 1328px) {
    .mothersday-slider-arrow--next {
        right: 34px;
    }
}
@media (min-width: 1200px) {
    .mothersday-slider-arrow.swiper-button-disabled {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .mothersday-btn {
        width: 378px;
        font-size: 15px;
        font-weight: 500;
        padding: 15px 18px 17px;
    }
    .mothersday-btn::after {
        width: 20px;
        height: 20px;
    }
    .mothersday-frame {
        padding: 140px 40px;
    }
    .mothersday-frame::before {
        width: calc(100% - 80px);
        height: calc(100% - 80px);
        top: 40px;
        left: 40px;
        border-radius: 10px;
    }
    .mothersday-frame .mothersday-inner {
        padding: 0 15px;
    }
    .mothersday-frame .mothersday-slider-scroll {
        margin-right: -64px;
        margin-left: -64px;
        padding: 0 64px;
    }
    .mothersday-lead {
        font-size: 18px;
        margin-bottom: 80px;
        letter-spacing: 0.9px;
    }

    #ranking .mothersday-lead {
        text-align: center;
    }
    .mothersday-pagetop {
        right: 40px;
        bottom: 40px;
        width: 100px;
    }
    .mothersday-mv {
        padding: 0;
    }
    .mothersday-mv-ttl {
        margin-bottom: 40px;
        font-size: 96px;
        letter-spacing: 7.68px;
        padding: 0px;
    }
    .mothersday-mv-lead {
        font-size: 28px;
        margin-bottom: 30px;
        margin-bottom: 16px;
        margin-top: 0px;
    }
    .mothersday-mv-txt {
        font-size: 18px;
        line-height: 2.2;
        letter-spacing: 0;
    }
    .mothersday-ranking-section {
        margin-bottom: 100px;
    }
    .mothersday-ranking-header {
        margin-bottom: 40px;
    }
    .mothersday-ranking-header-lead {
        font-size: 16px;
    }
    .mothersday-ranking-header-ttl {
        font-size: 22px;
        padding: 5px 20px;
    }
    .mothersday-ranking-header-ttl::before {
        width: 34px;
        height: 34px;
    }
    .mothersday-ranking-header-txt {
        text-align: center;
        font-size: 15px;
        line-height: 2;
    }
    .mothersday-ranking-no1 {
        margin-bottom: 60px;
    }
    .mothersday-ranking-no1 a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mothersday-ranking-no1-img {
        flex: 0 1 63.33%;
        margin: 0;
    }
    .mothersday-ranking-no1-img::before {
        border-width: 112px 112px 0px 0px;
    }
    .mothersday-ranking-no1-img::after {
        font-size: 31px;
        top: 24px;
        left: 30px;
    }
    .mothersday-ranking-no1-txtbox {
        flex: 0 1 33.33%;
        row-gap: 16px;
    }
    .mothersday-ranking-no1-name {
        font-size: 18px;
    }
    .mothersday-ranking-no1-price {
        font-size: 15px;
    }
    .mothersday-ranking-no1-price > span {
        font-size: 13px;
    }
    .mothersday-ranking .mothersday-slider-item-img::before {
        border-width: 112px 112px 0px 0px;
    }
    .mothersday-ranking .mothersday-slider-item-img::after {
        font-size: 31px;
        top: 12px;
        left: 26px;
    }
    .mothersday-search {
        padding: 120px 0;
    }
    .mothersday-search-subttl {
        font-size: 22px;
        margin: 80px 0 40px;
    }
    .mothersday-search-subttl::before,
    .mothersday-search-subttl::after {
        content: "・・・・・";
        font-size: 12px;
    }
    .mothersday-search-category {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
        grid-template-columns: repeat(3, 1fr);
    }
    .mothersday-search-category-item {
        flex: 0 0 250px;
    }
    .mothersday-search-category-item a {
        font-size: 18px;
    }
    .mothersday-search-category-item a > div {
        border-radius: 10px;
        padding: 15px 0 10px;
        row-gap: 5px;
        margin-bottom: 12px;
    }
    .mothersday-search-category-item a > div img {
        width: 100px;
    }
    .mothersday-search-category-item a > div::after {
        width: 18px;
        height: 10px;
    }
    .mothersday-search-price {
        grid-template-columns: repeat(3, 280px);
        gap: 22px 40px;
        justify-content: center;
    }
    .mothersday-search-price-item a {
        font-size: 22px;
        padding: 23px 0;
    }
    .mothersday-selection-section {
        margin-bottom: 100px;
    }
    .mothersday-selection-header {
        margin-bottom: 40px;
        display: flex;
        height: 400px;
    }
    .mothersday-selection-header-txtbox {
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .mothersday-selection-header-ttl {
        font-size: 50px;
        line-height: 120%;
        letter-spacing: 4px;
        padding: 0;
    }
    .mothersday-selection-lead {
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        line-height: 2;
        margin: 40px auto 60px;
    }
    .mothersday-category {
        margin-bottom: 100px;
    }
    .mothersday-category-header {
        margin-bottom: 40px;
        display: flex;
    }
    .mothersday-category-header-txtbox {
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }
    .mothersday-category-header-ttl {
    }
    .mothersday-category-header-ttl-jp {
        font-size: 16px;
    }
    .mothersday-category-header-ttl-egift {
        margin-bottom: 20px;
    }
    .mothersday-category-header-txt {
        font-size: 20px;
    }
    .mothersday-category-lead {
        margin: 40px auto 60px;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        line-height: 2;
    }
    .mothersday-recommend-section {
        margin-bottom: 60px;
    }
    .mothersday-recommend-header {
        padding: 0;
        margin-bottom: 60px;
        text-align: center;
    }
    .mothersday-recommend-ttl {
        margin-bottom: 6px;
        font-size: 24px;
        line-height: 1.8;
    }
    .mothersday-recommend-txt {
        font-size: 18px;
        letter-spacing: 0;
    }
    .mothersday-recommend-point {
        margin-top: 60px;
    }
    .mothersday-recommend-point-ttl {
        font-size: 18px;
    }
    .mothersday-recommend-point-ttl > span {
        padding: 2px 20px;
    }
    .mothersday-recommend-point-txt {
        font-size: 18px;
        letter-spacing: 0;
    }
    .mothersday-voice {
        padding: 140px 0;
    }
    .mothersday-voice-ttl {
        margin-bottom: 100px;
    }
    .mothersday-voice-ttl-jp {
        font-size: 22px;
    }
    .mothersday-voice-item {
        margin-bottom: 100px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .mothersday-voice-item-img {
        flex: 0 1 41.667%;
    }
    .mothersday-voice-item-txtbox {
        flex: 0 1 53.333%;
    }
    .mothersday-voice-item-ttl {
        font-size: 24px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .mothersday-voice-item-txt {
        font-size: 15px;
    }
    .mothersday-voice-item-more a {
        font-size: 14px;
        padding-bottom: 12px;
        column-gap: 15px;
    }
    .mothersday-voice-item-more a::after {
        width: 18px;
        height: 18px;
    }
}
/* hover
  ------------------------ */
@media (hover: hover) {
    .mothersday-slider-arrow:hover {
        opacity: 0.7;
    }
    .mothersday-btn:hover {
        opacity: 1;
        background: var(--w_c_wht);
        color: var(--w_c_red);
    }
    .mothersday-btn:hover::after {
        filter: var(--w_filter_red);
    }
    .mothersday-btn--egift:hover {
        color: #42c6c5;
    }
    .mothersday-btn--egift:hover::after {
        filter: invert(82%) sepia(10%) saturate(2562%) hue-rotate(123deg) brightness(87%) contrast(79%);
    }
}

@media (max-width: 375px) {
    .mothersday-mv-ttl {
        font-size: 32px;
    }
}
