@charset "UTF-8";
/********************************************************************************

page-top.css　トップページcss

********************************************************************************/

/*============================================================
 common調整
*============================================================*/
/* フッター前余白
---------------------------------------- */
#page-top #main-contents {
    padding-bottom: 40px;
}

/*============================================================
 メインビジュアル
*============================================================*/
#page-top #mainvisual {
    --mv-min-height: 640px;

    height: var(--common-vh);
    min-height: var(--mv-min-height);
    padding: 0;
    position: relative;
    margin-bottom: 120px;
}
#page-top #mainvisual .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
#page-top #mainvisual .bg video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#page-top #mainvisual .bg [class^="mask"] {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#page-top #mainvisual .bg .mask1 {
    background-color: #2E81AB;
    mix-blend-mode: screen;
    z-index: 1;
}
#page-top #mainvisual .bg .mask2 {
    background: linear-gradient(90deg, #FFF 22.5%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 2;
}
#page-top #mainvisual .bg .mask3 {
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    z-index: 3;
    top: unset;
    bottom: 0;
}
#page-top #mainvisual .mainvisual-info {
    width: 100%;
    padding-top: calc(var(--common-header-height) / 2);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    transform: translateY(-50%);
    align-content: center;
}
#page-top #mainvisual .mainvisual-info .site-catch {
    font-weight: bold;
    font-size: 60px;
    line-height: 140%;
    margin-bottom: 24px;
}
#page-top #mainvisual .mainvisual-info .catch {
    font-weight: bold;
    font-size: 25px;
    line-height: 180%;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
/* #page-top #mainvisual .mainvisual-info .lead {
} */

/* News
---------------------------------------- */
#page-top #mainvisual #sec-news {
    position: absolute;
    bottom: 40px;
    left: calc(50vw + 10.56vw);
    /* right: 40px; */
    z-index: 3;
    width: calc(100% - var(--inner-padding) * 2);
    max-width: 480px;
}
#page-top #mainvisual #sec-news .block-list {
}
#page-top #mainvisual #sec-news .block-list .item .item-title {
    line-height: 180%;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;    
}
@media screen and (max-width: 1279px) {
    #page-top #mainvisual #sec-news {
        left: unset;
        right: 24px;
    }
}

/*============================================================
 ページ内共通
*============================================================*/
#page-top #section-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
#page-top .sec-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 48px;
}

/*============================================================
 セクション 人の挑戦が、未来を変える
*============================================================*/
#page-top #sec-catch {
}
#page-top #sec-catch .sec-catch {
    font-weight: bold;
    font-size: clamp(26px, 6.933vw, 40px);
    line-height: 140%;
    text-align: center;
    margin-bottom: 48px;
}
#page-top #sec-catch .sec-lead {
    text-align: center;
}

/*============================================================
 セクション Service
*============================================================*/
#page-top #sec-service {
    padding: 64px 0 160px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(106, 181, 219, 0.20) 28.85%, rgba(89, 96, 218, 0.20) 65.87%, rgba(255, 255, 255, 0.20) 100%);
}

/*============================================================
 セクション Recruit
*============================================================*/
#page-top #sec-recruit {
}
#page-top #sec-recruit .block-image {
    display: block;
    position: relative;
}
#page-top #sec-recruit .block-image .image img {
    width: 100%;
    height: 100%;
}
#page-top #sec-recruit .block-image .block-catch {
    width: 100%;
    padding: 8px;
    background: rgba(0, 0, 0, 0.60);
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--common-color-white);
}
#page-top #sec-recruit .block-image .block-catch .layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
#page-top #sec-recruit .block-image .block-catch .layout::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon-link-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
}
#page-top #sec-recruit .block-image .block-catch .label {
    font-style: italic;
    font-weight: bold;
    font-size: 28px;
    line-height: 100%;
}
#page-top #sec-recruit .block-image .block-catch .label::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 16px;
    background-color: var(--common-color-white);
    margin-left: 16px;
}
#page-top #sec-recruit .block-image .block-catch .catch {
    font-weight: bold;
    font-size: 20px;
    line-height: 100%;
    text-decoration: underline;
    text-underline-position: from-font;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Tablet
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 1007px) {
    /*============================================================
     メインビジュアル
    *============================================================*/
    #page-top #mainvisual .mainvisual-info .site-catch {
        font-size: clamp(40px, 10.666vw, 56px);
    }
        #page-top #mainvisual .mainvisual-info {
        padding-top: 0;
        top: 44%;
    }
    #page-top #mainvisual .mainvisual-info .catch {
        font-size: 16px;
        line-height: 160%;
    }
    /* #page-top #mainvisual .mainvisual-info .lead {
        font-size: 14px;
        line-height: 140%;
    } */

}



/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 SP
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 767px) {
    /*============================================================
     メインビジュアル
    *============================================================*/
    #page-top #mainvisual {
        /* --mv-min-height: 600px; */
    }

    /* News
    ---------------------------------------- */
    #page-top #mainvisual #sec-news {
        bottom: 24px;
    }
    
    /*============================================================
     ページ内共通
    *============================================================*/
    #page-top #section-layout {
        gap: 56px;
    }

    /*============================================================
     セクション 人の挑戦が、未来を変える
    *============================================================*/
    #page-top #sec-catch .sec-lead {
        text-align: left;
    }

    /*============================================================
     セクション Service
    *============================================================*/
    #page-top #sec-service {
        padding: 56px 0 80px 0;
    }
    
}
