@charset "UTF-8";

/* ===== 基本設定 ===== */
main > section:first-of-type{
  border: none;
  padding-top: 0;
}

main > section:first-of-type > div.nextpage_div .second_wrapper{
  border: none;
  border-bottom-right-radius: 0;
  aspect-ratio: inherit;
  padding: 200px 0 100px;
}

.footer-logobox{
  margin-bottom: 60px;
}

.footer-copyright{
  font-size: 12px;
}

.apti-wrap {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 6px;
    background: linear-gradient(-45deg, #144DD2, #01A3DA);
}

.apti-inner{
    position: relative;
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px;
    font-family: sans-serif;
    z-index: 2;
}

.apti-num {
    width: 52px;
    height: 52px;
    background-color: #00aeff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 50px;
}

.apti-text {
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 80px;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.05em;
}

.apti-opts {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 50px;
    margin-bottom: 40px;
}

.apti-btn a:hover{
    opacity: 0.7;
}

.apti-btn img{
    max-width: 125px;
    width: 100%;
    height: auto;
}

.apti-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.apti-arr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
}

.apti-arr-l, .apti-arr-r {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-radius: 5px;
}

.apti-arr-l {
    border-right: 18px solid #68B5DB;
}

.apti-arr-r {
    border-left: 18px solid #68B5DB;
}

.apti-next {
    display: flex;
    align-items: center;
    color: #68B5DB;
}

.apti-next-arr {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #68B5DB;
    border-radius: 3px;
    margin-left: 5px;
}

.btn-recruit{
  margin-top: 100px;
  text-align: center;
}

.btn-recruit a{
  padding: 10px 60px 10px 30px;
  background-image: url(../images/tekisei/cursor.png);
  background-size: 20px;
  background-position: 90% 50%;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 21px;
  color: #fff;
}

.btn-recruit a:hover{
  opacity: 0.7;
}

@media (max-width: 768px) {

    main > section:first-of-type > div.nextpage_div .second_wrapper {
        padding: 100px 0 60px;
    }

    .apti-inner{
        padding: 40px 30px;
    }

    .apti-num {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 20px;
  }

    .apti-text {
      margin-bottom: 40px;
        font-size: 21px;
    }

    .apti-opts {
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .apti-btn {
        width: 100%;
        max-width: 120px;
    }

    .apti-arr {
        gap: 5px;
        margin: 0 8px;
    }

    .apti-arr-l {
        border-right: 12px solid #68B5DB;
    }

    .apti-arr-r {
        border-left: 12px solid #68B5DB;
    }

    .apti-arr-l, .apti-arr-r {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }

    .btn-recruit {
        margin-top: 60px;
    }

    .btn-recruit a {
        padding: 10px 45px 10px 30px;
        font-size: 19px;
        background-size: 18px;
        background-position: 93% 50%;
    }

}

.jrec-container {
  max-width: 665px;
  margin: 0 auto;
  text-align: center;
}

.jrec-point {
  font-size: 21px;
  font-weight: bold;
  color: #00A7FF;
  line-height: 1.5;
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.jrec-point ul li{
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #9A9FA1;
  text-align: left;
}

.jrec-point ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  color: #00A7FF;
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
  display: inline-block;
}

.jrec-point ul li {
  opacity: 0;
  animation: li_anim 2s cubic-bezier(0,1.13,.52,.91) forwards;
}

.jrec-point ul li:nth-of-type(1) {
  animation-delay: .1s !important;
  transform: translateX(-1rem);
}

.jrec-point ul li:nth-of-type(2) {
  animation-delay: .3s !important;
  transform: translateX(-1rem);
}

.jrec-point ul li:nth-of-type(3) {
  animation-delay: .5s !important;
  transform: translateX(-1rem);
}

.jrec-point ul li:nth-of-type(4) {
  animation-delay: .7s !important;
  transform: translateX(-1rem);
}

.jrec-point ul li:nth-of-type(5) {
  animation-delay: .9s !important;
  transform: translateX(-1rem);
}

.jrec-point ul li:nth-of-type(6) {
  animation-delay: 1.1s !important;
  transform: translateX(-1rem);
}

.jrec-point ul li:nth-of-type(7) {
  animation-delay: 1.3s !important;
  transform: translateX(-1rem);
}

@keyframes li_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.jrec-intro {
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
}

.jrec-intro img {
  position: relative;
  left: -30px;
  max-width: 100%;
  width: auto;
}

.jrec-job {
  background-color: #00A7FF;
  color: white;
  border-radius: 60px;
  padding: 10px 50px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  margin: 20px auto 60px;
  display: table;
  min-width: 200px;
}

.jrec-heading {
  color: #00a7ff;
  font-size: 20px;
  text-align: center;
  margin: 30px 0 20px;
  font-weight: bold;
  border-bottom: 2px solid #00a7ff;
  padding-bottom: 13px;
}

.jrec-heading br {
  display: none;
}

.jrec-description {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 40px;
  color: #000;
  text-align: left;
}

.jrec-cta {
  position: relative;
  background-color: #fff41a;
  display: table;
  text-align: center;
  padding: 20px 50px 20px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 22px;
  margin: 40px auto -40px;
  color: #000;
  text-decoration: none;
}

.jrec-cta .jrec-arrow{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.jrec-cta:hover .jrec-arrow{
  opacity: 0.7;
}

.jrec-arrow {
  display: inline-block;
  margin-left: 5px;
}

@media (max-width: 768px) {

  .footer-logobox{
    margin-bottom: 0;
  }

  .jrec-point {
    font-size: 18px;
  }

  .jrec-point ul li::before {
    top: 1px;
    left: 6px;
    font-size: 15px;
  }

  .jrec-job {
    border-radius: 60px;
    padding: 10px 20px;
    font-size: 21px;
    margin: 20px auto 40px;
  }

  .jrec-heading br {
    display: block;
  }

  .jrec-cta {
    padding: 15px 40px 15px 10px;
    font-size: 18px;
    margin: 40px auto 20px;
    color: #000;
    text-decoration: none;
  }

  .jrec-cta .jrec-arrow{
    right: 15px;
    width: 18px;
    height: 18px;
  }

  .jrec-intro img {
    left: -3vw;
  }

}

.apti-title{
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 50px;
}

.apti-title-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.apti-title-left-bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.apti-title-right span{
  position: relative;
}

.apti-title-right-top{
  position: absolute;
  top: -35px;
  left: 0;
  z-index: 1;
}

.apti-description{
  margin-bottom: 50px;
  color: #000;
}

.apti-description p{
  text-align: center;
  font-size: 20px !important;
  line-height: 2.1;
  margin-bottom: 50px;
}

.apti-start-btn a:hover img{
  opacity: 0.7;
}

.apti-title img{
  opacity: 0;
}

.apti-title.aos-init.aos-animate img{
animation: h1_anim 1.5s cubic-bezier(0.2,1.13,.52,.91) forwards;
}

@keyframes h1_anim {
0%{
opacity: 0;
}
100%{
opacity: 1;
transform: none;
}
}

.apti-title.aos-init.aos-animate .apti-title-left-top {
animation-delay: .1s !important;
transform: translateY(1rem);
}
.apti-title.aos-init.aos-animate .apti-title-left-bottom1 {
animation-delay: .15s !important;
transform: translateY(1rem);
}
.apti-title.aos-init.aos-animate .apti-title-left-bottom2 {
animation-delay: .2s !important;
transform: translateY(1rem);
}
.apti-title.aos-init.aos-animate .apti-title-left-bottom3 {
animation-delay: .25s !important;
transform: translateY(1rem);
}
.apti-title.aos-init.aos-animate .apti-title-right-top {
animation-delay: .3s !important;
transform: translateY(1rem);
}
.apti-title.aos-init.aos-animate .apti-title-right-bottom {
animation-delay: .35s !important;
transform: translateY(1rem);
}

@media (max-width: 768px) {

  .apti-title{
    flex-direction: column;
    gap: 50px;
    margin-bottom: 25px;
  }

  .apti-title-left{
    gap: 10px;
  }

  .apti-title-right-top{
    max-width: 35vw;
    vertical-align: bottom;
  }

  .apti-description{
    margin-bottom: 20px;
  }

  .apti-description p{
    margin-bottom: 0;
  }

}

@media (max-width: 479px) {

  .apti-title-right-top{
    top: -7vw;
  }

}
