@charset "UTF-8";
 :root {
    --color-white: #fff;
    --color-blue: #0073c3;
    --ease-default: linear;
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
 }

/* common */
@media (min-width: 1441px) {
    html {
        --font-vw: 1px;
    }
}
@media (min-width: 901px) and (max-width: 1440px) {
    html {
        --font-vw: calc(100 / 1440 * 1dvw);
    }
}
@media (min-width: 901px) {
    html {
        --header-height: 70px;
    }
}
@media (max-width: 900px) {
    html {
        font-size: calc(100 / 375 * 1vw);
        font-size: calc(100 / 375 * 1dvw);
        --header-height: 56rem;
    }
}
body {
    background-color: var(--color-white);
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-blue);
    font-weight: 700;
    font-feature-settings: "palt";
}
.content_inner {
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
}
.font_roboto {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
}
h1,h2,h3 {
    font-size: inherit;
}
a {
    text-decoration: none;
    color: var(--color-blue);
}
img {
    width: 100%;
    height: auto;
}
button {
    border: none;
}
@media screen and (min-width: 768px) {
    @media (hover: hover) {
        .link_hover {
            transition: opacity 0.4s;
        }
        .link_hover:hover {
            opacity: 0.7;
        }
    }
}
@media (min-width: 901px) {
    [data-disp-only]:not([data-disp-only~='pc']) {
        display: none !important;
    }
}
@media (max-width: 900px) {
    [data-disp-only]:not([data-disp-only~='sp']) {
        display: none !important;
    }
}

/* modal */
body.is_modal_show {
    overflow: hidden;
}
.modal_content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: none;
    background: rgba(0, 0, 0, 0.75);
}
.modal_scroll {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    letter-spacing: -0.5em;
}
.modal_scroll_inner {
    text-align: center;
    margin: auto;
    max-width: 1440px;
    width: 100%;
    letter-spacing: normal;
    line-height: 1.5;
}
.modal_inner {
    position: relative;
}
.modal_scroll_inner,
.modal_scroll:after {
    display: inline-block;
    vertical-align: middle;
}
.modal_scroll:after {
    content: '';
    height: 100%;
}
.modal_close {
    position: absolute;
    cursor: pointer;
}
.modal_close::before,
.modal_close::after {
    content: "";
    display: block;
    width: 100%;
    background-color: var(--color-white);
    position: absolute;
    inset: 0;
    margin: auto;
}
.modal_close::before {
    rotate: 45deg;
}
.modal_close::after {
    rotate: -45deg;
}
.modal_youtube_player_wrap {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.modal_youtube_player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 901px) {
    .modal_scroll_inner {
        padding: 80px 63px; 
    }
    .modal_close {
        top: 44px;
        right: 51px;
        width: 42px;
        height: 42px;
    }
    .modal_close::before,
    .modal_close::after {
        height: 4px;
    }
}
@media (max-width: 900px) {
    .modal_scroll_inner {
        padding-block: 80rem;
    }
    .modal_close {
        top: 17.5rem;
        right: 17.5rem;
        width: 35rem;
        height: 35rem;
    }
    .modal_close::before,
    .modal_close::after {
        height: 3rem;
    }
}

/* animation */
.animation_ready .anime_fadein {
    opacity: 0;
    transition: opacity 0.8s var(--ease-default);
}
.animation_ready.animation_loaded .anime_fadein.is_active,
.animation_ready.animation_loaded .is_active .anime_fadein {
    opacity: 1;
}
.animation_ready .anime_fadeup {
    opacity: 0;
    translate: 0 40px;
    transition: opacity 0.8s var(--ease-out), translate 0.8s var(--ease-out);
}
.animation_ready.animation_loaded .anime_fadeup.is_active,
.animation_ready.animation_loaded .is_active .anime_fadeup {
    opacity: 1;
    translate: 0 0;
}

/* header */
.header {
    background-color: var(--color-white);
}
.header_content {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    display: block;
    line-height: 0;
}
.header_lang_list {
    display: flex;
}
.header_lang_list li {
    line-height: 1;
}
.header_lang_list li + li {
    border-left: 1px solid var(--color-blue);
}
.header_lang_list a {
    line-height: 1;
    display: inline-block;
}
@media (min-width: 901px) {
    .header_content {
        padding-inline: 20px;
    }
    .header_logo {
        width: 160px;
    }
    .header_lang_list a {
        padding-inline: 12px;
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .header_content {
        padding-inline: 14rem;
    }
    .header_logo {
        width: 104rem;
    }
    .header_lang_list a {
        padding-inline: 10rem;
        font-size: 14rem;
    }
}

/* mv */
.mv {
    width: 100%;
    background-color: var(--color-blue);
    overflow: hidden;
}
.mv_content {
    width: 100%;
    height: calc(100svh - var(--header-height));
    position: relative;
}
.mv_copy {
    position: absolute;
    line-height: 0;
}
.mv_ttl {
    position: absolute;
    margin-inline: auto;
    line-height: 0;
    z-index: 2;
    display: flex;
}
.mv_ttl_txt {
    display: block;
    line-height: 0;
}
.mv_talent {
    position: absolute;
    z-index: 1;
    line-height: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.mv_talent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.mv_txt {
    letter-spacing: 0.095em;
    line-height: 1;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    color: var(--color-white);
}
@media (min-width: 901px) {
    .mv_content {
        min-height: calc(900px - var(--header-height));
        font-size: var(--font-vw);
    }
    .mv_ttl {
        width: 1184em;
        bottom: 124px;
        left: 0;
        right: 0;
        justify-content: center;
        align-items: center;
        gap: 24em;
    }
    .mv_ttl_txt1 {
        width: calc((695/1184)*100%);
    }
    .mv_ttl_txt2 {
        width: calc((495/1184)*100%);
    }
    .mv_txt {
        font-size: 20px;
        bottom: 58px;
    }
}
@media (max-width: 900px) {
    .mv_content {
        min-height: calc(620rem - var(--header-height));
    }
    .mv_ttl {
        width: 334rem;
        left: 21rem;
        bottom: 54rem;
        flex-direction: column;
        gap: 13rem;
    }
    .mv_ttl_txt1 {
        width: 100%;
    }
    .mv_ttl_txt2 {
        width: 204rem;
    }
    .mv_txt {
        font-size: 11rem;
        bottom: 24rem;
    }
}
.animation_ready .mv_talent {
    transition-duration: 0.3s;
}
.animation_ready .mv_ttl_txt {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: clip-path 0.3s 0.6s;
}
.animation_ready .mv_ttl_txt2 {
    transition-delay: 1.1s;
}
.animation_ready.animation_loaded .mv_ttl_txt {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.animation_ready .mv_txt {
    transition-delay: 1.5s;
}

/* lead */
.lead {
    background-color: var(--color-white);
    overflow: hidden;
}
.lead_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lead_ttl {
    line-height: 0;
    position: relative;
}
.lead_ttl_word {
    position: absolute;
    line-height: 0;
    display: block;
}
.lead_txt {
    display: flex;
    flex-direction: column;
    word-break: keep-all;
    overflow-wrap: anywhere;
}
.lead_logo {
    line-height: 0;
}
@media (min-width: 901px) {
    .lead { 
        padding-block: 128px 185px;
    }
    .lead_content {
        padding-inline: 64px;
    }
    .lead_txt {
        gap: 65px;
    }
    .lead_txt_block {
        font-size: 26px;
        line-height: calc(52/26);
        letter-spacing: 0.035em;
    }
    .lead_ttl {
        font-size: var(--font-vw);
        width: 641px;
        margin-top: 113px;
    }
    .lead_ttl_word {
        top: -29px;
        width: 10px;
    }
    .lead_ttl_word_n {
        left: 0;
    }
    .lead_ttl_word_g {
        left: 213px;
    }
    .lead_ttl_word_k {
        left: 391px;
    }
    .lead_logo {
        width: 248px;
        margin-top: 88px;
    }
}
@media (max-width: 900px) {
    .lead {
        padding-block: 80rem 108rem;
    }
    .lead_ttl { 
        width: 320rem;
        margin-top: 66rem;
    }
    .lead_ttl_word {
        top: -20rem;
        width: 8rem;
    }
    .lead_ttl_word_n {
        left: 0;
    }
    .lead_ttl_word_g {
        left: 106rem;
    }
    .lead_ttl_word_k {
        left: 195rem;
    }
    .lead_txt {
        padding-inline: 30rem 20rem;
        gap: 30rem;
        width: 100%;
    }
    .lead_txt_block {
        font-size: 15rem;
        line-height: calc(28.5/15);
        letter-spacing: 0.035em;
    }
    .lead_logo {
        width: 190rem;
        margin-top: 51rem;
    }
}
.animation_ready .lead_ttl {
    scale: 2;
    opacity: 0;
    transition: scale 0.5s, opacity 0.5s;
}
.animation_ready.animation_loaded .lead_ttl.is_active {
    scale: 1;
    opacity: 1;
}
.animation_ready .lead_ttl_word {
    opacity: 0;
    transition: opacity 0.5s 0.6s;
}
.animation_ready.animation_loaded .lead_ttl.is_active .lead_ttl_word {
    opacity: 1;
}


/* about */
.about {
    overflow: clip;
}
.about_inner {
    background-color: var(--color-blue);
}
.about_content {
    position: relative;
    overflow: clip;
}
.about_ttl {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}
.about_ttl_txt {
    display: block;
    line-height: 1;
}
.about_keywords {
    width: 100%;
    position: relative;
}
@media (min-width: 901px) {
    .about {
        margin-top: -100vh;
        font-size: var(--font-vw);
        --chara-h: 196px;
    }
    .about_content {
        padding: 82em 63em 0;
    }
    .about_ttl {
        gap: 26em;
        letter-spacing: 0.045em;
    }
    .about_ttl_s {
        font-size: 34em;
    }
    .about_ttl_l {
        font-size: 50em;
    }
    .about_keywords {
        font-size: var(--font-vw);
        width: 1323em;
        height: 535em;
        position: absolute;
        bottom: calc(100% - 535em);
        left: calc(50% - 661.5em);
        right: 0;
        margin-inline: auto;
    }
     .about_sticky {
        width: 100%;
        height: 100vh;
        max-width: 1440px;
        position: sticky;
        top: 0;
        inset: 0;
        margin-inline: auto;
     }
     .about_chara {
        width: 190px;
        height: var(--chara-h);
        position: absolute;
        bottom: calc(50% - calc(var(--chara-h) / 2));
        inset-inline: 0;
        margin-inline: auto;
     }
     .about_chara_img_active {
        width: 176px;
        margin-inline: auto;
     }
     .about_chara_img {
        position: relative;
        z-index: 1;
     }
     .about_chara_trigger {
        width: 100%;
        height: var(--chara-h);
        margin-top: 72em;
     }
     .about_anime_area {
        height: 300vh;
     }
     .about_chara:not(.end) .about_chara_img_end {
        display: none;
     }
     .about_chara.end .about_chara_img_active {
        display: none;
     }
}
@media (max-width: 900px) {
    .about_content {
        padding: 70rem 15rem 0;
    }
    .about_ttl {
        gap: 10rem;
        letter-spacing: 0.045em;
    }
    .about_ttl_s {
        font-size: 14rem;
    }
    .about_ttl_l {
        font-size: 21rem;
    }
    .about_keywords {
        height: calc(744rem + 178rem);
        padding-bottom: 178rem;
        margin-top: 140rem;
    }
    .about_chara_sp {
        position: sticky;
        width: 100%;
        height: 100svh;
        top: 0;
        left: 0;
        margin-top: calc(-196rem - 115rem - 50svh);
        z-index: 2;
    }
    .about_chara_img {
        position: absolute;
        bottom: calc(50% - 77rem);
        left: 0;
        right: 0;
        margin-inline: auto;
        display: block;
    }
    .about_chara_img_active {
        width: 138rem;
        height: 154rem;
    }
    .about_chara_img_end {
        width: 158rem;
    }
    .about_chara_trigger {
        width: 100%;
        height: 196rem;
     }
     .about_chara_sp:not(.end) .about_chara_img_end {
        display: none;
     }
     .about_chara_sp.end .about_chara_img_active {
        display: none;
     }
}
.animation_ready .about_chara_img {
    translate: 0 50%;
    opacity: 0;
    transition: opacity 0.3s, translate 0.5s var(--ease-back);
}
.animation_ready.animation_loaded .about_chara_img.is_active {
    opacity: 1;
    translate: 0;
}

.about_keywords_svg {
    overflow: visible;
}
.about_keywords_group_base {
    fill: none;
}
.about_keywords_word_bg {
    fill: #fff;
}
.about_keywords_word_txt {
    fill: #0073c3;
}
.animation_ready .about_keywords_word {
    transform-box: fill-box;
    transform-origin: center;
}
@media (max-width: 900px) {
    .animation_ready .about_keywords_word {
        transform: scale(0); /* scale: 0;だとsafariで効かなかった */
        opacity: 0;
        transform-box: fill-box;
        transform-origin: center bottom;
        transition: opacity 0.5s var(--ease-back), transform 0.5s var(--ease-back);
        will-change: opacity, transform;
    }
    .animation_ready.animation_loaded .about_keywords_word.is_active {
        opacity: 1;
        transform: scale(1);
    }
}


/* communication */
.communication_content {
    display: flex;
    flex-direction: column;
}
.communication_ttl {
    line-height: 1;
    text-align: center;
}
.communication_ttl_sub {
    text-align: center;
}
.communication_list {
    width: 100%;
    display: flex;
}
.movie_thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1280 / 720;
}
.movie_thumb_img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.movie_icon {
    position: absolute;
    inset: 0;
    margin: auto;
}
.movie_txt {
    line-height: 1;
    text-align: center;
}
@media (min-width: 901px) {
    .communication {
        padding-block: 147px 172px;
    }
    .communication_content {
        gap: 163px;
    }
    .communication_ttl {
        font-size: 38px;
        letter-spacing: 0.015em;
    }
    .communication_block {
        margin-top: 74px;
    }
    .communication_ttl_sub {
        font-size: 28px;
        margin-bottom: 36px;
    }
    .communication_list {
        max-width: 1128px;
        margin-inline: auto;
        padding-inline: 64px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 74px 42px;
    }
    .communication_list li {
        width: calc((100% - 43px) / 2);
    }
    .movie_icon {
        width: 59px;
    }
    .movie_txt {
        font-size: 20px;
        letter-spacing: 0.015em;
        margin-top: 30px;
    }
}
@media (max-width: 900px) {
    .communication {
        padding-block: 98rem 148rem;
    }
    .communication_content {
        gap: 141rem;
    }
    .communication_ttl {
        font-size: 30rem;
        letter-spacing: 0.015em;
    }
    .communication_block {
        margin-top: 47rem;
    }
    .communication_ttl_sub {
        font-size: 24rem;
        margin-bottom: 28rem;
    }
    .communication_list {
        padding-inline: 30rem;
        flex-direction: column;
        gap: 54rem;
    }
    .communication_list li {
        width: 100%
    }
    .movie_icon {
        width: 40rem;
    }
    .movie_txt {
        font-size: 14rem;
        letter-spacing: 0.015em;
        margin-top: 22rem;
    }
}
@media screen and (min-width: 768px) {
    @media (hover: hover) {
        .movie_thumb_img {
            transition: scale 0.3s;
        }
        .movie_thumb:hover .movie_thumb_img {
            scale: 1.1;
        }
    }
}

/* profile */
.profile {
    background-color: var(--color-blue);
}
.profile_ttl {
    text-align: center;
    line-height: 1;
    color: var(--color-white);
}
.profile_list {
    display: flex;
    flex-direction: column;
    margin-inline: auto;
}
.profile_list li {
    display: flex;
}
.profile_txt_area {
    color: var(--color-white);
}
.profile_name {
    line-height: 1;
}
.profile_txt {
    text-align: justify;
}
@media (min-width: 901px) {
    .profile {
        padding-block: 170px 230px;
    }
    .profile_content {
        padding-inline: 64px;
    }
    .profile_ttl {
        font-size: 38px;
    }
    .profile_list {
        width: min(784px, 100%);
        gap: 190px;
        margin-top: 132px;
    }
    .profile_list li {
        gap: 59px;
        justify-content: space-between;
        align-items: center;
    }
    .profile_img {
        width: 262px;
        min-width: 262px;
    }
    .profile_txt_area {
        max-width: 468px;
        width: 100%;
    }
    .profile_name {
        font-size: 32px;
        letter-spacing: 0.015em;
    }
    .profile_txt {
        font-size: 18px;
        letter-spacing: 0.025em;
        line-height: calc(34/18);
        margin-top: 38px;
    }
}
@media (max-width: 900px) {
    .profile {
        padding-block: 106rem 116rem;
    }
    .profile_ttl {
        font-size: 30rem;
    }
    .profile_list {
        align-items: center;
        gap: 95rem;
        margin-top: 64rem;
    }
    .profile_list li {
        gap: 34rem;
        flex-direction: column;
    }
    .profile_img {
        margin-inline: auto;
        width: 219rem;
    }
    .profile_txt_area {
        width: 267rem;
        margin-inline: auto;
    }
    .profile_name {
        font-size: 22rem;
        letter-spacing: 0.015em;
        text-align: center;
    }
    .profile_txt {
        font-size: 14rem;
        letter-spacing: 0.025em;
        line-height: calc(34/14);
        margin-top: 29rem;
    }
}

/* footer */
.footer_sns {
    display: flex;
    flex-direction: column;
}
.footer_sns_txt {
    line-height: 1;
    text-align: center;
}
.footer_sns_list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_policy_list {
    display: flex;
}
.footer_policy_list a {
    font-weight: 500;
}
.footer_copy {
    line-height: 1;
    text-align: center;
}
@media (min-width: 901px) {
    .footer {
        padding-block: 77px 84px;
    }
    .footer_sns {
        gap: 24px;
    }
    .footer_sns_txt {
        font-size: 15px;
    }
    .footer_sns_list {
        gap: 40px;
    }
    .sns_fb {
        width: 34px;
    }
    .sns_x {
        width: 28px;
    }
    .sns_line {
        width: 33px;
    }
    .footer_policy {
        margin-top: 78px;
    }
    .footer_policy_list {
        justify-content: center;
    }
    .footer_policy_list li + li a {
        border-left: 2px solid var(--color-blue);
    }
    .footer_policy_list a {
        font-size: 14px;
        letter-spacing: 0.025em;
        padding-inline: 32px;
    }
    .footer_copy {
        font-size: 13px;
        margin-top: 84px;
    }
}
@media (max-width: 900px) {
    .footer {
        padding-block: 51rem 44rem;
    }
    .footer_sns {
        gap: 29rem;
    }
    .footer_sns_txt {
        font-size: 15rem;
    }
    .footer_sns_list {
        gap: 32rem;
    }
    .sns_fb {
        width: 29rem;
    }
    .sns_x {
        width: 24rem;
    }
    .sns_line {
        width: 27rem;
    }
    .footer_policy {
        margin-top: 53rem;
    }
    .footer_policy_list {
        flex-direction: column;
        align-items: center;
        gap: 22rem;
    }
    .footer_policy_list a {
        font-size: 12rem;
        letter-spacing: 0.025em;
    }
    .footer_copy {
        font-size: 11rem;
        margin-top: 60rem;
    }
}
