.page-recruit {
  margin-top: var(--header-height);
}
.page-head .page-head__img{
    aspect-ratio: 1440 / 640;
}

section.detail{
    padding: 120px 0;
}
@media  screen and (max-width:767px) {
    section.detail{
        padding: 80px 0;
    }   
}
.detail dl{
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: solid 1px rgba(67, 33, 6, 0.25);
}
.detail dl dt{
    width: 240px;
    font-weight: bold;
    font-size: 15px;
    margin-right: 24px;
}
.detail dl dd{
    width: calc(100% - 264px);
    line-height: 2.0;
    font-size: 15px;
}
@media screen and (max-width:900px){
    .detail dl dt{
        width: 160px;
        font-size: 14px;
    }
    .detail dl dd{
        width: calc(100% - 184px);
        font-size: 14px;
    }
}
@media screen and (max-width:767px){
    .detail dl{
        flex-direction: column;
    }
    .detail dl dt{
        margin-bottom: 12px;
    }
    .detail dl dt,
    .detail dl dd{
        margin-right: 0;
        width: 100%;
    }
    .detail dl dd{
        padding-left: 1em;
    }
}

.recruit-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 64px;
  position: relative;
}
@media (max-width: 1024px) {
  .recruit-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .recruit-title {
    font-size: 2rem;
  }
}
.recruit-title:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 48px;
  height: 1px;
  background-color: #38854b;
}
@media (max-width: 767px) {
  .recruit-title:before {
    width: 32px;
    bottom: -7px;
  }
}

.contact_container{
    padding: 80px 0;
    margin: 0 auto;
}
.contact_block{
    background: #f3f0e4;
    margin-inline: auto;
    width: min(100%,640px);
    padding: 40px 0;
}
.contact_block p{
    text-align: center;
    margin-bottom: 24px;
}
.contact_block p.tel{
    font-size: 32px;
    font-weight: bold;
}
@media (max-width: 767px) {
    .contact_block{
        padding: 24px 0;
    }
    .contact_block p{
        margin-bottom: 12px;
    }
    .contact_block p.tel{
        font-size: 24px;
    }
}