@charset "UTF-8";

/*-----------------------------------------------
  新着情報
------------------------------------------------*/
:root {
    --layout-gap: 40px;
}

.main-news .page-title-inner {
    background-image: url('../../images/news/page-title-bg.jpg');
}
.main.bg-rhombus.main-news::before {
    top: 20%;
}
/*.main.bg-rhombus.main-news::after {
    bottom: 14%;
}*/
.news-contents-inner {
    margin: 60px auto 0;
    width: calc(100% - 40px);
}
.news-cat-list {
    display: inline-block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--primary-color);
}
.cat-item a {
    display: block;
    font-weight: 700;
    width: 25%;
    text-align: center;
    padding: 0.5em;
    text-transform: uppercase;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-bottom: none;
    font-size: 1.2rem;
}
.children {
    display: flex;
    gap: 0 2px;
    width: 75%;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 2px;
}
.children .cat-item {
    width: calc(100% / 3);
}
.children .cat-item a {
    width: 100%;
}
.current-cat a {
    background-color: var(--primary-color);
    color: #fff;
}
.current-cat ul .cat-item a {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-bottom: none;
}
.news-list {
    margin: 50px 0;
}
.news-item {
    padding: 1em 0;
    border-bottom: 1px solid #E6E6E6;
}
.news-item:last-child {
    border-bottom: none;
}
.news-date {
    font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
    font-size: 1.2rem;
    color: #8F9CA3;
}
.news-cate {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-left: 2em;
    text-transform: uppercase;
}
.news-item-title a {
    display: block;
    position: relative;
    padding-right: calc(20px + 1em);
}
.news-item-title a::before, 
.news-item-title a::after {
    content: '';
    position: absolute;
}
.news-item-title a::before {
    width: 20px;
    height: 20px;
    background-color: #F7F5F3;
    border-radius: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.news-item-title a::after {
    width: 8px;
    height: 8px;
    border-top: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    top: 50%;
    right: 10px;
    transform: rotate(45deg) translateY(-50%);
}

@media print, screen and (min-width: 768px) {
    .news-contents-inner {
        max-width: var(--layout-inner-width);
        margin: 100px auto 0;
    }
    .cat-item a {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 901px) {
    .news-date, 
    .news-cate {
        font-size: 1.4rem;
    }
}

@media print, screen and (min-width: 1201px) {
    .news-contents-inner {
        margin: 150px auto 0;
    }
    .cat-item a {
        font-size: 1.6rem;
    }
}
