/*メインコンテンツ*/
#main {
    max-width: 1150px;
    width: 100%;
    margin: auto;
}
.top-content {
    width: 80%;
    margin: auto;
}

/*エリアそれぞれ共通*/
.main-visual, .notice-area, .sale-area, .recommended {
    margin-bottom: 4rem;
}
.si-area1, .rec-area1 {
    margin-bottom: 2rem;
}
.content-title {
    align-items: center;
    margin-bottom: 1rem;
}
.content-title h2 {
    font-size: 19px;
    margin-left: 1rem;
    color: #103750;
    font-weight: bold;
}
.title-img {
    width: 45px;
}
.si-area, .rec-area {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 1rem;
    justify-content: center;
}

/*本日のお知らせエリア*/
.notice-content {
    border: 1px solid black;
    border-radius: 40px;
    padding: 20px 30px;
}
.notice-btn {
    width: 10px;
    height: 10px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    -webkit-transform: rotate(45deg);
    transform: rotate(135deg);
    transition: all 0.3s;
    margin-left: auto;
}
.notice-day.rotate .notice-btn {
    transform: rotate(-45deg);
}
.day {
    margin-right: 2rem;
    font-size: 14px;
}
.notice-day {
    display: flex;
    cursor: pointer;
    padding: 1rem 0.5rem;
}
.notice-title {
    font-weight: bold;
    color: #7D7D7D;
    font-size: 14px;
}
.notice-acMenu {
    display: none;
    margin: 1rem 0;
}
.notice-acMenu p {
    font-size: 14px;
    color: #525263;
}
.notice-bottom {
    margin-bottom: 0.7rem;
}
.notice-item {
    border-bottom: 1px solid #ccc;
}

/*本日の特売エリア*/
.sale-item {
    padding: 1rem;
    border: 1px solid black;
}
.product-title {
    font-weight: bold;
    color: #525263;
    margin: 1rem 0;
}
.sale-price {
    color: red;
    text-align: right;
    margin-bottom: 1rem;
    font-weight: bold;
}
.red {
    color: red;
    font-weight: bold;
}
.tax {
    color: #808080;
    font-size: 12px;
}
.product-p {
    font-size: 12px;
    margin-bottom: 1rem;
}
.next {
    font-size: 12px;
    color: #0071b3;
    font-weight: bold;
    text-align: right;
    margin-bottom: -10px;
}

/*ボタン共通*/
.content-btn {
    text-align: center;
    margin: 3rem 0;
}
.content-btn a {
    background: #f2f8fb;
    border-radius: 13px;
    color: #337ab7;
    padding: 1rem 2rem;
    font-weight: bold;
}
.content-btn a:hover {
    text-decoration: underline;
    color: #23527c;
}

@media screen and (max-width:460px) {
    /*スマホメインコンテンツ*/
    .top-content {
        width: 90%;
    }
    .main-content {
        margin-top: 4rem;
    }
    .notice-content {
        border: none;
        border-radius: 0;
        padding: 0 0;
    }
    .notice-day {
        display: block;
    }
    .day {
        margin-right: 0;
    }
    .notice-title {
        padding-top: 0.5rem;
    }
    .notice-btn {
        position: relative;
        top: -15px;
    }
    .notice-acMenu {
        margin-top: 1rem;
    }

    .si-area, .rec-area {/*本日の特売＆本日のおすすめ*/
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 0;
    }
    .sale-item {
        margin: 0.5rem;
        padding: 0;
        border: none;
    }
    .m-b {
        margin-bottom: 0;
    }
}