@charset "UTF-8";

/* body {
    background: #F6F7FA;
} */

.inner {
    max-width: 1380px;
}

/* hero */

.hero {
    width: 100%;
    height: 100vh;
    /* background: url(/img/home/img-hero.png);
    background-size: cover;
    background-repeat: no-repeat; */
    position: relative;
    background: #000;
}

.hero_movie {
    width: 100%;
    height: 100%;
}

.hero_movie_cnt {
    width: 100%;
    height: 100%;
}


.hero_movie {
  width: 100vw;
  height: 100vh;
  z-index: -1; /* 必要に応じて。背景なら -1 */
  overflow: hidden;
}

.fullscreen-video {
  position: relative;
  width: 100%;
  height: 100%;
}

.fullscreen-video iframe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  object-fit: cover;
  aspect-ratio: auto;
}


/* secton */

.sec {
    padding: 50px 0;
}

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

.sec_ttl {
    font-family: 'Special Gothic Expanded One', serif;
}

.icon-arrow {
    position: relative;
}

.bg_black {
    background: #000;
}

/* kmp */


.kmp {
    background: #000;
    position: relative;
    z-index: 0;
}

.kmp::before {
    content: '';
    width: 643px;
    height: 572px;
    background: url(/img/home/bg-kmp.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.kmp .sec_hd .icon-arrow {
    color: #fff;
    text-decoration: underline;
}

.kmp .sec_hd .icon-arrow:hover {
    text-decoration: none;
}

.kmp .sec_hd .icon-arrow::after {
    content: '';
    width: 15px;
    height: 11px;
    background: url(/img/cmn/icon-arrow_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.kmp .sec_ttl {
    font-size: 45px;
    color: #fff;
}

.kmp_list {
    display: flex;
    gap: 12px;
}

.kmp_list a {
    color: #fff;
    background: rgb(157, 157, 157, 0.35);
    border-radius: 5px;
    width: 100%;
    max-width: 170px;
    padding: 12px 10px;
    transition-duration: 0.5s;
    position: relative;
}

.kmp_list a:hover {
    background: #0E3CB4;
}

.kmp_list a::after {
    content: '';
    width: 30px;
    height: 30px;
    background: url(/img/cmn/icon-arrow_kmp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    transition-duration: 0.5s;
}

.kmp_list a:hover::after {
    background: url(/img/cmn/icon-arrow_kmp_hover.svg);
    background-size: cover;
    background-repeat: no-repeat;
}


/* news */

.news {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.news .inner {
    padding-right: 0;
}

.news::before {
    content: '';
    width: 952px;
    height: 984px;
    background: url(/img/home/bg-news.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -40%;
    left: 0;
    z-index: -1;
}

.news_body {
    padding: 70px 70px 80px;
    background: #F6F7FA;
    margin: 0 0 115px auto;
    width: 95%;
}

.news .sec_ttl {
    justify-content: left;
    font-size: 84px;
}

.news .sec_ttl .char-text {
    font-size: 84px;
    color: #000;
}

.news_wrapper {
    width: 70%;
}

.news_cnt {
    display: flex;
    justify-content: right;
}

.news_list {
    margin-bottom: 20px;
}

.news_list li a {
    display: block;
    font-size: 22px;
    padding: 20px 40px;
    border-bottom: solid 1px #C6C6C6;
}

.news_list li a::before {
    content: '';
    width: 15px;
    height: 11px;
    background: url(/img/cmn/icon-arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition-duration: 0.5s;
}

.news_list li a:hover::before {
    left: 10px;
}

.news .cmn_btn {
    background: #000;
}

.news .cmn_btn:hover {
    background: #0E3CB4;
}


/* test */

.container,
.hero_ttl01,
.hero_ttl02 {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text,
.text_hero01,
.text_hero02 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    font-weight: 700;
}

.text.is-active,
.text_hero01.is-active,
.text_hero02.is-active {
    --x: 0;
}

.char {
    overflow: hidden;
}

.char-text {
    display: inline-block;
    transform: translateX(var(--x, -150%));
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.05s * var(--char-index));
    font-family: 'Special Gothic Expanded One', serif;
    font-size: 193px;
    color: #0E3CB4;
}

.hero_ttl01 .char-text,
.hero_ttl02 .char-text {
    font-size: 100px;
    color: #fff;
}

.hero_ttl01 {
    position: absolute;
    bottom: 23%;
    left: 10%;
}

.hero_ttl02 {
    position: absolute;
    bottom: 10%;
    left: 15%;
}

.visuallyHidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.whitespace {
    width: 1ch;
}


/* product */


.bg-white {
    overflow: hidden;
    position: relative;
    background: #F6F7FA;
}

.bg-white01 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-white02 {
    position: absolute;
    bottom: -5%;
    right: 0;
    z-index: 0;
}

.bg-white03 {
    position: absolute;
    bottom: -15%;
    left: 0;
    z-index: 0;
}

.bg-white04 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.product {
    display: block;
    margin-bottom: 130px;
    background: #F6F7FA;
}

.sec_ttl {
    font-size: 11vw;
    color: #0E3CB4;
}

.sec_ttl.-product {
    font-size: 84px;
    line-height: 70px;
    color: #fff;
    width: 95%;
    margin: 0 0 0 auto;
}

.product_wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 10;
}

.product_sp_cnt_img {
    text-align: center;
}

.product_body.-name {
    width: 100%;
    max-width: 420px;
}

.product_ttl {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product_cnt {
    display: none;
    width: 100%;
    min-width: 830px;
    /* height: 100%; */
    aspect-ratio: 830 / 505;
    /* display: flex; */
    align-items: end;
    padding: 0 80px 40px;
    border-radius: 10px;
}

.product_cnt.-no1 {
    display: flex;
}

/* .product_cnt.-no1 {
    background: url(/img/home/img-kmp13.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
} */

.product_cnt.-no1 {
    background: url(/img/home/img-kmp20.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product_cnt.-no2 {
    background: url(/img/home/img-kmp25.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product_cnt.-no3 {
    background: url(/img/home/img-kmp30.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product_cnt_txt {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
}

.product_cnt_txt p {
    color: #fff;
}

.product_cnt_txt .cmn_btn {
    background: #414141;
}

.product_cnt_txt .cmn_btn:hover {
    opacity: 0.7;
}

.product_name {
    margin-bottom: 35px;
}

.product_name p {
    font-family: 'Special Gothic Expanded One', serif;
    font-size: 35px;
    padding: 16px 20px;
    border-bottom: solid 1px #C6C6C6;
}

.product_name p:hover {
    cursor: pointer;
}

.product_name p.-active {
    color: #0E3CB4;
}

.product_name p:first-child {
    border-top: solid 1px #C6C6C6;
}

.product_body.-name .cmn_btn {
    background: #0E3CB4;
}

.product_body.-name .cmn_btn:hover {
    background: #242424;
}


/* label */

.scroll {
    width: 100%;
    overflow: hidden;
}

.scroll_wrapper {
    display: flex;
    width: max-content;
}

.scroll_item {
    animation: l-scroll infinite linear 20s;
}

@keyframes l-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.label {
    color: #fff;
    text-align: center;
    font-size: 10vw;
    opacity: 0.4;
    font-family: 'Special Gothic Expanded One', serif;
}

/* technology */

.technology {
    position: relative;
    z-index: 10;
    padding: 50px 0 100px;
}

.technology_body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.technology_body .technology_cnt:first-child {
    max-width: 600px;
}

.technology_cnt_ttl {
    color: #0E3CB4;
    font-size: 50px;
    line-height: 70px;
    font-weight: 500;
    margin-bottom: 20px;
}

.technology_cnt_txt {
    width: 80%;
    margin-bottom: 20px;
}

.technology .cmn_btn {
    background: #000;
}

.technology .cmn_btn:hover {
    background: #0E3CB4;
}


/* movie */

.movie {
    display: block;
    width: 100%;
    height: 580px;
    position: relative;
    /* background: url(/img/home/bg-movie.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.movie:hover .icon-play {
    background: #000;
}

/* link */

.link {
    position: relative;
    background: #F6F7FA;
}

.link_cnt {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.link_cnt a {
    display: flex;
    background: #fff;
    position: relative;
    width: 100%;
    max-width: 570px;
}

.link_cnt a::before {
    content: '';
    width: 60px;
    height: 60px;
    background: url(/img/cmn/icon-arrow_gray.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.link_cnt a:hover {
    background: #0E3CB4;
}

.link_cnt_row {
    padding: 45px 25px;
    width: 100%;
}

.link_cnt_row p {
    font-size: 35px;
}

.link_cnt a:hover .link_cnt_row p {
    color: #fff;
}


/* challenge */

.challenge {
    display: block;
    background: url(/img/home/bg-challenge.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 105px 30px 175px;
}

.challenge_ttl {
    color: #fff;
    font-size: 52px;
    line-height: 70px;
    font-weight: 500;
    margin-bottom: 20px;
}

.challenge_txt {
    max-width: 577px;
    color: #fff;
    margin-bottom: 20px;
}

.challenge .cmn_btn {
    background: #0E3CB4;
}


/* footer */

.cmnft_btm {
    display: none;
    padding-bottom: 70px;
}

.cmnft_btm.-top {
    display: flex;
}

.cmnft_btm_body {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cmnft_btm_body.-column {
    flex-flow: column;
    align-items: end;
}


@media screen and (max-width:1380px) {
    
    .cmnft_btm_body.-flex img {
        width: 50%;
        height: auto;
    }

    .cmnft_btm_body.-flex img:nth-child(1),
    .cmnft_btm_body.-flex img:nth-child(2) {
        width: 10%;
    }
}


@media screen and (max-width:767px) {
    .sec_ttl {
        font-size: 185px;
    }

    /* hero */

    /* .hero {
        background: url(/img/home/img-hero_sp.png);
        background-size: cover;
        background-repeat: no-repeat;
    } */

    .text,
    .text_hero01,
    .text_hero02 {
        flex-wrap: wrap;
        justify-content: left;
    }

    .hero_ttl01 .char-text,
    .hero_ttl02 .char-text {
        font-size: 47px;
        line-height: 50px;
    }

    .hero_ttl01 {
        bottom: 35%;
        left: 7%;
        max-width: 70%;
    }

    .hero_ttl02 {
        bottom: 18%;
        left: 7%;
        max-width: 314px;
    }

    .bg-white02 {
        bottom: 19%;
    }

    .bg-white03 {
        bottom: 14%;
    }

    .contact_fixed {
        position: fixed;
        right: 0;
        bottom: 0;
        font-size: 17px;
        color: #fff;
        text-align: center;
        background: #0E3CB4;
        padding: 10px 20px;
        width: 40%;
        border-radius: 12px 0 0 0;
        z-index: 100;
    }



    /* kmp */

    .kmp_list {
        flex-wrap: wrap;
    }

    .kmp_list a {
        max-width: 48%;
    }

    .kmp::before {
        width: 100%;
        height: 100%;
    }

    .sec_hd {
        flex-flow: column;
        gap: 0;
        align-items: start;
        margin-bottom: 20px;
    }

    .kmp .sec_ttl {
        line-height: 50px;
    }



    /* news */

    .news {
        padding: 0px 0 30px;
    }

    .news_body {
        padding: 20px 20px 60px;
        margin: 0 0 50px auto;
    }

    .news .sec_ttl {
        font-size: 42px;
        text-align: center;
    }

    .news .sec_ttl .char-text {
        font-size: 54px;
    }

    .news_wrapper {
        width: 100%;
    }

    .news_list li a {
        font-size: 18px;
        padding: 12px 20px 12px 40px;
    }


    /* product */

    .product {
        margin-bottom: 0;
    }

    .sec_ttl.-product {
        width: 100%;
    }

    .product .char-text {
        font-size: 85px;
        line-height: 80px;
    }
    
    .product_ttl {
        margin: 20px 0 ;
    }

    .product_wrapper {
        display: none;
    }

    .product_sp {
        position: relative;
        z-index: 10;
    }

    .product_sp_cnt {
        padding: 25px 0;
        border-bottom: solid 1px #C6C6C6;
    }

    .product_sp .product_sp_cnt:first-child {
        border-top: solid 1px #C6C6C6;
    }

    .product_sp_cnt_ttl {
        font-size: 35px;
        line-height: 40px;
        font-family: 'Special Gothic Expanded One', serif;
        color: #0E3CB4;
        margin-bottom: 10px;
    }

    .product_sp_cnt img {
        margin-bottom: 10px;
    }

    .product_sp_cnt_txt {
        margin-bottom: 20px;
    }

    .product_sp_cnt .cmn_btn {
        width: 100%;
        max-width: unset;
        text-align: center;
        color: #fff;
        background: #414141;
        border-radius: 7px;
    }

    .cmn_btn {
        background: #0E3CB4;
        margin: 20px auto 0;
        width: 100%;
        max-width: 208px;
    }

    .label {
        font-size: 27vw;
        line-height: 70px;
    }


    /* technology */

    .technology_body {
        flex-flow: column-reverse;
    }

    .technology_cnt_ttl {
        font-size: 28px;
        line-height: 40px;
    }

    .technology_cnt_txt {
        width: 100%;
    }


    .movie {
        height: 100%;
        /* background: url(/img/home/bg-movie_sp.png); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }


    /* link */

    .link_cnt {
        flex-flow: column;
        gap: 20px;
    }

    .link_cnt_row {
        padding: 25px 15px;
    }

    .link_cnt_row p {
        font-size: 28px;
        line-height: 33px;
    }

    .link_cnt a::before {
        width: 42px;
        height: 42px;
        bottom: 5px;
        left: 5px;
    }


    /* challenge */

    .challenge {
        padding: 60px 15px 210px;
        background: url(/img/home/bg-challenge_sp.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .challenge .inner {
        padding: 0;
    }

    .challenge_ttl {
        font-size: 28px;
        line-height: 40px;
    }



    /* footer */
    
    .cmnft_btm_body {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cmnft_btm_body.-flex {
        margin-bottom: 30px;
    }

    .cmnft_btm_body.-flex img {
        width: 100%;
        height: auto;
        max-width: 257px;
    }

    .cmnft_btm_body.-flex img:nth-child(1),
    .cmnft_btm_body.-flex img:nth-child(2) {
        width: 25%;
        max-width: 88px;
    }
}

@media screen and (max-width:767px) {}