@charset "UTF-8";
/* =============================================================================
   パーシャルファイル
   ========================================================================== */
/* -----------------------------------------------------------------------------
   メディアクエリ
   -------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
   l-mv
   -------------------------------------------------------------------------- */
.l-mv {
  position: relative;
  z-index: 1;
  aspect-ratio: 375/812;
  overflow: hidden;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .l-mv {
    padding: 0;
    aspect-ratio: 1536/864;
  }
}
.l-mv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-animation: mvFade 15s infinite;
          animation: mvFade 15s infinite;
}

.l-mv-slide:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.l-mv-slide:nth-of-type(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.l-mv-slide:nth-of-type(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@-webkit-keyframes mvFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes mvFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.l-mv-copy {
  width: 100%;
  position: relative;
  top: 36vw;
  bottom: auto;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-mv-copy {
    width: 42vw;
    position: absolute;
    top: auto;
    bottom: 3.3vw;
    left: 6.6vw;
  }
}
/* -----------------------------------------------------------------------------
   l-index-intro
   -------------------------------------------------------------------------- */
.l-index-intro {
  position: relative;
  padding: 80px 30px;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .l-index-intro {
    padding: 200px 50px;
  }
}
.l-index-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .l-index-intro-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.l-index-intro-txt-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-intro-txt-box {
    width: 450px;
  }
}
.l-index-intro-txt-box p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-index-intro-txt-box p {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-intro-txt-box p {
    font-size: 2.4rem;
  }
}
.l-index-intro-img-box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-index-intro-img-box {
    width: 350px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-intro-img-box {
    width: 500px;
    margin: 0;
  }
}
.l-index-type {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .l-index-type {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-type {
    padding-bottom: 200px;
  }
}
.l-index-type-ttl-wrap {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .l-index-type-ttl-wrap {
    padding: 0 50px;
  }
}
.l-index-type-ttl-box {
  max-width: 1335px;
  margin: 0 auto;
  padding: 40px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #BAC5D9;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-type-ttl-box {
    padding: 80px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.l-index-type-ttl {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-index-type-ttl {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-type-ttl {
    font-size: 4rem;
  }
}
.l-index-type-ttl span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 3;
}
@media screen and (min-width: 768px) {
  .l-index-type-ttl span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-type-ttl span {
    font-size: 1.8rem;
  }
}
.l-index-type-ttl-wrap img {
  width: 270px;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .l-index-type-ttl-wrap img {
    margin: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-type-ttl-wrap img {
    width: 415px;
  }
}
.l-index-type-loop-wrap {
  overflow: hidden;
  width: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.l-index-type-loop-wrap.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.l-index-type-loop-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 40px;
  -webkit-animation: loopScroll 200s linear infinite;
          animation: loopScroll 200s linear infinite;
}
@media screen and (min-width: 768px) {
  .l-index-type-loop-track {
    -webkit-animation: loopScroll 3000s linear infinite;
            animation: loopScroll 3000s linear infinite;
  }
}
@-webkit-keyframes loopScroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes loopScroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-index-type-loop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-index-type-loop-item {
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 8px 8px 30px;
  margin-right: 0;
  background-color: #F5F7FC;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2rem;
}

.l-index-type-loop-item-img-box {
  position: relative;
  margin-bottom: 20px;
}

.l-index-type-loop-item-job {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  left: 0;
  color: #133784;
}

.l-index-type-loop-item-num {
  font-family: "Krona One", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #133784;
}

.l-index-type-loop-item-head {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #133784;
  margin-bottom: 15px;
}

.l-index-type-loop-item-desc {
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 20px;
}

.l-index-type-loop-item-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  margin: 0 auto;
  border: 1px solid #12203D;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  overflow: hidden;
  background-color: #fff;
}
.l-index-type-loop-item-btn::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0E378A;
  border-radius: 30px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-index-type-loop-item-btn:hover::before {
  content: "";
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, from(#0e378a), to(#134bbd));
  background-image: linear-gradient(90deg, #0e378a, #134bbd);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.l-index-type-loop-item-btn a {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #12203D;
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
}

.l-index-type-loop-item-btn:hover a {
  color: #fff;
}

.l-index-type-loop-item-btn a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 6px;
  background-image: url(../img/common/cmn_ico_arrow_black.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-index-type-loop-item-btn a:hover::after {
  right: 11px;
  background-image: url(../img/common/cmn_ico_arrow_white.png);
}
@media screen and (max-width: 767px) {
  .l-index-type-loop-item-btn a:hover::after {
    right: 15px;
  }
}
.l-index-contents {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .l-index-contents {
    margin-bottom: 200px;
  }
}
.l-index-contents-inner {
  background-color: #fff;
  border-radius: 40px;
  padding: 70px 30px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-inner {
    border-radius: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-contents-inner {
    padding: 200px 100px;
  }
}
.l-index-contents-data {
  position: relative;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data {
    margin-bottom: 160px;
  }
}
.l-index-contents-data-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 50px;
  }
}
.l-index-contents-data-items li {
  width: 100%;
  border: 1px solid #BAC5D9;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-items li {
    width: 32%;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-contents-data-items li {
    padding: 20px 30px;
  }
}
.l-index-contents-data-item-head {
  font-size: 1.8rem;
  border-bottom: 2px solid #BAC5D9;
  padding-bottom: 20px;
  color: #133784;
}
@media screen and (min-width: 1200px) {
  .l-index-contents-data-item-head {
    font-size: 2.2rem;
  }
}

.l-index-contents-data-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}

.l-index-contents-data-item-inner p {
  color: #133784;
  font-size: 4.8rem;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-item-inner p {
    font-size: 4.7vw;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-contents-data-item-inner p {
    font-size: 3.7vw;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-contents-data-item-inner p {
    font-size: 4.2vw;
  }
}

.l-index-contents-data-item-inner p .decimal {
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-item-inner p .decimal {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-contents-data-item-inner p .decimal {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-contents-data-item-inner p .decimal {
    font-size: 3.1vw;
  }
}

.l-index-contents-data-item-inner p .unit {
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-item-inner p .unit {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-contents-data-item-inner p .unit {
    font-size: 1.46vw;
  }
}

.l-index-contents-data-item-inner img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-item-inner img {
    width: 6.5vw;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-contents-data-item-inner img {
    width: 8vw;
  }
}

.l-index-contents-data-item-bottom {
  font-size: 1.2rem;
  text-align: right;
  color: #9096A0;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-item-bottom {
    font-size: 1.4rem;
  }
}
.l-index-contents-data-btn {
  margin: 40px auto 0;
  position: relative;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-index-contents-data-btn {
    position: absolute;
    top: 30px;
    right: 0;
    margin: 0;
  }
}
.l-index-contents-bnr {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-bnr {
    margin-bottom: 160px;
  }
}
.l-index-contents-bnr img {
  -o-object-fit: cover;
     object-fit: cover;
}

.l-index-contents-bnr:hover {
  border: 2px solid #0e378a;
}

.l-index-contents-interview-txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px 5%;
}
@media screen and (min-width: 1200px) {
  .l-index-contents-interview-txt-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
  }
}

.l-index-contents-interview-desc {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-desc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-contents-interview-desc {
    width: 640px;
  }
}

.l-index-contents-interview-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto 120px;
  }
}
.l-index-contents-interview-items li {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-items li {
    padding: 0 15px;
  }
}
.l-index-contents-interview-item-img-box {
  position: relative;
}

.l-index-contents-interview-item-img-box .name {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #133784;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-item-img-box .name {
    font-size: 4rem;
  }
}
.l-index-contents-interview-items li img {
  width: calc(100% + 40px);
  margin-left: -10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-items li img {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0;
  }
}
.l-index-contents-interview-item-detail {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-item-detail {
    max-width: 288px;
  }
}
.l-index-contents-interview-item-detail dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.l-index-contents-interview-item-detail dl div dt {
  width: 80px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #133784;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-item-detail dl div dt {
    font-size: 1.6rem;
  }
}
.l-index-contents-interview-item-detail dl div dd {
  width: calc(100% - 80px);
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .l-index-contents-interview-item-detail dl div dd {
    font-size: 1.6rem;
  }
}
.l-index-contents-interview-btn {
  margin: 0 auto;
}

.l-index-company {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-index-company {
    margin-bottom: 120px;
    padding: 0 50px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-company {
    padding: 0 100px;
  }
}
.l-index-company-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.l-index-company-desc {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-index-company-desc {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.l-index-company-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px 10%;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-index-company-details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10%;
    margin-top: 0;
  }
}
.l-index-company-detail-img-box {
  width: 100%;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .l-index-company-detail-img-box {
    width: 560px;
    padding: 0;
  }
}
.l-index-company-detail-img-box img {
  border-radius: 20px;
}

.l-index-company-detail-txt-box {
  padding-top: 0;
  width: 100%;
  aspect-ratio: 640/864;
  overflow-y: unset;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (min-width: 768px) {
  .l-index-company-detail-txt-box {
    width: 640px;
    padding-top: 80px;
    overflow-y: scroll;
  }
}
.l-index-company-detail-txt-box::-webkit-scrollbar {
  display: none;
}

.l-index-company-detail-box {
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid #BAC5D9;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-company-detail-box {
    margin-bottom: 80px;
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-company-detail-box {
    padding: 60px;
  }
}

.l-index-company-detail-box p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-index-company-detail-box p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-company-detail-box p {
    font-size: 2rem;
  }
}

.l-index-company-detail-box p:first-of-type {
  border-bottom: 1px solid #BAC5D9;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .l-index-company-detail-box p:first-of-type {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.l-index-company-detail-ttl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #133784;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-index-company-detail-ttl {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: left;
  }
}
.l-index-recruit {
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .l-index-recruit {
    margin-bottom: 200px;
  }
}
.l-index-recruit-ttl-box {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-ttl-box {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-ttl-box {
    padding: 0 100px;
  }
}
.l-index-recruit-ttl-box-inner {
  max-width: 1335px;
  margin: 0 auto;
  border-top: 1px solid #BAC5D9;
  padding-top: 50px;
}

.l-index-recruit-ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-ttl {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-ttl {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-recruit-ttl {
    font-size: 4rem;
  }
}

.l-index-recruit-detail-box {
  margin-top: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-detail-box {
    padding: 0 50px;
    margin-top: -40px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-detail-box {
    padding: 0 100px;
  }
}
.l-index-recruit-detail-box-inner {
  position: relative;
  max-width: 1335px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-detail-box-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-index-recruit-detail-box-txt {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 77%;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-detail-box-txt {
    width: 45%;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.l-index-recruit-detail-box-img {
  width: 100%;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-detail-box-img {
    width: 52%;
    margin-right: 0;
  }
}
.l-index-training {
  position: relative;
  z-index: 1;
}

.l-index-training-inner {
  padding: 70px 30px;
  background-color: #fff;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-training-inner {
    padding: 150px 50px;
    border-radius: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-training-inner {
    padding: 200px 100px;
  }
}
.l-index-training-inner-inner {
  max-width: 1335px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (min-width: 768px) {
  .l-index-training-inner-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-index-training-txt-box {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-index-training-txt-box {
    width: 560px;
    bottom: 0;
    margin-bottom: 80px;
  }
}
.l-index-training-desc {
  font-size: 1.4rem;
  margin-top: 40px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-index-training-desc {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.l-index-training-detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-training-detail-box {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-training-detail-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-index-training-detail {
  position: relative;
  width: 100%;
  border: 1px solid #BAC5D9;
  border-radius: 20px;
  padding: 20px 25px 50px;
}
@media screen and (min-width: 768px) {
  .l-index-training-detail {
    width: 420px;
    border-radius: 25px;
    padding: 25px 30px 60px;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-training-detail {
    width: 320px;
  }
}

.l-index-training-detail-head {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding-bottom: 20px;
  border-bottom: 1px solid #BAC5D9;
  color: #133784;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-index-training-detail-head {
    font-size: 2.2rem;
  }
}
.l-index-training-detail-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-index-training-detail-items {
    gap: 13px;
  }
}
.l-index-training-detail-items li {
  font-size: 1.4rem;
  text-indent: -15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .l-index-training-detail-items li {
    font-size: 1.6rem;
  }
}
.l-index-training-detail-items li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: #1A1A1A;
  margin-right: 8px;
  vertical-align: 2px;
}

.l-index-training-detail-small {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #9096A0;
  position: absolute;
  bottom: 20px;
  right: 30px;
}

.l-index-training-btn-box {
  margin: 0 auto;
  position: relative;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-index-training-btn-box {
    width: 420px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}
.l-index-others {
  position: relative;
  z-index: 1;
  padding: 80px 30px;
}
@media screen and (min-width: 768px) {
  .l-index-others {
    padding: 80px 50px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-others {
    padding: 120px 100px;
  }
}
.l-index-others-inner {
  max-width: 1335px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1400px) {
  .l-index-others-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.l-index-others-ttl-box {
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .l-index-others-ttl-box {
    width: 28%;
  }
}

.l-index-others-items-box {
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .l-index-others-items-box {
    width: 60%;
  }
}

.l-index-others-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 1000px) {
  .l-index-others-items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.l-index-others-items li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  overflow: hidden;
  background-color: #12203D;
}
@media screen and (min-width: 768px) {
  .l-index-others-items li {
    width: 49%;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-others-items li {
    width: 33%;
  }
}
.l-index-others-items li a {
  position: relative;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  color: #fff;
}

.l-index-others-items li::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #0E378A;
  position: absolute;
  border-radius: 20px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-index-others-items li:hover::before {
  content: "";
  display: inline-block;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#0e378a), to(#134bbd));
  background-image: linear-gradient(90deg, #0e378a, #134bbd);
  position: absolute;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.l-index-others-items li a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 6px;
  background-image: url(../img/common/cmn_ico_arrow_white.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-index-others-items li:hover a::after {
  right: 16px;
}