@charset "UTF-8";



.shortwork{
font-family:'Noto Sans JP',sans-serif;
}

/* KV */
.shortwork-kv{
position:relative;
height:90vh;
background:url(../img/kv-shortwork-pc.jpg) center/cover no-repeat;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.shortwork-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

.shortwork-kv-inner{
position:relative;
z-index:2;
padding:20px;
}

.shortwork-label{
letter-spacing:2px;
margin-bottom:20px;
font-size:16px;
}

.shortwork-kv h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
line-height:1.4;

}

.shortwork-copy{
font-size:18px;
margin-bottom:20px;
}

.shortwork-pay{
font-size:22px;
margin-bottom:30px;
}

.shortwork-pay span{
font-size:40px;
font-weight:bold;
}

/* ボタン */
.shortwork-btns{
display:flex;
justify-content:center;
gap:15px;
font-size:16px;
}

.btn{
padding:15px 35px;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn.line{
background:#06C755;
color:#fff;
}

.btn.ghost{
border:2px solid #fff;
color:#fff;
}

.btn.large{
padding:20px 50px;
font-size:20px;
}


/* メリット */
.shortwork-merit{
padding:100px 20px;
text-align:center;
}

.shortwork-merit h2{
font-size:32px;
margin-bottom:50px;
line-height:1.4
}

.merit-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:0 auto;
}

.merit-card{
padding:40px 30px;
background:#fff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.merit-card span{
font-size:40px;
color:#2CB5A5;
font-weight:700;
display:block;
margin-bottom:10px;
}

.merit-card h3{
margin-bottom:10px;
font-size:23px;
}


/* CTA */
.shortwork-entry{
padding:100px 20px;
background:#EAF6F5;
text-align:center;
}

.shortwork-entry h2{
font-size:34px;
margin-bottom:30px;
line-height:1.4
}

.tel{
margin-top:20px;
}


/* SP */
@media(max-width:768px){

  .shortwork-kv{
    background:url(../img/kv-shortwork-sp.jpg) center/cover no-repeat;
    height:80vh;
  }

  .shortwork-kv h1{
    font-size:28px;
  }

  .shortwork-pay span{
    font-size:30px;
  }

  .merit-grid{
    grid-template-columns:1fr;
  }

  .shortwork-merit h2{
    font-size:26px;
  }

}



/* =============================
   フローティングボタン
============================= */

/* 右下固定のコンテナ */
.newgraduate-side-entry-container {
    position: fixed;
    right: 30px; /* 右端からの距離 */
    bottom: 30px; /* 下端からの距離 */
    z-index: 9999;
}
/* ボタン本体（縦長または丸みのある長方形） */
.newgraduate-side-entry-button {
    display: flex;
    /*flex-direction: column;*/ /* テキストとアイコンを縦に並べる（お好みで） */
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    /*background: linear-gradient(135deg, #007bff, #00c6ff); */ /* 鮮やかなグラデーション */
    
    background: linear-gradient(135deg, #1DB59B, #00D5B0);
    
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%; /* 正円にする */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid #ffffff; /* 白い縁取りで視認性アップ */
}
/* テキストのデザイン */
.newgraduate-side-entry-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
/* 矢印アイコン（装飾） */
.newgraduate-side-entry-icon {
    margin-top: 5px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
/* ホバー・アクション（PC） */
.newgraduate-side-entry-button:hover {
    transform: scale(1.1) translateY(-5px); /* 少し大きく、上に浮く */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    
    background: linear-gradient(135deg, #18a890, #00caa8);
}


/* モバイル対応（画面が小さい時の調整） */
@media (max-width: 768px) {
    .newgraduate-side-entry-container {
        right: 20px;
        bottom: 20px;
    }
    .newgraduate-side-entry-button {
        width: 80px;
        height: 80px;
    }
    .newgraduate-side-entry-text {
        font-size: 12px;
    }
}
