.work_grid,
.work_main,
.voice_more,
.job_grid,
.job_more,
.data_grid,
.data_lists,
.commit_lists .item_link {
    display: flex;
}

.work_grid,
.job_grid,
.data_grid,
.commit_lists .item_link {
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .work_grid,
    .job_grid,
    .data_grid,
    .commit_lists .item_link {
        flex-direction: row;
    }
    .work_grid.reverse {
        flex-direction: row-reverse;
    }
}
.mv_cover_photo img {
    object-fit: cover;
}

.qa_lists .item_q::before,
.data_lists .item_number .num {
    font-family: "Roboto Condensed", sans-serif;
}

.data_lists .item_number {
    font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
    .data_lists .item_number {
        font-size: 1.7rem;
    }
}

.work_lists li,
.data_lists .item_det {
    font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
    .work_lists li,
    .data_lists .item_det {
        font-size: 2rem;
    }
}

.qa_lists .item_q::before,
.job_more .item_link,
.intro_txt {
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .qa_lists .item_q::before,
    .job_more .item_link,
    .intro_txt {
        font-size: 2.4rem;
    }
}

.intro_heading,
.commit_lists .item_title {
    font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
    .intro_heading,
    .commit_lists .item_title {
        font-size: clamp(
            2.6rem,
            calc(2.6rem + 0.0048076923 * (100vw - 768px)),
            3rem
        );
    }
}

.data_lists .item.item_01 .item_number .num {
    font-size: 2.6rem;
}
@media only screen and (min-width: 768px) {
    .data_lists .item.item_01 .item_number .num {
        font-size: clamp(
            3.6rem,
            calc(3.6rem + 0.0072115385 * (100vw - 768px)),
            4.2rem
        );
    }
}

.data_lists .item_number .num {
    font-size: 2.6rem;
}
@media only screen and (min-width: 768px) {
    .data_lists .item_number .num {
        font-size: clamp(
            3.6rem,
            calc(3.6rem + 0.0084134615 * (100vw - 768px)),
            4.3rem
        );
    }
}

.mv_heading,
.job_more .item_link,
.intro_heading,
.intro_txt,
.data_lists .item_number,
.commit_lists .item_title {
    font-weight: 900;
}

.mv_cover_photo img {
    width: 100%;
    height: 100%;
}

.commit {
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .commit {
        margin-top: 104px;
    }
}
.commit_lists {
    margin-top: 30px;
}
@media only screen and (min-width: 768px) {
    .commit_lists {
        margin-top: 70px;
    }
}
.commit_lists .item {
    width: 100%;
    display: block;
}
@media only screen and (min-width: 768px) {
    .commit_lists .item:last-child .item_content {
        border-bottom: 1px solid #7d7c7c;
    }
}
.commit_lists .item_link {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .commit_lists .item_link {
        gap: 20px;
    }
    .commit_lists .item_link:hover .item_photo img {
        scale: 1.05 1.05;
    }
    .commit_lists .item_link:hover .item_content {
        opacity: 0.6;
    }
}
.commit_lists .item_photo {
    width: 100%;
    aspect-ratio: 1.45;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    .commit_lists .item_photo {
        width: 50%;
    }
}
.commit_lists .item_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 300ms ease;
}
.commit_lists .item_content {
    width: 100%;
    padding: 16px 50px 24px 0;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .commit_lists .item_content {
        width: 560px;
        width: calc(50% - 20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 22px 90px 20px 0;
        border-top: 1px solid #7d7c7c;
        transition: 300ms ease;
    }
}
@media only screen and (min-width: 1025px) {
    .commit_lists .item_content {
        padding-left: 60px;
    }
}
.commit_lists .item_content::after {
    content: "";
    width: 26px;
    aspect-ratio: 1;
    background-image: url("./../images/common/icon_arrow_right.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
}
@media only screen and (min-width: 768px) {
    .commit_lists .item_content::after {
        width: 42px;
        background-size: 40px 40px;
        right: 28px;
    }
}
.commit_lists .item_box {
    width: 360px;
    max-width: 100%;
}
.commit_lists .item_title {
    line-height: 1.5;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .commit_lists .item_title {
        margin-bottom: 27px;
    }
}

.data {
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .data {
        margin-top: 100px;
    }
}
.data .btn_view_more {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .data .btn_view_more {
        margin-top: 37px;
        margin-left: 0;
    }
}
.data_grid {
    gap: 20px;
    flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
    .data_grid {
        justify-content: space-between;
    }
}
@media only screen and (min-width: 768px) {
    .data_header {
        width: calc(46.5517241379% - 20px);
        width: clamp(46.5517241379% - 20px, (1024px - 100vw) * 1000, 100%);
    }
}
@media only screen and (min-width: 1025px) {
    .data_header {
        padding-top: 51px;
    }
}
.data_header .txt {
    margin-top: 12px;
}
@media only screen and (min-width: 768px) {
    .data_header .txt {
        max-width: calc(100% - 50px);
        margin-top: 37px;
    }
}
@media only screen and (min-width: 768px) {
    .data_body {
        width: 48.275862069%;
        width: clamp(48.275862069%, (1024px - 100vw) * 1000, 100%);
    }
}
.data_lists {
    flex-wrap: wrap;
    gap: 10px;
}
@media only screen and (min-width: 768px) {
    .data_lists {
        gap: 40px;
    }
}
.data_lists .item {
    --icon-size: 60px;
    --icon-top: 0px;
    width: calc(50% - 5px);
    background-color: #f5f5f5;
    padding: 10px;
}
@media only screen and (min-width: 768px) {
    .data_lists .item {
        --icon-size: 86px;
        width: calc(50% - 20px);
        padding: 30px 10px 23px;
    }
}
.data_lists .item .title_el {
    line-height: 1.3333333333;
}
.data_lists .item_icon {
    width: var(--icon-size);
    height: var(--icon-size);
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .data_lists .item_icon {
        width: var(--icon-size);
        height: var(--icon-size);
    }
}
.data_lists .item_icon img {
    width: 70px;
    position: absolute;
    top: calc(50% + var(--icon-top));
    left: 50%;
    translate: -50% -50%;
}
@media only screen and (min-width: 768px) {
    .data_lists .item_icon img {
        width: 101px;
    }
}
.data_lists .item_number {
    line-height: 1.4705882353;
    text-align: center;
    color: #c40018;
    margin-top: 7px;
}
.data_lists .item_number .num {
    font-weight: 700;
    line-height: 1.2093023256;
    padding-right: 4px;
}
.data_lists .item_det {
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    color: #8e8e8e;
}
@media only screen and (min-width: 768px) {
    .data_lists .item_det {
        margin-top: 1px;
    }
}
@media only screen and (min-width: 768px) {
    .data_lists .item.item_03 {
        --icon-size: 77px;
        --icon-top: -4px;
    }
}
.enjoy {
    margin-top: 60px;
}
@media only screen and (min-width: 768px) {
    .enjoy {
        margin-top: 119px;
    }
}
.enjoy_grid {
    display: flex;
    gap: 40px 0;
    flex-direction: column;
}
@media only screen and (min-width: 1005px) {
    .enjoy_grid {
        align-items: center;
        flex-direction: row;
        margin-left: -20px;
        margin-right: -20px;
        padding-right: 20px;
    }
}
.enjoy_photo {
    margin-left: -20px;
    margin-right: -20px;
}
@media only screen and (min-width: 1005px) {
    .enjoy_photo {
        width: 55.6962025316%;
        margin: 0;
    }
}
.enjoy_main {
    width: 100%;
}
@media only screen and (min-width: 1005px) {
    .enjoy_main {
        width: 644px;
        max-width: 44.3037974684%;
        padding-top: 3px;
        padding-left: 48px;
        padding-right: 44px;
    }
}
@media only screen and (min-width: 1201px) {
    .enjoy_main {
        padding-left: 110px;
    }
}
.enjoy_main .txt {
    margin-top: 24px;
}
@media only screen and (min-width: 1005px) {
    .enjoy_main .txt {
        margin-top: 37px;
    }
}

.intro {
    position: relative;
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .intro {
        margin-top: 100px;
    }
}
.intro_heading {
    line-height: 1.0666666667;
}
@media only screen and (min-width: 768px) {
    .intro_heading {
        text-align: center;
    }
}
.intro_txt {
    line-height: 1.6;
    margin-top: 24px;
}
@media only screen and (min-width: 768px) {
    .intro_txt {
        text-align: center;
    }
}
@media only screen and (min-width: 768px) {
    .intro_txt + .intro_txt {
        margin-top: 39px;
    }
}
.intro_more {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .intro_more {
        margin-top: 38px;
    }
}
.intro_more.is_open .icon::after {
    opacity: 0;
}
.intro_more.is_open .txt_close {
    display: block;
}
.intro_more.is_open .txt_open {
    display: none;
}
.intro_more .txt_close {
    display: none;
}
.job {
    background-color: #fef2f2;
    margin-top: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
    .job {
        margin-top: 100px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.job_grid {
    gap: 24px 32px;
    flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
    .job_header {
        width: 568px;
        max-width: 48.9655172414%;
    }
}
@media only screen and (min-width: 1025px) {
    .job_header {
        padding-top: 89px;
    }
}
.job_photo {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .job_photo {
        width: 560px;
        max-width: calc(51.0344827586% - 32px);
    }
}
.job_txt {
    margin-top: 16px;
}
@media only screen and (min-width: 768px) {
    .job_txt {
        margin-top: 29px;
    }
}
.job_more {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}
@media only screen and (min-width: 768px) {
    .job_more {
        gap: 20px 40px;
        margin-top: 38px;
    }
}
.job_more .item {
    width: calc(50% - 5px);
}
@media only screen and (min-width: 768px) {
    .job_more .item {
        width: calc(50% - 20px);
    }
}
@media only screen and (min-width: 1025px) {
    .job_more .item {
        width: calc(33.33% - 27px);
    }
}
.job_more .item_link {
    line-height: 1.6;
    height: 54px;
    background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px;
}
@media only screen and (min-width: 768px) {
    .job_more .item_link {
        height: 80px;
        padding: 20px;
        transition: 300ms linear;
    }
    .job_more .item_link:hover {
        color: #fff;
        background-color: #c40018;
    }
    .job_more .item_link:hover::after {
        opacity: 0;
    }
}
.job_more .item_link::before,
.job_more .item_link::after {
    content: "";
    width: 26px;
    aspect-ratio: 1;
    background-image: url("./../images/common/icon_arrow_right.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
}
@media only screen and (min-width: 768px) {
    .job_more .item_link::before,
    .job_more .item_link::after {
        width: 32px;
        right: 18px;
        background-size: 30px 30px;
        transition: opacity 300ms linear;
    }
}
.job_more .item_link::before {
    background-image: url("./../images/common/icon_arrow_right_w.svg");
}

.mv {
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
}
@media only screen and (min-width: 768px) {
    .mv {
        margin: 0;
    }
}
.mv_main {
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.mv_cover {
    pointer-events: none;
}
.mv_cover_photo {
    width: 100%;
    position: relative;
    opacity: 0.84;
}
.mv_heading {
    font-size: 2.8rem;
    line-height: 1.46875;
    color: #fff;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .mv_heading {
        font-size: clamp(
            4rem,
            calc(4rem + 0.0288461538 * (100vw - 768px)),
            6.4rem
        );
        left: calc(10% - 5px);
        bottom: calc(16% + 1px);
    }
}

.qa {
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .qa {
        margin-top: 100px;
    }
}
.qa_lists {
    margin-top: 24px;
}
@media only screen and (min-width: 768px) {
    .qa_lists {
        margin-top: 31px;
    }
}
.qa_lists .item {
    border-bottom: 1px solid #c3c3c3;
}
.qa_lists .item_q {
    position: relative;
    padding-top: 14px;
    padding-right: 40px;
    padding-bottom: 14px;
    display: flex;
    align-items: flex-start;
}
@media only screen and (min-width: 768px) {
    .qa_lists .item_q {
        padding-top: 27px;
        padding-bottom: 30px;
        padding-right: 80px;
        cursor: pointer;
        transition: opacity 300ms linear;
    }
    .qa_lists .item_q:hover {
        opacity: 0.6;
    }
}
.qa_lists .item_q::before {
    content: "Q";
    width: 24px;
    font-weight: 700;
    line-height: 1.2083333333;
    color: #c40018;
    flex-shrink: 0;
    position: relative;
    top: 3px;
}
@media only screen and (min-width: 768px) {
    .qa_lists .item_q::before {
        width: 37px;
    }
}
.qa_lists .item_q.is_open .icon::after {
    content: "";
    opacity: 0;
}
.qa_lists .item_q .icon {
    width: 24px;
    height: 24px;
    border-radius: 99px;
    border: 1px solid #c40018;
    position: absolute;
    top: 52%;
    right: 0;
    translate: 0 -50%;
}
@media only screen and (min-width: 768px) {
    .qa_lists .item_q .icon {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
}
.qa_lists .item_q .icon::before,
.qa_lists .item_q .icon::after {
    content: "";
    width: 8px;
    height: 1px;
    background-color: #c40018;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media only screen and (min-width: 768px) {
    .qa_lists .item_q .icon::before,
    .qa_lists .item_q .icon::after {
        width: 16px;
        height: 2px;
    }
}
.qa_lists .item_q .icon::after {
    content: "";
    rotate: 90deg;
}
.qa_lists .item_a {
    padding-left: 24px;
    padding-right: 40px;
    padding-bottom: 14px;
}
@media only screen and (min-width: 768px) {
    .qa_lists .item_a {
        padding-left: 40px;
        padding-right: 80px;
        padding-bottom: 20px;
    }
}

.recruit {
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .recruit {
        margin-top: 100px;
    }
}

.voice {
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .voice {
        margin-top: 165px;
    }
}
@media only screen and (min-width: 768px) {
    .voice .heading_block .en {
        margin-bottom: 10px;
    }
}
.voice_grid {
    margin-top: 30px;
}
@media only screen and (min-width: 768px) {
    .voice_grid {
        margin-top: 52px;
    }
}
.voice_grid .item_avatar {
    aspect-ratio: 0.8235366783;
}
.voice_more {
    justify-content: center;
    margin-top: 40px;
}
@media only screen and (min-width: 768px) {
    .voice_more {
        margin-top: 60px;
    }
}

.work {
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .work {
        margin-top: 102px;
    }
}
.work_inner {
    padding-left: 20px;
    padding-right: 20px;
}
@media only screen and (min-width: 768px) {
    .work_inner {
        padding-left: 0;
        padding-right: 0;
    }
}
.work_grid {
    gap: 24px;
    flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
    .work_grid {
        gap: 0px;
    }
}
.work_photo {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .work_photo {
        width: 55%;
    }
}
.work_main {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .work_main {
        width: 45%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (min-width: 1025px) {
    .work_main {
        padding-top: 40px;
    }
}
.work_main .heading_block {
    margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
    .work_main .heading_block {
        margin-bottom: 37px;
    }
}
.work_main .txt {
    margin-top: 24px;
}
@media only screen and (min-width: 768px) {
    .work_main .txt {
        margin-top: 0;
    }
}
@media only screen and (min-width: 768px) {
    .work_content {
        width: 500px;
        max-width: 100%;
    }
}
.work_lists {
    margin-top: 10px;
}
@media only screen and (min-width: 768px) {
    .work_lists {
        margin-top: 17px;
    }
}
.work_lists li {
    font-weight: 400;
    line-height: 1.6;
    display: block;
    position: relative;
    padding-left: 18px;
}
@media only screen and (min-width: 768px) {
    .work_lists li {
        padding-left: 18px;
    }
}
.work_lists li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #c40018;
    border-radius: 99px;
    position: absolute;
    top: 0.5em;
    left: 0;
}
@media only screen and (min-width: 768px) {
    .work_lists li::before {
        width: 8px;
        height: 8px;
        top: 0.7em;
    }
}
.work .btn_view_more {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
    .work .btn_view_more {
        margin-left: 0;
    }
}
@media only screen and (min-width: 1025px) {
    .work.work_01 {
        margin-top: 174px;
    }
}
.work.work_01 .work_inner {
    margin-left: auto;
}
.work.work_01 .work_main {
    justify-content: flex-end;
}
@media only screen and (min-width: 1025px) {
    .work.work_01 .work_main {
        padding-right: 110px;
        padding-right: clamp(
            4rem,
            calc(4rem + 0.1861702128 * (100vw - 1024px)),
            11rem
        );
    }
}
@media only screen and (min-width: 768px) {
    .work.work_01 .btn_view_more {
        margin-top: 28px;
    }
}
@media only screen and (min-width: 1025px) {
    .work.work_02 .work_main {
        padding-top: 108px;
        padding-left: 110px;
        padding-left: clamp(
            4rem,
            calc(4rem + 0.1861702128 * (100vw - 1024px)),
            11rem
        );
    }
}
@media only screen and (min-width: 768px) {
    .work.work_02 .btn_view_more {
        margin-top: 37px;
    }
}
