.company_problem_list {
  display: block;
}
.company_problem_list li {
  width: 100%;
  margin-bottom:15px;
}

.event_image_wrap{
  margin-top:60px;
}

@media screen and (max-width: 767px){
  .event_image_wrap{
    margin-top:30px;
  }
}

.report_text_wrap ul{
  margin-left:40px;
}

@media screen and (max-width: 767px){
  .report_text_wrap ul{
    margin-left:20px;
  }
}

.report_text_wrap ul li{
  list-style-type: disc;
  font-size: 120%;
  margin-bottom: 15px;
  color: #333;
}

@media screen and (max-width: 767px){
  .report_text_wrap ul li{
    font-size: 100%;
    margin-bottom: 10px;
  }
}

.report_text_wrap ul li a{
  color: #333;
}

.report_text_wrap ul li a:hover{
  text-decoration: underline;
}

.top_job_headline_wrap {
  position: relative;
  margin-block: 50px 40px;
  text-align: center;
  z-index: 1;
}
.top_job_headline_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  margin-top: 3px;
  background-color: #b2dcfb;
  z-index: -1;
  pointer-events: none;
}
.top_job_headline {
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 0 2.35em;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.18;
  color: #3fa8f4;
}
.top_job_headline::before, .top_job_headline::after {
  content: "";
  position: absolute;
  bottom: -0.07em;
  width: 3px;
  height: 40px;
  background-color: #3fa8f4;
  pointer-events: none;
}
.top_job_headline::before {
  left: 1.5em;
  transform: rotate(-25deg);
}
.top_job_headline::after {
  right: 1.5em;
  transform: rotate(25deg);
}
.job_offer_btn_flex {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.job_offer_link_btn {
  flex: 1;
  max-width: 460px;
  display: block;
  border: 6px solid;
  border-radius: 20px;
  padding: 30px 10px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
}
.job_offer_link_btn .link_btn_text {
  padding-right: 23px;
  position: relative;
}
.job_offer_link_btn .link_btn_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 16px;
  height: 16px;
  background: url(../images/common/icon_thin_arrow.svg) center / contain no-repeat;
}
.job_offer_link_btn:hover .link_btn_text::after {
  background-image: url(../images/common/icon_thin_arrow_white.svg);
}
.job_offer_link_btn._green {
  border-color: #23b553;
}
.job_offer_link_btn._green:hover {
  background-color: #23b553;
  color: #fff;
}
.job_offer_link_btn._orange {
  border-color: #fabf00;
}
.job_offer_link_btn._orange:hover {
  background-color: #fabf00;
  color: #fff;
}
@media screen and (max-width: 767px){
  .top_job_headline_wrap {
    margin-block: 40px 27px;
  }
  .top_job_headline {
    padding: 0 2.09em;
    font-size: 2.2rem;
  }
  .job_offer_btn_flex {
    flex-direction: column;
    gap: 10px;
  }
  .job_offer_link_btn {
    font-size: 1.6rem;
    padding: 20px 10px;
  }
}