@charset "utf-8";

/* loading */
.loading {
    background: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading_logo {
    display: none;
}

/* aside */
.aside {
    transition: opacity 0.4s, color 0.4s;
    opacity: 0;
    visibility: hidden;
}
.wrapper.aside_visible .aside {
    z-index: 10;
    opacity: 1;
    visibility: visible;
}
.wrapper.aside_visible .aside,
.wrapper.aside_visible .header_logo {
    color: var(--color-white);
}
.wrapper.aside_visible .menu_btn:not(.menu-active) .menu_btn_line {
    background-color: var(--color-white);
}
.aside_bottom_logo path {
    transition: fill 0.3s;
}
.wrapper.aside_visible .aside_bottom_logo path {
    fill: var(--color-white);
}

.wrapper.bg_white .aside,
.wrapper.bg_white .header_logo {
    color: var(--color-body);
}
.wrapper.bg_white .menu_btn:not(.menu-active) .menu_btn_line {
    background-color: var(--color-primary);
}
.wrapper.bg_white .aside_bottom_logo path {
    fill: var(--color-primary);
}
.wrapper.aside_visible .aside_nav_listitem_about .aside_nav_link {
    background-color: #fff;
    color: var(--color-primary);
}
.wrapper.bg_white .aside_nav_listitem_about .aside_nav_link {
    color: var(--color-primary);
}

.wrapper {
    padding-top: 0;
}

.top_section_inner {
    width: 100%;
    margin-inline: auto;
}
.top_centering {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
}
.top_w100 {
    width: 100%;
}
.section {
    overflow-y: auto;
}
.top_max_882 {
    max-width: 882px;
}
.top_section_ttl {
    font-size: 64px;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: uppercase;
}
.top_section_scroll_center {
    text-align: center;
}
.top_section_scroll {
    border: none;
    text-decoration: none;
    font-size: 24px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    padding-right: 20px;
    color: var(--color-tertiary);
    position: relative;
}
.about .top_section_scroll {
    color: var(--color-white);
}
.top_section_scroll svg {
    position: absolute;
    top: 3px;
    right: -6px;
    margin: auto;
}
@media (min-width: 767.01px) {
    @media (min-width: 1440.01px) {
        .aside {
            left: calc(50% - 720px);
        }
    }
    .top_section_inner {
        max-width: 1440px;
        padding-left: calc(144px + 135px);
    }
    @media (max-width: 1180px) {
        .top_section_inner {
            padding-left: calc(144px + 95px);
            padding-right: 40px;
        }
    }
    .fullPageScroll {
        width: 100%;
        height: 100vh;
    }
    .section {
        width: 100%;
        height: 100vh;
        height: 100svh;
    }
}
@media (max-width: 767px) {
    .fullPageScroll {
        overflow: hidden;
    }
    .top_section_inner {
        padding-top: var(--header-height);
    }
    .top_section_wrap {
        min-height: calc(100svh - var(--header-height));
    }
    .section {
        overflow: hidden;
    }
    .section,
    .fp-tableCell {
        height: auto !important;
    }
}

/*------
   mv
-------*/
.mv {
    background-color: var(--color-white);
}
.mv_slide_inner {
    height: 100%;
}
.mv_top {
    max-width: 1440px;
    margin-inline: auto;
    display: flex;
    align-items: flex-end;
}
.mv_top_inner {
    position: relative;
    width: 100%;
}
.mv_catch_en {
    line-height: 1;
    letter-spacing: 0.02em;
}
.mv_catch_ja {
    font-size: 14px;
    letter-spacing: 0.16em;
    line-height: 1.5;
}
.mv_copy {
    position: absolute;
    right: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 12px;
}
.mv_contact_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-body);
    color: var(--color-white);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}
.mv_bottom {
    position: relative;
}
.mv_bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 0;

    background: url(../img/home/bg_mv.svg) no-repeat center top;
    background-size: cover;
}
.mv_project_scroll {
    height: 100%;
    overflow: hidden;
    display: flex;
    /* max-height: 500px; */
}
.mv_project_list {
    height: 100%;
    display: flex;
    will-change: transform;
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.mv_project_link {
    height: 100%;
    /* max-height: 500px; */
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 338 / 500;
}
.mv_project_kv {
    object-fit: cover;
    height: 100%;
    border-radius: 20px;
}
.mv_project_comment_wrap {
    position: absolute;
    bottom: 65px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 40px);
    gap: 0 12px;
}
.mv_project_creator {
    width: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-white);
}
.mv_project_comment {
    background-color: var(--color-white);
    font-size: 12px;
    padding: 8px 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    width: auto;
    opacity: 0;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 12%);
    max-width: calc(100% - 64px);
}
.mv_project_comment_inner {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.animation_loaded .mv_project_link:nth-child(1) .mv_project_comment {
    animation: fade 17s 0s forwards infinite;
}
.animation_loaded .mv_project_link:nth-child(2) .mv_project_comment {
    animation: fade 17s 5s forwards infinite;
}
.animation_loaded .mv_project_link:nth-child(3) .mv_project_comment {
    animation: fade 17s 15s forwards infinite;
}
.animation_loaded .mv_project_link:nth-child(4) .mv_project_comment {
    animation: fade 17s 10s forwards infinite;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    19% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.mv_project_tag {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    text-align: center;

    padding: 0 16px;
    line-height: 1;
}
.mv_project_tag_in {
    background-color: #080434;
    color: var(--color-white);
    font-size: 14px;
    border-radius: 50px;
    line-height: 1;
    padding: 7px 16px;
    display: inline-block;
    overflow: hidden;
}
.mv_project_tag_in > span {
    display: -webkit-inline-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

@media (min-width: 767.01px) {
    .mv_top {
        padding: 0 56px 32px;
        height: 480px;
        /* height: calc(100% - 550px); */
    }
    .mv_catch_en {
        font-size: 64px;
    }
    .mv_catch_ja {
        margin-top: 42px;
    }
    .mv_copy {
        top: -27px;
    }
    .mv_bottom {
        padding-bottom: 42px;
        height: calc(100% - 480px);
        /* height: 550px; */
    }
    .mv_project_comment {
        border-radius: 26px;
    }
    .mv_project_scroll,
    .mv_project_list {
        gap: 0 14px;
    }
    @media (max-width: 900px) {
        .mv_copy {
            top: 0;
        }
    }
    @media (max-height: 770px) {
        .mv_top {
            height: 340px;
        }
        .mv_catch_en {
            font-size: 48px;
        }
        .mv_bottom {
            height: calc(100% - 340px);
        }
    }
}
@media (max-width: 767px) {
    .mv_slide_inner {
        height: 100svh;
    }
    .mv_top {
        padding: 0 20px 24px;
        height: 374px;
    }
    .mv_catch_en {
        font-size: 36px;
    }
    .mv_catch_ja {
        margin-top: 20px;
    }
    .mv_contact_btn {
        display: none;
    }
    .mv_copy {
        right: 0;
        top: 60px;
    }
    .mv_project_comment_wrap {
        align-items: flex-end;
    }
    .mv_bottom {
        padding-bottom: 24px;
        height: calc(100% - 374px);
    }
    .mv_bottom::before {
        bottom: -2px;
    }
    .mv_project_comment {
        border-radius: 16px;
    }
    .mv_project_scroll,
    .mv_project_list {
        gap: 0 24px;
    }
    @media (max-height: 620px) {
        .mv_top {
            height: 330px;
        }
        .mv_bottom {
            height: calc(100% - 330px);
        }
        .mv_project_creator {
            width: 26px;
        }
        .mv_project_comment_wrap {
            bottom: 50px;
            width: calc(100% - 20px);
            right: 10px;
        }
        .mv_project_comment {
            max-width: calc(100% - 38px);
        }
        .mv_project_tag {
            padding: 0 10px;
            bottom: 10px;
        }
    }
}
@media (orientation: landscape) and (max-height: 450px) {
    /* ここに横向きのデバイスに適用するスタイルを書く */
    .mv_slide_inner {
        height: 600px;
    }
}

/*------
   about
-------*/
.about {
    background: var(--color-primary) url(../img/home/bg_about.jpg) repeat;
    color: var(--color-white);
}
.about_cive {
    display: flex;
    justify-content: center;
}
.about_cive_en {
    font-size: 16px;
    letter-spacing: 0.08em;
}
.about_cive_ja {
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-top: 24px;
    line-height: calc(22 / 14);
}
@media (min-width: 767.01px) {
    .about_cive {
        gap: 0 120px;
    }
    .about .top_section_inner,
    .about .top_centering,
    .about .top_w100,
    .about .top_max_882 {
        height: 100%;
    }
    .about .top_section_wrap {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 120px 0;
    }
}
@media (max-width: 767px) {
    .about_cive {
        flex-direction: column;
        gap: 40px 0;
    }
    .about .top_section_wrap {
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/*------
   vision
-------*/
.vision {
    background-color: #fff;
}
.vision_subttl {
    text-align: center;
}
.vision_txt {
    text-align: center;
    font-size: 18px;
    line-height: calc(23 / 18);
    letter-spacing: 0.04em;
}
.vision_subttl_word {
    display: inline-block;
}
@media (min-width: 767.01px) {
    .vision_subttl {
        font-size: 40px;
        line-height: calc(60 / 40);
    }
    .vision_txt {
        margin-top: 52px;
    }
    .vision_img {
        margin-top: 80px;
        width: 100%;
    }
    .vision .top_section_scroll_area {
        margin-top: 70px;
        margin-bottom: 110px;
    }
}
@media (max-width: 767px) {
    .vision_subttl {
        font-size: 28px;
        line-height: calc(44 / 28);
    }
    .vision_txt {
        margin-top: 32px;
    }
    .vision_img {
        margin-top: 32px;
        height: 185px;
        width: auto;
        max-width: none;
    }
    .vision .top_section_scroll_area {
        margin-top: 44px;
        margin-bottom: 36px;
    }
}

/*------
   mission
-------*/
.body_medium {
    font-size: 14px;
    line-height: calc(25 / 14);
    letter-spacing: 0.02em;
}

.mission_inner {
    display: flex;
}
.mission_subttl {
    font-size: 30px;
    letter-spacing: -0.02em;
    line-height: calc(42 / 30);
}
.js_scale_area.yoko {
    transform-origin: center center;
}
.js_scale_area.tate {
    transform-origin: center 0;
}
@media (min-width: 767.01px) {
    .js_scale_area {
        padding: 40px 0;
    }
    .mission_txt_wrap {
        width: 54%;
    }
    .mission_img {
        width: 46%;
        padding-left: 52px;
    }
    .mission_txt {
        margin-top: 40px;
    }
    .mission .top_section_scroll_area {
        margin-top: 64px;
        margin-bottom: 46px;
    }

    @media (max-width: 900px) {
        .mission_inner {
            flex-direction: column;
            margin-top: 40px;
            gap: 40px 0;
        }
        .mission_txt_wrap {
            width: 100%;
        }
        .mission_img {
            width: 100%;
            padding-left: 0;
            text-align: center;
        }
    }
}
@media (max-width: 767px) {
    .mission_inner {
        flex-direction: column;
    }
    .mission_txt {
        margin-top: 28px;
    }
    .mission_img {
        margin-top: 28px;
        text-align: center;
    }
    .mission .top_section_wrap {
        padding: 0 20px;
    }
    .mission .top_section_scroll_area {
        margin-top: 48px;
        margin-bottom: 80px;
    }
}

/*------
 values01 
------*/
.values01_inner {
    display: flex;
    align-items: center;
    overflow-y: auto;
}
.values01_num_wrap {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.values01_num_num {
    font-size: 16px;
}
.values01_num_txt {
    font-size: 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 24px;
}

@media (min-width: 767.01px) {
    .values01_txt_wrap {
        width: 54%;
    }
    .values01_img {
        width: 46%;
        padding-left: 52px;
    }
    .values01_ttl {
        font-size: 30px;
        letter-spacing: -0.02em;
        margin-top: 28px;
    }
    .values01_txt {
        margin-top: 40px;
    }
    .values01 .top_section_scroll_area {
        margin-top: 116px;
        margin-bottom: 130px;
    }
    @media (max-width: 900px) {
        .values01_inner {
            flex-direction: column;
            margin-top: 44px;
        }
        .values01_txt_wrap {
            width: 100%;
        }
        .values01_txt {
            margin-top: 28px;
        }
        .values01_img {
            width: 100%;
            margin-top: 28px;
            padding-left: 0;
            text-align: center;
        }
    }
}

@media (max-width: 767px) {
    .values01_wrap {
        padding: 40px 20px;
    }
    .values01_inner {
        flex-direction: column;
    }
    .values01_ttl {
        font-size: 30px;
        letter-spacing: -0.02em;
        margin-top: 20px;
    }
    .values01_txt {
        margin-top: 28px;
    }
    .values01_img {
        margin-top: 28px;
    }
    .values01 .top_section_wrap {
        padding: 0 20px;
    }
    .values01 .top_section_scroll_area {
        margin-top: 48px;
        margin-bottom: 80px;
    }
}

/*------
 values02 
------*/
.values02_inner {
    display: flex;
    align-items: center;
}
.values02_num_wrap {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.values02_num_num {
    font-size: 16px;
}
.values02_num_txt {
    font-size: 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 24px;
}

@media (min-width: 767.01px) {
    .values02_txt_wrap {
        width: 54%;
    }
    .values02_img {
        width: 46%;
        padding-left: 52px;
    }
    .values02_ttl {
        font-size: 30px;
        letter-spacing: -0.02em;
        margin-top: 28px;
    }
    .values02_txt {
        margin-top: 40px;
    }
    .values02 .top_section_scroll_area {
        margin-top: 116px;
        margin-bottom: 130px;
    }
    @media (max-width: 900px) {
        .values02_inner {
            flex-direction: column;
            margin-top: 44px;
        }
        .values02_txt_wrap {
            width: 100%;
        }
        .values02_txt {
            margin-top: 28px;
        }
        .values02_img {
            width: 100%;
            margin-top: 28px;
            padding-left: 0;
            text-align: center;
        }
    }
}
@media (max-width: 767px) {
    .values02_wrap {
        padding: 40px 20px;
    }
    .values02_inner {
        flex-direction: column;
    }
    .values02_ttl {
        font-size: 30px;
        letter-spacing: -0.02em;
        margin-top: 20px;
    }
    .values02_txt {
        margin-top: 28px;
    }
    .values02_img {
        margin-top: 28px;
    }
    .values02 .top_section_wrap {
        padding: 0 20px 40px;
    }
    .values02 .top_section_scroll_area {
        margin-top: 44px;
    }
}

/* animation */
.top_section_ttl,
.about_cive,
.top_section_scroll,
.top_section_scroll_area {
    transition: opacity 0.6s;
    opacity: 0;
}
.is-visible .top_section_ttl,
.is-visible .about_cive,
.is-visible .top_section_scroll,
.is-visible .top_section_scroll_area {
    opacity: 1;
}
@media (min-width: 767.01px) {
    .top_section_ttl {
        transition-delay: 0s;
    }
    .about_cive {
        transition-delay: 0.6s;
    }
    .top_section_scroll {
        transition-delay: 0.6s;
    }
    .top_section_scroll_area {
        transition-delay: 0.6s;
    }
}

@media (max-width: 767px) {
    .top_section_ttl {
        transition-delay: 0s;
    }
    .about_cive {
        transition-delay: 0.4s;
    }
    .top_section_scroll {
        transition-delay: 0.4s;
    }
    .top_section_scroll_area {
        transition-delay: 0.4s;
    }
}

.values02 .top_section_inner {
    position: relative;
}
.footer {
    margin-top: 0;
    padding-left: 0;
}

@media (min-width: 767.01px) {
    .footer {
        position: absolute;
        bottom: 0;
        right: 0;
        padding-right: 40px;
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .footer {
        width: 100%;
        margin-left: 0;
        padding: 24px 20px;
    }
}

@media (min-width: 767.01px) {
    .concept_sheet {
        padding-inline: 0;
    }
}
