@charset "UTF-8";

.recruitment{
        width:calc(100vw - 100px);
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 70px auto 0;
    }
    
    .recruitment_section__header{
        display: flex;
        align-items: center;
        margin-top: 50px;
        width: 100%; /* 親要素の幅に合わせる */
    }
    
    .recruitment .section__title{
        font-family: "Lobster", sans-serif;
        color: var(--primary-red);
        font-size: clamp(4rem, calc(60 / 1100 * 100vw), 8rem);
        padding: 0px 30px 0 5%;
    }
    
    .recruitment .section__subheading{
        font-family:"Noto Sans JP",  sans-serif;
        color: var(--primary-red);
        font-weight: bold;
        width: 50%;
        font-size: clamp(2rem, calc(30 / 1100 * 100vw), 3.8rem);
    }
    
    .job-description {
        display: flex;
        width: 90%;
        gap: 5%;  /* 子要素間の隙間 */
        margin: 0 auto;  /* 親要素内で中央揃え */
        border: 3px solid var(--primary-red);
        padding: 50px 30px 50px 30px;
        border-radius: 50px;
    }
    
    .role-heading,
    .TextWrap{
        font-family:"Noto Sans JP",  sans-serif;
        font-weight: 500;
        color: black;
        font-size: clamp(1.5rem, calc(20 / 1100 * 100vw), 2rem);
    }
    
    .role-heading{
        width: 30%; /* 横並びの要素に幅を指定 */
    }
    
    .TextWrap{
        width: 70%; /* 横並びの要素に幅を指定 */
    }
    
    .blue-underline{
        text-decoration: underline;
        text-decoration-color:var(--primary-blue);
    }

    p {
        line-height: 40px;
    }

    /* ============768px以下=============== */
@media (max-width: 768px) {
    .recruitment{
        width:calc(100vw - 40px);
    }

    .recruitment_section__header{
        margin-top: 30px;
    }

    .recruitment .section__title{
        font-size: clamp(2.5rem, calc(40 / 1100 * 100vw), 6rem);
        padding: 0 10px 0 5%;
    }

    .recruitment .section__subheading{
        font-size: clamp(1.6rem, calc(18 / 1100 * 100vw), 2.8rem);
    }

    .job-description {
        display: block;
        padding: 30px 15px 15px 15px;
        margin-top: 30px;
    }

    .role-heading,
    .TextWrap{
        font-size: clamp(1.5rem, calc(16 / 1100 * 100vw), 1.8rem);
        width: 100%;
    }

    p{
        font-size: clamp(1.5rem, calc(16 / 1100 * 100vw), 1.8rem);
        line-height: 30px;
    }
}

    /* 中途採用はこちら */
    .recruit-note {
        color: var(--primary-blue);
        font-weight: bold; /* 任意。目立たせたいなら */
        font-family: "Noto Sans JP", sans-serif;
        font-size: 3rem;
        margin: 100px auto 0;
        letter-spacing: 0.05em;
      }

      .recruit-note a {
        color: var(--primary-blue);
        text-decoration: underline;
      }
      
      .recruit-note a:hover {
        text-decoration: none;
        color: var(--primary-red); /* ホバー時、ちょっと濃い赤にするなどもOK */
        text-decoration: underline;
      }
      
    /* ============768px以下=============== */
    @media (max-width: 768px) {
        .recruit-note{
            font-size: clamp(1.8rem,calc(30/1100*100vw),3rem);
        }
    } 
    /* =============================
    新卒採用
    ============================== */

    .NewGraduate_Recruitment{
        margin-top: 150px;
    }

    .NewGraduate_flag{
        width: 25%;
        position: relative;
        left: 8%;
    }
    
    .card{
        background-image: url(../img/note-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 85%;
        margin: 20px auto;
        padding: 100px 0;
    }

    .title-wrapper{
        display: block;
    }

    .title{
        position: relative;
        left:5%;
        padding-right: 5%;
        display: inline-block;
        padding-bottom: 10px;
        background-image: url(../img/pen.svg);
        background-position: left bottom;
        background-size: contain;
        background-repeat: no-repeat;
        font-family:  "Dela Gothic One", sans-serif;
        font-size: clamp(2rem, calc(30 / 1100 * 100vw), 3.5rem);
        letter-spacing: 0.06em;
    }

    .red{
        color: var(--primary-red);
    }

    .subtitle{
        position: relative;
        left: 5%;
        margin-top: 30px;
        display: inline-block;
        font-family: "Noto Sans JP", sans-serif;
        color: black;
        font-size: clamp(1.8rem, calc(20 / 1100 * 100vw), 2.5rem);
        background-color: rgba(255, 255, 255, 0.7);
        padding: 3px 7px;
    }

    .employment-section,
    .working-hours-section,
    .holiday-section,
    .overtime-section,
    .location-section,
    .transfer-status-section,
    .business-trip-section,
    .salary-increase-section,
    .bonus-section {
        position: relative;
        padding-top: 10px;
        margin-top: 10px;
        background: linear-gradient(to right, #ffffff 20%, transparent 20%) repeat-x;
        background-position: top;
        background-size: 15px 1px; /* 点のサイズと点と点の間隔を均等に調整 */
}

    .card p{
        font-family:"Noto Sans JP", sans-serif;
        color: black;
        font-size: clamp(1.5rem, calc(18 / 1100 * 100vw), 2rem);
        font-weight: 400;
        line-height: 1.9em;
    }

    .row{
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    .row p:first-child {
        width: 20%;
    }
    
    .row p:last-child {
        width: 60%;
    }

/* ============768px以下=============== */
    @media (max-width: 768px) {
        .row{
            display:flex;
            flex-flow: column;
            width: 90%;
            margin: 0 auto;
        }

        .row p:first-child,
        .row p:last-child {
            width: 100%;
            justify-content: center;
        }
        

        .NewGraduate_Recruitment{
            margin-top: 80px;
        }

        .NewGraduate_flag{
            width: 30%;
            position: relative;
            left: 12%;
        }

        .subtitle{
            font-size: clamp(1.6rem, calc(18 / 1100 * 100vw), 18rem);
        }

        .card{
            padding: 50px 0;
            background-image: url(../img/note-sp.png);
        }

        .card p{
            font-size: clamp(1.5rem, calc(16 / 1100 * 100vw), 1.8rem);
            line-height: 1.9em;
            justify-content: center;
            padding-top: 10px;
            font-family:"Noto Sans JP", sans-serif;
        }

}

    /* =================================
    エントリーはこちら
    ================================== */

    .entry-section{
        text-align: center;
        margin-top: 100px;
    }

    .entry-title{
        font-family: "Dela Gothic One", sans-serif;
        color: var(--primary-red);
        font-size: clamp(4rem, calc(60 / 1100 * 100vw), 8rem);
        margin: 0 auto;
        position: relative; /* 背景画像をその下に配置するためにpositionを設定 */
        padding-bottom: 100px;
    }
    
    .entry-title::after {
        content: ""; /* 擬似要素を使用して画像を表示 */
        position: absolute; /* 絶対位置 */
        top: 80%; /* .entry-title の下に配置 */
        left: 50%; /* 横方向の中央 */
        transform: translate(-50%, -50%); /* 画像を完全に中央揃え */
        width: 8vw; /* ビューポート幅の20% */
        height: 10vw; /* ビューポート幅の20%（正方形に保つため）*/
        background-image: url(../img/downward-arrow.svg); 
        background-position: center; /* 画像を中央揃え */
        background-size: contain; /* 画像が要素全体に収まるようにリサイズ（正方形を維持） */
        background-repeat: no-repeat; /* 画像が繰り返し表示されないように */
    }
    

    .btn-apply {
        display: inline-block;
        font-family: "vdl-logojrblack", sans-serif;
        color: #ffffff;
        background-color: var(--primary-blue); /* #81c1c6 */
        font-size: clamp(3rem, calc(40 / 1100 * 100vw), 6rem);
        padding: 10px 60px;
        border-radius: 50px;
        letter-spacing: 0.14em;
        margin-top: 40px;
        transition: all 0.3s ease;
    }
    
    .btn-apply:hover {
        background-color: #a4d0d5; /* #81c1c6 より少し明るい青緑色 */
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
        transform: translateY(4px);
    }
    
    
    

    .sp-br{
        display: none;
    }

/* ============768px以下=============== */
@media (max-width: 768px) {
    .entry-section{
        width: 92.5vw;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
    }

    .entry-title{
        width: 90%;
        font-size: clamp(3rem, calc(40 / 1100 * 100vw), 5rem);
        padding-bottom: 60px;
        text-align: center;
    }

    .sp-br{
        display: block;
    }

    .btn-apply{
        font-size: 2.8rem;
        padding: 10px 30px;
        margin-top: 10px;
    }

    .entry-title::after {
        width:50px;
        height: 50px;
    }


}

    /* ==============================
    LINE
    ============================== */

    .Line {
        width: calc(100vw - 100px);
        margin: 0 auto;
        text-align: center;
        padding-top: 70px;
    }
    
    .line-content {
        display: flex; /* 横並びにする */
        align-items: center; /* 高さを中央揃え */
        justify-content:center; 
    }
    
    .line-left {
        display: flex; 
        flex-direction: column;
        align-items: center;
        gap: 2%;
        padding-left: 3%;
    }

    .icon-group {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }


    .line-icon{
        width: 100%;
        height: 15vw;
    }
    
    .qr-code {
        width: 100%; /* アイコンとQRコードのサイズ調整 */
        height: 12vw;
    }
    
    .line-right {
        flex: 1; /* 右側のコンテンツが残りのスペースを占める */
        display: flex; /* flexboxを使って中央揃え */
        flex-direction: column; /* テキストを縦に並べる */
        justify-content: center; /* 縦方向で中央揃え */
        align-items: center; /* 横方向で中央揃え */
        text-align: left; /* テキストを左揃え */
    }
    
    .line-title {
        font-family: "Dela Gothic One", sans-serif; /* 見出しのフォント */
        font-size: clamp(2.5rem, calc(35 / 1100 * 100vw), 4.5rem);
        color: var(--primary-red); /* 見出しの色 */
        margin-bottom: 20px; /* 見出しとテキストの間隔 */
        text-align: left; /* テキストを左揃え */
        letter-spacing: 0.04em;
    }
    
    .line-description {
        font-family: "Noto Sans JP", sans-serif;
        font-size: clamp(2rem, calc(25 / 1100 * 100vw), 3rem);
        color:black; 
        text-align: center;
    }

    .line-link img {
        transition: all 0.3s ease;
      }
      
      .line-link img {
        transition: all 0.3s ease;
      }
      
      .line-link:hover img {
        filter: brightness(1.2);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        transform: translateY(-4px);
      }

      .line-caption {
        font-family:"Noto Sans JP",  sans-serif;
        text-align: center;
        font-size: 2rem;
        color:#6AC26A;
        margin-bottom: 5px;
        font-weight: bold;
        position: relative;
        display: inline-block;
      }
      
      .slash {
        color: #333; 
      }
      
    

/* ============768px以下=============== */
@media (max-width: 768px) {

    .Line {
        width: calc(100vw - 40px);
        }

    .line-content {
        display: block; /* 横並びにする */ 
    }

    .line-title {
        font-size: clamp(2rem, calc(25 / 1100 * 100vw), 3.5rem);
        width: 85%;
        align-items: center;
    }

    .pc-br{
        display: none;
    }

    .line-icon{
        width: 120px;
        height: 120px;
    }

    .line-left {
        gap: 10%;
    }
    
    .qr-code {
        width: 90px; 
        height: 90px;
    }

    .line-left {
        justify-content: center;
        padding-left: 0;
    }

    .line-description {
        font-size: clamp(1.8rem, calc(18 / 1100 * 100vw), 2rem);
        text-align: left;
        width: 85%;
        align-items: center;
    }

    .line-caption {
        font-size: 1.4rem;
      }
}

    
    /* ==========================
    footer
    ========================= */
    .footer{
    margin-top: 120px;
}

