@charset "UTF-8";
.txt-h2 {
  text-align: center;
  flex-flow: column;
  display: flex;
  margin-bottom: 3.6458333333vw;
  letter-spacing: 0.2vw;
}
.txt-h2 span {
  color: #18469D;
  gap: 0.2vw;
  display: block;
  letter-spacing: 0.1vw;
}

@media screen and (max-width: 767px) {
  .txt-h2 {
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-size: 14px;
  }
  .txt-h2 span {
    font-size: 26px;
    gap: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }
}
/*==========================================================================
section#recruit00
========================================================================== */
section#recruit00 .inner {
  padding: 5.2083333333vw 0 0;
}
section#recruit00 .txt-h2 {
  margin-bottom: 5.645833vw;
}
section#recruit00 .box {
  box-sizing: border-box;
  justify-content: space-between;
}
section#recruit00 .box .img-box  {
  width: 43%;
  
}
section#recruit00 .box .img-box img {
  border-radius: 1.05vw;
}

section#recruit00 .box .txt-box  {
  width: 53%;
}
section#recruit00 .box .txt-box .txt-h3 {
  margin-bottom: 3vw;
  position: relative;
  z-index: 1;
  color: #18469D;
}
section#recruit00 .box .txt-box .txt-p {
  line-height: 2.2em;
  margin-bottom: 2vw;
}
section#recruit00 .box .txt-box .txt-p:last-child {
  margin-bottom: 0;
}




@media screen and (max-width: 767px) {
section#recruit00 .inner {
  padding: 60px 0 0;
}

section#recruit00 .txt-h2 {
    margin-bottom: 40px;
}

section#recruit00 .box {
  width: 100%;
}
section#recruit00 .box .img-box {
    width: 95%;
    height: 68vw;
    margin: 0 auto;
    margin-bottom: 50px;
}
section#recruit00 .box .img-box img {
  border-radius: 10px;
}
section#recruit00 .box .txt-box {
  width: 85%;
  margin: 0 auto;
}
section#recruit00 .box .txt-box .txt-h3 {
  margin-bottom: 30px;
  font-size: 18px;
}
section#recruit00 .box .txt-box .txt-p {
  margin-bottom: 30px;
  font-size: 14px;
  text-align: start;



}
}
/*==========================================================================
section#recruit01
========================================================================== */
section#recruit01 .inner {
  padding: 10.4166666667vw 0 0;
}
section#recruit01 .txt-h2 {
  margin-bottom: 5.645833vw;
}
section#recruit01 .box {
  align-items: center;
  justify-content: space-between;
}
section#recruit01 .box .txt-box {
  width: 49%;
}
section#recruit01 .box .txt-box .txt-h3 {
  margin-bottom: 2.6041666667vw;
  color: #18469D;
}
section#recruit01 .box .txt-box .txt-p {
  line-height: 2em;
}
section#recruit01 .box .img-box {
  width: 44%;
}

/* 弾むアニメーション（h1用） */
@-webkit-keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* フェードアップ（p用） */
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  section#recruit01 .inner {
    padding-top: 60px;
  }

  section#recruit01 .txt-h2 {
    margin-bottom: 40px;
  }
  section#recruit01 .box {
    display: flex;
    flex-wrap: wrap;
  }
  section#recruit01 .box .txt-box {
    width: 100%;
    order: 2;
  }
  section#recruit01 .box .txt-box .txt-h3 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
    line-height: 2em;
  }
  section#recruit01 .box .txt-box .txt-p {
    font-size: 14px;
  }
  section#recruit01 .box .img-box {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 40px;
    order: 1;
  }
}
/*==========================================================================
section#recruit_loopslide
========================================================================== */
section#recruit_loopslide .inner {
  padding: 10.4166666667vw 0 0;
}

    section#recruit_loopslide {
    overflow: hidden;
}

/* Splideのデフォルトスタイルをリセット */
.splide__track {
    overflow: visible !important;
}

.splide__list {
    display: flex;
    align-items: center;
}

.splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.splide__slide img {
    border-radius: 1.2vw;
    display: block;
    object-fit: cover;
}

/* 画像サイズの設定 */
.splide__slide:nth-child(odd) img {
    /* 横長画像 */
  width: 20vw;
  height: 26.7vw;
  border-radius: 1vw;
    
}

.splide__slide:nth-child(even) img {
    /* 縦長画像 */
    width: 27vw;
  height: 20.5vw;
  border-radius: 1vw;
}


/* モバイル用（767px以下） */
@media (max-width: 767px) {
  section#recruit_loopslide .inner {
    padding: 60px 0 0;
  }
   .splide__slide img {
        border-radius: 10px;
    }
    
    .splide__slide:nth-child(odd) img {
    width: 36vw;
    height: 46.7vw;
    border-radius: 10px;
    }
    
    .splide__slide:nth-child(even) img {
        /* 縦長画像 */
        width: 45vw;
        height: 31.6vw;
        border-radius: 10px;
    }
}

/*==========================================================================
section#requirements
========================================================================== */
section#requirements .inner {
  padding: 10.4166666667vw 0 5.2083333333vw;
}
section#requirements .txt-h2 {
  margin-bottom: 5.2083333333vw;
}
section#requirements .recruitment-container {
  margin: 0 auto 5.2083333333vw;
  position: relative;
  z-index: 1;
}
section#requirements .recruitment-container::after {
  content: "";
  background: url(../img/mizwa_icon_bl.svg) center no-repeat;
  background-size: cover;
  width: 52vw;
  height: 48.3vw;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  opacity: 0.5;
}
section#requirements .tab-header {
  display: flex;
  gap: 1vw;
  margin-bottom: 2.666667vw;
}
section#requirements .tab-button {
  padding: 0.5vw 3vw;
  background: #ffffff;
  color: #18469D;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  border: solid 2px #18469D;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.375);
  border-radius: 10px;
}
section#requirements .tab-button:hover {
  background: rgba(24, 70, 157, 0.05);
}
section#requirements .tab-button.active {
  background: #18469D;
  color: #ffffff;
}
section#requirements .tab-content {
  display: none;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
section#requirements .tab-content.active {
  display: block;
}
section#requirements .job-details {
  max-width: 100%;
}
section#requirements .job-details dl {
  margin: 0;
  padding: 2vw 1vw;
  align-items: center;
  position: relative;
}
section#requirements .job-details dl::after {
  content: "";
  background: url(../img/line.svg) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
section#requirements .job-details dl:first-child::before {
  content: "";
  background: url(../img/line.svg) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
section#requirements .job-details dt {
  color: #18469D;
  width: 10vw;
}
section#requirements .job-details dd {
  margin: 0;
  color: #000;
  width: calc(100% - 10vw);
}
section#requirements .no-job {
  display: flex;
  flex-wrap: wrap;
  padding: 4vw 0;
}
section#requirements .no-job .txt-h3 {
  width: 100%;
  text-align: center;
  margin-bottom: 2vw;
}
section#requirements .txt-b {
  text-align: center;
  display: block;
  line-height: 2em;
}
section#requirements .txt-b svg {
  display: flex;
  margin: 0 auto;
  margin-top: 1vw;
  width: 2vw;
  height: 2vw;
}

/* モバイル用（767px以下） */
@media screen and (max-width: 767px) {
  section#requirements .inner {
    padding: 60px 0;
  }
  section#requirements .txt-h2 {
    margin-bottom: 40px;
  }
  section#requirements .recruitment-container {
    margin: 0 auto 40px;
  }
  section#requirements .recruitment-container::after {
    width: 82vw;
    height: 76.3vw;
  }
  section#requirements .tab-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  section#requirements .tab-button {
    padding: 7px 20px;
    font-size: 16px;
    border-radius: 5px;
  }
  section#requirements .tab-content {
    padding: 0;
  }
  section#requirements .job-details dl {
    margin-bottom: 0;
    padding: 20px 10px;
  }
  section#requirements .job-details dt {
    padding: 0;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
    width: 100%;
    margin-bottom: 15px;
  }
  section#requirements .job-details dd {
    padding: 0;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    width: 100%;
  }
  section#requirements .tab-button.active::after {
    height: 3px;
  }
  section#requirements .txt-b {
    font-size: 14px;
  }
  section#requirements .txt-b svg {
    width: 30px;
    height: 30px;
    margin-top: 20px;
  }
}
/*# sourceMappingURL=recruit.css.map */