@charset "UT-8";
img{
    width: 100%;
}
.requirement_title_block, .requirement_detail_block{
    width: 1200px;
    margin: 0 auto;
}
.requirement_title_block{
    padding: 100px 0 150px 0;
}
.requirement_title_block h1{
    font-size: 5rem;
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:"wdth" 100;
    letter-spacing: 0.2rem;
}
.requirement_title_block h2{
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    bottom: 10px;
    padding-bottom: 30px;
}

/*  --- 固定ナビ(左側) --- */
.requirement_detail_inner {
  display: flex;
  height: 85vh; 
}
.nav {
  flex: 0 0 420px; 
  position: sticky;
  padding-top: 50px;
  top: 20px;
  align-self: flex-start;
}
.nav li{
    padding-bottom: 30px;
}
.job_detail {
  flex: 1;              
  height: 85vh;         
  overflow-y: scroll;     
  padding-left: 40px;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}
.job_detail::-webkit-scrollbar{
  display: none;
}
.nav li a{
    color: #8E8E8E;
    transition: color 0.3s;
}
.nav li a.active{
    color: #3AB8DA;
    font-weight: 700;
}

/*  --- 募集要項詳細(右側) --- */
.job_detail dl div{
    display: flex;
    align-items: flex-start;
    border-bottom: solid 1px #E3E8EA;
    padding: 35px 0;
}
.job_detail dl dt{
    width: 30%;
}
.job_detail dl dd{
    width: 100%;
    margin: 0;
    font-weight: 400;
}

/*  --- エントリーボタン --- */
.entry_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 30px auto 0 auto;
    border-radius: 20px;
    background-image: linear-gradient(120deg, #00aedc, #7dd4ec);
    padding: 60px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
	transition: all 0.3s ease 0s;
}
.entry_block:hover{
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
	transform: translateY(-0.8em);
}
.entry_link_text p, .entry_link_text h3{
    color: #fff;
}
.entry_link_text br{
    display: none;
}
.entry_link_text h3{
    font-size: 5rem;
    line-height: 1;
}
.entry_block img{
    width: 12%;
}
/*  --- タブレットサイズ --- */
@media screen and (min-width: 768px) and (max-width: 1024px){
    .requirement_title_block, .requirement_detail_block{
        width: 650px;
    }
    .requirement_title_block{
        padding: 100px 0 80px 0;
    }
    /*  --- 募集要項詳細(右側) --- */
    .job_detail dl div{
        padding: 25px 0;
    }

    /*  --- エントリーボタン --- */
    .entry_block{
        padding: 35px;
    }
    .entry_link_text h3{
        font-size: 3rem;
    }
}

/*  --- スマホサイズ --- */
@media screen and (max-width:767px){
    .requirement_title_block, .requirement_detail_block{
        width: 320px;
    }
    .requirement_title_block{
        padding: 50px 0;
    }
    .requirement_title_block h1{
        font-size: 2.5rem;
    }
    .requirement_title_block h2{
        font-size: 1rem;
        bottom: 0;
    }
    /*  --- 募集要項詳細(右側) --- */
    .job_detail h2{
        font-size: 1.2rem;
    }
    .job_detail dl div{
        padding: 15px 0;
    }
    .job_detail dl{
        font-size: 0.8rem;
    }
     /*  --- エントリーボタン --- */
    .entry_link_text h3{
        font-size: 2.5rem;
    }
    .entry_block{
        padding: 35px 25px;
    }
}

/*  --- スマホ・タブレット共通 --- */
@media screen and (max-width:1024px){
    .job_detail {
        padding-left: 0;
    }
    .nav{
        display: none;
    }
    .entry_link_text p{
        font-size: 0.8rem;
    }
    .entry_link_text br{
        display: block;
    }
}