@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 * 1vw);
        --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: "Roboto Flex", sans-serif;
    color: var(--color-blue);
    font-weight: 700;
    font-feature-settings: "palt";
}
.content_inner {
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
}
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;
    }
}

/* 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;
    flex-direction: column;
}
.mv_ttl_txt {
    display: block;
    line-height: 0;
}
.mv_chara {
    position: absolute;
}
@media (min-width: 901px) {
    .mv_content {
        min-height: calc(710px - var(--header-height));
        font-size: var(--font-vw);
    }
    .mv_ttl {
        width: 924em;
        height: 337em;
        inset-block: 0;
        margin-block: auto;
        left: 102em;
    }
    .mv_ttl_txt1 {
        width: calc((646/924)*100%);
    }
    .mv_ttl_txt2 {
        width: calc((922/924)*100%);
        margin-top: 19em;
    }
    .mv_ttl_txt3 {
        width: calc((752/924)*100%);
        margin-top: 40em;
    }
    .mv_chara {
        top: calc(50% - 325em);
        right: 13em;
        width: 495em;
    }
}
@media (max-width: 900px) {
    .mv_content {
        min-height: calc(575rem - var(--header-height));
    }
    .mv_ttl {
        width: 316rem;
        height: 115rem;
        top: calc(50% - 206rem);
        left: 30rem;
    }
    .mv_ttl_txt1 {
        width: 221rem;
    }
    .mv_ttl_txt2 {
        width: 316rem;
        margin-top: 6rem;
    }
    .mv_ttl_txt3 {
        width: 257rem;
        margin-top: 14rem;
    }
    .mv_chara {
        top: calc(50% - 86rem);
        left: 60rem;
        width: 245rem;
    }
}
.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 .mv_ttl_txt3 {
    transition-delay: 1.6s;
}
.animation_ready.animation_loaded .mv_ttl_txt {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
/* 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_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: 173px 185px;
    }
    .lead_content {
        padding-inline: 64px;
    }
    .lead_txt {
        gap: 50px;
    }
    .lead_txt_block {
        font-size: 24px;
        line-height: calc(44/24);
        letter-spacing: -0.015em;
    }
    .lead_ttl {
        font-size: var(--font-vw);
        width: 635px;
        margin-top: 85px;
    }
    .lead_logo {
        width: 248px;
        margin-top: 88px;
    }
}
@media (max-width: 900px) {
    .lead {
        padding-block: 91rem 108rem;
    }
    .lead_ttl { 
        width: 309rem;
        margin-top: 63rem;
    }
    .lead_txt {
        padding-inline: 30rem 20rem;
        gap: 36rem;
        width: 100%;
    }
    .lead_txt_block {
        font-size: 16rem;
        line-height: calc(30/16);
        letter-spacing: -0.034em;
    }
    .lead_logo {
        width: 146rem;
        margin-top: 60rem;
    }
}
.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;
    color: var(--color-white);
    font-weight: 600;
}
.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: 120em 63em 0;
    }
    .about_ttl {
        font-size: 40em;
        letter-spacing: -0.005em;
    }
    .about_keywords {
        font-size: var(--font-vw);
        width: 1260em;
        height: 540em;
        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 {
        font-size: 24rem;
        line-height: calc(30/24);
        letter-spacing: -0.005em;
    }
    .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);
    }
}

/* profile */
.profile_list {
    display: flex;
    flex-direction: column;
    margin-inline: auto;
}
.profile_list li {
    display: flex;
}
.profile_txt_area {
    color: var(--color-blue);
}
.profile_name {
    line-height: 1;
}
@media (min-width: 901px) {
    .profile {
        padding-block: 170px 177px;
    }
    .profile_content {
        padding-inline: 64px;
    }
    .profile_list {
        width: min(791px, 100%);
        gap: 190px;
    }
    .profile_list li {
        gap: 57px;
        justify-content: space-between;
    }
    .profile_img {
        width: 262px;
        min-width: 262px;
    }
    .profile_txt_area {
        max-width: 473px;
        width: 100%;
    }
    .profile_name {
        font-size: 32px;
        letter-spacing: 0.015em;
    }
    .profile_txt {
        font-size: 15px;
        letter-spacing: 0.005em;
        line-height: calc(20/15);
        margin-top: 38px;
    }
}
@media (max-width: 900px) {
    .profile {
        padding-block: 97rem 71rem;
    }
    .profile_list {
        align-items: center;
        gap: 95rem;
    }
    .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: 15rem;
        letter-spacing: -0.015em;
        line-height: calc(20/15);
        margin-top: 34rem;
    }
}

/* 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: 600;
}
.footer_copy {
    line-height: 1;
    text-align: center;
    font-weight: 600;
}
@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;
    }
    .footer_copy {
        font-size: 11rem;
        margin-top: 60rem;
    }
}
