.page-wrapper {
    /* base:common.css */
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0 0 45px;
}

.section-catalog {
    background-color: #fffceb;
    margin-bottom: 0;   /* 打消し */
    flex-direction: column;
}

.section-first {
    background-color: #f6f4f2;
    margin-bottom: 0;   /* 打消し */
    flex-direction: column;
}

.heading {
    font-weight: var(--bold-font-weight);
    margin: 30px auto;
    padding: 0px;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


/*---------------------------------------
ボタン
---------------------------------------*/
/* ボタン共通 */
.base-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    width: 560px;
    height: 115px;
    font-size:24px;
    line-height: 1.4;
    padding: 0 40px;
    box-sizing: border-box;
}

/* シルエットアイコン画像 */
.icon {
    position:absolute;
    left: 40px;
    width: 47px;
    height: 47px;
}

/* 矢印アイコン */

.arrow-icon {
    position: absolute;
    right: 30px;
    font-size: 20px;
}

.page-wrapper .button-order {
    background-color: #B40B08;
    color: white;
}

.page-wrapper .button-order-guide {
    background-color: #E09C09;
    color: white;
}

.page-wrapper .button-entry {
    background-color: white;
    border: 3px solid #E0030A;
    color: #E0030A;
}

.page-wrapper .button-user-guide {
    background-color: white;
    border: 3px solid #E0030A;
    color: #E0030A;
}

.button-order:hover,
.button-order-guide:hover,
.button-entry:hover,
.button-user-guide:hover {
    opacity: 0.5;
}

/*---------------------------------------
お知らせ欄
---------------------------------------*/
.catalog-news {
    display: flex;
    flex-direction: row; 
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 20px 0 20px 20px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.news-head {
    display: flex;
}

.news-body {
    display: flex;
}

.news-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-body li {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    text-align: left;
}

.news-body .news-time {
    margin-right: 15px;
    white-space: nowrap;
}

.news-body .news-title {
    font-weight: var(--bold-font-weight);
}

/*---------------------------------------
キャンペーンバナー表示
---------------------------------------*/
.banner-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 40px 0 60px;
    text-align: left;
}

.campaign-banner {
    width: 265px;
    margin: 0;
}

.banner-img {
    margin: 0 0 10px 0;
}

/*---------------------------------------
オンラインショップ案内
---------------------------------------*/
.online-shop-info {
    border: 1px solid #b2b2b2;
    margin: 0 auto;
    padding: 16px;
}

.item-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
    gap: 30px;
    text-align: left;
}

.item-link {
    width: 240px;
}

.item-image {
    width: 240px;
    height: 240px;
    object-fit: cover;
    display: block;
}

.item-name {
    color: #404040;
}

.announce {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

/* 打消し */
.announce p {
    margin-bottom: 0;
    left:100%;
    
}

.online-shop-info .note {
    font-size: var(--base-font-size);    /* 打消し */
}

