@charset "utf-8";
main {
    background: var(--white);
}
.category-item {
    display: flex;
    justify-content: center;
    margin-bottom: 75px;
}
.category-item .category-btn {
  position: relative;
    width: 15%;
    font-size: 14px;
    padding: .7em 0px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    margin: 3px;
}
.category-item .category-btn::after {
    position: absolute;
    content: "";
    top: 42%;
    right: 10%;
    display: inline-block;
    width: 10px;
    height: 7px;
    background: var(--black);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.category-item .category-btn.active::after {
    background: var(--white);
}
a.category-btn.all-color {
    border: solid 2px #E32C13;
    text-align: center;
}
a.category-btn.all-color.active {
    background-color: #E32C13;
    color: white;
}
a.category-btn.cp-color {
    border: solid 2px #FFE11D;
    text-align: center;
}
a.category-btn.cp-color.active {
    background-color: #FFE11D;
    color: black;
}
a.category-btn.new-item-color {
    border: solid 2px #B8CD37;
    text-align: center;
}
a.category-btn.new-item-color.active {
    background-color: #B8CD37;
    color: white;
}
a.category-btn.shop-info-color {
    border: solid 2px #D279DA;
    text-align: center;
}
a.category-btn.shop-info-color.active {
    background-color: #D279DA;
    color: white;
}
a.category-btn.recruit-color {
    border: solid 2px #EA9827;
    text-align: center;
}
a.category-btn.recruit-color.active {
    background-color: #EA9827;
    color: white;
}
a.category-btn.other-color {
    border: solid 2px #A6ABB1;
    text-align: center;
}
a.category-btn.other-color.active {
    background-color: #A6ABB1;
    color: white;
}

@media (max-width: 768px) {
  .category-item {
    flex-wrap: wrap;
    justify-content: space-around;
}
.category-item .category-btn {
    width: 45%;
    margin-bottom: 8px;
}
}




.news-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
li.news-col {
    width: 100%;
}
.news-col a {
    display: block;
    padding: .9em 0px;
    border-bottom: 1px solid #D9D9D9;
    position: relative;
}
.news-col a::before {
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px;
    border: 2px solid var(--red);
}
.news-col a::after {
    content: '';
    width: 8px;
    height: 10px;
    position: absolute;
    right: 1.2%;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    background: var(--red);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.news-date span.newsicon {
    padding: 3px 15px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 1em;
    border-radius: 12px;
}
.news-date span.newsicon.campaign {
    background-color: #FFE11D;
}
.news-date span.newsicon.new_item {
    background-color: #B8CD37;
}
.news-date span.newsicon.shop-info {
    background-color: #D279DA;
    color: var(--white);
}
.news-date span.newsicon.recruit {
    background-color: #EA9827;
    color: var(--white);
}
.news-date span.newsicon.others {
    background-color: #A6ABB1;
    color: var(--white);
}
.news-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
}
.news-title {
    line-height: 1.5;
    margin-top: 10px;
}
.has-thumbnail .news-title {
    width: 70%;
}
.has-thumbnail .news-thumbnail {
    width: 25%;
    border-radius: 10px;
}

.pagenation-container {
    margin: 100px 0 200px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.page-numbers {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}
.pagination .page-numbers span.current {
    color: var(--red);
    font-weight: 500;
}
.pagination .prev, .pagination .next {
    width: 36px;
    height: 36px;
    position: relative;
    border-radius: 30px;
    border: 2px solid var(--red);
}
.pagination .prev::after, .pagination .next::after {
    content: '';
    width: 11px;
    height: 9px;
    position: absolute;
    top: 40%;
    display: inline-block;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.pagination .prev::after {
    transform: rotate(-30deg);
    left: 33%;
}
.pagination .next::after {
    transform: rotate(30deg);
    right: 33%;
}

@media (max-width: 1000px) {
.news-col a::before {
    width: 30px;
    height: 30px;
}
}
@media (max-width: 768px) {
  .news-content {
    display: block;
}
  .has-thumbnail .news-title {
    width: 100%;
}
.has-thumbnail .news-thumbnail {
    width: 60%;
    margin: 15px auto;
}
.news-col a::after {
    right: 1.6%;
}
}
@media (max-width: 480px) {
.news-col a::after {
    right: 2.8%;
}
}


/*****************お知らせ詳細ページ*********************/
.newsdetailWrap {
    margin-bottom: 250px;
}
#newsdetail .news-detail-title {
    border-bottom: 3px solid #E2DED1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

#newsdetail h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.63px;
    margin-bottom: 12px;
}
#newsdetail p.news-date {
    margin-bottom: 12px;
}
#newsdetail .wp-block-image {
    width: 100%;
    text-align: center;
}
#newsdetail .wp-block-paragraph {
    margin-bottom: 50px;
}
#newsdetail .wp-block-paragraph a {
    text-decoration: underline;
    color: var(--red);
}
#newsdetail .wp-block-image img {
    margin: 0 auto 10px;
}
#newsdetail .backlink-btn {
    margin: 0 auto;
}