/*--------------------------------------------------------------
 agency_intro
--------------------------------------------------------------*/
#agency_intro ul.strongpointArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
  padding-left: 0;
}

#agency_intro ul.strongpointArea li {
  width: 31%;
  list-style: none;
  position: relative;
}

#agency_intro ul.strongpointArea li p.No {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  background: rgba(1, 1, 1, 0.7);
  color: #fff;
  padding: 5px 20px;
  position: absolute;
  top: 10px;
}

@media only screen and (max-width: 767px) {
  #agency_intro {
    padding-bottom: 30px;
  }

  #agency_intro ul.strongpointArea li {
    width: 100%;
    margin-bottom: 30px;
  }

  #agency_intro ul.strongpointArea li p {
    margin-bottom: 10px;
  }

}

/*--------------------------------------------------------------
 advantages
--------------------------------------------------------------*/
#advantages {
  padding-top: 0;
}

#advantages .advantagesArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

#advantages .advantagesArea .advantages_left {
  width: 50%;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  height: 500px;
  padding: 50px 50px 50px 30px;
}

#advantages .advantagesArea .advantages_right {
  width: 50%;
  background: url(../imgs/bg-benefit.jpg) no-repeat center/cover;
  height: 500px;
}

#advantages .advantages_txt li {
  margin-bottom: 20px;
  list-style: none;
  position: relative;
}

#advantages .advantages_txt li div {
  color: #900808;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  #advantages .advantagesArea .advantages_left {
    width: 100%;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    height: auto;
    padding: 60px 20px 30px 0px;
  }

  #advantages .advantagesArea .advantages_left .advantages_txt {
    padding-left: 15px;
  }

  #advantages .advantagesArea .advantages_right {
    width: 100%;
    height: 250px;
  }
}

/*--------------------------------------------------------------
 seek
--------------------------------------------------------------*/
#seek {
  padding-top: 0px;
}

#seek table {
  max-width: 980px;
  margin: 0 auto 30px;
  border: 1px solid #e5e5e5;
  border-collapse: collapse;
  font-size: 14px;
}

#seek table th,
#seek table td {
  border: 1px solid #e5e5e5;
  border-collapse: collapse;
  padding: 20px 30px
}

#seek table th {
  text-align: center;
  vertical-align: middle;
  width: 25%;
  background-color: rgba(17, 17, 17, 0.8);
  color: #fff;
}

#seek table td ul {
  padding-left: 0;
  margin: 0;
}

#seek table td ul li {
  list-style: none;
  display: inline-block;
  padding-right: 30px;
  position: relative;
}

#seek table td ul li:not(:last-child)::after {
  position: absolute;
  content: "▶︎";
  top: 0;
  right: 4px;
  color: rgba(17, 17, 17, 0.8);
}

#seek small.color_red {
  color: #900808;
  font-weight: bold;
}

#seek .salon_btn {
  text-align: center;
  margin-top: 50px;
}

#seek button {
  background-color: #900808;
  color: #fff;
  border: 1px solid #900808;
  font-size: 15px;
  border-radius: 30px;
  padding: 15px 70px;
  font-weight: bold;
}

#seek button:hover {
  background: #fff;
  color: #900808;
}

@media only screen and (max-width: 767px) {
  #seek table th {
    padding: 10px;
  }

  #seek table td {
    padding: 20px 15px;
  }

  #seek table th,
  #seek table td {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
  }

  #seek table td ul li:not(:last-child) {
    display: block;
    padding-right: 0px;
    padding-bottom: 25px;
  }

  #seek table td ul li:not(:last-child)::after {
    top: 29px;
    right: auto;
    left: 15px;
    content: "▼";
    font-size: 10px;
  }
}













#seek .seekArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#seek .seek_item {
  width: 47%;
  padding: 20px 25px;
  background: #eaeaea;
  position: relative;
}

#seek .seek_item.wanted::before {
  position: absolute;
  content: "WANTED";
  top: -75px;
  left: -25px;
  color: #eaeaea;
  opacity: 0.6;
  font-size: 60px;
  z-index: -1;
  font-weight: bold;
}

#seek .seek_item.works::before {
  position: absolute;
  content: "BUSINESS";
  top: -75px;
  left: -25px;
  color: #eaeaea;
  opacity: 0.6;
  font-size: 60px;
  z-index: -1;
  font-weight: bold;
}

#seek .seek_item h4 {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

#seek .seek_item h4::before {
  content: '';
  width: 16px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: -webkit-calc(50% - 8px);
  left: calc(50% - 8px);
  bottom: -15px;
}

#seek .seek_item p {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #seek .seek_item {
    width: 100%;
    padding: 20px 15px;
  }

  #seek .seek_item.wanted {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 60px;
  }

  #seek .seek_item.wanted::before {
    top: -47px;
    left: -7px;
    font-size: 37px;
  }

  #seek .seek_item.works::before {
    top: -47px;
    left: -7px;
    font-size: 37px;
  }
}

/*--------------------------------------------------------------
 flow_contact
--------------------------------------------------------------*/
#flow_contact {
  padding-top: 40px;
}

#flow_contact h4 {
  position: relative;
  margin-bottom: 20px;
}

#flow_contact h4.flow::before {
  position: absolute;
  content: "FLOW";
  top: -50px;
  left: -25px;
  color: #eaeaea;
  opacity: 0.6;
  font-size: 60px;
  z-index: -1;
  font-weight: bold;
}

#flow_contact p a {
  border-bottom: 1px solid #900808;
}

#flow_contact .btnArea h4 {
  position: relative;
  margin-top: 80px;
}

#flow_contact .btnArea h4::before {
  position: absolute;
  content: "CONTACT";
  top: -50px;
  left: -25px;
  color: #900808;
  opacity: 0.1;
  font-size: 60px;
  z-index: -1;
  font-weight: bold;
}

#flow_contact .btnArea .btn-border-d {
  background: rgb(18 18 18 / 80%);
  color: #fff;
}

#flow_contact .btnArea .btn-border-d:hover {
  background: #111;
}

@media only screen and (max-width: 767px) {
  #flow_contact h4.flow::before {
    top: -32px;
    left: -7px;
    font-size: 37px;
  }

  #flow_contact .btnArea h4 {
    padding-top: 30px;
  }

  #flow_contact .btnArea h4::before {
    top: 0px;
    left: -7px;
    font-size: 37px;
  }
}