@charset "UTF-8";
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --main_font_color: #335467;
  --white: #FFFFFF;
  --green: #4DAE51;
  --bg_green: #E3F4CD;
  --bg_blue: #CDE8F4;
  --bg_blue_2: #D5F4F5;
  --bg_blue_3: #EDFAFA;
  --bg_blue_4: #E9F3F5;
  --border_color: #B9E9EE;
  --blue: #2F96AD;
  --bg_yellow: #F8F0C3;
  --yellow: #B8A74A;
  --orange: #EE8E49;
  --bg_orange: #F4E2CD;
  --pink: #C670D3;
  --bg_pink: #F4D9D9;
  --red: #674733;
  --box_shadow: 2px 2px 10px rgba(47, 150, 173, .3);
}

/* flexの基本の形 */
.flex_basic {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* gideの基本の形 */
.grid_basic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* gnav */
@media screen and (min-width: 751px) {
  #nav_recruit > a .hover_line {
    color: var(--blue);
  }
  #nav_recruit > a .hover_line::before {
    transform: scale(1, 1);
  }
}
/* main_view */
#main_view {
  background: var(--bg_blue_2);
}
#main_view > div {
  position: relative;
  max-width: 1180px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main_view > div::before, #main_view > div::after {
  content: "";
  position: absolute;
  display: block;
  width: 300px;
  height: 270px;
  z-index: 0;
}
#main_view > div::before {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../../assets/img/recruit_banner_left.png) no-repeat left center;
  background-size: auto 100%;
}
#main_view > div::after {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../../assets/img/recruit_banner_right.png) no-repeat left center;
  background-size: auto 100%;
}
#main_view > div h1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: 80%;
  width: 450px;
  border-radius: 10px 60px 10px 60px;
  background: var(--white);
  z-index: 2;
}
#main_view > div h1 img {
  width: 110px;
}
#main_view > div h1 strong {
  color: var(--blue);
}
@media screen and (max-width: 750px) {
  #main_view > div::before, #main_view > div::after {
    display: none;
  }
  #main_view > div h1 {
    width: 90%;
    border-radius: 2.6666666667vw 16vw 2.6666666667vw 16vw;
  }
}

section {
  align-items: center;
}

/* detailes */
#detailes .icon_find {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.8rem;
  gap: 10px;
}
#detailes .icon_find img {
  width: 70px;
  height: auto;
}
#detailes .swiper {
  width: 100%;
  max-width: 960px;
  height: 200px;
}
#detailes .swiper .swiper-slide img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 750px) {
  #detailes .icon_find {
    font-size: 6.4vw;
    gap: 2.6666666667vw;
  }
  #detailes .icon_find img {
    width: 18.6666666667vw;
  }
  #detailes .swiper {
    height: 57.3333333333vw;
  }
  #detailes .swiper .swiper-slide {
    width: auto;
    height: 100%;
  }
  #detailes .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.6666666667vw;
  }
  #detailes .pagination span {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  #detailes .pagination .swiper-pagination-bullet-active {
    background: var(--blue);
  }
}

/* schedule */
#education {
  position: relative;
}
#education::after {
  content: "";
  position: absolute;
  top: 200px;
  left: -19.4444444444vw;
  display: block;
  width: 55.5555555556vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_blue.png) no-repeat top right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
#education::before {
  content: "";
  position: absolute;
  bottom: -500px;
  right: -19.4444444444vw;
  display: block;
  width: 55.5555555556vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_green.png) no-repeat top right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  #education::after {
    top: 186.6666666667vw;
    left: 0;
    width: 90%;
    height: 133.3333333333vw;
  }
  #education::before {
    width: 100%;
    right: 0;
    bottom: 200vw;
    background-position: top right -19.4444444444vw;
  }
  #education .scroll.img_1 img {
    height: 220.2666666667vw;
  }
  #education .scroll.img_2 img {
    height: 106.6666666667vw;
  }
}

/* detailes */
.detailes {
  position: relative;
  align-items: center;
}
.detailes .block {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 60px;
}
.detailes .block .find_2 {
  padding-bottom: 0.5em;
  border-bottom: 2px dotted var(--border_color);
}
.detailes .block .float {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.detailes .block .float .img {
  width: 350px;
  height: 350px;
  background: #C4C4C4;
  box-shadow: var(--box_shadow);
  border-radius: 10px 60px 10px 60px;
}
.detailes .block .float img {
  border-radius: 10px;
  box-shadow: var(--box_shadow);
}
.detailes .block .img_list {
  border: 2px solid var(--border_color);
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}
.detailes .block .img_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px dotted var(--border_color);
  padding-bottom: 30px;
  margin-bottom: 30px;
  margin-left: 0;
  text-indent: 0;
}
.detailes .block .img_list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.detailes .block .img_list li::before {
  display: none;
}
.detailes .block .img_list li strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.detailes .block .img_list li strong::before {
  content: "●";
  margin-right: 0.5em;
  color: var(--blue);
  font-weight: 500;
}
.detailes .block .img_list li > div {
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  gap: 40px;
}
.detailes .block .img_list li > div figure {
  width: 240px;
  text-align: center;
}
.detailes .block .img_list li > div figure div {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--box_shadow);
  margin-bottom: 10px;
}
.detailes .block .img_list li > div figure div img {
  max-width: 100%;
  height: 100%;
}
.detailes .block .img_list.grid_4 li > div {
  grid-template-columns: repeat(4, 0fr);
}
.detailes .block .img_list.grid_4 li > div figure {
  width: 194px;
}
.detailes .block .img_list.grid_4 li > div figure div {
  height: 140px;
  margin-bottom: 0;
}
.detailes .block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .detailes .icon_find {
    font-size: 6.4vw;
    gap: 2.6666666667vw;
  }
  .detailes .icon_find img {
    width: 18.6666666667vw;
  }
  .detailes .block {
    margin-bottom: 8vw;
  }
  .detailes .block .float {
    flex-direction: column;
    align-items: center;
    gap: 5.3333333333vw;
    margin-bottom: 8vw;
  }
  .detailes .block .float img {
    width: 32vw;
    height: 40vw;
  }
  .detailes .block .float .img {
    width: 95%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 2.6666666667vw 16vw 2.6666666667vw 16vw;
  }
  .detailes .block .img_list {
    padding: 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
  .detailes .block .img_list li:not(:last-child) {
    padding-bottom: 8vw !important;
    margin-bottom: 8vw !important;
  }
  .detailes .block .img_list li strong {
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .detailes .block .img_list li > div {
    grid-template-columns: repeat(2, 0fr);
    gap: 4vw;
  }
  .detailes .block .img_list li > div figure {
    width: 36.8vw;
  }
  .detailes .block .img_list li > div figure div {
    height: 24.5333333333vw;
  }
  .detailes .block .img_list li > div figure figcaption {
    font-size: 3.7333333333vw;
  }
  .detailes .block .img_list.grid_4 li > div {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .detailes .block .img_list.grid_4 li > div figure {
    width: 36.8vw;
  }
  .detailes .block .img_list.grid_4 li > div figure div {
    height: 26.6666666667vw;
  }
}/*# sourceMappingURL=recruit.css.map */