@charset "UTF-8";
.sp_only{
    display: block;
}
.pc_only{
    display: none;
}
.mainvisual-area-pic{
    text-align: center;
}

#ginza-suzuya h1 img{
    width: 60%;
    height: auto;
    margin: 30px 10px;
}

#ginza-suzuya h2{
    font-family:Noto serif JP;
}

.mainvisual-area-pic p img{
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .sp_only{
    display: none;
}
    .pc_only{
    display: block;
}}

/*

MVタイトル中央置き・黒オーバーレイの時は以下を使う

.sp_only{
    display: block;
}
.mainvisual-area-pic{
    text-align: center;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.mainvisual-area-pic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

#ginza-suzuya h1{
    position:absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#ginza-suzuya h1 img{
    width: 90%;
    height: auto;
    margin: 30px 10px 50px;
}

#ginza-suzuya h2{
    font-family:Noto serif JP;
}

.mainvisual-area-pic p img{
    width: auto;
}

*/

/*====================

商品部分

====================*/
.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 .product-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 40px;
        column-gap: 20px;
    }

    .product-slider .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;
    }
}

/*====================

アイコン群

====================*/

.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;
}

.web-limited {
    background-color: #4B3C8A;
}

.limited-quantity {
    background-color: #399A4A;
}

.room-temperature {
    background-color: #8A3C3C;
}

.frozen {
    background-color: #3743ED;
}

.refrigerate {
    background-color: #3798ED;
}

.subdivision {
    background-color: #8A773C;
}



/*====================

ランキング

====================*/
.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
}

/*====================

ボタン

====================*/
.btn-box {
    background-color: #333;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    margin: 20px auto 0;
    border: 2px solid #333;
}

.btn-box .btn {
    font-size: 1.8rem;
    color: #fff;
    width: 100%;
    padding: 10px 20px;
    display: block;
}

.btn-box .btn span {
    display: block;
    font-size: 1.5rem;
}

.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 #333;
    background-color: #fff;
    transition: 0.5s;
}

.btn-box:hover::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url('/images/icon-arrow-right-rd.svg');
    background-size: 100%;
    width: 7px;
    height: 12px;
    top: 50%;
    right: 3%;
    margin: auto;
    transform: translate(-50%, -50%);
}

.btn-box:hover .btn {
    color: #333;
}

/* mainvisual-area */

.mainvisual-area{
    text-align:center;
    margin: 0 auto 100px;
}

.mainvisual-title span{
    font-size:16px;
    display:block;
}
.mainvisual-title{
    font-size: 30px;
    margin: 30px 0 30px;
}

.mainvisual-lead{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
#ginza-suzuya h1 img{
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 30px 0 50px;
}
    .sp_only{
    display: none;
}
}

/* contents-area */

.contents-area{
    width:100%;
    margin: 0 auto 100px;
    padding: 0 10px;
}

.content{
    display:flex;
    justify-content: center;
    margin: 70px auto;
    column-gap: 20px;
    flex-direction: column;
    align-items: center;
}

.content.reverse{
    display:flex;
    flex-direction: column;
}

.content-img {
    width: 100%;
}

.content .content-img img{
    height: auto;
    width: 100%;
}

.content .content-text{
    width:100%;
}

.content .content-title{
    text-align:center;
    font-family: Noto serif JP;
    font-size: 28px;
    margin: 15px auto;
    text-align: left;
}

.content .content-discription{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {   
.contents-area{
    width:1000px;
    margin: 0 auto 100px;
}
    
.content-img {
    width: auto;
}
.content{
    display:flex;
    justify-content: center;
    margin: 50px auto;
    column-gap: 20px;
    flex-direction: row;
}
    
.content .content-text{
    width:50%;
}
.content.reverse{
    display:flex;
    flex-direction: row-reverse;
}

.content .content-img img{
    height: auto;
    width: 260px;
}
    
.content .content-title{
    margin: 0 auto 15px;
}
}
/*shop-area*/

.shop-area{
    width: 100%;
    margin: 0 auto 100px;
    padding: 0 10px;
}

.shop-area h2{
    text-align:center;
    padding: 30px;
    font-size: 25px;
    background: #f5f5f5;
}

.shop-area h2 span{
    display:block;
    font-size:15px;
    margin:10px 0 0;
}

.shop-area-content {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-direction: column;
    align-items: center;
}

p.shop-area-name {
    font-weight: bold;
    font-size: 18px;
}

.shop-area-text {
    line-height: 2;
}
.shop-area-about{
    margin:0 auto 20px
}

.shop-area-img {
    width: 100%;
}

@media (min-width: 768px){   
.shop-area{
    width:1000px;
    margin:0 auto;
}
    
.shop-area-content {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-direction: row;
    align-items: flex-start;
}

.shop-area-img {
    width: 300px;
}
}
/*news-area*/
section.news-area {
    width: 100%;
    margin: 0;
    padding: 0 10px;
}

h2.news-area-title {
    background: #333;
    color: #FFF;
    padding: 15px;
    font-size: 20px;
}

p.news-text {
    line-height: 2;
    margin: 30px auto;
}
@media (min-width: 768px){
section.news-area {
    width: 1000px;
    margin: 0 auto;
}
}

.salad{
    margin: auto;
    padding: 30px 10px;
    text-align: center;
    background: #f5f5f5;
}

.salad p{
    display: inline-block;
    line-height: 2;
}

/*link-area*/
ul.link-list {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    column-gap: 5%;
}

li.link-item {
    width: 31%;
    font-size: 10px;
    text-align: center;
}

li.link-item a:hover{
    opacity:0.5;
    transition:0.5s;
}

.link-item:nth-child(1) img{
    width:130px;
}

.link-item img {
    display: block;
    height: auto;
    width: 35px;
    margin: 10px auto 0;
}

section.link-area {
        width: 100%;
    margin: 0 auto 100px;
    padding: 0 10px;
}

@media (min-width: 768px){
    
section.link-area {
    width: 1000px;
    margin: 0 auto;
}
.link-item img {
    display: block;
    height: 40px;
    width:auto;
    margin: 20px auto 0;
}
    ul.link-list {
    column-gap: 0%;
}
    li.link-item {
    width: 25%;
    font-size: 13px;
}
}

/* 氷菓ものがたり */

#ginza-suzuya.hyokamonogatari h1 img{
    max-width: none;
    margin: 0;
    width:100%;
}

#ginza-suzuya.hyokamonogatari .content .content-title{
    text-align:center;
}

@media (min-width: 768px) {
#ginza-suzuya.hyokamonogatari h1 img{
    max-width: none;
    margin: 0;
}
    #ginza-suzuya.hyokamonogatari .content {
        display: flex;
        flex-direction:column;
    }
    #ginza-suzuya.hyokamonogatari .content .content-img img {
        width: 100%;
    }
}