.content_976{
padding: 100px 30px;
}

.job_layout{
display: flex;
justify-content:space-between;
}

.job_layout.reverse{
flex-direction: row-reverse;
}

.job_layout .image{
width: calc(50% - 20px);
}

.job_layout .text{
width: calc(50% - 20px);
box-sizing: border-box;
}

.job_layout.reverse .text{
padding-left: 0px;
}

.job_layout .text h2{
font-size:clamp(22px, 2.8vw, 36px);
font-weight: normal;
border-bottom: 3px solid #0057AA;
  display: inline-block;
  padding-bottom: 0.5em;
margin-bottom: 0.8em;
}

.job_layout .text p{
font-size:clamp(14px, 2.4vw, 18px);
line-height: 1.8;
}

.job_layout .text .btn_layout{
text-align: right;
margin-top: 2em;
}
.job_layout.reverse .btn_layout{
text-align: left;
}

.job_detail{
margin-top: 50px;
}

.job_detail .btn_toggle{
font-size: 24px;
font-weight: normal;
cursor: pointer;
position: relative;
text-align: center;
padding: 15px 30px;
border-top: 1px dashed #707070;
border-bottom: 1px dashed #707070;
display: flex;
align-items: center;
justify-content: center;
}

.job_detail .btn_toggle .toggle_icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
  height: 32px;
border: 2px solid #0157A9;
  border-radius: 50%;
position: relative;
margin-left: 0.5em;
  }

.job_detail .btn_toggle .toggle_icon > span {
  width: 52%;
  height: 2px;
  background: #0157A9;
  border-radius: 0.1em;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.job_detail .btn_toggle .toggle_icon > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.job_detail .btn_toggle.active .toggle_icon > span::before {
  display: none;
}

.detail_layout{
display: flex;
justify-content: space-between;
border-bottom: 1px dashed #707070;
padding: 30px 0 50px 0;
}

.detail_layout .works{
width: 50%;
box-sizing: border-box;
padding-right: 15px;
}

.detail_layout .appropriate{
width: 50%;
box-sizing: border-box;
padding-left: 15px;
}

.detail_layout .works h3,
.detail_layout .appropriate h3{
font-size:clamp(18px, 2.8vw, 24px);
padding-left: 1.2em;
position: relative;
margin-bottom: 1em;
font-weight: normal;
}

.detail_layout .works h3::before,
.detail_layout .appropriate h3::before{
content: "";
height: 1em;
width: 1em;
background: #0057AA;
border-radius: 50%;
position: absolute;
left: 0;
top: 0;
}

.detail_layout .appropriate h3::before{
background: #049098;
}

.detail_layout .works li,
.detail_layout .appropriate li{
line-height: 1.4;
font-size:clamp(14px, 2.4vw, 18px);
margin-top: 0.6em;
margin-left: 1em;
}

/*------------------------------------------------------------------------------------------------------------

SP

------------------------------------------------------------------------------------------------------------*/


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


.content_976{
padding: 30px 15px 50px 15px;
}

.job_layout{
flex-direction: column;
}

.job_layout.reverse{
flex-direction: column;
}

.job_layout .image{
width: 100%;
}

.job_layout .text{
width: 100%;
margin-top: 1.5em;
}


.job_layout .text h2{

}

.job_layout .text p{
line-height: 1.8;
}

.job_layout .text .btn_layout{
text-align: right;
margin-top: 1em;
}
.job_layout.reverse .btn_layout{
text-align: right;
}

.job_detail{
margin-top: 40px;
}

.job_detail .btn_toggle{
font-size: clamp(16px, 3vw, 100px);
padding: 15px 15px;
}

.job_detail .btn_toggle .toggle_icon {
    width: 24px;
  height: 24px;
  }

.detail_layout{
flex-direction: column;
padding: 30px 0 50px 0;
}

.detail_layout .works{
width: 100%;
box-sizing: border-box;
padding-right: 0;
margin-bottom: 2em;
}

.detail_layout .appropriate{
width: 100%;
box-sizing: border-box;
padding-left: 0;
}



.detail_layout .works li,
.detail_layout .appropriate li{
margin-left: 1.5em;
}


}