@charset "UTF-8";

/* ---------------------------------
  page_title
--------------------------------- */
.page_title img {
  width: 21.4rem;
}


/* ---------------------------------
  lead_text
--------------------------------- */
@media screen and (max-width: 999px) {
  .lead_text {
    text-align: left;
  }
}


/* ---------------------------------
  box_white
--------------------------------- */
@media screen and (max-width: 999px) {
  .box_white {
    padding: 4rem 0;
  }
}


/* ---------------------------------
  client_text
--------------------------------- */
.client_text {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  padding: 2rem 0;
  border: .1rem solid #000;
  background-color: #E9E9E9;
  border-radius: 1rem;
  text-align: center;
}
.client_text.top {
  margin-bottom: 4rem;
  position: relative;
}
.client_text.top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: .546%;
  height: 30rem;
  background-color: #000;
  z-index: 0;
}

@media screen and (max-width: 999px) {
  .client_text {
    width: calc(100% - 4rem);
    margin: auto;
  }
  .client_text.top::after {
    width: 1.8%;
    height: 30rem;
  }
}


/* ---------------------------------
  tab_list
--------------------------------- */
.tab_list {
  display: flex;
  justify-content: space-between;
}
.tab_list li {
  width: calc(50% - 3.4rem);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  padding: 2.4rem .8rem 3rem .8rem;
  border-radius: 1rem 1rem 0 0;
  background-color: #ccc;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.tab_list li.active {
  pointer-events: none;
  color: #000;
}
.tab_list li#system.active {
  background-color: #CEEFF5;
}
.tab_list li#design.active {
  background-color: #FFECF4;
}
.tab_list li span {
  font-weight: 400;
  margin-top: .4rem;
  font-size: 1.4rem;
  display: block;
}
.tab_list li::after {
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 2rem;
  height: 1rem;
  background-color: #fff;
  position: absolute;
  bottom: .8rem;
  left: 50%;
  transform: translateX(-50%);
}
.tab_list li#system.active::after {
  background-color: #3CAFD2;
}
.tab_list li#design.active::after {
  background-color: #FF82B5;
}



@media screen and (max-width: 999px) {
  .tab_list li {
    width: calc(50% - 1.8rem);
    font-size: 1.8rem;
    padding: 2.4rem 1.6rem 3rem 1.6rem;
  }
  .tab_list li span {
    display: none;
  }
}


/* ---------------------------------
  jobs_detail
--------------------------------- */
.jobs_detail {
  position: relative;
  z-index: 10;
  margin-bottom: .8rem;
}
.jobs_detail .tab_content {
  display: none;
}
.jobs_detail .tab_content.active {
  display: block;
}
