@charset "utf-8";

.pc_fixed_content {
    background-image: url(../img/top/fixed_bg-pc.png);
}

.catch {
    padding-bottom: var(--lg);
    color: var(--text-body);
    text-align: center;
    position: relative;
    z-index: 2;
}

#recruit {
    padding: var(--lg) 0;
    margin-bottom: var(--xl);
    background-image: url(../img/top/recruit_bg.png);
    background-size: cover;
    background-position: center center;
}

#recruit .text_wrap {
    margin-bottom: 24px;
}

#bigbanner {
    padding: var(--lg) 0;
    margin-bottom: var(--xl);
    background-image: url(../img/top/recruit_bg.png);
    background-size: cover;
    background-position: center center;
}

/*#bigbanner .content_wrap {
  width: 50%;
}

#bigbanner .text_wrap {
  margin-bottom: 24px;
}

#bigbanner .flex_content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#bigbanner .flex_content_wrap .img {
  width: 50%;
  border-radius: 24px;
  overflow: hidden;
}

#bigbanner .flex_content_wrap .img img,
#bigbanner .flex_content_wrap .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

#bigbanner .benefit_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-right: 40px;
}

#bigbanner .benefit_content .img {
    width: 50%;
    max-width: 360px;
    border-radius: 50%;
    overflow: hidden;
}

#bigbanner .benefit_content .img .round_video {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bigbanner .benefit_content .img img,
#bigbanner .benefit_content .img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#bigbanner .benefit_content .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: fit-content;
}

#bigbanner .benefit_content .text_wrap .strengths_wrap {
    display: flex;
    flex-direction: column;
}

#bigbanner .benefit_content .text_wrap .strengths_text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

#news {
    padding-bottom: var(--xl);
}

#news .news_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#news .item {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.4s;
}

#news .item.open {
    border: 1px solid transparent;
    background-color: var(--surface);
}

.news_wrap .ttl_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    position: relative;
}

.news_wrap .ttl_wrap::after {
    content: '';
    width: 38px;
    aspect-ratio: 1 / 1;
    background-image: url(../img/icon/icon-news_open.svg);
    background-size: cover;
    position: absolute;
    top: 16px;
    right: 16px;
}

.news_wrap .item.open .ttl_wrap::after {
    background-image: url(../img/icon/icon-news_close.svg);
}

.news_wrap .ttl_wrap .news_ttl,
.news_wrap .ttl_wrap .date {
    padding-left: 18px;
}

.news_wrap .ttl_wrap .news_ttl {
    position: relative;
    width: calc(100% - 54px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: all 0.4s;
}

.news_wrap .item.open .ttl_wrap .news_ttl {
    -webkit-line-clamp: 8;
}

.news_wrap .ttl_wrap .news_ttl::before {
    content: '';
    display: inline-block;
    width: 14px;
    aspect-ratio: 14 / 28;
    background-image: url(../img/icon/icon-news_ttl.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news_wrap .content_wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
}

.news_wrap .item.open .content_wrap {
    grid-template-rows: 1fr;
}

.news_wrap .item .content_wrap .post_content {
    overflow: hidden;
}

.news_wrap .post_content {
    padding: 0 16px 0;
}

.news_wrap .item.open .post_content {
    padding: 8px 16px 24px;
}


#company {
    padding: var(--lg) 0;
    background-color: var(--surface-light);
}

.dl_list .item {
    display: flex;
    gap: 16px;
}

.dl_list .item dt,
.dl_list .item dd {
    padding: 20px 8px 24px;
}

.dl_list .item dt {
    width: 23%;
    min-width: 136px;
    border-top: 1px solid var(--main-primary);
}

.dl_list .item dd {
    width: 75%;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 767px) {
    .dl_list .item {
        flex-direction: column;
        gap: 0;
    }

    /*  #bigbanner .flex_content_wrap {
    flex-direction: column;
  }

  #bigbanner .content_wrap {
    width: 100%;
  }

  #bigbanner .flex_content_wrap .img {
    width: 100%;
  }*/
    #bigbanner .benefit_content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-right: 0px;
    }

    #bigbanner .benefit_content .img {
        width: 100%;
        max-width: 260px;
    }
    #bigbanner .benefit_content .text_wrap{
      width:100%;
    }

    #bigbanner .benefit_content .text_wrap .strengths_text {
        font-size: min(calc(24 / 400 * 100vw), 24px);
        text-align: center;
    }
    #bigbanner .benefit_content .text_wrap a.primary_btn{
      width:100%;
    }

    #company .dl_list .item dt {
        width: 100%;
        padding-bottom: 4px;
    }

    #company .dl_list .item dd {
        width: 100%;
        padding-top: 4px;
        padding-bottom: 20px;
        border-top: none;
    }


}