@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Josefin+Slab:600");
@import url("https://fonts.googleapis.com/css?family=Bad+Script");


/* ==================================================

   共通 

================================================== */
html {
    scroll-behavior: smooth;
}

.pc-only {
    display: none;
}

.sp-only {
    display: block;
}


@media screen and (min-width: 768px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }
}

/* ==================================================

  タイトル 

================================================== */


.area-title_box {
    margin-bottom: 20px;
    text-align: center;
}

.area-title {
    font-size: 2.4rem;
    position: relative;
    margin-bottom: 10px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}


.area-title span {
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
}

.area-title .area-title-page_name {
    font-size: 2.4rem;
    margin-bottom: -5px;
}

/* .area-title:before {
    position: absolute;
    top: -30px;
    left: 50%;
    width: 70px;
    height: 23px;
    background-size: cover;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
} */


@media only screen and (min-width: 768px) {
    .area-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .area-title_box {
        margin-bottom: 40px;
    }
}


/* ==================================================

  リード 

================================================== */

.area-lead {
    display: block;
    line-height: 2;
}


@media only screen and (min-width: 768px) {
    .area-lead {
        font-size: 1.8rem;
    }
}

/* ==================================================

  ボタン 

================================================== */
.btn-box {
    background-color: #333333;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    margin: 20px auto 0;
    border: 2px solid #333333;
}

.btn-box .btn {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    display: block;
}

.btn-box .btn span {
    display: block;
    font-size: 1rem;
}

.btn-box::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url('/images/icon-arrow-right-wh.svg');
    background-size: 100%;
    width: 7px;
    height: 12px;
    top: 50%;
    right: 3%;
    margin: auto;
    transform: translate(-50%, -50%);
}

.btn-box:hover {
    border: 2px solid #333333;
    background-color: #fff;
    transition: 0.5s;
}

.btn-box:hover::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url('/images/icon-arrow-right-bk.svg');
    background-size: 100%;
    width: 7px;
    height: 12px;
    top: 50%;
    right: 3%;
    margin: auto;
    transform: translate(-50%, -50%);
}

.btn-box:hover .btn {
    color: #333333;
}

@media screen and (min-width: 768px) {
    .btn-box {
        margin: 60px auto 0;
    }


}



/*====================

商品部分

====================*/
.product-item {
    height: auto;
}

.product-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product {
    background-color: #fff;
    height: 100%;
}

.product-item.hayawari .product-pic::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(/chugen/2025/images/icon-hayawari.svg);
    background-size: 100%;
    width: 5rem;
    height: 5rem;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 100;
}

.product-item.hayawari .product-pic:hover {
    opacity: 1;
}

.product-pic-box {
    position: relative;
    margin-bottom: 5px;
}


.product-detail {
    padding: 10px;
}

.product-detail-name {
    font-weight: bold;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 3em;
}

.product-detail-price-box {
    display: flex;
    margin-bottom: 5px;
}

.product-detail-discount_rate {
    background-color: #ff0000;
    color: #fff;
    font-weight: bold;
    padding: 0 10px;
    width: fit-content;
    margin-right: 5px;
}

.product-detail-price {
    font-weight: bold;
}

.product-detail-price:before {
    content: "¥";
}

.product-detail-discount_rate::after {
    content: "OFF";
}

.product-detail-price.discount_price {
    color: #ff0000;
}

.product-detail-txt {
    font-size: 1.2rem;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

@media only screen and (min-width: 768px) {

    .product-slider .swiper-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 40px;
        column-gap: 20px;
    }

    .product-slider .swiper-wrapper .product-item {
        width: calc((100% - 20px * 4) / 5);
    }

    .product-slider-container .swiper-button-next,
    .product-slider-container .swiper-button-prev,
    .product-slider-container .swiper-pagination {
        display: none;
    }
}

/*---------------

スワイパー設定

------------------*/
.swiper-container.product-slider-container {
    position: relative;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none !important;
}

.swiper-button-next {
    background-image: url(/cmn/images/arrow.svg);
    right: -10px;
}

.swiper-button-prev {
    background-image: url(/cmn/images/arrow.svg);
    transform: scale(-1, 1);
    left: -10px;
}

.swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #333333;
}


/*====================

アイコン群

====================*/

.product-pic-icon-shipping {
    position: absolute;
    background-color: #333;
    padding: 0 10px;
    color: #fff;
    bottom: 5%;
    width: fit-content;
}

.product-detail-utility {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
}

.product-icon {
    padding: 0 10px;
    color: #fff;
    font-weight: bold;
    margin-right: 5px;
    width: fit-content;
}


/* ====================

    メインビジュアル 

 ==================== */

.mainvisual-area {
    padding: 0;
    font-weight: 500;
}

.mainvisual-area .mainvisual-area-pic {
    background: url(/mochumimai/images/mv-sp.jpg) no-repeat center center / cover;
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    text-align: left;
    position: relative;
    padding: 0;
}

.mainvisual-area .mainvisual-area-box {
    text-align: center;
    width: 67%;
    height: 65%;
    align-content: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    display: flex;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainvisual-area .mainvisual-area-box img {
    width: 35%;
    max-width: 120px;
}


.mainvisual-area-box-maintitle {
    font-size: 3.8rem;
    line-height: 1.4;
    font-style: normal;
}

.mainvisual-area .mainvisual-area-box .mainvisual-area-box-catch {
    font-size: 1.3rem;
    display: block;
}



@media screen and (min-width: 768px) {
    .mainvisual-area {
        width: 100%;
        margin: 0;
    }


    .mainvisual-area .mainvisual-area-box {
        width: 550px;
    }

    .mainvisual-area .mainvisual-area-box .mainvisual-area-box-catch {
        font-size: 2rem;
    }

    .mainvisual-area .mainvisual-area-pic {
        background: url(/mochumimai/images/mv-pc.jpg) no-repeat center center / cover;
        height: 400px;
        margin: auto;
        padding-top: 20px;
    }
}

.main-lead-area-inner {
    padding: 40px 3% 0;
}

/*====================

アンカー

====================*/
.anchor-nav {
    width: 100%;
    background-color: #333;
    position: sticky;
    top: 43px;
    z-index: 100;
}

.anchor-nav-list {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.anchor-nav-item {
    width: 100%;
    border-right: 1px solid #fff;
    text-align: center;
}



.anchor-nav-item:last-of-type {
    border-right: 0px;
}

.anchor-nav-item span {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.anchor-nav-item a {
    display: block;
    padding: 5px 0;
}

.anchor-nav-item a:hover {
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}


@media only screen and (min-width: 768px) {

    .anchor-nav-item:first-of-type {
        border-left: 1px solid #fff;
    }

    .anchor-nav-item:last-of-type {
        border-right: 1px solid #fff;
    }

    .anchor-nav {
        top: 0px;
    }

    .anchor-nav-item a {
        display: block;
        padding: 10px 0;
    }

    .anchor-nav-item span {
        font-size: 1.6rem;
    }
}

/*====================

メインリード

====================*/


.tips-point-wrap::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    margin: auto;
    width: 80px;
    height: 30px;
    background:
        linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left / 50.2% 100%,
        linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top right / 50.2% 100%;
}

.tips-point-wrap {
    margin-top: 30px;
    padding: 60px 10px;
    background: url(/mochumimai/images/bg-mainleadarea-sp.jpg) no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

.tips-point-list {
    display: flex;
    row-gap: 20px;
    flex-direction: column;
}

.tips-point-item {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.tips-point-item-title {
    margin-bottom: 10px;
    color: #6d76a1;
    font-size: 20px;
    font-size: 2.0rem;
}

@media screen and (min-width: 768px) {
    .tips-point-wrap {
        margin-top: 50px;
        padding: 70px 0;
        background: url(/mochumimai/images/bg-mainleadarea-pc.jpg) no-repeat 0 0;
        background-size: cover;
        position: relative;
    }

    .tips-point-list {
        flex-direction: row;
        margin: auto;
        width: 1000px;
        justify-content: space-between;
    }

    .tips-point-item {
        width: 30%;
    }

}


/*====================

メッセージカードエリア

====================*/
.greetingcard-area {
    margin-right: -10px;
    margin-left: -10px;
    padding: 50px 10px 70px;
    background-color: #ebe9ef;
}

.greetingcard-area-inner {
    padding: 0 3%;
}

.greetingcard-area-title-pic {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.greetingcard-area-title-pic span {
    position: absolute;
    inset: 0 5% auto auto;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    width: 4em;
    background-color: #9f90b9;
    border: 4px solid;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
}

.greetingcard-note {
    padding: 5px 10px;
    border: 3px solid #9f90b9;
    color: #9f90b9;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    width: fit-content;
    margin: auto;
}


.greetingcard-sample-block {
    margin: 30px auto;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 16px;
}

.greetingcard-sample-block-title {
    text-align: center;
    margin-bottom: 20px;
}

.greetingcard-sample-block-title span {
    display: inline-block;
    padding: 5px 30px;
    border: 1px solid #000;
    border-radius: 16px;
    font-size: 18px;
    line-height: 1.4;
}

.greetingcard-sample-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.greetingcard-sample-title {
    position: relative;
    margin-bottom: 5px;
}

.greetingcard-sample-title:before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.greetingcard-sample-title span {
    position: relative;
    display: inline-block;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .greetingcard-area-title-pic span {
        position: absolute;
        top: 30px;
        left: 55%;
        transform: translate(-50%, -50%);
        aspect-ratio: 1 / 1;
        display: grid;
        place-items: center;
        width: 4em;
        background-color: #9f90b9;
        border: 4px solid;
        border-radius: 50%;
        color: #fff;
        font-weight: bold;
        font-size: 2rem;
        line-height: 1;
    }

    .greetingcard-sample-block {
        width: 1000px;
        margin: 60px auto;
    }

    .greetingcard-sample-list {
        flex-direction: row;
        justify-content: space-between;
    }

    .greetingcard-sample-item {
        width: 30%;
    }


}



/*====================

お線香

====================*/

.incense-area {
    margin-inline: -10px;
    padding: 50px 10px 70px;
    background:
        url(/mochumimai/images/bg-incense-left-sp.png) left top / 34% auto no-repeat,
        url(/mochumimai/images/bg-incense-right-sp.png) right top / 34% auto no-repeat;
    background-color: #f7f7f7;
}

.incense-area-inner {
    padding: 0 3%;
}

.incense-area-title {
    color: #9f90b9;
    font-family: "Sawarabi Mincho", serif;
    font-size: 3.0rem !important;
    text-align: center;
    line-height: 1.4;
}

.incense-area-title span {
    display: inline-block;
    padding: 10px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: 3rem;
}


.incense-block-title {
    margin: 30px 0 20px;
    font-size: 28px;
    text-align: center;
    line-height: 1.4;
}

.incense-block-txt {
    margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
    .incense-area-inner {
        width: 1000px;
        margin: auto;
    }


    .incense-block-title {
        margin: 30px auto;
    }

    .incense-block-txt {
        text-align: center;
        font-size: 1.8rem;
    }

    .incense-block .product-list {
        justify-content: space-between;
    }


    .incense-block .product-slider .swiper-wrapper .product-item {
        width: 23%;
    }

}



/*====================

ランキング

====================*/
.ranking-area {
    padding: 50px 10px 70px;
    background-color: #ebe9ef;
}

.ranking-area-inner {
    padding: 0 3%
}


.ranking-area ul {
    counter-reset: item
}

.ranking-area ul li a::before {
    content: "No." counter(item) " ";
    counter-increment: item;
    font-weight: 700;
    font-size: 2rem;
}

.ranking-area ul li:first-child a:after,
.ranking-area ul li:nth-child(2) a:after,
.ranking-area ul li:nth-child(3) a:after {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30px;
    height: 30px;
    content: ""
}

.ranking-area ul li:first-child a:before,
.ranking-area ul li:nth-child(2) a:before,
.ranking-area ul li:nth-child(3) a:before {
    margin-left: 35px
}


.ranking-area ul li:first-child a:after {
    background-image: url(/images/icon-rank-01.svg)
}

.ranking-area ul li:first-child a:before {
    color: #9c8b45
}

.ranking-area ul li:nth-child(2) a:after {
    background-image: url(/images/icon-rank-02.svg)
}

.ranking-area ul li:nth-child(2) a:before {
    color: #8b8b8b
}

.ranking-area ul li:nth-child(3) a:after {
    background-image: url(/images/icon-rank-03.svg)
}

.ranking-area ul li:nth-child(3) a:before {
    color: #9c6b47
}

@media screen and (min-width: 768px) {
    .ranking-area-inner {
        padding: 0;
        width: 1000px;
        margin: auto;
    }

}


/*====================

おすすめ

====================*/
.recommend-area {
    padding: 50px 0 70px;
}

.recommend-area-inner {
    padding: 0 3%;
}

.recommend-block {
    padding: 45px 0;
    background-color: #ebe9ef;
}

.recommend-block-inner {
    padding: 0 3%;
}

.recommend-block-title {
    font-family: "Sawarabi Mincho", serif;
    text-align: center;
    margin-bottom: 30px;
}

.recommend-block-title span {
    display: inline-block;
    padding: 10px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1.4;
}

.recommend-block-lead {
    margin-bottom: 20px;
    text-align: center;
}

#wagashi {
    margin-bottom: 45px;
}

@media screen and (min-width: 768px) {

    .recommend-block-lead {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

}


/*====================

価格で選ぶ

====================*/
.price-area {
    padding: 50px 0 70px;
}

.price-area-inner {
    padding: 0 3%;
}


.price-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.price-box {
    width: 48%;
}

.price-box .btn-box {
    margin: 0 auto;
}

.price-box .btn-box a {
    font-size: 3vw;
}



@media screen and (min-width: 768px) {
    .price-area-inner {
        width: 1000px;
        margin: auto;
    }


    .price-box {
        width: 32%;
    }

    .price-box .btn-box a {
        font-size: inherit;
    }

}


/*====================

カテゴリで選ぶ

====================*/
.category-area {
    padding: 50px 0 70px;
}

.category-area-inner {
    padding: 0 3%;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.category-box {
    width: 48%;
    margin-right: 4%;
    background-color: #fff;
}

.category-box:nth-of-type(2n) {
    margin-right: 0;
}


.category-item-text_box {
    padding: 10px 8px;
}

.category-item-text_box-name {
    margin-bottom: 5px;
    text-align: center;
    font-size: 3.25vw;
    font-weight: bold;
}

.category-item-text_box-txt {
    font-size: 2.75vw;
}

@media screen and (min-width: 768px) {
    .category-area-inner {
        width: 1000px;
        margin: auto;
    }


    .category-box {
        width: calc(25% - 15px);
        margin-right: 20px;
    }

    .category-box:nth-of-type(2n) {
        margin-right: 20px;
    }

    .category-box:nth-of-type(4n) {
        margin-right: 0;
    }


    .category-item-text_box-name {
        font-size: 15px;
    }

    .category-item-text_box-txt {
        font-size: 12px;
    }

}



/*====================

のし・包装紙

====================*/
.noshi-area {
    padding: 50px 0 70px;
    background-color: #ebe9ef;
}

.noshi-area-inner {
    padding: 0 3%;
}



.noshi-block {
    margin-top: 30px;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 16px;
}

.noshi-block-title {
    text-align: center;
    margin-bottom: 20px;
}

.noshi-block-title span {
    display: inline-block;
    padding: 5px 30px;
    border: 1px solid #000;
    border-radius: 16px;
    font-size: 18px;
    line-height: 1.4;
}

.noshi-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.noshi-item {
    width: 48%;
}

.noshi-item-pic {
    border: 1px solid #999;
}

.noshi-item-name {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
}

.point-wrap {
    margin-top: 20px;
    background-color: #f7f7f7;
    padding: 10px;
}

.point-title {
    width: 70px;
    margin-bottom: 5px;
}

.noshi-item-txt {
    text-align: left;
}

.point-title span {
    display: block;
    padding: 2px 10px;
    font-family: "Josefin Slab", serif;
    background-color: #9f90b9;
    color: #fff;
    position: relative;
}

.point-supplement {
    margin-top: 20px;
}


@media screen and (min-width: 768px) {
    .noshi-block-title {
        margin-bottom: 40px;
    }

    .noshi-area-inner {
        width: 1000px;
        margin: auto;
    }

    .noshi-list {
        justify-content: space-around;
    }

    .noshi-item {
        width: 23%;
    }

}

/*====================

コラム・豆知識

====================*/

.tips-area {
    padding: 60px 10px;
    background: #ded8e7;
}

.tips-block {
    justify-self: center;
}

.tips-box {
    margin-bottom: 2rem;
    padding: 20px;
    color: #444;
    background-color: #fff;
}


.tips-box .tips-box-link a {
    font-weight: bold;
}

.tips-box-title {
    position: relative;
    font-weight: 700;
    font-size: 1.8rem;
}

.tips-box-txt {
    background: #f2f2f2;
    border-top: 2px solid #cce;
    padding: 15px 3%;
    margin-top: 5px;
    line-height: 1.7;
}

.tips-list {
    margin-bottom: 1.5rem;
}

.tips-box {
    font-weight: 700;
}

.tips-box-txt-link {
    border-bottom: 2px solid #333333;
    width: fit-content;
    line-height: 1.75;
    font-weight: 700;
    margin-top: 10px;
    font-weight: bold;
}

.tips-box-txt-link span {
    background: #f7f7f7;
    margin-right: 5px;
    font-weight: 700;
    padding: 10px;
}

.tips-sample-txt {
    width: 100%;
    background: #efecec;
    box-shadow: 0px 0px 0px 6px #efecec;
    border: dashed 2px white;
    padding: 15px;
    margin: 20px 0 40px;
}

.tips-sample-txt-title {
    font-weight: bold;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {

    .tips-area-inner {
        width: 800px;
        margin: auto;
    }

}