@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
/*------------------------------------------------------------
採用情報
------------------------------------------------------------*/
#recruit {
  padding-top: 80px;
}
#recruit .inner > p {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 834px) {
  #recruit .inner > p {
    font-size: 2rem;
  }
}
#recruit .inner > section, #recruit .inner > div {
  border-top: 5px dotted #f29c97;
  padding-top: 60px;
  margin-top: 60px;
}
#recruit .inner > section h2, #recruit .inner > div h2 {
  font-size: 2.4rem;
  color: #f29c97;
  text-align: center;
}
@media screen and (max-width: 834px) {
  #recruit .inner > section h2, #recruit .inner > div h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 834px) {
  #recruit {
    padding-top: 40px;
  }
  #recruit .inner > p {
    font-size: 1.8rem;
  }
  #recruit .inner > section, #recruit .inner > div {
    padding-top: 30px;
    margin-top: 30px;
  }
}
/*------------------------------------------------------------
社員座談会
------------------------------------------------------------*/
#discussion {
  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;
}
#discussion h2 {
  width: 100%;
}
#discussion .discussion_left {
  margin-top: 40px;
  margin-right: 40px;
  width: 400px;
}
#discussion .discussion_left figure {
  margin-top: 105px;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
#discussion .discussion_left figure img {
  width: 100%;
  height: auto;
}
#discussion .discussion_right {
  margin-top: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#discussion .discussion_right ul {
  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;
}
#discussion .discussion_right ul li {
  width: calc((100% - 20px) / 2);
  border-radius: 25px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
#discussion .discussion_right ul li:first-child {
  width: 100%;
}
#discussion .discussion_right ul li:nth-child(n+2) {
  margin-top: 20px;
}
#discussion .discussion_right ul li img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 834px) {
  #discussion {
    display: block;
  }
  #discussion .discussion_left {
    margin-top: 20px;
    margin-right: 0;
    width: auto;
  }
  #discussion .discussion_left figure {
    margin-top: 20px;
    border-radius: 15px;
  }
  #discussion .discussion_right {
    margin-top: 20px;
  }
  #discussion .discussion_right ul li {
    border-radius: 15px;
  }
}
/*------------------------------------------------------------
障がい者採用について、一般採用について
------------------------------------------------------------*/
#handicap .info, #employment .info {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#handicap .info p, #employment .info p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#handicap .info p strong, #employment .info p strong {
  text-decoration: underline;
}
#handicap .info p a, #employment .info p a {
  display: block;
  margin-top: 20px;
  text-align: center;
}
#handicap .info p a:hover, #employment .info p a:hover {
  opacity: 0.65;
}
#handicap .info figure, #employment .info figure {
  width: 400px;
  margin-right: 40px;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
#handicap .info figure img, #employment .info figure img {
  width: 100%;
  height: auto;
}
#handicap .flow, #employment .flow {
  margin-top: 40px;
  padding: 40px 20px;
  background: #fef7f3;
  border-radius: 25px;
  text-align: center;
}
#handicap .flow h3, #employment .flow h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  #handicap .flow h3, #employment .flow h3 {
    font-size: 2rem;
  }
}
#handicap .flow ul, #employment .flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  counter-reset: num;
}
#handicap .flow ul li, #employment .flow ul li {
  margin: 40px 20px 0;
  width: calc((100% - 120px) / 3);
  background: #fff;
  border-radius: 25px;
  padding: 30px 40px;
  counter-increment: num;
  position: relative;
}
#handicap .flow ul li:after, #employment .flow ul li:after {
  display: block;
  content: "";
  width: 30px;
  height: 60px;
  background: url("../images/recruit/arrow_flow.png") no-repeat center center;
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -30px;
}
#handicap .flow ul li:last-child:after, #employment .flow ul li:last-child:after {
  display: none;
}
#handicap .flow ul li p, #employment .flow ul li p {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 834px) {
  #handicap .flow ul li p, #employment .flow ul li p {
    font-size: 2rem;
  }
}
#handicap .flow ul li p:before, #employment .flow ul li p:before {
  display: inline-block;
  content: counter(num);
  position: relative;
  top: -3px;
  width: 30px;
  font-size: 1.6rem;
  line-height: 28px;
  border: 1px solid #8fc22d;
  border-radius: 100%;
  background: #fff;
  text-align: center;
  margin-right: 10px;
}
@media screen and (max-width: 834px) {
  #handicap .flow ul li p:before, #employment .flow ul li p:before {
    font-size: 1.4rem;
  }
}
#handicap .flow ul li figure, #employment .flow ul li figure {
  margin-top: 10px;
}
#handicap .flow ul li figure img, #employment .flow ul li figure img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 834px) {
  #handicap .info, #employment .info {
    margin-top: 20px;
    display: block;
  }
  #handicap .info p a, #employment .info p a {
    margin-top: 10px;
  }
  #handicap .info p a:hover, #employment .info p a:hover {
    opacity: 1;
  }
  #handicap .info figure, #employment .info figure {
    width: auto;
    margin-right: 0;
    border-radius: 15px;
    margin-top: 10px;
  }
  #handicap .flow, #employment .flow {
    margin-top: 20px;
    padding: 20px 10px;
    border-radius: 15px;
  }
  #handicap .flow ul li, #employment .flow ul li {
    margin: 20px 5px 0;
    width: calc((100% - 20px) / 2);
    border-radius: 15px;
    padding: 15px 20px;
  }
  #handicap .flow ul li:after, #employment .flow ul li:after {
    width: 15px;
    height: 30px;
    background-size: 15px auto;
    right: -7px;
    margin-top: -15px;
  }
  #handicap .flow ul li p:before, #employment .flow ul li p:before {
    display: block;
    position: absolute;
    top: -30px;
    left: -30px;
    margin-right: 0;
  }
}
/*------------------------------------------------------------
その他
------------------------------------------------------------*/
#other {
  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;
  text-align: center;
}
#other .other_left {
  width: calc((100% - 40px) / 2);
  border: 1px solid #f29c97;
  border-radius: 25px;
  padding: 30px;
}
#other .other_left dl dt {
  font-size: 2.4rem;
  font-weight: bold;
  color: #f29c97;
  border-bottom: 1px solid #f29c97;
  padding-bottom: 10px;
}
@media screen and (max-width: 834px) {
  #other .other_left dl dt {
    font-size: 2rem;
  }
}
#other .other_left dl dd {
  margin-top: 20px;
}
#other .other_right {
  width: calc((100% - 40px) / 2);
}
#other .other_right a {
  display: block;
  text-decoration: none;
  border: 1px solid #f29c97;
  border-radius: 25px;
  overflow: hidden;
}
#other .other_right a:hover {
  opacity: 0.65;
}
#other .other_right a:hover dl dt, #other .other_right a:hover dl dd {
  color: #f29c97;
}
#other .other_right a figure img {
  width: 100%;
  height: auto;
}
#other .other_right a dl {
  padding: 10px;
}
#other .other_right a dl dt {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  #other .other_right a dl dt {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 834px) {
  #other {
    display: block;
  }
  #other .other_left {
    width: auto;
    border-radius: 15px;
    padding: 15px;
  }
  #other .other_left dl dd {
    margin-top: 10px;
  }
  #other .other_right {
    width: auto;
    margin-top: 20px;
  }
  #other .other_right a {
    border-radius: 15px;
  }
  #other .other_right a:hover {
    opacity: 1;
  }
  #other .other_right a:hover dl dt, #other .other_right a:hover dl dd {
    color: #4d4d4d;
  }
}/*# sourceMappingURL=recruit.css.map */