@charset "UTF-8";
@keyframes slide {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-position: right center;
    mask-position: right center;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: right center;
    mask-position: right center;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.slider {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 60px);
}
@media screen and (max-width: 768px) {
  .slider {
    height: calc(90vh - 30px);
  }
}
.slider__item {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*object-fit-images用スタイル*/
}
@supports (-webkit-mask-size : 100% 100%) {
  .slider__item img {
    -webkit-mask-size: 100% 100%;
    -webkit-mask-image: url(../img/mask.webp);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left center;
  }
}
@supports ((-webkit-mask-size: 100% 100%) or (mask-size: 100% 100%)) {
  .slider__item img {
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    -webkit-mask-image: url(../img/mask.webp);
            mask-image: url(../img/mask.webp);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: left center;
            mask-position: left center;
  }
}
.slider__item.pre {
  z-index: 2;
}
.slider__item.pre img {
  transform: scale(1.1);
}
.slider__item.now {
  z-index: 3;
}
.slider__item.now img {
  animation: fadeInOut 8s linear forwards, zoomIn 6s linear forwards;
}
@supports (-webkit-mask-size : 100% 100%) {
  .slider__item.now img {
    -webkit-mask-size: 100% 100%;
    animation: slide 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, zoomIn 6s linear forwards;
  }
}
@supports ((-webkit-mask-size: 100% 100%) or (mask-size: 100% 100%)) {
  .slider__item.now img {
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    animation: slide 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, zoomIn 6s linear forwards;
  }
}

.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 30px solid #fff;
}
@media screen and (max-width: 768px) {
  .fv {
    border: 15px solid #fff;
  }
}
.fv__slider {
  width: 100%;
  height: 100%;
}
.fv__slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.message {
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1320px) {
  .message {
    padding-top: 37.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .message {
    padding: 8vw 4vw 26.6666666667vw;
  }
}
.message__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.message__title {
  color: #FDF1EA;
  font-family: "Nunito Sans", sans-serif;
  font-size: 160px;
  font-weight: 500;
  position: absolute;
  left: 0;
  line-height: 150px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  .message__title {
    font-size: 21.3333333333vw;
    line-height: 1;
    position: unset;
    margin-left: -30px;
  }
}
.message__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .message__box {
    flex-direction: column-reverse;
  }
}
.message__contents {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .message__contents {
    width: 100%;
  }
}
.message__contents p {
  font-size: 28px;
  font-weight: bold;
  color: #F08F56;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .message__contents p {
    font-size: 5.3333333333vw;
  }
}
.message__contents p.name {
  margin-top: 40px;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .message__contents p.name {
    font-size: 4.2666666667vw;
    margin-top: 10px;
    text-align: right;
  }
}
.message__contents p.name span {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .message__contents p.name span {
    font-size: 5.3333333333vw;
  }
}
.message__img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .message__img {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}

.culture {
  padding: 100px 40px;
  background-color: #FDF1EA;
  background-image: url(../img/culture-logo.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 80%;
}
@media screen and (max-width: 768px) {
  .culture {
    padding: 26.6666666667vw 4vw;
    background-size: 90%;
    background-position: 40%;
  }
}
.culture__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.culture__title {
  text-align: center;
  color: #A2D7DB;
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  font-size: 64px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .culture__title {
    font-size: 8.5333333333vw;
    margin-bottom: 8vw;
  }
}
.culture__copy {
  max-width: 860px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .culture__copy {
    margin-bottom: 8vw;
    width: 90%;
  }
}
.culture__text {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  color: #F08F56;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .culture__text {
    line-height: 1.7;
    font-size: 3.7333333333vw;
  }
}

.office {
  padding: 80px 40px;
  border: 30px solid #F08F56;
  position: relative;
}
@media screen and (max-width: 768px) {
  .office {
    padding: 21.3333333333vw 4vw;
    border: 15px solid #F08F56;
  }
}
.office__en {
  position: absolute;
  right: 15px;
  top: 25px;
  font-size: 128px;
  font-weight: bold;
  font-family: "Nunito Sans", sans-serif;
  -webkit-text-stroke: 1px #EF8D57;
  /* ベンダープレフィックス */
  text-stroke: 1px #EF8D57;
  color: transparent;
  writing-mode: vertical-lr;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .office__en {
    display: none;
  }
}
.office__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.office__title {
  color: #A2D7DB;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .office__title {
    margin-bottom: 8vw;
  }
}
.office__title .en {
  font-family: "Nunito Sans", sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .office__title .en {
    font-size: 4.2666666667vw;
  }
}
.office__title h2 {
  font-size: 64px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .office__title h2 {
    font-size: 9.6vw;
  }
}
.office__main {
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .office__main {
    margin-bottom: 48vw;
  }
}
.office__main--title {
  font-size: 24px;
  color: #F08F56;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .office__main--title {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.office__main--text {
  color: #F08F56;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .office__main--text {
    font-size: 3.7333333333vw;
  }
}
.office__contents {
  position: absolute;
  bottom: 25px;
  left: 25px;
  border-radius: 10px;
  width: 580px;
  box-sizing: border-box;
  max-width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .office__contents {
    bottom: unset;
    top: 70%;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
  }
}
.office__img {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .office__img {
    margin-bottom: 8vw;
  }
}
.office .works {
  padding: 65px 70px;
  background: #FDF1EA;
  margin-bottom: 60px;
}
@media screen and (max-width: 1320px) {
  .office .works {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 768px) {
  .office .works {
    padding: 17.3333333333vw 5.3333333333vw;
  }
}
.office .works__title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .office .works__title {
    margin-bottom: 13.3333333333vw;
  }
}
.office .works__title span {
  display: block;
  text-align: center;
  color: #A2D7DB;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .office .works__title span {
    font-size: 6.4vw;
    margin-bottom: 4vw;
  }
}
.office .works__title h3 {
  font-size: 36px;
  font-weight: bold;
  color: #F08F56;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .office .works__title h3 {
    font-size: 6.4vw;
  }
}
.office .works__lists {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .office .works__lists {
    width: 100%;
    display: block;
  }
}
.office .works__list {
  width: 31%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .office .works__list {
    width: 100%;
  }
  .office .works__list + .works__list {
    margin-top: 18.6666666667vw;
  }
}
.office .works__list--num {
  position: absolute;
  font-size: 36px;
  font-weight: bold;
  font-family: "Nunito Sans", sans-serif;
  color: #A2D7DB;
  top: -30px;
  left: -15px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .office .works__list--num {
    font-size: 8vw;
    left: -15px;
    width: 56px;
    height: 56px;
  }
}
.office .works__list--img {
  margin-bottom: 24px;
}
.office .works__list--img img {
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .office .works__list--img {
    margin-bottom: 6.4vw;
  }
}
.office .works__list--title {
  color: #F08F56;
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1.5px solid #A2D7DB;
  padding-bottom: 7px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .office .works__list--title {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.office .works__list--text {
  line-height: 1.5;
  color: #F08F56;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .office .works__list--text {
    font-size: 3.7333333333vw;
  }
}
.office .job {
  background: #F7F8F8;
  padding: 65px 70px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1320px) {
  .office .job {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 768px) {
  .office .job {
    padding: 17.3333333333vw 4vw;
  }
}
.office .job__title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .office .job__title {
    margin-bottom: 10.6666666667vw;
  }
}
.office .job__title span {
  display: block;
  text-align: center;
  color: #A2D7DB;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .office .job__title span {
    font-size: 6.4vw;
  }
}
.office .job__title h3 {
  font-size: 36px;
  font-weight: bold;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .office .job__title h3 {
    font-size: 6.4vw;
  }
}
.office .job__box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .office .job__box {
    margin-bottom: 10.6666666667vw;
    flex-direction: column-reverse;
  }
}
.office .job__img {
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .office .job__img {
    width: 56%;
    margin: 30px auto 0;
  }
}
.office .job__img img {
  margin-bottom: 10px;
}
.office .job__img span {
  color: #F08F56;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .office .job__img span {
    font-size: 3.7333333333vw;
  }
}
.office .job__qa {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .office .job__qa {
    width: 100%;
  }
}
.office .job__qa--title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  color: #5F5F5F;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .office .job__qa--title {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.office .job__qa--text {
  background: #A2D7DB;
  padding: 20px;
  color: #5F5F5F;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
}
.office .job__qa--text::after {
  content: "";
  width: 30px;
  height: 58px;
  display: block;
  position: absolute;
  right: 99%;
  top: 20px;
  background: url(../img/ashirai_qa_pc.svg) no-repeat;
  background-size: 30px;
}
@media screen and (max-width: 768px) {
  .office .job__qa--text::after {
    right: 15%;
    top: 92%;
    background: url(../img/ashirai_qa.svg) no-repeat;
    background-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .office .job__qa--text {
    padding: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
}
.office .job__flow {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .office .job__flow {
    flex-direction: column;
  }
}
.office .job__flow::before {
  content: "";
  width: 92%;
  height: 1px;
  background: #F08F56;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .office .job__flow::before {
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    height: 86%;
    width: 1px;
  }
}
.office .job__flow--item {
  position: relative;
  max-width: 190px;
  padding-top: 35px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .office .job__flow--item {
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 5px 0;
    max-width: 100%;
    padding: 0;
    padding-left: 20px;
    padding-top: 2px;
  }
}
.office .job__flow--item::before {
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #F08F56;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .office .job__flow--item::before {
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
  }
}
.office .job__flow--item .time {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 17px;
  color: #F08F56;
  line-height: 1.5;
}
@media screen and (max-width: 1320px) {
  .office .job__flow--item .time {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .office .job__flow--item .time {
    font-size: 3.7333333333vw;
    width: 25%;
    text-align: left;
  }
}
.office .job__flow--item .text {
  font-size: 14px;
  color: #F08F56;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 1320px) {
  .office .job__flow--item .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .office .job__flow--item .text {
    text-align: left;
    font-size: 3.7333333333vw;
    width: 75%;
  }
}
.office .feature {
  padding: 65px 70px;
  background: #FDF1EA;
  margin-bottom: 60px;
}
@media screen and (max-width: 1320px) {
  .office .feature {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 768px) {
  .office .feature {
    padding: 17.3333333333vw 4vw;
    margin-bottom: 10.6666666667vw;
  }
}
.office .feature__title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .office .feature__title {
    margin-bottom: 13.3333333333vw;
  }
}
.office .feature__title span {
  display: block;
  text-align: center;
  color: #A2D7DB;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .office .feature__title span {
    font-size: 6.4vw;
    margin-bottom: 4vw;
  }
}
.office .feature__title h3 {
  font-size: 36px;
  font-weight: bold;
  color: #F08F56;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .office .feature__title h3 {
    font-size: 6.4vw;
  }
}
.office .feature__list {
  width: 31%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .office .feature__list {
    width: 100%;
  }
  .office .feature__list + .feature__list {
    margin-top: 18.6666666667vw;
  }
}
.office .feature__list--point {
  position: absolute;
  font-weight: bold;
  font-family: "Nunito Sans", sans-serif;
  top: -30px;
  left: -20px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #F08F56;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-content: center;
  font-size: 13px;
  padding-top: 6px;
}
.office .feature__list--point span {
  font-size: 33px;
  display: block;
  line-height: 1;
}
.office .feature__list--img {
  margin-bottom: 24px;
}
.office .feature__list--img img {
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .office .feature__list--img {
    margin-bottom: 5.3333333333vw;
  }
}
.office .feature__list--title {
  color: #F08F56;
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1.5px solid #A2D7DB;
  padding-bottom: 7px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .office .feature__list--title {
    font-size: 5.3333333333vw;
  }
}
.office .feature__list--text {
  line-height: 1.5;
  color: #F08F56;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .office .feature__list--text {
    font-size: 3.7333333333vw;
  }
}
.office .feature__lists {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .office .feature__lists {
    display: block;
  }
}
.office .feature__lists.two .feature__list {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .office .feature__lists.two .feature__list {
    width: 100%;
  }
}
.office:nth-of-type(odd) {
  border-top: 0;
}
.office:nth-of-type(odd) .office__title {
  text-align: right;
}
.office:nth-of-type(odd) .office__en {
  right: unset;
  left: 15px;
}

.recruit__main {
  background: url(../img/recruit-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 220px 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit__main {
    background: url(../img/recruit-bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 24vw 5.3333333333vw;
  }
}
.recruit__title {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .recruit__title {
    font-size: 4.8vw;
  }
}
.recruit__title span {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .recruit__title span {
    font-size: 6.9333333333vw;
  }
}
.recruit__contents {
  padding: 60px 40px 100px;
}
@media screen and (max-width: 768px) {
  .recruit__contents {
    padding: 16vw 4vw 26.6666666667vw;
  }
}
.recruit__contents table {
  max-width: 685px;
  margin: 0 auto 60px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit__contents table {
    margin-bottom: 30px;
  }
  .recruit__contents table tr {
    display: flex;
    flex-direction: column;
  }
}
.recruit__contents table th {
  width: 20%;
  box-sizing: border-box;
  padding-bottom: 30px;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .recruit__contents table th {
    width: 100%;
  }
}
.recruit__contents table th span {
  color: #F08F56;
  border-radius: 40px;
  padding: 5px 0;
  border: 1px solid #F08F56;
  font-size: 16px;
  width: 100%;
  display: block;
}
.recruit__contents table td {
  width: 75%;
  padding-bottom: 30px;
  padding-left: 30px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .recruit__contents table td {
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
  }
}
.recruit:nth-of-type(even) .recruit__main {
  background: url(../img/recruit-bg-02.png) no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .recruit:nth-of-type(even) .recruit__main {
    background: url(../img/recruit-bg-02-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.recruit .flow {
  margin: 0 auto;
  margin-top: 100px;
  max-width: 1080px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .recruit .flow {
    margin-top: 26.6666666667vw;
    padding: 0;
  }
}
.recruit .flow__title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .recruit .flow__title {
    margin-bottom: 16vw;
  }
}
.recruit .flow__title h2 {
  font-size: 36px;
  font-weight: bold;
  color: #F08F56;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recruit .flow__title h2 {
    font-size: 6.4vw;
  }
}
.recruit .flow__title span {
  font-size: 24px;
  font-weight: bold;
  color: #A2D7DB;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recruit .flow__title span {
    font-size: 6.4vw;
  }
}
.recruit .flow__lists {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recruit .flow__lists {
    display: block;
  }
}
.recruit .flow__list {
  width: 24.5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
  }
}
.recruit .flow__list--top {
  text-align: center;
  padding: 70px 20px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  background: #FEC6A5;
  margin-bottom: 35px;
  position: relative;
  border-radius: 3px;
}
.recruit .flow__list--top::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
  background: #FEC6A5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list--top::after {
    left: 0;
    width: 100%;
    height: 20px;
    background: #FEC6A5;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 99%;
  }
}
@media screen and (max-width: 768px) {
  .recruit .flow__list--top {
    width: 30%;
    font-size: 4.2666666667vw;
    padding: 6.6666666667vw 1.3333333333vw;
    line-height: 1.4;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.recruit .flow__list:nth-child(2) .flow__list--top {
  background: #F69865;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(2) .flow__list--top {
    padding-left: 1.3333333333vw;
    padding-top: 9.3333333333vw;
  }
}
.recruit .flow__list:nth-child(2) .flow__list--top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(2) .flow__list--top::before {
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 0;
  }
}
.recruit .flow__list:nth-child(2) .flow__list--top::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
  background: #F69865;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(2) .flow__list--top::after {
    left: 0;
    width: 100%;
    height: 20px;
    background: #F69865;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 99%;
  }
}
.recruit .flow__list:nth-child(3) .flow__list--top {
  background: #E56C32;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(3) .flow__list--top {
    padding-left: 1.3333333333vw;
    padding-top: 9.3333333333vw;
  }
}
.recruit .flow__list:nth-child(3) .flow__list--top::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
  background: #E56C32;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(3) .flow__list--top::after {
    left: 0;
    width: 100%;
    height: 20px;
    background: #E56C32;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 99%;
  }
}
.recruit .flow__list:nth-child(3) .flow__list--top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(3) .flow__list--top::before {
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 0;
  }
}
.recruit .flow__list:nth-child(4) .flow__list--top {
  background: #E05E21;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(4) .flow__list--top {
    padding-left: 1.3333333333vw;
    padding-top: 9.3333333333vw;
  }
}
.recruit .flow__list:nth-child(4) .flow__list--top::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
  background: #E05E21;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(4) .flow__list--top::after {
    left: 0;
    width: 100%;
    height: 20px;
    background: #E05E21;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 99%;
  }
}
.recruit .flow__list:nth-child(4) .flow__list--top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list:nth-child(4) .flow__list--top::before {
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    top: 0;
  }
}
.recruit .flow__list--bottom {
  position: relative;
  border-radius: 4px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  color: #5F5F5F;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  background: #FDF1EA;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list--bottom {
    width: 65%;
  }
}
.recruit .flow__list--bottom::before {
  content: "";
  position: absolute;
  top: -36px;
  z-index: -1;
  left: 50%;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(-50%);
  background: url(../img/border.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .recruit .flow__list--bottom::before {
    top: 50%;
    transform: translateY(-50%);
    left: -10%;
    height: 3px;
    width: 100%;
    background: url(../img/border-sp.png) no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .recruit .flow__list--bottom {
    font-size: 3.7333333333vw;
    padding: 0 2.6666666667vw;
  }
}

.faq {
  padding: 100px 40px;
  background: #FDF1EA;
}
@media screen and (max-width: 768px) {
  .faq {
    position: relative;
    padding: 26.6666666667vw 4vw 21.3333333333vw;
  }
}
.faq__inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    position: unset;
  }
}
.faq .icon02 {
  position: absolute;
  top: 40%;
  right: -120px;
}
.faq .icon02 img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .faq .icon02 {
    top: unset;
    bottom: 0;
    right: 10px;
  }
  .faq .icon02 img {
    width: 28.8vw;
  }
}
.faq .icon03 {
  position: absolute;
  bottom: 0;
  left: -120px;
}
.faq .icon03 img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .faq .icon03 {
    top: unset;
    bottom: 0;
    left: 10px;
  }
  .faq .icon03 img {
    width: 18.9333333333vw;
  }
}
.faq__title {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 74px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .faq__title {
    margin-bottom: 16vw;
  }
}
.faq__title .icon {
  position: absolute;
  right: -200px;
  top: 25px;
}
.faq__title .icon img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .faq__title .icon {
    right: -110px;
    top: 30px;
  }
  .faq__title .icon img {
    width: 33.0666666667vw;
  }
}
.faq__title span {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #A2D7DB;
  display: block;
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__title span {
    font-size: 6.4vw;
  }
}
.faq__title h2 {
  font-size: 36px;
  color: #F08F56;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__title h2 {
    font-size: 6.4vw;
  }
}
.faq__item {
  border-radius: 40px;
  border: 1px solid #F08F56;
  margin-bottom: 25px;
  background: #fff;
}
.faq__item--title {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: url(../img/icon_arrow_bottom.svg) no-repeat;
  background-position: 96%;
  background-size: 28px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq__item--title {
    padding: 4vw;
    padding-right: 9.3333333333vw;
    gap: 10px;
  }
}
.faq__item--title.is_active {
  background: url(../img/icon_arrow_top.svg) no-repeat;
  background-position: 96%;
  background-size: 28px;
}
.faq__item--title span {
  font-weight: bold;
  font-size: 30px;
  color: #A2D7DB;
  line-height: 1.5;
  font-family: "Nunito Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .faq__item--title span {
    font-size: 6.4vw;
  }
}
.faq__item--title p {
  font-size: 20px;
  color: #F08F56;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__item--title p {
    font-size: 4.8vw;
  }
}
.faq__item--text {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}
.faq__item--textWrap {
  display: flex;
  padding: 0 40px 20px;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .faq__item--textWrap {
    gap: 10px;
    padding: 0 4vw 4vw;
  }
}
.faq__item--text span {
  font-weight: bold;
  font-size: 30px;
  color: #A2D7DB;
  line-height: 1.5;
  font-family: "Nunito Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .faq__item--text span {
    font-size: 6.4vw;
  }
}
.faq__item--text p {
  font-size: 18px;
  color: #F08F56;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__item--text p {
    font-size: 4.2666666667vw;
  }
}

.entry {
  padding: 100px 40px 90px;
  background: url(../img/entry-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .entry {
    padding: 26.6666666667vw 5.3333333333vw 37.3333333333vw;
    background: url(../img/entry-bg-sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.entry__inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.entry__title {
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1;
  margin-bottom: 60px;
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .entry__title {
    font-size: 16vw;
    margin-bottom: 10.6666666667vw;
  }
}
.entry h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .entry h3 {
    font-size: 5.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.entry p {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .entry p {
    font-size: 4vw;
  }
}
.entry .btn {
  margin-top: 60px;
  position: relative;
  background-image: url(../img/arrow_right_wh.svg);
  background-repeat: no-repeat;
  background-position: 90%;
}
@media screen and (max-width: 768px) {
  .entry .btn {
    margin-top: 10.6666666667vw;
  }
}
.entry .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid #fff;
  border-radius: 50px;
}

.interview {
  overflow: hidden;
  padding: 160px 40px 100px;
}
@media screen and (max-width: 768px) {
  .interview {
    padding: 21.3333333333vw 0 26.6666666667vw;
  }
}
.interview__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.interview__title {
  text-align: center;
  position: relative;
  margin-bottom: 25px;
}
.interview__title span {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .interview__title span {
    font-size: 17.0666666667vw;
  }
}
.interview__title h2 {
  color: #F08F56;
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview__title h2 {
    font-size: 6.4vw;
  }
}
.interview__text {
  line-height: 1.5;
  color: #F08F56;
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .interview__text {
    font-size: 4.2666666667vw;
    margin-bottom: 18.6666666667vw;
  }
}
.interview__slider {
  position: relative;
}
.interview__slider--item {
  height: 470px;
  border: 3px solid #F08F56;
  background: #FDF1EA;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  padding: 0 40px 20px;
}
@media screen and (max-width: 1320px) {
  .interview__slider--item {
    height: 48vw;
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .interview__slider--item {
    height: auto;
    padding: 0 15px 20px;
  }
}
.interview__slider--item .img {
  text-align: center;
  margin-top: -90px;
}
@media screen and (max-width: 768px) {
  .interview__slider--item .img {
    margin-top: -50px;
  }
}
.interview__slider--item .img img {
  height: 100%;
  width: auto !important;
}
@media screen and (max-width: 768px) {
  .interview__slider--item .img img {
    height: auto;
  }
}
.interview__slider--item .title {
  background: #F08F56;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 10px;
  margin-top: -10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .interview__slider--item .title {
    font-size: 3.2vw;
  }
}
.interview__slider--item .position {
  text-align: center;
  color: #F08F56;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .interview__slider--item .position {
    font-size: 3.2vw;
  }
}
.interview__slider--item .text {
  color: #5F5F5F;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .interview__slider--item .text {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.interview__slider--item .more {
  color: #00A63C;
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  text-align: right;
  width: -moz-max-content;
  width: max-content;
  display: block;
  margin-left: auto;
  padding-right: 20px;
  background-image: url(../img/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (max-width: 768px) {
  .interview__slider--item .more {
    font-size: 3.7333333333vw;
  }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
}

.number {
  padding: 80px 40px 50px;
}
@media screen and (max-width: 768px) {
  .number {
    padding: 0 4vw 26.6666666667vw;
  }
}
.number__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.number__title {
  padding-left: 20px;
  font-size: 32px;
  padding: 12px 32px;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
  background: url(../img/title-bg.png) no-repeat;
  background-size: 100%;
  margin-bottom: 30px;
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .number__title {
    font-size: 5.3333333333vw;
    margin: 0 auto 4vw;
    transform: translate(0);
  }
}
.number__title::before {
  content: "";
  height: 92px;
  width: 5px;
  background: #F08F56;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: -5px;
}
@media screen and (max-width: 768px) {
  .number__title::before {
    height: 70px;
  }
}
.number__box {
  border: 7px solid #F08F56;
  border-radius: 20px;
  padding: 58px;
}
@media screen and (max-width: 768px) {
  .number__box {
    padding: 8vw 4vw;
  }
}
.number__lists {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1320px) {
  .number__lists {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .number__lists {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.number__list {
  border: 1px solid #C8C9C8;
  border-radius: 20px;
  padding: 18px 10px 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .number__list {
    padding: 10px 5px;
    border-radius: 10px;
  }
}
.number__list--title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #F08F56;
  padding-bottom: 6px;
  border-bottom: 2px solid #F08F56;
  margin-bottom: 35px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .number__list--title {
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}
.number__list--num {
  font-size: 32px;
  font-weight: bold;
  color: #5F5F5F;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .number__list--num {
    font-size: 4.2666666667vw;
  }
}
.number__list--num span {
  font-size: 48px;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .number__list--num span {
    font-size: 6.4vw;
  }
}
.number__list--icon {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .number__list--icon img {
    height: 40px;
    width: auto;
  }
}
.number__list--icon span {
  display: block;
  text-align: center;
  color: #F08F56;
  font-weight: bold;
  font-size: 16px;
  margin-top: 5px;
}
.number__list--box {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .number__list--box {
    gap: 10px;
  }
}
.number__list--box .number__list--num {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .number__list--box .number__list--num {
    font-size: 2.6666666667vw;
  }
}
.number__list--box .number__list--num span {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .number__list--box .number__list--num span {
    font-size: 4.8vw;
  }
}
.number__list:nth-child(2), .number__list:nth-child(4), .number__list:nth-child(5), .number__list:nth-child(7) {
  border: 1px solid #FDF1EA;
  background: #FDF1EA;
}
.number__list p {
  font-size: 14px;
  line-height: 1.4;
  color: #5F5F5F;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .number__list p.fs10 {
    font-size: 2.6666666667vw;
  }
}

.system {
  padding: 50px 40px 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .system {
    padding: 0 4vw 14.6666666667vw;
  }
}
.system__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.system__title {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .system__title {
    margin-bottom: 13.3333333333vw;
  }
}
.system__title h2 {
  font-size: 36px;
  font-weight: bold;
  color: #F08F56;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .system__title h2 {
    font-size: 6.4vw;
  }
}
.system__title span {
  font-size: 24px;
  font-weight: bold;
  color: #A2D7DB;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .system__title span {
    font-size: 6.4vw;
  }
}
.system__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .system__box {
    display: block;
  }
}
.system__left {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .system__left {
    width: 100%;
    margin-bottom: 16vw;
  }
}
.system__left--title {
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  background: #F08F56;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .system__left--title {
    margin-bottom: 8vw;
  }
}
.system__left--item {
  margin-bottom: 30px;
}
.system__left--item .title {
  background: #A2D7DB;
  padding: 10px 25px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .system__left--item .title {
    font-size: 5.3333333333vw;
    padding: 10px 20px;
  }
}
.system__left--item table {
  width: 100%;
}
.system__left--item table tr {
  border-bottom: 2px dashed #F08F56;
}
.system__left--item table th {
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  padding: 15px 0;
  color: #F08F56;
}
.system__left--item table td {
  text-align: right;
  padding: 15px 0;
  color: #F08F56;
  font-size: 14px;
  font-weight: normal;
}
.system__right {
  width: 46%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .system__right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .system__right {
    padding-bottom: 21.3333333333vw;
  }
}
.system__right .icon {
  position: absolute;
  bottom: -20px;
  right: -40px;
}
.system__right--title {
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  background: #F08F56;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .system__right--title {
    margin-bottom: 8vw;
  }
}
.system__right--item {
  display: flex;
  align-items: center;
  padding: 6px 25px;
  gap: 10px;
  border: 1px solid #F08F56;
  border-radius: 40px;
  margin-bottom: 25px;
  font-size: 16px;
  color: #F08F56;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .system__right--item {
    gap: 5px;
    padding: 10px;
    padding-left: 10px;
    font-size: 14px;
  }
}
.system__right--item span {
  color: #A2D7DB;
  font-weight: bold;
  font-size: 24px;
  font-family: "Nunito Sans", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .system__right--item span {
    font-size: 20px;
  }
}
.system__right--bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  gap: 24px;
}
.system__right--bottom .img {
  width: 138px;
  padding-top: 80px;
}
.system__right--bottom .img span {
  margin-top: 10px;
  text-align: center;
  display: block;
  color: #F08F56;
  font-weight: bold;
  white-space: nowrap;
}
.system__right--bottom .contents {
  max-width: 287px;
  padding-left: 30px;
  color: #F08F56;
  line-height: 1.5;
  font-size: 14px;
  padding-bottom: 44px;
  background: url(../img/ashirai.svg) no-repeat;
  background-position: bottom;
}

.interview__modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
  cursor: pointer;
}
.interview__modal--inner {
  background: #fff;
  width: 1200px;
  max-width: 90%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  border: 3px solid #F08F56;
  padding: 30px 20px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview__modal--inner {
    height: 90%;
    padding: 20px 15px;
  }
}
.interview__modal--title {
  padding: 14px 60px;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #F08F56;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 768px) {
  .interview__modal--title {
    margin-left: -10px;
  }
}
.interview__modal--box {
  display: flex;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .interview__modal--box {
    display: block;
  }
}
.interview__modal--img {
  display: none;
}
@media screen and (max-width: 768px) {
  .interview__modal--img {
    display: block;
  }
}
.interview__modal--contents {
  width: 60%;
  margin-left: auto;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 768px) {
  .interview__modal--contents {
    width: 100%;
    margin-top: 5.3333333333vw;
  }
}
.interview__modal--contents h3 {
  color: #fff;
  line-height: 2;
  margin-bottom: 25px;
}
.interview__modal--contents h3 span {
  background: #A2D7DB;
  font-size: 28px;
  font-weight: bold;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .interview__modal--contents h3 span {
    font-size: 5.8666666667vw;
  }
}
.interview__modal--contents .position {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .interview__modal--contents .position {
    font-size: 3.7333333333vw;
  }
}
.interview__modal--close {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .interview__modal--close {
    right: 10px;
  }
}
.interview__modal--qa {
  padding-bottom: 80px;
}
.interview__modal--qa .item {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .interview__modal--qa .item {
    margin-bottom: 8vw;
  }
}
.interview__modal--qa .ttl {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #A2D7DB;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .interview__modal--qa .ttl {
    margin-bottom: 15px;
  }
}
.interview__modal--qa .ttl span {
  color: #A2D7DB;
  font-weight: bold;
  font-size: 30px;
  font-family: "Nunito Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .interview__modal--qa .ttl span {
    font-size: 5.8666666667vw;
  }
}
.interview__modal--qa .ttl p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .interview__modal--qa .ttl p {
    font-size: 4.8vw;
  }
}
.interview__modal--qa .text p {
  line-height: 1.7;
  font-size: 16px;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .interview__modal--qa .text p {
    font-size: 4.2666666667vw;
  }
}

.interview__modal.show {
  opacity: 1;
}

body.no-scroll {
  overflow: hidden;
}

#interview__modal01 .interview__modal--box {
  background: url(../img/modal01.png) no-repeat;
  background-position: left bottom;
  background-size: 35%;
}
@media screen and (max-width: 768px) {
  #interview__modal01 .interview__modal--box {
    background: unset;
  }
}

#interview__modal02 .interview__modal--box {
  background: url(../img/modal02.png) no-repeat;
  background-position: left 2% bottom;
  background-size: 40%;
}
@media screen and (max-width: 768px) {
  #interview__modal02 .interview__modal--box {
    background: unset;
  }
}

#interview__modal03 .interview__modal--box {
  background: url(../img/modal03.png) no-repeat;
  background-position: left 2% bottom;
  background-size: 35%;
}
@media screen and (max-width: 768px) {
  #interview__modal03 .interview__modal--box {
    background: unset;
  }
}

#interview__modal04 .interview__modal--box {
  background: url(../img/modal04.png) no-repeat;
  background-position: left 0 bottom;
  background-size: 40%;
}
@media screen and (max-width: 768px) {
  #interview__modal04 .interview__modal--box {
    background: unset;
  }
}

#interview__modal05 .interview__modal--box {
  background: url(../img/modal05.png) no-repeat;
  background-position: left -5% bottom;
  background-size: 35%;
}
@media screen and (max-width: 768px) {
  #interview__modal05 .interview__modal--box {
    background: unset;
  }
}

#interview__modal06 .interview__modal--box {
  background: url(../img/modal06.png) no-repeat;
  background-position: left 0 bottom;
  background-size: 40%;
}
@media screen and (max-width: 768px) {
  #interview__modal06 .interview__modal--box {
    background: unset;
  }
}/*# sourceMappingURL=top.css.map */