@charset "utf-8";
/* =========================================================================================
LAYOUT
=========================================================================================*/
section h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-indent: -0.4em;
}
@media (max-width: 1024px) {
    body.home .container {
        width: calc(100% - 60px);
    }
    body.home .bg_text {
        font-size: 80px;
        white-space: nowrap;
        left: 50%;
        transform: translateX(-50%);
    }
    section h2 {
        font-size: 22px;
        text-align: center;
    }
}
/* =========================================================================================
main-visual
=========================================================================================*/
div.main-visual {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 30;
}
div.main-visual video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
    opacity: 1; /* 最初は表示 */
}
div.main-visual .container {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    z-index: 10;
}
div.main-visual strong {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-left: 10%;
}
div.main-visual .scroll {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    margin-left: calc((10% - 35px) / 2);
    font-size: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.main-visual .scroll .line {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 4px;
}
div.main-visual .scroll span {
    display: block;
    background: #fff;
}
div.main-visual .scroll span.thick {
    width: 5px;
    height: 22px;
    position: absolute;
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
div.main-visual .scroll span.thin {
    width: 1px;
    height: 108px;
}
@keyframes scroll {
    0% {
        top: 0;
        height: 0;
    }
    20% {
        height: 22px;
    }
    80% {
        height: 22px;
    }
    100% {
        top: 108px;
    }
}
/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
    div.main-visual {
        align-items: flex-end;
    }
    div.main-visual strong {
        font-size: 45px;
        margin-left: 20px;
        padding-bottom: 150px;
    }
    div.main-visual .scroll {
        margin-left: 7px;
        writing-mode: vertical-rl;
        flex-direction: row;
    }
    div.main-visual .scroll .line {
        margin-right: 3px;
    }
    div.main-visual .scroll span.thin {
        height: 70px;
    }
    div.main-visual .scroll span.thick {
        left: -2px;
    }
}

/* =========================================================================================
NEWS
=========================================================================================*/
section.index_news {
    background: var(--dark);
    padding: 60px 0 30vh;
    margin-bottom: -10px;
    z-index: 22;
}
section.index_news * {
    color: #fff;
}
section.index_news h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.4em;
    white-space: nowrap;
    letter-spacing: 0;
}
section.index_news .container {
    display: flex;
    align-items: flex-start;
}
section.index_news dl {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 0 40px;
    margin: 0 40px;
    display: flex;
    flex-wrap: wrap;
}
section.index_news dt:not(:last-of-type),
section.index_news dd:not(:last-of-type) {
    margin-bottom: 20px;
}
section.index_news dt {
    font-size: 15px;
    font-weight: 600;
    width: 110px;
    line-height: 1.8em;
}
section.index_news dd {
    font-size: 14px;
    width: calc(100% - 110px);
    line-height: 1.8em;
}
section.index_news a.more {
    border: 1px solid #fff;
}
section.index_news a.more:hover {
    background: var(--base);
    border: 1px solid var(--base);
}
section.index_news a.more::after {
    background-image: url(../images/common/arrow_l.svg);
}

/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
    section.index_news {
        padding: 34px 0 30vh;
    }
    section.index_news .container {
        flex-direction: column;
    }
    section.index_news h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    section.index_news dl {
        border: 0;
        margin: 0;
        padding: 0;
        display: block;
    }
    section.index_news dt:not(:last-of-type) {
        margin-bottom: 6px;
    }
    section.index_news dt {
        margin-bottom: 6px;
    }
    section.index_news dd {
        margin-bottom: 20px;
        width: 100%;
    }
}

/* =========================================================================================
SERVICE
=========================================================================================*/
section.index_service {
    background: #e8f3fc;
    display: block;
    position: static;
    overflow: hidden;
}
section.index_service .bg_text {
    opacity: 0.1;
}
section.index_service .title_block {
    position: absolute;
    height: auto !important;
    top: 0;
    width: 100vw;
}
section.index_service .bg {
    height: 500vh;
    position: relative;
    background: #39434d;
}
section.index_service .bg .block {
    height: 100vh;
}
section.index_service .bg .block .wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    /* top: 50%; */
    /*transform: translateY(-50%);*/
    padding-top: 240px;
}
section.index_service .title_container {
    padding: 130px 0 100px;
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
}
section.index_service h2 {
    color: #fff;
}
section.index_service .container {
    width: 100vw;
    height: 100vmax;
    min-height: 430px;
    max-height: calc(100vh - 300px);
    max-width: none;
    position: relative;
}
section.index_service .run .wrap {
    z-index: 20;
}
section.index_service .block01 {
    width: 80%;
    height: 100%;
    margin-right: -30%;
    position: absolute;
    left: -80%;
    transition: 0.8s ease-in-out;
}
section.index_service .block02 {
    position: absolute;
    right: -100%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.8s ease-in-out;
    z-index: 5;
}
section.index_service .reverse .block01 {
    right: -80%;
    left: auto;
    margin-left: -30%;
    margin-right: 0;
}
section.index_service .reverse .block02 {
    left: -100%;
    right: auto;
}
section.index_service .run .block01 {
    left: 0;
}
section.index_service .run .block02 {
    right: 0;
}
section.index_service .run .reverse .block01 {
    right: 0;
    left: auto;
}
section.index_service .run .reverse .block02 {
    left: 0;
    right: auto;
}
section.index_service .block01 img {
    height: 100%;
    object-fit: cover;
    object-position: center right;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
section.index_service .reverse .block01 img {
    object-position: center left;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
}
section.index_service h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}
section.index_service p {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin: 16px 0 34px;
}
section.index_service a.more {
    border: 1px solid #fff;
    color: #fff;
}
section.index_service a.more:hover {
    color: var(--base);
    background: #fff;
}
section.index_service a.more::after {
    background-image: url(../images/common/arrow_l.svg);
}
section.index_service a.more:hover::after {
    background-image: url(../images/common/arrow_b.svg);
}
section.index_service .block02 .img {
    width: 460px;
    position: absolute;
    top: -150px;
    left: 100vw;
    transition: 0.9s 0.1s ease-in-out;
    z-index: 5;
}
section.index_service .block02 .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 600 / 275;
    object-fit: cover;
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}
section.index_service .item1 .block02 .img img {
    object-position: left top;
}
section.index_service .reverse .block02 .img {
    top: -150px;
    right: 100vw;
    left: auto;
}
section.index_service .reverse .block02 .img img {
    clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}
section.index_service .run .block02 .img {
    left: 110px;
}
section.index_service .run .reverse .block02 .img {
    right: 110px;
    left: auto;
}
section.index_service .text {
    background-image: url(../images/index_service_textbg01.webp);
    background-size: cover;
    background-position: left;
    padding: 80px 5vw 40px 230px;
    width: 100vw;
    max-width: 50vw;
    min-height: 280px;
}
section.index_service .reverse .text {
    background-image: url(../images/index_service_textbg02.webp);
    background-position: right;
    padding: 80px 230px 40px 5vw;
}

/* ------------------ sp ---------------------------*/
@media (min-width: 1500px) {
    section.index_service .text {
        padding-right: calc((100vw - 1200px) / 2);
        padding-left: 280px;
    }
    section.index_service .reverse .text {
        padding-left: calc((100vw - 1200px) / 2);
        padding-right: 280px;
    }
    /* section.index_service .container {
        height: 640px;
    } */
    section.index_service .block02 .img,
    section.index_service .reverse .block02 .img {
        width: 600px;
        top: -230px;
    }
}
@media (max-width: 1024px) {
    section.index_service .title_block {
        left: 0;
    }
    section.index_service .title_container {
        padding: 120px 0 30px;
        margin: 0 auto;
    }
    section.index_service .container {
        width: 100% !important;
        min-height: 560px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    section.index_service .bg .block .wrap {
        padding-top: 0;
        /*max-height: calc(100vh - 210px);*/
        width: 100vw;
        bottom: 5vh;
    }
    section.index_service .block01 {
        width: 100%;
        height: 70%;
        margin-right: 0;
        top: 0;
        left: calc((100% + 220px) * -1);
    }
    section.index_service .reverse .block01 {
        right: calc((100% + 220px) * -1);
    }

    section.index_service .block01 img {
        object-position: center right;
        clip-path: none;
    }
    section.index_service .reverse .block01 img {
        object-position: center right;
        clip-path: none;
    }
    section.index_service .block02 {
        height: 260px;
        width: 100%;
        right: calc((100% + 580px) * -1);
    }
    section.index_service .reverse .block02 {
        left: calc((100% + 580px) * -1);
    }
    section.index_service .block02 .img {
        width: 255px;
        min-width: 0;
        top: -90px;
        z-index: 3;
    }
    section.index_service .reverse .block02 .img {
        top: -90px;
        left: auto;
        right: 100vw;
    }
    section.index_service .run .block02 .img {
        left: -20px;
    }
    section.index_service .run .reverse .block02 .img {
        right: -20px;
        left: auto;
    }
    section.index_service h3 {
        font-size: 28px;
    }
    section.index_service p {
        font-size: 15px;
    }
    section.index_service .text {
        padding: 0 40px 40px 250px;
        width: calc(100vw + 220px);
        max-width: none;
        margin-left: -220px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }
    section.index_service .reverse .text {
        padding: 0 250px 40px 30px;
        margin-right: -220px;
        margin-left: 0;
    }
}
@media (max-width: 415px) {
    section.index_service .bg .block .wrap {
        padding-top: 180px;
        bottom: 0;
    }
    section.index_service .container {
        height: calc(100vh - 180px);
        max-height: none;
        min-height: auto;
    }
    section.index_service .block01 {
        height: 55%;
    }
    section.index_service .block02 .img,
    section.index_service .reverse .block02 .img {
        top: -100px;
    }
    section.index_service .block01 img {
        object-position: center center;
    }
    section.index_service .block02 {
        height: auto;
    }
    section.index_service .block02 .img {
        width: 180px;
    }
    section.index_service .block02 .img img {
        aspect-ratio: 400 / 275;
        clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
    }
    section.index_service .reverse .block02 .img img {
        aspect-ratio: 400 / 275;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    }
    section.index_service .run .block02 .img {
        left: 0;
    }
    section.index_service .run .reverse .block02 .img {
        right: 0;
        left: auto;
    }
    section.index_service .text,
    section.index_service .reverse .text {
        padding-block: 30px 20px;
        min-height: 40vh;
        justify-content: center;
    }
    section.index_service p {
        margin-bottom: 20px;
    }
}

/* =========================================================================================
COMPANY・WORKS
=========================================================================================*/
/*company*/
section.index_company .container {
    margin-bottom: 200px;
}
/*works*/
section.index_works .container {
    margin-bottom: 50px;
}
/*共通*/
.works-company {
    background: var(--light);
    z-index: 11;
    padding-top: 10vh;
}
.works-company .container {
    display: flex;
    margin-top: 230px;
    position: relative;
    z-index: 2;
}
.works-company .bg_text {
    opacity: 0.8;
}
.works-company p {
    margin: 18px 0 35px;
}
.works-company .text {
    width: 25%;
    margin-right: 10%;
}
.works-company .img {
    width: 65%;
}
.works-company a.more {
    border: 1px solid var(--dark);
}
.works-company a.more:hover {
    border: 1px solid var(--base);
    background: var(--base);
    color: #fff;
}
.works-company a.more::after {
    background-image: url(../images/common/arrow_d.svg);
}
.works-company a.more:hover::after {
    background-image: url(../images/common/arrow_l.svg);
}
/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
    .works-company {
        padding-top: 0;
    }
    .works-companysection.index_company {
        padding-bottom: 70px;
    }
    .works-company .container {
        flex-direction: column;
        margin-top: 118px;
        margin-bottom: 0;
        align-items: center;
    }
    .works-company .text {
        width: 100%;
        margin-right: 0;
    }
    .works-company p {
        margin: 18px 0 20px;
    }
    .works-company .img {
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
    }
}

/* =========================================================================================
RECRUIT
=========================================================================================*/
section.index_recruit {
    background-image: url(../images/home/bg_b.webp);
    background-size: cover;
    background-position: center;
}
section.index_recruit .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 70px;
}
section.index_recruit h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 34px;
}
section.index_recruit h2 span {
    font-size: 200px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    display: block;
    line-height: 1.1em;
}
section.index_recruit a.more {
    background: #fff;
}
section.index_recruit a.more:hover {
    color: var(--base);
}
section.index_recruit a.more::after {
    background-image: url(../images/common/arrow_d.svg);
}
section.index_recruit a.more:hover::after {
    background-image: url(../images/common/arrow_b.svg);
}
/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
    section.index_recruit .container {
        padding: 30px 0 30px;
    }
    section.index_recruit h2 {
        margin-bottom: 20px;
    }
    section.index_recruit h2 span {
        font-size: 80px;
    }
}

/* =========================================================================================
INSTAGRAM
=========================================================================================*/
section.instagram .slider {
    width: 100%;
}
section.instagram .slider .slick-slider div {
    transition: none;
}
section.instagram .container {
    display: flex;
    justify-content: flex-end;
    padding: 200px 0 200px 10%;
    width: 100%;
    max-width: none;
    background: var(--light);
}
section.instagram .title {
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
}
section.instagram h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
section.instagram h2 span {
    font-size: 70px;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
}
section.instagram .insta_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 27px;
}
section.instagram .insta_link.pc_none {
    display: none;
}
section.instagram .insta_link p {
    letter-spacing: 0;
    margin-top: 10px;
}
section.instagram a {
    background: var(--dark);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
section.instagram a:hover {
    background: var(--base);
}
section.instagram a img {
    width: 38px;
    margin-bottom: 6px;
}
section.instagram .slider02 {
    max-width: 1320px;
    flex-shrink: 2;
    width: calc(100% - 350px);
}
section.instagram .slider02 .slick-list,
section.instagram .slider02 .slick-track {
    height: 100%;
}
section.instagram .container .img {
    width: 300px;
    margin-right: 30px;
}
section.instagram .container .img img {
    height: 100%;
    object-fit: cover;
}
/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
    section.instagram .container {
        flex-wrap: wrap;
        padding: 70px 20px 70px 32px;
        justify-content: space-between;
        width: 100vw;
    }
    section.instagram .title {
        width: 100%;
        margin-right: 0;
        justify-self: center;
    }
    section.instagram h2 {
        margin: 0 auto;
        align-items: center;
        margin-bottom: 20px;
        letter-spacing: 0.4em;
        font-size: 16px;
    }
    section.instagram h2 span {
        margin-bottom: 14px;
        font-size: 50px;
    }
    section.instagram .slider02 {
        width: 100%;
    }
    section.instagram .container .img {
        width: calc((100% - 24px) / 3);
        margin-right: 12px;
    }
    section.instagram .insta_link.pc_none {
        display: flex;
        margin: 0 auto;
        margin-top: 20px;
    }
    section.instagram .insta_link.sp_none {
        display: none;
    }
    section.instagram a {
        font-size: 11px;
        width: 86px;
        height: 86px;
    }
    section.instagram a img {
        width: 28px;
    }
}

/* =========================================================================================
CONTACT
=========================================================================================*/
section.index_contact {
    background-image: url(../images/home/contact_bg_pc.webp);
    background-size: cover;
    background-position: center;
    padding: 150px 0;
}
section.index_contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.index_contact h2 {
    font-size: 130px;
    color: #fff;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.1em;
}
section.index_contact p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0 50px;
}
section.index_contact .contact_buttton {
    display: flex;
}
section.index_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    font-weight: 700;
    padding: 18px;
    min-width: 300px;
    box-sizing: border-box;
}
section.index_contact a:hover {
    background: var(--base);
    color: #fff;
}
section.index_contact a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
section.index_contact a.mail::before {
    background-image: url(../images/common/icon_mail_d.svg);
}
section.index_contact a.tel::before {
    background-image: url(../images/common/icon_tel.svg);
}
section.index_contact a.mail:hover::before {
    background-image: url(../images/common/icon_mail_l.svg);
}
section.index_contact a.tel:hover::before {
    background-image: url(../images/common/icon_tel_l.svg);
}
section.index_contact a.tel {
    margin-left: 30px;
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
}
/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
    section.index_contact {
        padding: 70px 0;
        background-image: url(../images/home/contact_bg_sp.webp);
    }
    section.index_contact h2 {
        font-size: 60px;
    }
    section.index_contact p {
        font-size: 15px;
        text-align: center;
        padding: 14px 0 30px;
    }
    section.index_contact .contact_buttton {
        flex-direction: column;
    }
    section.index_contact a {
        font-size: 16px;
    }
    section.index_contact a.tel {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* =========================================================================================
++++++++++++++++++++++++++
=========================================================================================*/

/* ------------------ sp ---------------------------*/
@media (max-width: 1024px) {
}
