/* Common */
body {
    position: relative;
    color: #fff;
    background-color: #000;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
    transition: .4s ease;
    min-height: 100%;
}
a {
    text-decoration: none;
}
.bg__news {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: url("/assets/images/mv_pc.png") center / cover no-repeat;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
}

/* Header */
.subHeader {
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    font-family: "Titillium Web";
    font-weight: bold;
}
.subHeader .logo a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0 12px;
}
.subHeader .logo a img {
    width: 72px;
}
.subHeader .logo a .backText {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0 4px;
    color: #fff;
    font-weight: normal;
}
.subHeader .logo a .backText img.arrowIcon{
    width: 20px;
    transform: scaleX(-1);
}
.subHeader .languageMenu{
    position: relative;
}
.subHeader .languageMenu .languageLink a {
    display: block;
    background: rgba(0, 0, 0, .64);
    border: solid 1px #fff;
    padding: 12px;
}
.subHeader .languageMenu .languageLink a img {
    width: 28px;
}
.subHeader .languageMenu .languageList {
    z-index: 99;
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, .8);

    transform: translateY(-20px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s;
}
.subHeader .languageMenu.open .languageList {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0px);
}
.subHeader .languageMenu .languageList li a {
    width: 86px;
    display: inline-block;
    padding: 16px 0;
    color: #fff;
    text-align: center;
}
.subHeader .languageMenu .languageList li a:hover {
    transition: background-color .4s ease;
}
.subHeader .languageMenu .languageList li a:hover,
.subHeader .languageMenu .languageList li.is-current a {
    background: #CC2A28;
}
@media screen and (max-width: 768px) {
    .subHeader {
        padding: 16px 24px;
    }
    .subHeader .logo a img {
        width: 56px;
    }
    .subHeader .logo a .backText {
        font-size: 14px;
    }
    .subHeader .logo a .backText img.arrowIcon{
        width: 16px;
    }
    .subHeader .languageMenu .languageLink a {
        display: block;
        background: rgba(0, 0, 0, .64);
        border: solid 1px #fff;
        padding: 8px;
    }
    .subHeader .languageMenu .languageLink a img {
        width: 24px;
    }
}

/* News List */
.hidden { display:none; }
main.newsList {
    max-width: 1280px;
    padding: 24px 40px 120px 40px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
main.newsList {
    width: 100%;
    max-width: auto;
    padding: 12px 24px 64px 24px;
    margin: 0 auto;
}
}

main.newsList a:hover{
    opacity: .64;
    transition: .4s ease;
}
main.newsList h2.newsTitle {
    font-family: "Titillium Web";
    font-weight: bold;
    font-size: 64px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    main.newsList h2.newsTitle {
        font-size: 40px;
        margin-bottom: 24px;
    }
}
main.newsList .newsCategoryTab{
    display: flex;
    gap: 0 1px;
    margin-bottom: 40px;
}
main.newsList .newsCategoryTab li{
    flex: 1;
    text-align: center;
}
main.newsList .newsCategoryTab li a{
    display: block;
    background: rgba(0,0,0,.8);
    color: #fff;
    font-family: "Titillium Web";
    font-weight: bold;
    font-size: 20px;
    padding: 16px;
}
main.newsList .newsCategoryTab li.is-current a{
    background: rgba(255,255,255,1);
    color: #000;
}
@media screen and (max-width: 768px) {
    main.newsList .newsCategoryTab li a{
        font-size: 16px;
        padding: 16px 8px;
    }
}
main.newsList .newsArticleList{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
main.newsList .newsArticleList li {
    width: calc((100% - 48px) / 3);
}
main.newsList .newsArticleList li.newsItem {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .25s ease,
        transform .25s ease;
}
main.newsList .newsArticleList li.newsItem.is-hiding {
    opacity: 0;
    transform: translateY(12px);
}
main.newsList .newsArticleList li a{
    display: flex;
    flex-direction: column;
    color: #fff;
}
main.newsList .newsArticleList li a .newsArticleImage{
    width: 100%;
}
main.newsList .newsArticleList li a .newsArticleInfo{
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    gap: 8px 0;
}
main.newsList .newsArticleList li a .newsArticleInfo dt{
    font-family: "Titillium Web";
    font-weight: bold;
    align-self: flex-start;
}
main.newsList .newsArticleList li a .newsArticleInfo dt.label{
    display: inline-flex;
    text-transform: uppercase;
    border: solid 1px #fff;
    padding: 4px 8px;
    font-size: 12px;
}
main.newsList .newsArticleList li a .newsArticleInfo dd.text{
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    main.newsList .newsArticleList{
        flex-direction: column;
        flex-wrap: wrap;
        gap: 32px 0;
    }
    main.newsList .newsArticleList li {
        width: 100%;
        border-bottom: solid 1px rgba(255,255,255,.16);
        padding-bottom: 32px;
    }
}

/* News Detail */
main.newsDetail{
    max-width: 1024px;
    padding: 24px 40px 120px 40px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    main.newsDetail{
        width: 100%;
        max-width: auto;
        padding: 16px 24px 64px 24px;
    }
}
main.newsDetail .newsDetailHead{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px 0;
    border-bottom: solid rgba(255,255,255,1) 1px;
    padding-bottom: 40px;
}
main.newsDetail .newsDetailHead dt.label{
    font-family: "Titillium Web";
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    border: solid 1px #fff;
    padding: 16px 24px;
    align-self: center;
}
main.newsDetail .newsDetailHead dt.title{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
}
main.newsDetail .newsDetailHead dd.date{
    font-family: "Titillium Web";
    font-size: 18px;
}
@media screen and (max-width: 768px) {
    main.newsDetail .newsDetailHead{
        gap: 12px 0;
        padding-bottom: 24px;
    }
    main.newsDetail .newsDetailHead dt.label{
        font-size: 18px;
        padding: 8px 16px;
    }
    main.newsDetail .newsDetailHead dt.title{
        font-size: 24px;
    }
    main.newsDetail .newsDetailHead dd.date{
        font-size: 16px;
    }
}
main.newsDetail .newsDetailBody{
    padding: 64px 0;
    border-bottom: solid rgba(255,255,255,1) 1px;
    line-height: 1.8;
}
main.newsDetail .newsDetailBody a{
    text-decoration: underline;
    color: #fff;
    transition: .4s ease;
}
main.newsDetail .newsDetailBody a:hover{
    text-decoration: none;
}
main.newsDetail .newsDetailBacklink{
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding-top: 40px;
}
main.newsDetail .newsDetailBacklink a{
    display: flex;
    align-items: center;
    gap: 0 8px;
    background: rgba(0,0,0,.8);
    border: solid 1px #fff;
    font-family: "Titillium Web";
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    padding: 20px 40px 20px 32px;
    transition: .4s ease;
}
main.newsDetail .newsDetailBacklink a:hover{
    opacity: .64;
}
main.newsDetail .newsDetailBacklink a img{
    width: 24px;
    transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
    main.newsDetail .newsDetailBacklink a{
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        padding: 16px 24px;
    }
}

/* News Article Styles */
main.newsDetail .newsDetailBody h2{
    background: #fff;
    font-size: 32px;
    color: #000;
    margin-bottom: 24px;
    padding: 4px 12px;
}
main.newsDetail .newsDetailBody h3{
    font-size: 24px;
    margin-bottom: 20px;
    border-left: solid rgba(255,255,255,1) 4px;
    padding-left: 16px;
}
main.newsDetail .newsDetailBody h4{
    font-size: 18px;
    margin-bottom: 8px;
}
main.newsDetail .newsDetailBody ul{
    margin: 16px 0;
    padding: 0 0 0 24px;
    list-style: circle;
}
main.newsDetail .newsDetailBody img{
    width: 100%;
    margin: 32px 0;
}
main.newsDetail .newsDetailBody li{
    padding: 8px 0;
}
main.newsDetail .newsDetailBody p{
    line-height: 2;
}
main.newsDetail .newsDetailBody small{
    font-size: 14px;
    color: #ccc;
}
main.newsDetail .newsDetailBody hr{
    margin: 32px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .4);
}
main.newsDetail .newsDetailBody table{
    width: 100%;
    border-collapse: collapse;
}
main.newsDetail .newsDetailBody th,
main.newsDetail .newsDetailBody td {
    padding: 12px;
    border: 1px solid #fff;
}
main.newsDetail .newsDetailBody th{
    background: rgba(255,255,255,.24);
}
main.newsDetail .newsDetailBody td{
    background: rgba(255,255,255,.08);
}
@media screen and (max-width: 768px) {
    main.newsDetail .newsDetailBody h2{
        font-size: 24px;
    }
    main.newsDetail .newsDetailBody h3{
        font-size: 20px;
    }
}


/* Footer */
.subFooter {
    position: relative;
    z-index: 10;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px 0;
    background: #000;
}
@media screen and (max-width: 768px) {
    .subFooter {
        padding: 56px 24px;
    }
}
.subFooter__overview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 24px;
}
@media screen and (max-width: 768px) {
    .subFooter__overview {
        flex-direction: column;
        gap: 16px 0;
    }
}
.subFooter__overviewLogo {
    width: 160px;
}
@media screen and (max-width: 768px) {
    .subFooter__overviewLogo {
        width: 120px;
    }
}
.subFooter__overviewLogo img {
    width: 100%;
}
.subFooter__overviewTable {
    font-size: 14px;
    line-height: 1.4;
}
.subFooter__overviewTable th {
    text-align: right;
}
.subFooter__overviewTable th,
.subFooter__overviewTable td {
    padding: 8px 2px;
}
@media screen and (max-width: 768px) {
    .subFooter__overviewTable {
        font-size: 12px;
    }

    .subFooter__overviewTable th {
        min-width: 80px;
    }

    .subFooter__overviewTable th,
    .subFooter__overviewTable td {
        padding: 4px 0;
    }
}
.subFooter__linkList {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.subFooter__linkText {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
    .subFooter__linkText:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 768px) {
    .subFooter__linkText {
        font-size: 12px;
    }
}
.subFooter__logoList {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.subFooter__logoLink {
    transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
    .subFooter__logoLink:hover {
        opacity: 0.6;
    }
}
.subFooter__logoImage {
    height: 26px;
}
.subFooter__logoImagePS5 {
    height: 20px;
}
.subFooter__copyrightBox {
    width: 100%;
    text-align: center;
}
.subFooter__copyright {
    font-size: 10px;
    opacity: 0.64;
    line-height: 1.5;
}