@charset "UTF-8";

/* ------------------------------
	News
------------------------------ */

/* .sec_news_list */

.sec_news .wrap_news .news-list {
    list-style: none;
}
.sec_news .wrap_news .news-list .news-item {
    padding: 16px;
    border-bottom: 1px solid var(--color-black);
}
.sec_news .wrap_news .news-list .news-link {
    display: flex;
    flex-direction: column-reverse;
    text-decoration: none;
    color: var(--color-black);
}
.sec_news .wrap_news .news-list .news-content p{
    margin-bottom: 0px;
}
.sec_news .wrap_news .news-list .news-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: border-radius 0.3s ease;
}
.sec_news .wrap_news .news-list .news-link:hover .news-thumbnail {
    border-radius: 50px;
    filter: saturate(200%);
    opacity: 0.8;
}
.sec_news .wrap_news .news-list .news-date {
    display: block;
    margin-bottom: 8px;
}
.sec_news .wrap_news .news-list .news-text {
    font-weight: 600;
    display: block;
}
.sec_news .news-more {
    margin-top: 1em;
    text-align: right;
}
.sec_news .news-more a {
    display: inline-flex;
    align-items: center;
    padding: 1em 1em 1em 3em;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    background-image: url("/common/images/icon_arrow-r3.svg");
    background-repeat: no-repeat;
    background-position: left 1em center;
    background-size: 18px auto;
}
.sec_news a,
.sec_news a:visited{
    color: var(--color-black)!important;
}
.sec_news a:hover{
    color: #00ADA2!important;
    border-bottom: none!important;
}

@media (min-width: 768px) {
    .sec_news .wrap_news .news-list .news-link {
        flex-direction: row;
        gap: 24px;
        padding: 24px;
    }
    .sec_news .wrap_news .news-list .news-thumbnail {
        width: 280px;
        margin-bottom: 0;
    }
    .sec_news .wrap_news .news-list .news-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* タブレット以上のスタイル */
@media (min-width: 768px) {
    .news-item {
        flex-direction: row;
        gap: 24px;
        padding: 24px;
    }
    .news-thumbnail {
        width: 280px;
        margin-bottom: 0;
    }
    .news-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* .sec_news_detail */

.sec_news_detail .entry .entry_head {
    border-bottom: 4px solid #ddd;
    margin-bottom: 3em;
    position: relative;
}

.sec_news_detail .entry .entry_head:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: 4px solid var(--color-primary2)!important;
    bottom: -4px;
    width: 2em;
}
.sec_news_detail .entry .entry_head .date {
    margin: 0;
    padding: 0 10px;
    color: #7D7D7D;
}
.sec_news_detail .entry .entry_head .entry_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5em;
    padding: 0 10px;
    color: var(--color-primary)!important;;
}
.sec_news_detail .entry .entry_body {
    margin-bottom: 4em;
}
@media screen and (min-width:768px) {
    .sec_news_detail .entry .entry_head:after {
        width: 4em;
    }
    .sec_news_detail .entry .entry_head .date {
        padding: 0 20px;
    }
    .sec_news_detail .entry .entry_head .entry_title {
        font-size: 30px;
        padding: 0 20px;
    }
}