@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #323232;
  --color-white: #ffffff;
  --color-primary: #2ECC71;
  --color-bg-green: #F1F7F4;
  --color-line-gy: #ECECEC;

  --noto-sans: "Noto Sans JP", sans-serif;
  --raleway: "Raleway", sans-serif;

}

/*================================================
 * mainVisual
 ================================================*/
#mainVisual {
  margin-bottom: 3.2rem;
  padding-right: clamp(0rem, (100vw - 2000px) * 0.5, 11rem);
  position: relative;
}

#mainVisual::before {
  position: absolute;
  content: "";
  width: clamp(1rem, 48.26vw, 967px);
  height: clamp(1rem, 87.77vw, 1756px);
  top: 0;
  left: 0;
  background: var(--color-white);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  opacity: 0.4;
  z-index: -1;
}

#mainVisual .wrap {
  position: relative;
  padding-left: 11rem;
}

#mainVisual .scroll {
  position: absolute;
  left: 5.6rem;
  bottom: 2.7rem;
  writing-mode: vertical-rl;
  width: 0.2rem;
  background: #E5E5E5;
  height: 8rem;
  overflow: hidden;
}

#mainVisual .scroll::before {
  position: absolute;
  content: "";
  animation: 2s scroll infinite;
  background: var(--color-primary);
  height: 2.4rem;
  left: 0;
  margin: auto;
  right: 0;
  width: 0.2rem;
}


@keyframes scroll {
  0% {
    opacity: 0;
    top: -10%;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 100%;
  }
}



/* important */
.important {
  display: flex;
  align-self: stretch;
  font-size: 1.5rem;
  background: var(--color-white);
}

.important p {
  font-size: 1.5rem;
}

.important-ttl {
  background: #DF1014;
  color: var(--color-white);
  padding: 1.2rem 0;
  width: 22.3rem;
  height: auto;
  display: grid;
  place-content: center;
}

.important-ttl span {
  position: relative;
  padding-left: 3.4rem;
}

.important-ttl span::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../img/icon_important.png);
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.important div {
  padding: 1.2rem 4.2rem;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 2.2rem;
  width: calc(100% - 22.3rem);
}

.important div span {
  color: #A6A6A6;
}

@media screen and (max-width:1024px) {
  #mainVisual {
    margin-bottom: 5.7rem;
  }

  #mainVisual::before {
    width: 90.4vw;
    height: 164.533vw;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    opacity: 1;
  }

  #mainVisual .wrap {
    padding-left: 2rem;
    padding-right: 0;
  }

  .important {
    display: block;
    margin-top: 4.4rem;
    font-size: 1.3rem;
  }

  .important-ttl {
    width: 100%;
  }

  .important-ttl span {
    padding-left: 3.8rem;
  }

  .important div {
    display: block;
    width: 100%;
    padding: 1.5rem 1.8rem;
  }

  .important p {
    font-size: 1.3rem;
  }

  #mainVisual h1.sp {
    width: 8rem;
    position: absolute;
    top: 0.8rem;
    left: 0.6rem;
  }

  #mainVisual .scroll {
    left: 1.6rem;
    top: 35vw;
  }

}

/*================================================
 * pickup
 ================================================*/
#pickup {
  padding-right: clamp(0rem, (100vw - 2000px) * 0.5, 11rem);
}

#pickup h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#pickup .wrap {
  padding-left: 11rem;
}

.p_swiper-outer {
  position: relative;
}

.swiper.pick_swiper {
  padding-top: 2rem;
  padding-bottom: 11rem;
}

.pick_swiper .swiper-slide {
  display: block;
  box-shadow: 0.4rem 0.4rem 2.4rem rgb(0 0 0 / 10%);
  width: 30rem;
}

/* arrow */
.p_swiper-outer .p_button-prev,
.p_swiper-outer .p_button-next,
.p_custom-pagination {
  display: block;
  z-index: 20;
}


.p_custom-pagination.custom-pagination {
  position: absolute;
  top: -3.5rem;
  right: calc(11rem + 7rem);
  font-size: 1.4rem;
}

.p_swiper-outer .swiper-button-next,
.p_swiper-outer .swiper-button-prev {
  top: -1rem;
  width: 0.709rem;
  height: 1.6rem;
  z-index: 20;
}

.p_swiper-outer .swiper-button-next {
  right: calc(11rem + 2rem);
}

.p_swiper-outer .swiper-button-prev {
  left: auto;
  right: calc(11rem + 13.2rem);
}

.p_swiper-outer .swiper-button-prev:after,
.p_swiper-outer .swiper-button-next:after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p_swiper-outer .swiper-button-next:after {
  background-image: url(../img/arrow_single.png);
}

.p_swiper-outer .swiper-button-prev:after {
  background-image: url(../img/arrow_single_prev.png);
}

.p_swiper-outer .swiper-button-next.swiper-button-disabled,
.p_swiper-outer .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}

#sm_pickup {
  display:none;
}

@media screen and (max-width:1024px) {
  #pickup .wrap {
    padding-left: 1.8rem;
    padding-right: 0;
  }

  .swiper.pick_swiper {
    padding-bottom: 6.5rem;
  }

  .pick_swiper .swiper-slide {
    width: 27rem;
  }

  /* arrow */
  .p_custom-pagination.custom-pagination {
    top: -2.5rem;
    right: 7rem;
    font-size: 1.2rem;
  }

  .p_swiper-outer .swiper-button-next {
    top: 0;
    right: 2rem;
  }

  .p_swiper-outer .swiper-button-prev {
    top: 0;
    right: 13.2rem;
  }
}


/*================================================
 * admission
 ================================================*/
#admission {
  padding-top: 6.5rem;
  padding-right: 0;
}

#admission::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-position: center right;
  background-image: url(../img/admission_bg.png);
  min-width: 89.8rem;
  width: clamp(1rem, 62.36vw, 2000px);
  height: 56.4rem;
  top: 0;
  left: -1.6rem;
  z-index: -1;
}

.admission_txt {
  min-height: 580px;
  width: 81%;
  margin-left: auto;
  min-width: 940px;
  padding: 9.5rem 23.5rem 9.5rem 37rem;
  background: var(--color-white);
  clip-path: polygon(326px 0, 100% 0%, 100% 100%, 0% 100%);
}

.admission_txt p {
  margin: 4rem 0;
}

@media screen and (max-width:1024px) {
  #admission {
    padding-top: 11rem;
  }

  #admission::before {
    min-width: unset;
    min-width: 445px;
    height: 280px;
    left: 0;
    background-position: center top;
    z-index: 1;
  }

  .admission_txt {
    min-width: unset;
    min-height: unset;
    clip-path: unset;
    padding: 20.7rem 2.7rem 6rem;
    width: 100%;
  }
  
  .admission_txt h2 {
    margin-top:3rem;
  }

}


/*================================================
 * laboratory
 ================================================*/
#laboratory {
  background: #E9F5EF;
  margin-top: 19.4rem;
  padding-right: 0;
}

#laboratory::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-position: center;
  background-image: url(../img/laboratory_bg.png);
  width: 86.8rem;
  height: 56.1rem;
  top: -6.5rem;
  right: -16rem;
  z-index: 1;
}

@media screen and (max-width:1180px) {

#laboratory::before{
  width: 72.8rem;
  height: 46.1rem;

}

}

#laboratory .loop-txt {
  position: absolute;
  top: -12rem;
  left: 0;
  z-index: -2;
  width: 100%;
}

.loop_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

#laboratory .loop_swiper .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#laboratory .loop_swiper .swiper-slide img {
  max-width: unset;
  width: auto;
  height: 124px;
}

.laboratory_txt {
  padding: 12rem 71.5rem 12rem 11rem;
  min-width: 116rem;
  min-height: 61.2rem;
  position: relative;
  z-index: 1;
}

.laboratory_txt p {
  font-size: 1.6rem;
  margin: 4rem 0;
}


@media screen and (max-width:1024px) {
  #laboratory {
    margin-top: 13rem;
  }

  #laboratory::before {
    width: 61.5rem;
    height: 38.2rem;
    top: -7.7rem;
    right: -9rem;
    z-index: 1;
  }

  #laboratory .loop-txt {
    top: -8rem;
  }

  #laboratory .loop_swiper .swiper-slide img {
    height: 80px;
  }
  .laboratory_txt {
    position: relative;
    z-index: 1;
    min-width: unset;
    padding: 34.4rem 2.7rem 6rem;
  }
}



/*================================================
 * news
 ================================================*/
#news {
  padding-top: 11rem;
  padding-bottom: 15rem;
  background: rgb(241, 247, 244);
  background: linear-gradient(180deg, rgba(241, 247, 244, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
}

#news .narrow {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-right: auto;
  gap: 4rem;
}

.news_ttl h2 {
  margin-bottom: 4rem;
}

.news_ttl .btnArea a {
  width: 22rem;
}

.news_list {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}

.news_list li {
  max-width: 30rem;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #E5E5E5;
  min-height:38rem;
}

.news_list .news_img {
  width: 100%;
  aspect-ratio: 300/200;
  position: relative;
}

.news_list .news_img::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../img/no-img.jpg);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.news_list .news_img img {
  width: 100%;
  aspect-ratio: 300/200;
  overflow: hidden;
  object-fit: cover;
}

.news_list .news_img span {
  width: 10.3rem;
  display: block;
  padding: 1rem 0 1rem 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-white);
  font-family: var(--raleway);
  clip-path: polygon(0 0, 100% 0%, 78% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.news_list h3 {
  font-size: 1.6rem;
  margin: 2.4rem 0 1.6rem;
  font-weight: 400;
  min-height:160px;
}

.news_list p {
  color: #A6A6A6;
  font-weight: 400;
  font-size:1.4rem;
}

@media screen and (max-width:1180px) {
 .news_list li {
    width:80%;
    min-height:auto;
    max-width:100%;
  }

  .news_list h3 {
    min-height:auto;
  }


}

@media screen and (max-width:1024px) {
  #news {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  #news .narrow {
    flex-wrap: wrap;
    justify-content: start;
    gap: 0;
  }

    .news_list {
      width:80%;
      margin-left:auto;
      margin-right:auto;
    }

  .news_list li {
    margin: 0 auto;
    max-width: unset;
    width: 48.58%;
  }

  .news_list h3 {
    margin: 1.8rem 0 0.8rem;
    min-height:auto;
  }

  #news .btnArea.sp {
    margin: 3rem auto 0;
  }
}

@media screen and (max-width:767px) {
  .news_list li {
    width: 94%;
    max-width: 40rem;
  }
}


@media screen and (max-width: 520px) {

    .news_list {
      width:100%;
    }

    .pick_swiper .swiper-slide{
      width:52%;
    }

    h2.hd.line .ja {
      display:none;
    }
    #fix_btn span{
      padding-left:2.1rem;
      width:20.3rem;
      height:5rem;
    }
    #fix_btn span::before {
      left:3.7rem;
    }
    #fix_btn ul li.closeFix {
      padding:1.2rem 3rem 1.2rem 2.4rem;
    }
    #fix_btn ul a {
      font-size:1.4rem;
      padding:1rem 3rem 1rem 2rem;
    }
}

/*================================================
 * interview
 ================================================*/
#interview {
  padding-top: 5.4rem;
  padding-bottom: 7.4rem;
  min-height: 41.7rem;
  z-index: 1;
}

#interview::before {
  position: absolute;
  content: "";
  background: var(--color-white);
  top: 0;
  bottom: 0;
  left: 0;
  right: 11rem;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 23.4rem) 100%, 0% 100%);
}

#interview .narrow {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 11rem;
}

#interview h2.sp {
  display: none;
}

.interview_img {
  width: 42rem;
}

.interview_txt {
  padding-right: 7rem;
}

.interview_txt p {
  margin: 4rem 0;
}

@media screen and (max-width:1024px) {
  #interview {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  #interview::before {
    background: var(--color-white);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    clip-path: unset;
    opacity: 0.8;
  }

  #interview .narrow {
    display: block;
  }

  #interview h2.pc {
    display: none;
  }

  #interview h2.sp {
    display: block;
    max-width: 40rem;
    margin: 0 auto;
  }

  .interview_img {
    width: 100%;
    max-width: 40rem;
    margin: 4.5rem auto 3rem;
  }

  .interview_txt {
    padding: 0;
    max-width: 40rem;
    margin: 0 auto;
  }

  .interview_txt p {
    margin: 3rem 0;
  }
}

/*================================================
 * career
 ================================================*/
#career {
  padding-top: 6rem;
  padding-bottom: 12rem;
}

#career .narrow {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15rem;
}

#career h2.sp {
  display: none;
}

.career_img {
  width: 42rem;
}

.career_txt p {
  margin: 4rem 0;
}

@media screen and (max-width:1024px) {
  #career {
    padding-bottom: 6rem;
  }

  #career .narrow {
    display: block;
  }

  .career_img {
    width: 100%;
    max-width: 40rem;
    margin: 4.5rem auto 3rem;
  }

  .career_txt {
    padding: 0;
    max-width: 40rem;
    margin: 0 auto;
  }

  .career_txt p {
    margin: 3rem 0;
  }
}

/*================================================
 * banner
 ================================================*/
#banner {
  padding-bottom: 11rem;
}

.banner_swiper .swiper-slide {
  display: block;
  width: 22rem;
  height: 11rem;
}

.banner_swiper .swiper-slide img {
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


@media screen and (max-width:1024px) {
  #banner {
    padding-bottom: 10rem;
  }
}

/*================================================
 * 
 ================================================*/



@media screen and (max-width:1024px) {}

/*================================================
 * 
 ================================================*/



@media screen and (max-width:1024px) {}

/*================================================
 * add
 ================================================*/
 section img {
  border:none;
 }