@charset "utf-8";
.recruit {
    text-align: center;
    padding: 20px 0 20px;
    color: black;
}
.recruit-info {
    position: relative;
    margin: 50 0 15px;
    padding: 10px;
    font-size: 35px;
    border-color: coral;
    font-family: "Yu Gothic", sans-serif;
    text-align: center;
}
.recruit-info:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    border-bottom: solid 2px #000;
    transform: translateX(-50%);
    animation: border-top 0.5s linear forwards;
}
@keyframes border-top {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.recruit-info:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 76px;
    width: 0;
    border-top: solid 2px #000;
    transform: translateX(-50%);
    animation: border-bottom 0.5s linear forwards;
}
@keyframes border-bottom {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.recruit-card-wrapper {
    text-align: center;
}
.recruit-card {
    width: 100%;
    margin: 40px 0px 80px;
    position: relative;
}
.recruit-card-inner1, .recruit-card-inner2, .recruit-card-inner3 {
    padding: 200px 50px 50px;
    border-top-left-radius: 7px;
    border-top-right-radius: 180px;
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 7px;
    border: 1px solid #858585;
    height: 400px;
}
.recruit-card-inner1-img, .recruit-card-inner2-img, .recruit-card-inner3-img {
    position: absolute;
    bottom: 492px;
}
.recruit-card-inner1-top, .recruit-card-inner2-top, .recruit-card-inner3-top {
    width: 100%;
    height: 200px;
}
.recruit-card-inner1 {
    background-color: #dbffb7;
}
.recruit-card-inner2 {
    background-color: #ffffb7;
}
.recruit-card-inner3 {
    background-color: #b7dbff;
}
.recruit-main-img {
    width: 40%;
    border-radius: 50%;
}
.recruit-title {
    margin: 10 0 15px;
    position: relative;
    padding: 20px 50px 20px;
    font-size: 35px;
    font-family: "Yu Gothic", sans-serif;
}
.recruit-title:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 30px;
    border-top: solid 2px;
    border-left: solid 2px;
    top: 0;
    left: 15%;
}
.recruit-title:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 30px;
    border-bottom: solid 2px;
    border-right: solid 2px;
    bottom: 0;
    right: 15%;
}
.recruit-title-e {
    font-size: 13px;
    font-family: "Arial", sans-serif;
}
.recruit-subtitle {
    margin: 15 50 10px;
    padding-left: 15px;
    text-align: left;
    font-family: "Meiryo UI", sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 50px;
}
.recruit-text {
    text-align: left;
    margin: 10 50 10px;
    padding: 0 25px 0;
    font-family: "Meiryo UI", sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 40px;
    font-family: serif;
}
.recruit-subtext {
    text-align: left;
    margin: 10 50 10px;
    padding: 0 0 0 43px;
    font-family: "Meiryo UI", sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 40px;
    font-family: serif;
}
.recruit-endtext {
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    margin: 70 0px;
    padding: 15px;
    border: outset;
    border-color: aquamarine;
}