@charset "UTF-8";

#message {
  display: flex;
  margin-bottom: 40px;
}
#message div {
  width: 100%;
  flex-basis: 60%;
}
#message div:first-child {
  margin-right: 40px;
  flex-basis: 40%;
}
#message h4 {
  font-size: 30px;
  line-height: initial;
  margin-bottom: 45px;
  transform: translate(-5%, 0);
  opacity: 0;
  transition: all 0.75s ease;
}
#message.active h4 {
  transform: translate(0, 0);
  opacity: 1;
}
#message h4 span {
  color: #03b6ff;
}
#message p {
  line-height: 1.8rem;
  transform: translate(0, 5%);
  opacity: 0;
  transition: all 0.75s ease;
}
#message.active p {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.35s;
}
#message .img_box {
  transform: translate(5%, 0);
  opacity: 0;
  transition: all 0.75s ease;
}
#message.active .img_box {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.5s;
}
#recruit #fukuri .flex {
  margin-top: 65px;
  flex-wrap: wrap;
  align-items: center;
}
#recruit #fukuri li {
  background: #f7f7f7;
  text-align: center;
  padding: 20px 0;
  margin: 2px;
  width: 24%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#recruit #fukuri li dt {
  margin: 5px 0;
}
#recruit #fukuri li dd {
  margin: 5px 0;
  font-size: 12px;
}
#recruit #flow dl {
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
}

#recruit #flow dt,
#recruit #flow dd {
  font-size: 20px;
  width: 80%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 0px 20px;
}

#recruit #flow dt {
  background: #03b6ff;
  color: #fff;
  width: 20%;
  text-align: center;
  padding: 30px 16px;
}
#recruit #flow dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
}
#recruit #flow dd p{
  width: 100%;
  margin: 0;
}
#recruit #flow dd span.bikou {
  font-size: 14px;
  display: block;
  margin-top: 10px;
}

#recruit ul.switch_btn {
  display: flex;
  flex-wrap: nowrap;
}
#recruit ul.switch_btn li {
  width: 100%;
  margin-right: 2px;
}
#recruit ul.switch_btn li a {
  display: inline-block;
  padding: 20px 0;
  background: #03b6ff;
  width: 100%;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
}
#recruit ul.switch_btn li:last-child {
  margin-right: 0;
}
#recruit ul.switch_btn li a.select {
  background: #06408a;
  cursor: default;
}
#gaiyou {
  padding-top: 70px;
}
#switch_area .section {
  display: none;
}
#switch_area {
  padding-top: 85px;
}
#switch_area .section.select {
  display: block;
  animation: show 1s linear 0s;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* アニメーションを起こす */
#recruit ul.switch_btn li a {
  transition: all 0.7s ease;
}
