@charset "UTF-8";

/* 共通スタイル */
.pc{display: block}
.sp{display: none}
#contentArea {
    color: #000;
}

#contentArea a, #contentArea a img {
    border: none;
    outline: 0;
}

#contentArea img {
    width: 100%;
}

#contentArea #pageItem {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

#contentArea #pageItem .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 中央寄せに変更 */
    align-items: center;
    /* max-width: 1000px; */
    width: 78%;
    margin: 0 auto;
    padding: 0;
}

#contentArea #pageItem .item {
    position: relative;
    margin: 0 9px 18px 0;
    padding: 5px;
    width: calc(33.333% - 18px); /* PCで3列表示 */
    overflow: hidden;
}

#contentArea #pageItem .item:hover {
    background-color: #fff;
    opacity: 0.6;
}

#contentArea #pageItem .item p {
    margin: 0 auto;
    padding: 10px 0;
    text-align: left;
    font-size: 1.3rem;
    color: #999999;
    height: auto;
}

#contentArea #pageItem .item a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#contentArea #pageItem .shoplineup_title {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: .15em;
    margin: 0 auto;
    padding: 50px 10px;
}

/* スマホ表示用のスタイル (768px以下) */
@media (max-width:768px) {
    .pc{display: none}
    .sp{display: block}
    #contentArea #pageItem {
        padding: 10px 5px 20px;
    }
    #contentArea #pageItem .items {
        justify-content: flex-start;
        width: 100%;
    }
    #contentArea #pageItem .item {
        margin: 0 0 18px 0;
        width: 50%;
        /* width: calc(50% - 9px); */
    }
    #contentArea #pageItem .items .item:last-child:nth-child(odd) {
        margin-right: 0;
    }
    #contentArea #pageItem .item p {
        font-size: 1.4em;
        height: 75px;
    }

    #contentArea #pageItem .shoplineup_title {
        font-size: 2.6em;
        padding: 0 10px 15px;
    }
}

/* より小さい画面サイズ用のメディアクエリ (550px以下、450px以下) */
@media (max-width:550px) {
    /* 必要に応じてスタイルを追加 */
}

@media (max-width:450px) {
    /* 必要に応じてスタイルを追加 */
}
