/*=================
menu (header)
==================*/
.menu {
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 80px;
    z-index: 101;
    transition: all 0.2s linear;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.8s linear;
}

.menu-fix {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 16px 0;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.logo-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background-color: #FFFFFF;
    width: 200px;
    height: 60px;
}

.menu-topic {
    display: flex;
}

.menu-topic-m {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 14px 32px 0 32px;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 98px;
    height: 60px;
    transition: all 0.2s linear;
}

.menu-topic-text-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 450px;
    height: 60px;
}

.menu-topic-text-area-m {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 96px;
    height: 150px;
}

.menu-text {
    padding: 0 0 3px 0;
    font-size: 20px;
    color: #000000;
}

.menu-text:hover {
    color: #0071BC;
}

.menu-btn {
    position: relative;
    width: 34px;
    height: 34px;
}

.menu-btn-text {
    position: absolute;
    bottom: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 9px;
}

.menu-btn-text-active {
    background-image: url(../img/menu-btn-txt.svg);
}

.menu-btn-text-close {
    background-image: url(../img/menu-btn-txt-close.svg);
}

/*====.btn-trigger====*/
.btn-trigger {
    position: relative;
    width: 100%;
    height: 60%;
    margin: 0 0 4px 0;
    cursor: pointer;
}
  
.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000000;
    border-radius: 4px;
}

.btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
    top: 0;
}

.btn-trigger span:nth-of-type(2) {
    top: 40%;
}

.btn-trigger span:nth-of-type(3) {
    bottom: 0;
}

/*========#btn01========*/  
#btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
}

#btn01.active span:nth-of-type(2) {
    opacity: 0;
}

#btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
}


@media screen and (max-width: 960px) {
    .logo-area {
        width: 150px;
    }

    .menu-topic {
        display: none;
    }

    .menu-topic-m {
        display: flex;
    }
}

/*=================
scroll
==================*/
.scroll-icon-area {
    position: fixed;
    top: 350px;
    right: 40px;
    display: flex;
    flex-direction: row;
    width: auto;
    height: 150px;
    gap: 4px;
}

.scroll-icon-left {
    background-color: #000000;
    width: 2px;
    height: 100%;
}

.scroll-icon-right {
    position: relative;
    display: flex;
    flex-direction: column;
}

.scroll-icon-text {
    background-image: url(../img/scroll-text-black.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 13px;
    height: 39px;
}

.scroll-icon-arrow {
    position: absolute;
    background-image: url(../img/scroll-arrow-black.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 39px 0 0 0;
    width: 15px;
    height: 17px;
    animation: slide 3s infinite;
}

@keyframes slide {
    0% {
        top: 10px;
    }

    50% {
        top: 94px;
    }

    100% {
        top: 10px;
    }
}

@media screen and (max-width: 600px) {
    .scroll-icon-area {
        top: 46vw;
        right: 3vw;
        height: 25vw;
    }

    .scroll-icon-left {
        width: 0.33vw;
    }

    .scroll-icon-text {
        width: 2.17vw;
        height: 6.5vw;
    }

    .scroll-icon-arrow {
        margin: 6.5vw 0 0 0;
        width: 2.5vw;
        height: 2.83vw;
    }

    @keyframes slide {
        0% {
            top: 1.67vw;
        }
    
        50% {
            top: 15.67vw;
        }
    
        100% {
            top: 1.67vw;
        }
    }
}

/*=================
section
==================*/
.section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(150px);
    transition: all 1s ease-out;
}

.fadeIn {
    opacity: 1;
    transform: translateY(0);
}

/*=================
main背景 and 全体指示
==================*/
.main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 40px 40px 0 0;
    padding: 0 min(18.23vw, 350px) 200px min(18.23vw, 350px);
    max-width: 1920px;
    z-index: 2;
    box-sizing: border-box;
}

.textAnime {
    clip-path: inset(0 100% 0 0);
    animation: textAnime 0.7s forwards;
    display: inline-block;
}

@keyframes textAnime {
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@media screen and (max-width: 960px) {
    .main {
        border-radius: 8.33vw 8.33vw 0 0;
        gap: 100px;
        padding: 0 10% 150px 10%;
    }

    .category-haedline {
        letter-spacing: 1.04vw;
    }
}

@media screen and (max-width: 600px) {
    .main {
        gap: 13.33vw;
        padding: 0 10% 16.67vw 10%;
    }

    .category-haedline-area {
        margin: 8.33vw 0;
    }
    
    .category-haedline {
        margin: 0 0 1.67vw 0;
        line-height: 6.67vw;
        font-size: 6.67vw;
    }
}

/*=================
#nwes-top
==================*/
.nwes-top {
    display: flex;
    justify-content: flex-start;
    padding: 230px min(18.23vw, 350px) 60px min(18.23vw, 350px);
    width: 100%;
    height: auto;
}

.nwes-top-headline {
    letter-spacing: 10px;
    line-height: 60px;
    font-size: 60px;
    color: #000000;
}

@media screen and (max-width: 960px) {
    .nwes-top {
        padding: 230px 10% 60px 10%;
    }
}

@media screen and (max-width: 600px) {
    .nwes-top {
        padding: 30vw 10% 6.25vw 10%;
    }

    .nwes-top-headline {
        letter-spacing: 1.67vw;
        line-height: 10vw;
        font-size: 10vw;
    }
}


/*=================
#article
==================*/
.article-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 50px;
}

.article-contents {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px;
}

.article-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.hidden-area {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 70px;
    transition: all 0.3s linear;
}

.area-active {
    height: 70px;
}

.article-main-text-area {
    display: flex;
    flex-direction: row;
    padding: 0 10px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    gap: 30px;
}

.article-main-left {
    display: flex;
    flex-direction: column;
    width: 100px;
}

.article-main-date {
    font-size: 20px;
    color: #707070;
    text-align: center;
}

.article-main-category {
    display: flex;
    justify-content: center;
    border-radius: 6px;
    padding: 0 0 2px 0;
    background-color: #B2B1B1;
    box-sizing: border-box;
}

.category-main-text {
    font-size: 14px;
    color: #FFFFFF;
}

.article-main-right {
    display: flex;
    flex-direction: column;
    width: calc(100% - 134px);
    gap: 10px;
}

.article-main-headline {
    width: 100%;
    font-size: 20px;
    color: #000000;
}

.notes-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px;
}

.article-main-url-notes {
    font-size: 18px;
}

.article-main-notes {
    line-height: 26px;
    width: 100%;
    font-size: 16px;
    color: #000000;
}

.article-main-notes-red {
    font-size: 14px;
    color: tomato;
}

.notes-text-left {
    width: 16px;
}

.notes-text-right {
    width: calc(100% - 18px);
}

.notes-passive {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article-line-under {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
}

.article-close-btn {
    position: absolute;
    top: 0;
    left: calc((100% - 40px) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    border-radius: 50%;
    padding: 4px 0 0 0;
    width: 40px;
    height: 40px;
    transition: all 0.2s linear;
}

.btn-active {
    background-color: #0071BC;
    transform: rotate(180deg);
}

.article-delta {
    background-image: url(../img/article-delta.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 21px;
    height: 14px;
}

.passive-hide {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.news-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 30px 16px 30px;
    background-color: #0071BC;
    border-radius: 10px;
    width: 350px;
    font-size: 18px;
    color: #FFFFFF;
}

.sub-area {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
    width: 100%;
    height: auto;
    gap: 12px;
}

.sub-area-cotents {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
    width: 100%;
    height: auto;
    gap: 6px;
}

.sub-area-precautions {
    display: flex;
    flex-direction: column;
    margin: 40px 0 0 0;
    width: 100%;
    height: auto;
    gap: 6px;
}

.article-precautions-notes {
    line-height: 24px;
    font-size: 16px;
    color: #000000;
}

.text-indent-fix {
    display: flex;
    flex-direction: row;
    gap: 2px;
}

/*仮イメージCSS*/
.notes-area img {
    width: 562px;
    height: 324px;
    float: right;
    margin-top: 10px;
}
/**/

@media screen and (max-width: 960px) {
    .article-main-text-area {
        flex-direction: column;
        gap: 30px;
    }

    .article-main-right {
        width: 100%;
    }

    .article-main-notes {
        line-height: 26px;
    }

    .hidden-area {
        height: 150px;
    }
}

@media screen and (max-width: 600px) {
    .article-list {
        gap: 8.333vw;
    }
    
    .article-contents {
        gap: 5vw;
    }
    
    .hidden-area {
        height: 11.667vw;
    }
    
    .area-active {
        height: 11.667vw;
    }
    
    .article-main-text-area {
        padding: 0 1.667vw;
        gap: 8.333vw;
    }
    
    .article-main-left {
        width: 16.667vw;
    }
    
    .article-main-date {
        font-size: 3.333vw;
    }
    
    .article-main-category {
        border-radius: 1vw;
        padding: 0 0 0.333vw 0;
    }
    
    .category-main-text {
        font-size: 2.333vw;
    }
    
    .article-main-right {
        gap: 1.667vw;
    }
    
    .article-main-headline {
        font-size: 3.333vw;
    }
    
    .notes-area {
        gap: 5vw;
    }
    
    .article-main-url-notes {
        font-size: 3vw;
    }
    
    .article-main-notes {
        line-height: 5vw;
        font-size: 2.667vw;
    }

    .article-main-notes-red {
        font-size: 2.33vw;
    }
    
    .notes-text-left {
        width: 2.667vw;
    }
    
    .notes-text-right {
        width: calc(100% - 3vw);
    }
    
    .article-line-under {
        height: 6.667vw;
    }
    
    .article-close-btn {
        left: calc((100% - 6.667vw) / 2);
        padding: 0.667vw 0 0 0;
        width: 6.667vw;
        height: 6.667vw;
    }
    
    .article-delta {
        width: 3.5vw;
        height: 2.333vw;
    }
    
    .passive-hide {
        gap: 6.667vw;
    }
    
    .news-btn {
        padding: 2.333vw 5vw 2.667vw 5vw;
        border-radius: 1.667vw;
        width: 58.333vw;
        font-size: 3vw;
    }
    
    .sub-area {
        margin: 3.333vw 0 0 0;
        gap: 2vw;
    }
    
    .sub-area-cotents {
        margin: 3.333vw 0 0 0;
        gap: 1vw;
    }
    
    .sub-area-precautions {
        margin: 6.667vw 0 0 0;
        gap: 1vw;
    }
    
    .article-precautions-notes {
        line-height: 4vw;
        font-size: 2.667vw;
    }
    
    .text-indent-fix {
        display: flex;
        flex-direction: row;
        gap: 0.33vw;
    }
}


/*=================
#footer
==================*/
.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 100px min(18.23vw,350px);
    background-color: #0071BC;
    max-width: 1920px;
    width: 100%;
    height: 440px;
    box-sizing: border-box;
    z-index: 10;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 284px;
    height: 100%;
}

.Copyright {
    font-size: 16px;
    color: #FFFFFF;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.fotter-section-text {
    font-size: 20px;
    color: #FFFFFF;
}

.foote-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-right-up {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 320px;
    height: 164px;
}

.fotter-recruit,
.fotter-company {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 110px;
    height: 100%;
}

.fotter-section-text-sub {
    font-size: 14px;
    color: #FFFFFF;
}

.footer-right-under {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.footer-news,
.footer-contact {
    width: 110px;
}

.footer-fix {
    width: 157px;
    height: 50px;
}

@media screen and (max-width: 1280px) {
    .footer {
        padding: 100px min(10.42vw,200px);
    }
}

@media screen and (max-width: 960px) {
    .footer {
        padding: 10.42vw min(10.42vw,200px);
        height: 45.83vw;
    }
    
    .footer-left {
        width: 29.58vw;
    }
    
    .Copyright {
        font-size: 1.67vw;
    }
    
    .fotter-section-text {
        font-size: 2.08vw;
    }
    
    .footer-right-up {
        width: 33.33vw;
        height: 17.08vw;
    }
    
    .fotter-recruit,
    .fotter-company {
        width: 11.46vw;
    }
    
    .fotter-section-text-sub {
        font-size: 1.46vw;
    }
    
    .footer-news,
    .footer-contact {
        width: 11.46vw;
    }
}

@media screen and (max-width: 600px) {
    .footer-fix {
        width: 26.17vw;
        height: 8.33vw;
    }
}


/*=================
単独　CSS
==================*/
.kari {
    display: flex;
    width: 100%;
    height: 500px;
    background-color: aqua;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    color: transparent;
    cursor: pointer;
}

ul,
p {
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

button {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

section {
    z-index: 4;
}

.visible {
    visibility: visible;
    opacity: 1;
}

.max-width-1920 {
    max-width: 1920px;
}

.height-100vh {
    height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.position-bottom {
    bottom: 0;
    left: 0;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.padding-0 {
    padding: 0;
}

.width100 {
    width: 100%;
}

.margin0 {
    margin: 0;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.inline-block {
    display: inline-block;
}

.border-box {
    box-sizing: border-box;
}

.text-align-center {
    text-align: center;
}

.text-align-left {
    text-align: left;
}

.text-align-justify {
    text-align: justify;
}

.zindex-1 {
    z-index: -1;
}

.font-palt {
    font-feature-settings: "palt";
}

.pointer-events-none {
    pointer-events: none;
}

.opacity0 {
    opacity: 0;
}

.font-color-main {
    color: #0071BC;
}

.font-thin {
    font-weight: 100;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}