@charset "utf-8";

body#news #contents {
    background: var(--color-green01);
}

/* archive //////////////*/
.newsCategory {
    background: var(--color-text);
}

.newsCategory .newsCategoryInner {
    padding: 60px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.newsCategory h3:before {
    background: var(--color-bg);
}

.newsCategoryList {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 12.5% repeat(4, 1fr);
    gap: 12px;
}

.newsCategoryList .all {
    grid-row: 1 / 3;
    grid-column: 1;
    height: 150px;
}

.newsCategoryList button {
    background: var(--color-text);
    color: var(--color-bg);
    border: 2px solid var(--color-bg);
    font-size: 1.375rem;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-family: "Roboto Condensed", sans-serif;
    transition: all 0.3s ease;
}

.newsCategoryList li.on button {
    background: var(--color-lightpurple01);
}

.newsCategoryList li button span {
    font-size: 1.0625rem;
    font-family: "Noto Sans JP", sans-serif;
}

.newsCategoryList li button span:before {
    content: "/";
    font-size: 1.25rem;
    font-family: "Noto Sans JP", sans-serif;
    padding: 0 5px;
}

.newsControl {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 0;
    margin-bottom: 35px;
    align-items: center;
}

.newsYeartWrap {
    position: relative;
    display: inline-block;
    width: 220px;
}

.newsYeartWrap::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 0.75rem;
    pointer-events: none;
}

.newsYeartWrap #newsYearSelect {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 13px 40px 13px 16px;
    background: var(--color-bg);
    border: 2px solid var(--color-text);
    border-radius: 4px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.newsArchive {
    margin: 60px auto 0;
    max-width: 1280px;
    padding: 0 40px;
    overflow: hidden;
}

.newsArchive .btnDesign {
    float: right;
    width: 360px;
    height: 46px;
    font-size: 0.9375rem;
    border-width: 1px;
    background: var(--color-green01);
}

.newsArchive .btnDesign a::after {
    font-size: 0.375rem
}

.newsArchive .btnDesign:hover {
    color: var(--color-green01);
}

.newsArchive .btnDesign:hover a:after {
    background: var(--color-green01);
    color: var(--color-text);
}

.newsArchive .btnDesign a {
    padding-left: 10px;
}

.newsNewText {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px 40px;
    font-size: 1.25rem;
}

.newsList {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.newsList .newsItem {
    display: flex;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 50px;
    gap: 4.09090909%;
    justify-content: space-between;
    align-items: flex-start;
}

.newsList .newsItem+.newsItem {
    margin-top: 50px;
}

.newsList .newsItemPic {
    max-width: 460px;
    width: 41.818181818%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
}

.newsList .newsItemPic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsList .newsItemContent {
    flex: 1;
    position: relative;
}

.newsList .newsItem:nth-of-type(-n+2) .newsItemContent:before {
    content: "NEW";
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25rem;
    color: var(--color-red01);
    display: block;
    margin-bottom: 20px;
}

.newsList .newsItem:nth-of-type(-n+2) .newsItemContent:after {
    content: " ";
    background: var(--color-red01);
    font-family: "Roboto Condensed", sans-serif;
    width: 29px;
    height: 1px;
    position: absolute;
    display: block;
    top: 11px;
    left: 46px;
}

.newsList .newsItemContent .newsItemDate {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.375rem;
    color: var(--color-gray02);
    display: inline-block;
    margin-right: 10px;
}

.newsList .newsItemContent .newsItemCategory {
    border-radius: 4px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Roboto Condensed", sans-serif;
    padding: 6px 4px 4px;
    display: inline-block;
    margin-top: -2px;
}

.newsList .newsItemContent .newsItemTtl {
    font-size: 1.25rem;
    font-weight: 700;
    clear: both;
    line-height: var(--line-height-base02);
    margin: 20px 0 30px 0;
}

.newsList .newsItemContent .newsItemTxt {
    margin-bottom: 40px;
    line-height: var(--line-height-base01);

}

.newsList .newsItemContent .btnFlex {
    display: flex;
    gap: 16px;
    justify-content: end;
}

.newsList .newsItemContent .btnDesign {
    width: 220px;
    height: 50px;
    border-color: var(--color-bg);
    color: var(--color-bg);
    background: var(--color-text);
}

.newsList .newsItemContent a::after {
    background: var(--color-bg);
    color: var(--color-text);
}

.newsList .newsItemContent .btnDesign:hover::before {
    background: var(--color-bg);
}

.newsList .newsItemContent .btnDesign:hover {
    color: var(--color-text);
}

.newsList .newsItemContent .btnDesign:hover a:after {
    background: var(--color-text);
    color: var(--color-bg);
}

.newsList .newsItemContent .btnDesign:hover #icon-pdf,
.newsList .newsItemContent .btnDesign:hover #icon-window {
    fill: #fff;
}

.newsList .newsItemContent .newsItemMoreLink {
	text-align: right;
	padding-right: 1.5em;
	background: url("/assets/img/icon/chev-cir-right.svg") no-repeat right 0.3em/1em;
}
.newsList .newsItemContent .newsItemMoreLink > a {
	display: inline-block;
	position: relative;
	text-decoration: underline;
	line-height: 1.6;
	color: var(--color-bg);
}
.newsList .newsItemContent .newsItemMoreLink:has(> a[target=_blank]) {
	background-image: url("/assets/img/icon/blank.svg");
}
.newsList .newsItemContent .newsItemMoreLink:has(> a[href$=".pdf"]) {
	background-image: url("/assets/img/icon/pdf.svg");
}
.newsList .newsItemContent .newsItemMoreLink:has(> a[href^="#"]) {
	background-image: url("/assets/img/icon/anchor-cir.svg");
}

.newsEmpty {
    padding: 200px 0 100px;
    text-align: center;
    font-size: 1.5rem;
}

@media screen and (max-width: 1280px) {
    .newsCategoryList {
        grid-template-columns: 17% repeat(3, 1fr);
    }

    .newsCategoryList .all {
        grid-row: 1 / 4;
    }
}

@media screen and (max-width: 1000px) {
    .newsCategoryList li button span {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .newsCategory {
        background: var(--color-text);
    }

    .newsCategory .newsCategoryInner {
        padding: calc(50vw / 7.5) calc(40vw / 7.5) calc(70vw / 7.5);
    }

    .newsCategoryWrap {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .newsCategoryWrap::after {
        content: "▼";
        position: absolute;
        top: 50%;
        right: calc(26vw / 7.5);
        transform: translateY(-50%);
        font-size: calc(24vw / 7.5);
        pointer-events: none;
        color: var(--color-bg);
    }

    .newsCategoryWrap #newsCategorySelect {
        appearance: none;
        -webkit-appearance: none;
        width: 100%;
        padding: calc(25vw / 7.5) calc(50vw / 7.5) calc(25vw / 7.5) calc(30vw / 7.5);
        font-size: calc(30vw / 7.5);
        color: var(--color-bg);
        background: var(--color-text);
        border: 2px solid var(--color-bg);
        border-radius: 4px;
        line-height: 1;
        cursor: pointer;
    }

    .newsControl {
        flex-direction: column-reverse;
        padding: calc(60vw / 7.5) calc(40vw / 7.5) 0;
        margin-bottom: calc(35vw / 7.5);
        gap: calc(30vw / 7.5);
    }

    .newsYeartWrap {
        width: calc(235vw / 7.5);
        align-self: flex-start;
    }

    .newsYeartWrap::after {
        right: calc(30vw / 7.5);
        font-size: calc(24vw / 7.5);
    }

    .newsYeartWrap #newsYearSelect {
        padding: calc(25vw / 7.5) calc(55vw / 7.5) calc(25vw / 7.5) calc(20vw / 7.5);
        font-size: calc(30vw / 7.5);
    }

    .newsArchive {
        margin: calc(60vw / 7.5) auto 0;
        padding: 0 calc(40vw / 7.5);
    }

    .newsArchive .btnDesign {
        align-self: flex-end;
        width: calc(590vw / 7.5);
        height: calc(65vw / 7.5);
    }

    .newsArchive .btnDesign a::after {
        font-size: calc(9.75vw / 7.5);
    }

    .newsArchive .btnDesign a {
        font-size: calc(24vw / 7.5);
        padding-left: calc(25vw / 7.5);
    }

    .newsNewText {
        padding: 20px 40px 40px;
        padding: calc(20vw / 7.5) calc(40vw / 7.5) calc(40vw / 7.5);
        font-size: 1rem;
    }

    .newsList {
        padding: 0 calc(40vw / 7.5);
    }

    .newsList .newsItem {
        padding: calc(37vw / 7.5) calc(37vw / 7.5) calc(60vw / 7.5) calc(37vw / 7.5);
        flex-wrap: wrap;
        flex-direction: column;
        gap: calc(40vw / 7.5);
        flex-direction: row;
    }

    .newsList .newsItem+.newsItem {
        margin-top: calc(60vw / 7.5);
    }

    .newsList .newsItemPic {
        max-width: inherit;
        width: 100%;
    }

    .newsList .newsItemContent {
        width: 100%;
    }

    .newsList .newsItem:nth-of-type(-n+2) .newsItemContent:before {
        font-size: calc(32vw / 7.5);
        margin-bottom: calc(20vw / 7.5);
    }

    .newsList .newsItem:nth-of-type(-n+2) .newsItemContent:after {
        width: calc(40vw / 7.5);
        height: calc(2vw / 7.5);
        min-height: 1px;
        top: calc(13vw / 7.5);
        left: calc(73vw / 7.5);
    }

    .newsList .newsItemContent .newsItemDate {
        font-size: calc(30vw / 7.5);
        margin-right: calc(15vw / 7.5);
    }

    .newsList .newsItemContent .newsItemCategory {
        font-size: calc(24vw / 7.5);
    }

    .newsList .newsItemContent .newsItemTtl {
        font-size: calc(32vw / 7.5);
        margin: calc(40vw / 7.5) 0 calc(30vw / 7.5) 0;
    }

    .newsList .newsItemContent .newsItemTxt {
        margin-bottom: calc(50vw / 7.5);
    }

    .newsList .newsItemContent .btnFlex {
        gap: calc(15vw / 7.5);
    }

    .newsList .newsItemContent .btnDesign {
        width: calc(350vw / 7.5);
        height: calc(65vw / 7.5);
    }

    .newsEmpty {
        padding: calc(150vw / 7.5) 0 calc(100vw / 7.5);
        font-size: calc(30vw / 7.5);
    }
}

@media (hover: hover) {
	.newsList .newsItemContent .newsItemMoreLink > a {
		transition: all 0.2s;
	}
	.newsList .newsItemContent .newsItemMoreLink > a:hover {
		text-decoration-thickness: 1.5px;
		color: #007903;
	}
}



/* post //////////////*/
body#news.post #contents {
    background: var(--color-bg);
}

body#news.post #contents>* {
    /* margin-bottom: 90px; */
}

.newsPostInner {
    background: var(--color-text);
    padding: 80px;
}

body#news.post h2 span {
    font-family: inherit;
    font-size: 2.1rem;
    line-height: var(--line-height-base09);
}

.newsPostHeadBl {
    padding: 60px 0 28px;
    background: url(../img/news/post/news_post_head_bg.jpg) no-repeat center/cover;
}

.newsPostHeadFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

.newsPostHeadTime {
    font-size: 1.2rem;
    margin-right: 1em;
    line-height: var(--line-height-base10);
    color: var(--color-text);
}

.newsPostHeadCate {
    font-size: 1rem;
    line-height: var(--line-height-base10);
    color: var(--color-text);
    border: 1px solid var(--color-text);
    padding: .5em;
}

.newsPostHeadFlexRight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsPostHeadShare {
    position: relative;
    padding-left: 30px;
}

.newsPostHeadShare::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/common/icn_share_white.svg) no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.newsPostHeadSnsList {
    display: flex;
    gap: 10px;
}

.newsPostHeadSnsList>li>a {
    display: block;
    width: 36px;
    transition: all .3s;
}

.newsPostHeadSnsList>li>a:hover {
    opacity: 0.7;
}

.newsPostHeadTtl {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: var(--line-height-base02);
    color: var(--color-text);
    text-align: center;
    margin-bottom: 20px;
}

.newsPostHeadTtl::before,
.newsPostHeadTtl::after {
    display: none;
}

.newsPostBodyItem {
    margin-bottom: 86px;
}

.newsPostBodyItem:last-child {
    margin-bottom: 0;
}

.newsPostBodySubItem {
    margin-bottom: 50px;
}

.newsPostBodySubItem:last-child {
    margin-bottom: 0;
}

.newsPostBodyItem p,
.newsPostBodyItem ul {
    font-size: 1rem;
    font-weight: 500;
    line-height: var(--line-height-base02);
    color: var(--color-bg);
    padding: 0;
    margin-bottom: 30px;
}

.newsPostBodyItem ul>li {
    text-indent: -1em;
    padding-left: 1em;
}

.newsPostBodyItem ul>li+li {
    margin-top: 15px;
}

.newsPostBodyItem ul>li>ul {
    margin-bottom: 0;
}

.newsPostBodyItem ul>li>ul>li {
    text-indent: -1em;
    padding-left: 1em;
}

.newsPostBodyItem ul>li>ul>li+li {
    margin-top: 0;
}

.newsPostBodyItem .newsPostBodyDesc {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: var(--line-height-base04);
    color: var(--color-bg);
}

.newsPostBodyItem a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.newsPostBodyItem a:hover {
    text-decoration: none;
}

.newsPostBodyItem a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 12px;
    background: url(../img/common/icn_window.svg) no-repeat center / contain;
    margin: 0 7px;
}

.newsPostBodyItem .txtGreen {
    color: var(--color-green01);
}

.newsPostBodyPic {
    margin: 40px auto;
}

.newsPostBodyLineTtl {
    font-size: 1.6875rem;
    font-weight: 900;
    color: var(--color-bg);
    margin-bottom: 20px;
    padding-left: 13px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-green01);
    line-height: var(--line-height-base02);
}

.newsPostBodyLineTtl::before,
.newsPostBodyLineTtl::after {
    display: none;
}

.newsPostTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid var(--color-gray08);
}

.newsPostTable th,
.newsPostTable td {
    border: 1px solid var(--color-gray08);
    vertical-align: middle;
    padding: 16px 20px;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: var(--line-height-base09);
}

.newsPostTable th {
    width: 200px;
    background: var(--color-green01);
    color: var(--color-text);
    text-align: center;
}

.newsPostTable td {
    background: var(--color-gray09);
    color: var(--color-bg);
    text-align: left;
}

table.newsPostTable.newsPostTableCenter td {
    text-align: center;
}

.newsPostTable .fontS {
    font-size: .88rem;
}

.newsPostTable a {
    color: var(--color-bg);
    line-height: var(--line-height-base07);
    text-decoration: underline;
}

.newsPostTable a:hover {
    text-decoration: none;
}

.newsPostTable td[colspan="3"] {
    text-align: center;
}


@media screen and (max-width: 1000px) {
    .newsPostInner {
        padding: 40px;
    }

    .newsPostBodyPic {
        width: auto;
    }
}


@media screen and (max-width: 767px) {
    body#news.post #contents>* {
        /* margin-bottom: calc(100vw / 7.5); */
    }

    .newsPostInner {
        padding: calc(60vw / 7.5) calc(37vw / 7.5);
    }

    .newsPostHeadBl {
        padding: calc(120vw / 7.5) 0 calc(106vw / 7.5);
    }

    body#news.post h2 span {
        font-size: calc(43.5vw / 7.5);
    }

    .newsPostHeadFlex {
        margin-bottom: calc(60vw / 7.5);
    }

    .newsPostHeadTime {
        font-size: calc(24vw / 7.5);
    }

    .newsPostHeadCate {
        font-size: calc(24vw / 7.5);
    }

    .newsPostHeadShare {
        padding-left: calc(60vw / 7.5);
        cursor: pointer;
        font-size: calc(30vw / 7.5);
    }

    .newsPostHeadShare::before {
        width: calc(48vw / 7.5);
        height: calc(48vw / 7.5);
    }

    .newsPostHeadSnsList>li>a {
        width: calc(100vw / 7.5);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsPostHeadSnsList>li>a:hover {
        opacity: 1;
    }

    .newsPostHeadTtl {
        font-size: calc(38vw / 7.5);
        padding: 0;
        margin-bottom: 0;
    }

    .newsPostBodyItem {
        margin-bottom: calc(114vw / 7.5);
    }

    .newsPostBodyItem a:hover {
        text-decoration: underline;
    }

    .newsPostBodyItem a[target="_blank"]::after {
        width: calc(24vw / 7.5);
        height: calc(20vw / 7.5);
        margin: 0 calc(10vw / 7.5);
    }

    .newsPostBodySubItem {
        margin-bottom: calc(60vw / 7.5);
    }

    .newsPostBodyLineTtl {
        font-size: calc(38vw / 7.5);
        margin-bottom: calc(40vw / 7.5);
        padding-left: calc(13vw / 7.5);
        padding-bottom: calc(4vw / 7.5);
    }

    .newsPostBodyItem p,
    .newsPostBodyItem ul {
        font-size: calc(26vw / 7.5);
        margin-bottom: calc(40vw / 7.5);
    }

    .newsPostBodyItem ul>li+li {
        margin-top: calc(20vw / 7.5);
    }

    .newsPostBodyItem p+p {
        margin-top: calc(26vw / 7.5);
    }

    .newsPostBodyItem .newsPostBodyDesc {
        font-size: calc(30vw / 7.5);
    }

    .newsPostBodyPic {
        margin: calc(30vw / 7.5) auto;
    }

    .newsPostTable th,
    .newsPostTable td {
        padding: calc(20vw / 7.5);
        font-size: calc(26vw / 7.5);
    }

    .newsPostTable th {
        width: calc(150vw / 7.5);
    }

    .newsPostTable tr:nth-child(3) th,
    .newsPostTable tr:nth-child(3) td,
    .newsPostTable tr:nth-child(4) th,
    .newsPostTable tr:nth-child(4) td,
    .newsPostTable tr:nth-child(5) th,
    .newsPostTable tr:nth-child(5) td,
    .newsPostTable tr:nth-child(7) th,
    .newsPostTable tr:nth-child(7) td,
    .newsPostTable tr:nth-child(8) th,
    .newsPostTable tr:nth-child(8) td {
        padding: calc(15vw / 7.5);
    }

    .newsPostTable tr:nth-child(6) th,
    .newsPostTable tr:nth-child(6) td {
        padding: calc(20vw / 7.5);
    }

    .newsPostTable a:hover {
        text-decoration: underline;
    }

    .newsPostTable .fontS {
        font-size: calc(20vw / 7.5);
    }
}


/* SNS「シェアする」ボタンのモーダル（SP） //////////////*/
body#news.post.is-modal-open {
    position: static !important;
}

@media screen and (max-width: 767px) {
    body#news.post.is-modal-open {
        overflow: hidden;
        position: fixed !important;
    }

    .shareModal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 9999;
    }

    .shareModal.is-active {
        display: block;
    }

    .shareModalOverlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .shareModalContent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-text);
        padding: calc(60vw / 7.5) calc(20vw / 7.5);
        width: 85%;
        text-align: center;
    }

    .shareModalContentInner {
        position: relative;
    }

    .shareModalTitle {
        font-size: calc(30vw / 7.5);
        color: var(--color-bg);
        position: relative;
        padding-left: calc(60vw / 7.5);
        display: table;
        margin: 0 auto calc(40vw / 7.5);
    }

    .shareModalTitle::before {
        content: '';
        display: block;
        width: calc(48vw / 7.5);
        height: calc(48vw / 7.5);
        background: url(../img/common/icn_share_black.svg) no-repeat center / contain;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .spModalList {
        display: flex;
        justify-content: center;
        gap: calc(50vw / 7.5);
        list-style: none;
        padding: 0;
    }

    .shareModalLinkTtl {
        font-size: calc(24vw / 7.5);
        color: var(--color-bg);
        text-align: center;
        margin: calc(20vw / 7.5) auto 0;
        display: block;
    }

    .shareModalClose {
        position: absolute;
        top: calc(-46vw / 7.5);
        right: calc(-4vw / 7.5);
        width: calc(64vw / 7.5);
        height: calc(64vw / 7.5);
        background: none;
        border: none;
        font-size: calc(54vw / 7.5);
        line-height: 1;
        color: var(--color-green01);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
}