@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Mono:wght@100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html{
    font-size: 10px;
    font-family: "Noto Sans JP", system-ui;
    font-optical-sizing: auto;
    font-style: normal;
  }

  *,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

a{
    text-decoration: none;
}

body{
    font-size: 1.4rem;
}

p{
    white-space: none;  
}

ul{
    list-style-type: none;
    text-decoration: none;
}

#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 7%;
}

.logo{
    width: 160px;
}
.logo img{
    width: 100%;
    object-fit: cover;
    align-items: center;
}

.logo p{
    font-size: 1.2rem;
    width: 100%;
    margin-top: 10px;
    border: solid 1.2px #0160E9;
    color: #0160E9;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .logo{
        width: 120px;
    }

    .logo img{
        width: 100%;
    }
    
    .logo p{
        font-size: 1rem;
    }
}

/* --------------------
 SPレスポンシブ_hamburger
-------------------- */

/* ハンバーガー　メニュー */
@media screen and (min-width: 801px) {
    .nav_menu{
        display: flex;
        flex-direction: row;
        gap: 40px;
    }

    .nav_menu li a{
        color: #000;
    }  
}

@media screen and (max-width: 800px) {

    body.open {
        overflow-y: hidden; /* スクロールを無効化 */
    }
    

    .hamburger{
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 34px;
        z-index: 12;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }

    .hamburger span{
        position: absolute;
        width: 100%;
        height: 4px;
        background: #0160E9;
        border-radius: 10px;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }
    .hamburger span:nth-child(1) {
        top: 0;
    }
    
    .hamburger span:nth-child(2) {
        top: 15px;
    }
    
    .hamburger span:nth-child(3) {
        top: 30px;
    }
    
    .hamburger.open span:nth-child(1) {
        background:  #fff;
        top: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    
    .hamburger.open span:nth-child(2),
    .hamburger.open span:nth-child(3) {
        top: 6px;
        background:  #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .nav.open{
        right: 0;
    }

    .nav a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: white;
    }

    .nav{
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(1, 96, 233, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .nav_menu{
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .nav_menu li{
        width: 86%;
        padding: 15px;
        border-bottom: #fff 1px solid;
        margin-top: 40px;
        font-size: 1.4rem;
    }
}


/* --------------------
お問い合わせボタン
-------------------- */

.inquiry_btn{
    display: block;
    padding: 10px;
    color: #Fff;
    background-color: #0160E9;
    align-self: center;
    align-items: center;
    margin-left: 40px;
}

.fv{
    width: auto%;
    height: 590px;
    /* min-height:  75vh; */
    background-repeat: no-repeat;
    background: url(img/fv.png) center / cover;
    position: relative;
}

.fv_maincopy{
    text-align: center;
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #0160E9;
    line-height: 1;
}

.fv_subcopy{
    font-size: 2rem;
    background-color: #0160E9;
    color: #Fff;
    text-align: center;
    width: fit-content;
    padding: 4px 10px;
    margin-top: 10px;
}

.fv_txt{
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 10%; /* 下から10%の位置に配置（調整可能） */
    transform: translateX(-50%);
}

/* --------------------
セクション共通
-------------------- */

.sec_wrap{
    width: 80%;
    margin: auto;
    align-items: center;
    margin-top: 90px;
}

.sec_title_wrap{
    margin: 0 auto 60px;
    text-align: center;
}

.sec_title_en{
    font-family: "roboto mono";
    font-weight: 900;
    font-size: 7rem;
    color: #0160E9;
    margin: -((7rem – 7rem) / 2)em 0;
}

.sec_title_jp{
    font-weight: 400;
    font-size: 1.4rem;
}

.sec_title_jp::before{
    content: "●";
    color: #0160E9;
    font-size: 0.8rem;
    margin-right: 0.6%;
    line-height: 1rem;
}

/* --------------------
選ばれる理由
-------------------- */

.sec_reason:nth-child(2){
    margin-bottom: 120px;
}

.sec_reason_content{
    display: flex;
    margin-top: 60px;
    gap: 60px;
    width: fit-content;
    margin: auto;
}

.reason_text_wrap{
    width: 480px;
}

.sec_reason_content{
    margin-top: 120px;
}

.sec_reason_content:last-child{
    margin-top: 160px;
}

.sec_reason_content .heading_title{
    font-size: 3.6rem;
    font-weight: 900;
    color: #0160E9;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}



.sec_reason_content .heading_title::before{
    content: "01";
    color: rgba(213, 213, 213, 60%);
    font-size: 18rem;
    font-weight: 600;
    font-family: "roboto";
    position: absolute;
    top: 2rem;
    left: -5rem;
    z-index: -1;
    line-height: 0;
}

.sec_reason_content:last-child .heading_title::before{
    content: "02";
}

.sec_reason_content .reason_txt{
    line-height: 3rem;
    font-weight: 300;
}


/* --------------------
取扱求人広告
-------------------- */

.sec_dealing{
    background-color: #F1F7FF;
    width: 100%;
    padding: 50px;
}

.sec_dealing h3{
    font-size: 3rem;
    color: #0160E9;
    text-align: center;
    padding-bottom: 50px;
}

.dealing_list_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    width: 80%;
    margin: auto;
    align-items: center;
}

.dealing_list_container img{
    display: block;
    width: fit-content;
    height: 44px;
}

/* --------------------
ご利用の流れ
-------------------- */

.flow_inner{
    display: flex;
    justify-content: center;
    gap: 40px;

}

.flow_card{
    width: 160px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #Fff;
    box-sizing: content-box;
}

.flow_card:nth-child(odd){
   background-color: #0160E9;
}

.flow_card:nth-child(even){
    background-color: #a4cafa;
    color: #0160E9;
 }

.flow_card::before{
    margin-top: 10px;
    /* margin-bottom: 4px; */
    text-align: center;
    content: "01";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    left: calc(50% - 20px)%;
}

.flow_card:nth-child(2)::before {
    content: "02";
}

.flow_card:nth-child(3)::before {
    content: "03";
}

.flow_card:nth-child(4)::before {
    content: "04";
}

.flow_card:nth-child(5)::before {
    content: "05";
}

.flow_card::after{
    content: "";
    position: absolute;
    right: -20px;
    border-left:#0160E9 solid 30px;
    border-right: transparent solid 0px;
    border-top: transparent solid 90px;
    border-bottom: transparent solid 90px;
    width: 0px;
    height: 0px;
}

.flow_card:nth-child(odd)::after{
 border-left:  #0160E9 solid 20px;
}

.flow_card:nth-child(even)::after{
    border-left:   #a4cafa solid 20px;
   }

.flow_card:last-child::after{
    content: none;
} 

/* レイヤー順番 */
.flow_card:nth-child(1) {
    z-index: 5; /* 一番左が最前面 */

}

.flow_card:nth-child(2) {
    z-index: 4;
}

.flow_card:nth-child(3) {
    z-index: 3;
}

.flow_card:nth-child(4) {
    z-index: 2;
}

.flow_card:nth-child(5) {
    z-index: 1; /* 一番右が最も後ろ */
}

/* --------------------
footer
-------------------- */

.footer_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0160E9;
    color: #fff;
    height: 200px;
    border-top-left-radius: 140px;
    border-top-right-radius: 140px;
    margin-top: 90px;
}


.footer_inner tbody{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}
.footer_inner tr{
    display: flex;
}


.footer_inner th{   
    display: block;
    text-align-last: justify;
    margin-right: 4px;   
}

.footer_inner th{
    width: 50px;
    margin-right: 10px;
}

/* --------------------
SP_レスポンシブ
-------------------- */

@media screen and (max-width: 800px) {

 /* --------------------
SP_レスポンシブ　セクション共通
-------------------- */
    .sec_wrap{
        margin: 60px auto 0;
        width: 90%;
    }

    .sec_title_wrap{
        margin-bottom: 40px;
    }

    .sec_title_en{
        font-size: 5rem;
    }


/* --------------------
SP_レスポンシブ　FV
-------------------- */

    .fv {
        margin-top: 10px;
        background: url(img/fv_sp.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: bottom;
        width: 100%;
    }


    .fv_maincopy{
        font-size: 7.3vw;
        text-align: center;
        margin-bottom: 4px;
    }
    

    .sp > .fv_subcopy{
        font-size: 5vw;
        background-color: #0160E9;
        color: #Fff;
        text-align: center;
        width: fit-content;
        padding: 4px 10px;
    }

    .fv_txt .sp{
        position: absolute; /* 絶対位置に変更 */
        margin: 4px;
        width: 100%;
        top: 50%;
        transform: translate(-50 , -50%);
    }

/* --------------------
SP_レスポンシブ　ご利用の流れ
-------------------- */

    .flow_inner{
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 60px;
    }

    .flow_card{
        width: 95%;
        position: relative;
        height: 100px;
    }

    .flow_card::before{
        margin-bottom: 10px;
    }

    .flow_card > p {
        position: relative;
        top: 14px;
    }

    .flow_card::after,
    .flow_card:nth-child(odd)::after,
    .flow_card:nth-child(even)::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: calc( -198.5% - 1px);
    }

    .flow_card:nth-child(odd)::after {
        background: #0160E9;
        height: 20px;
        width: 95%;
        clip-path: polygon(50% 20%, 0 0, 100% 0);
    }

    .flow_card:nth-child(even)::after {
        background: #a4cafa;
        height: 20px;
        width: 95%;
        clip-path: polygon(50% 20%, 0 0, 100% 0);
    }

    .flow_card:last-child::after{
        content: none;
    }

/* --------------------
SP_レスポンシブ　取扱求人広告
-------------------- */


    .sec_wrap.sec_dealing{
        width: 100%;
    }
/* --------------------
SP_レスポンシブ　選ばれる理由
-------------------- */


    .sec_reason_content{
        flex-direction: column;
        align-items: center;
    }

    .sec_reason_content:first-child{
        margin-top: 10px;
    }


    .reason_text_wrap{
        width: 90%;
    }

    .sec_reason_content .heading_title{
        font-size: 2.4rem;
    }

    .sec_reason_content .heading_title::before{
        font-size: 10rem;
        left: 1rem;
    }

/* --------------------
SP_レスポンシブ　footer
-------------------- */

    .footer_inner{
        height: 400px;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }

    .footer_inner tr{
    flex-direction: column;
    gap: 10px;
    }

    .footer_inner th{
        width: 80px;
            }

    .footer_inner th, .footer_inner td{
        margin:  0 30px;
    }

    .footer_inner tbody{
        gap: 20px;
    }

  }

/* --------------------
SP PC 出しわけ
-------------------- */

/* SP非表示 */
@media screen and (max-width: 800px) {
.sp_none{
    display: none;
}
}

/* PC非表示 */
@media screen and (min-width: 801px){
.pc_none{
    display: none;
}
}