.c-heading__h2 {
    font-family: "Yu Gothic", "游ゴシック体", "Segoe UI", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    font-size: 3.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.c-heading__h2-sub {
    font-family: "Roboto", sans-serif;
    display: block;
    font-size: 0.34em;
    font-weight: 700;
    color: var(--main-blue);
    margin-top: 20px;
    letter-spacing: 0;
}

@media only screen and (max-width: 768px) {
    .c-heading__h2 {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }

    .c-heading__h2-sub {
        margin-top: 0.8em;
    }
}

.c-heading__h3 {
    font-size: 2.125rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    display: inline-block;
    margin-bottom: 19px;
}

.c-heading__h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--main-blue);
}

@media only screen and (max-width: 768px) {
    .c-heading__h3 {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .c-heading__h3::after {
        bottom: -10px;
        height: 3px;
    }
}

.c-heading__h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-heading__h4::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 3.4px;
    background-color: var(--main-blue);
}

@media only screen and (max-width: 768px) {
    .c-heading__h4 {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .c-heading__h4::before {
        width: 12px;
        height: 12px;
    }
}

.section-news .bg {
    padding: 100px 0 180px;
}

@media only screen and (max-width: 768px) {
    .section-news .bg {
        padding: min(8vw, 60px) 0;
    }
}

.section-news .l-wrapper {
    max-width: 1080px;
    width: 100%;
    padding: 0 20px;
    margin-inline: auto;
}

@media only screen and (max-width: 768px) {
    .section-news .l-wrapper {
        padding: 0 min(5.33, 40px);
    }
}

.section-news__public-relations-list {
    padding-top: 3em;
}

@media only screen and (max-width: 768px) {
    .section-news__public-relations-list {
        padding-top: 2.5em;
    }
}

.section-news__public-relations-list li+li {
    padding-top: 1.25em;
}

@media only screen and (max-width: 768px) {
    .section-news__public-relations-list li+li {
        padding-top: 1em;
    }
}

.section-news__public-relations-link {
    display: block;
    font-size: 1rem;
    border-bottom: 1px solid #ecedf2;
    position: relative;
    padding-left: 1em;
    padding-bottom: 1em;
}

@media only screen and (max-width: 768px) {
    .section-news__public-relations-link {
        font-size: 0.9375rem;
    }
}

.section-news__public-relations-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.5rem);
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--main-blue);
}

.section-news__public-relations-link::after {
    content: "";
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    background-image: url('../img/common/icon_pdf.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: -1px;
}

.news-list__item {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    width: 100%;
    gap: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ECEDF2;

}

@media only screen and (max-width: 768px) {
    .news-list__item {
        gap: 0 10px;
        padding: 10px 0;
    }
}

.news__category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
    height: 1.75rem;
    border-radius: 5px;
    font-size: 0.8125rem;
}

@media only screen and (max-width: 768px) {
    .news__category-link {
        min-width: 5rem;
    }
}

.news__desc {
    min-width: 0;
    display: flex;
    padding: 0.5em 20px 0 0;
    gap: 0 20px;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .news__desc {
        flex-direction: column;
        padding: 0.5em 10px 0 0;
        gap: 10px;
    }
}

.news-list__date {
    font-family: "Roboto", sans-serif;
    font-size: 0.8125rem;
    line-height: 1;
    font-weight: 300;
}

.news-list__link {
    flex: 1;
    font-size: 1rem;
    line-height: 165%;
    letter-spacing: 0.03em;
    margin-top: -0.5em;
    padding: 0 30px 0 20px;
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    background-image: radial-gradient(circle, #cacaca 1px, transparent 1px);
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 2px 8px;
    position: relative;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .news-list__link {
        margin-top: 0;
        font-size: 0.9375rem;
        padding: 0 20px 0 0;
        background-image: none;
    }
}

.news-list__link.link_pdf::after {
    content: "";
    position: absolute;
    margin-left: 0.5em;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-image: url('../img/common/icon_pdf.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.news-list__link.link_link::after {
    content: "";
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-image: url('../img/common/icon_link.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.news-list__link.link_read::after {
    content: "";
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-image: url('../img/common/icon_read.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

@media only screen and (max-width: 768px) {
    .news-list__link.link_pdf::after {
        right: 0;
    }

    .news-list__link.link_link::after {
        right: 0;
    }

    .news-list__link.link_read::after {
        right: 0;
    }
}

.ct-info {
    background-color: #fdd854;
}

.ct-recruit {
    background-color: #f7afba;
}

.ct-event {
    background-color: #89d5ee;
}

#news-category-filter {
    display: flex;
    justify-content: flex-end;
}

#news-category-dropdown {
    cursor: pointer;
    width: 15rem;
    height: 2.875rem;
    border-radius: 6px;
    border: 1px solid #CACACA;
    padding: 0 15px;
    font-size: 0.9375rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('../img/news/select-tri.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 0.6em;
    margin-bottom: 30px;
}

#news-category-dropdown:focus {
    outline: none;
    box-shadow: none;
}

.mv {
    aspect-ratio: 36 / 7;
    max-height: 280px;
     width: 100%;
}

@media only screen and (max-width: 768px) {
    .mv {
        aspect-ratio: auto;
        height: 25vh;
    }
}

.mv .l-wrapper {
    max-width: 1200px;
    width: 100%;
    height: auto;
}

.mv .bg {
    background-image: url('../img/news/mv_bg.svg');
    background-repeat: no-repeat;
    background-size: min(27vw, 390px);
    background-position: left 5vw bottom -45px;
    max-width: 1240px;
    width: strech;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-inline: auto;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .mv .bg {
        background-position: left 5vw bottom 0;
        padding: min(5.33vw, 40px);
        height: 100%;
    }
}

.mv .c-heading__h2 {
    padding-top: 4.69vw;
}

.breadcrumb {
    display: flex;
    justify-content: flex-end;
    font-size: 0.75rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

@media only screen and (max-width: 1440px) {
    .breadcrumb {
        right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .breadcrumb {
        right: min(5.33vw, 40px);
    }
}

.breadcrumb__list {
    display: flex;
    align-items: center;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item+.breadcrumb__item::before {
    content: "";
    display: inline-block;
    width: 0.75rem;
    height: 2px;
    margin: 0 10px;
    background-color: var(--main-blue);
}

.section-news__pagination-wrapper {
    padding: 70px 20px 0;
}

.section-news__pagination {
    display: flex;
    gap: 0;
    justify-content: center;
}

.section-news__pagination img {
    display: block;
}

.pagination-first {
    padding-right: 10px;
}

.pagination-last {
    padding-left: 10px;
}

.pagination-prev {
    margin-right: -1px;
}