@charset "UTF-8";

/* PC版 */
.area-contents {
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
}

/* 各セクションタイトル */
.common-title {
    text-align: center;
    font-size: 32px;
    line-height: 1.5;
    color: #3f3f3f;
    font-weight: 700;
    margin: 0 0 40px 0;
}

/* コンテンツサイズ */
.news,
.product-list,
.shop-list {
    padding: 70px 0 0 0;
}


/* バナーリンク */
.banner-link {
    margin: 30px 0 0 0;
    width: 100%;
    height: auto;
}

.banner-link .mod-grid01-sp,
.banner-link .mod-grid02-sp,
.banner-link .mod-grid03-sp {
    display: block;
}

.banner-link .mod-grid02-sp ._item,
.banner-link .mod-grid01-sp ._item,
.banner-link .mod-grid03-sp ._item {
    width: 100%;
}

.banner-link .mod-grid01-sp ._item,
.banner-link .mod-grid02-sp ._item {
    margin-bottom: 30px;
}

.banner-link .mod-grid01-sp ._item img,
.banner-link .mod-grid02-sp ._item img,
.banner-link .mod-grid03-sp ._item img {
    width: 100%;
    height: auto;
    display: block;
}


/* お知らせ */
.news {
    width: 1056px;
    margin: 0 auto;
}

.news_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news_list_item {
    padding: 20px 0;
    border-bottom: 1px solid #dfdfdf;
    width: 1056px;
    height: auto;
}

.news_list_item:first-child {
    border-top: 1px solid #dfdfdf;
}

.news_list_item a.news_link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
    text-decoration: none;
}

.news_header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news_list_item time {
    font-weight: 600;
    color: #919191;
    font-size: 16px;
    white-space: nowrap;
}

.news_item {
    border-radius: 14px;
    min-width: 124px;
    height: 28px;
    background: #FFA255;
    color: #fff;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    white-space: nowrap;
    font-weight: 500;
}

.news_text {
    flex: 1;
    font-size: 16px;
    color: #333;
}

/* 商品一覧 */
.category-box {
    width: 1056px;
    display: grid;
    grid-template-columns: repeat(4, 245px);
    grid-template-rows: auto;
    /*grid-template-rows: repeat(3, 198px);*/
    gap: 25px;
    row-gap: 40px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
}

.category-item img {
    max-height: 150px;
    object-fit: contain;
}

.category-item p {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3f3f3f;
    padding: 10px 10px;
    margin: 0 10px;
    box-sizing: border-box;
    position: relative;
    border-top: #dfdfdf 1px solid;
}

.category-item p::after {
    content: '';
    display: block;
    background-image: url(../images/16px_chevron_orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    margin-left: auto;
}

/* 公式通販サイト */
.shop-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1056px;
    margin: 0 auto;
}

.shop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 70px 10px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 124px;
    box-sizing: border-box;
}

.shop-item img {
    max-width: 100%;
    height: auto;
}

.shop-item .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background-color: #ff7200;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ホバー */
.shop-item,
.category-item,
.news_list_item {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.shop-item:hover,
.category-item:hover,
.news_list_item:hover {
    opacity: 0.7;
}

/* SP版 */
@media screen and (max-width: 769px) {

    /* バナーリンク */
    .banner-link .mod-grid01-sp ._item,
    .banner-link .mod-grid02-sp ._item
    .banner-link .mod-grid03-sp ._item{
        width: 100%;
    }

    .banner-link .mod-grid01-sp ._item,
    .banner-link .mod-grid02-sp ._item {
        margin-bottom: 20px;
    }

    .banner-link .mod-grid01-sp ._item img,
    .banner-link .mod-grid02-sp ._item img,
    .banner-link .mod-grid03-sp ._item img  {
        width: 100%;
    }

    /* 各セクションタイトル */
    .common-title {
        font-size: 24px;
        line-height: 1.5;
        margin: 0 0 30px 0;
    }

    .news,
    .product-list,
    .shop-list {
        padding: 45px 15px 0 15px;
    }

    /* お知らせ */
    .news {
        width: 100%;
    }

    .news_list_item {
        width: 100%;
        padding: 16px 0;
    }

    .news_list_item a.news_link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-left: 0;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .news_header {
        flex-direction: row;
        width: 100%;
    }

    .news_text {
        display: block;
        width: 100%;
        flex: unset;
        margin-top: 4px;
        word-break: break-word;
        font-size: 14px;
    }

    /* 商品一覧 */
    .category-box {
        width: 345px;
        grid-template-columns: repeat(2, 164px);
        grid-template-rows: repeat(6, 132px);
        gap: 18px;
        row-gap: 18px;
    }

    .category-item {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    }

    .category-item img {
        max-height: 100px;
        box-sizing: border-box;
    }

    .category-item p {
        font-size: 14px;
        font-weight: bold;
        padding: 5px 0;
        margin: 0 10px;
    }

    /* 公式通販サイト */
    .shop-box {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
        max-width: 345px;
    }

    .shop-item {
        padding: 10px 70px 10px 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
        flex-direction: column;
        height: 83px;
    }

    .shop-item img {
        max-width: 80%;
        height: auto;
    }

    .shop-item .icon {
        width: 33px;
    }

    .shop-item .icon img {
        width: 16px;
        height: 16px;
    }
}