@charset "UTF-8";
/* ==================================================
home.css
================================================== */
.section-wrap {
  display: flex;
  flex-wrap: wrap;
}
.section__heading {
  display: flex;
  justify-content: space-between;
  flex: none;
  width: 100%;
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .section__heading {
    flex-direction: column;
    width: 25%;
    padding-right: 32px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1408px) {
  .section__heading {
    width: 20%;
  }
}
.section__heading-ttl {
  display: block;
  margin-bottom: 0.5em;
  color: #3d4a50;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1024px) {
  .section__heading-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1216px) {
  .section__heading-ttl {
    font-size: 3rem;
  }
}
.section__heading-subttl {
  display: block;
  color: #65ac92;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1216px) {
  .section__heading-subttl {
    font-size: 1.8rem;
  }
}
.section__content {
  flex: none;
  width: 100%;
  padding-top: 16px;
}
@media screen and (min-width: 1024px) {
  .section__content {
    width: 75%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1408px) {
  .section__content {
    width: 80%;
  }
}

/* ==================================================
 1.0 - Hero
-------------------------------------------------- */
.section-hero {
  position: relative;
  padding-bottom: 48px;
}
.section-hero::before, .section-hero::after {
  position: absolute;
  bottom: 0;
  background-color: #f3f5f1;
  content: "";
}
.section-hero::before {
  top: 0;
  left: 50%;
  width: 50%;
}
.section-hero::after {
  top: 430px;
  left: 0;
  width: 100%;
}

.container-hero, .container-recruit {
  flex-grow: 1;
  position: relative;
  width: auto;
  max-width: 1600px !important;
  margin: 0 auto;
}

.hero-text {
  position: absolute;
  top: 30%;
  left: 8%;
  z-index: 2;
  width: 655px;
  height: 120px;
}

/* --------------------------------------------------
 1.1 - Swiper
-------------------------------------------------- */
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------
 1.2 - Swiper Main
-------------------------------------------------- */
.section-hero .swiper-area {
  position: relative;
}
.section-hero .swiper-main {
  margin-right: 90px;
  margin-left: min(40rem, 16.66667%);
}
.section-hero .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.section-hero .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.section-hero .slide-media {
  height: 550px;
  border-bottom-left-radius: 32px;
  background-color: #ffffff;
  -webkit-mask-image: -webkit-radial-gradient(white, white);
}
.section-hero .slide-media img {
  -webkit-transition: 6s 1s ease-out;
  transition: 6s 1s ease-out;
}
.section-hero .slide-content {
  margin: 32px 48px;
  opacity: 0;
  transition: all 0.25s ease;
}
.section-hero .slide-content__ttl {
  width: 300px;
  margin-bottom: 16px;
  font-size: 2rem;
}
.section-hero .slide-content__text {
  width: 75%;
  padding-left: 16px;
}
.section-hero .swiper-slide[class*=-active] .slide-media img {
  transform: scale(1.05);
  transition-delay: 0s;
}
.section-hero .swiper-slide[class*=-active] .slide-content {
  opacity: 1;
}

/* --------------------------------------------------
 1.3 - Swiper Thumbnail
-------------------------------------------------- */
.section-hero .swiper-thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 364px;
  height: 214px;
  padding: 32px 0 32px 32px;
  border-bottom-left-radius: 32px;
  background-color: #ffffff;
}
.section-hero .swiper-thumb .swiper-slide {
  width: 150px !important;
  height: 150px !important;
}
.section-hero .thumb {
  display: grid;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: 2s var(--easing);
  -webkit-mask-image: -webkit-radial-gradient(white, white);
}
.section-hero .thumb::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  width: 6px;
  background-color: var(--color-theme);
  transition: 1s var(--easing);
  content: "";
}
.section-hero .thumb-media {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
}
.section-hero .thumb-media img {
  transition: 3s var(--easing);
}
.section-hero .swiper-slide-thumb-active .thumb::before {
  transform: scaleY(1);
}
.section-hero .swiper-slide-thumb-active .thumb-media img {
  opacity: 0.3;
  transform: scale(1.1);
}

/* --------------------------------------------------
 1.4 - Swiper Navigation
-------------------------------------------------- */
.section-hero .swiper-button {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 480px;
}
.section-hero .swiper-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  margin-left: -10px;
  background-color: #ced6c9;
  content: "";
}
.section-hero .swiper-button-prev,
.section-hero .swiper-button-next {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.section-hero .swiper-button-prev::after,
.section-hero .swiper-button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border: solid #ced6c9;
  border-width: 2px 2px 0 0;
  content: "";
}
.section-hero .swiper-button-prev::after {
  transform: rotate(-45deg);
  margin-top: -3px;
}
.section-hero .swiper-button-next::after {
  transform: rotate(135deg);
  margin-top: -8px;
}
.section-hero .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.section-hero .swiper-current,
.section-hero .swiper-total {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 32px;
  height: 50px;
  color: #ced6c9;
  font-size: 1.6rem;
  font-weight: 700;
}

/* --------------------------------------------------
 1.5 - Scroll Down
-------------------------------------------------- */
.scroll-down {
  position: absolute;
  left: 16px;
  bottom: 0;
  z-index: 1;
  padding-bottom: 128px;
  color: #7b8683;
  font-size: 1.2rem;
  cursor: default;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.scroll-down::before, .scroll-down::after {
  position: absolute;
  left: calc(50% - 2px);
  bottom: 0;
  width: 1px;
  height: 110px;
  background-color: #f3f5f1;
  content: "";
}
.scroll-down::after {
  height: 80px;
  background-color: #ced6c9;
  -webkit-animation: scrollDownAni 2s linear infinite both;
  animation: scrollDownAni 2s linear infinite both;
}

@keyframes scrollDownAni {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* ==================================================
 2.0 - 重要なお知らせ
-------------------------------------------------- */
.section-important-notice {
  padding-top: 32px;
  padding-bottom: 80px;
  background-color: #f3f5f1;
}
@media screen and (min-width: 1024px) {
  .section-important-notice .section__heading {
    margin-top: 16px;
  }
}
.section-important-notice article:not(:first-child) {
  margin-top: 32px;
}
.section-important-notice .post-header {
  display: flex;
  align-items: flex-end;
  gap: 1.75rem;
}
.section-important-notice .post-header__ttl, .section-important-notice .post-header__time {
  position: relative;
  z-index: 1;
}
.section-important-notice .post-header__ttl::before, .section-important-notice .post-header__time::before {
  position: absolute;
  right: -1rem;
  bottom: 0.25rem;
  left: -1rem;
  z-index: -1;
  height: 8px;
  background-color: #f6ff14;
  content: "";
}
.section-important-notice .post-header__ttl {
  order: 2;
  font-size: 1.6rem;
  font-weight: 700;
}
.section-important-notice .post-header__ttl::before {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
.section-important-notice .post-header__time {
  order: 1;
  font-size: 1.4rem;
}
.section-important-notice .post-header__time::before {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.section-important-notice .post-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ==================================================
 3.0 - ターゲット別リンク
-------------------------------------------------- */
.section-target {
  padding-top: 80px;
  padding-bottom: 48px;
  background-color: #ffffff;
}

@media screen and (min-width: 520px) {
  .target__list {
    display: flex;
    flex-wrap: wrap;
  }
  .target__item {
    flex: none;
    width: 50%;
  }
}
.target__item-img {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: auto;
}
.target__item-btn {
  margin: 32px auto 48px;
}
@media screen and (min-width: 520px) {
  .target__item-btn {
    max-width: 210px;
  }
}
@media screen and (min-width: 769px) {
  .target__item-btn {
    max-width: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .target__item-btn {
    max-width: 210px;
  }
}
@media screen and (min-width: 1216px) {
  .target__item-btn {
    max-width: 220px;
  }
}
@media screen and (min-width: 1408px) {
  .target__item-btn {
    max-width: 240px;
  }
}

/* ==================================================
 4.0 - 外来受付のご案内
-------------------------------------------------- */
.section-information {
  position: relative;
  width: 100%;
  margin-bottom: 64px;
  padding-top: 110px;
  padding-bottom: 0;
}
.section-information::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 70px;
  left: 0;
  background: url(/images/home/bg_information.jpg) 50% 0 no-repeat;
  background-size: cover;
  content: "";
}
.section-information .box {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .section-information .box {
    max-width: 960px;
  }
}
@media screen and (min-width: 1216px) {
  .section-information .box {
    max-width: 1152px;
  }
}
@media screen and (min-width: 1408px) {
  .section-information .box {
    max-width: unset;
  }
}

.information__item {
  position: relative;
  padding-right: 32px;
  padding-left: 32px;
}
.information__item::before {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  background: url(/images/common/bg_dots.svg) 50% 0 repeat-y;
  background-size: 20px 20px;
  content: "";
}
@media screen and (min-width: 1024px) {
  .information__item:first-child {
    padding-right: 64px;
    padding-left: 0;
  }
  .information__item:first-child::before {
    display: block;
    right: 6px;
  }
  .information__item:last-child {
    padding-right: 0;
    padding-left: 64px;
  }
  .information__item:last-child::before {
    display: block;
    left: 6px;
  }
}
.information__item-ttl {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  color: #3d4a50;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
.information__item-ttl::before {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  z-index: -1;
  height: 8px;
  border-radius: 999px;
  background-color: #f6ff14;
  content: "";
}
.information__item-btn {
  height: 35px;
  margin: 16px auto 32px;
}
.information__item-btn::after {
  height: 19px;
}
.information__content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 8rem;
}
.information__content .typo {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.information__content-tel {
  font-size: 2.4rem;
}
@media screen and (min-width: 1024px) {
  .information__content-tel {
    font-size: 2.2rem;
    letter-spacing: 0.075em;
  }
}
@media screen and (min-width: 1216px) {
  .information__content-tel {
    font-size: 2.4rem;
  }
}
.information__content-tel::before {
  background-image: url(/images/common/ico_phone.svg);
  background-position: 50% 52%;
  background-size: 18px;
}
.information__content-tel span {
  padding-left: 0.25em;
  font-size: 0.75em;
  letter-spacing: normal;
}
.information__content-hours {
  width: 100%;
}
.information__content-hours li {
  position: relative;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.information__content-hours li:not(:first-child) {
  padding-top: calc(0.25em + 1px);
}
.information__content-hours li:not(:first-child)::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 2px;
  border-radius: 999px;
  background-color: #f3f5f1;
  content: "";
}

/* ==================================================
 5.0 - 新着情報
-------------------------------------------------- */
.section-news {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ffffff;
}

/* ==================================================
 6.0 - 採用情報
-------------------------------------------------- */
.container-recruit {
  max-width: 1408px !important;
}

.recruit-wrap {
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px;
  border-radius: 32px;
  background-image: linear-gradient(125deg, #cde9df, #f5fafb);
}
.recruit-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 32px;
  background: url(/images/home/bg_recruit.png) 50% 50% no-repeat;
  background-size: cover;
  content: "";
}

.recruit {
  width: 100%;
  padding: 0;
}
@media screen and (min-width: 1216px) {
  .recruit {
    width: 90%;
  }
}
.recruit__heading {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .recruit__heading {
    max-width: 320px;
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading {
    max-width: 400px;
  }
}
.recruit__heading::before, .recruit__heading::after {
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 1024px) {
  .recruit__heading::before, .recruit__heading::after {
    width: 160px;
    height: 160px;
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading::before, .recruit__heading::after {
    width: 190px;
    height: 190px;
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading::before, .recruit__heading::after {
    width: 200px;
    height: 200px;
  }
}
.recruit__heading::before {
  top: 200px;
  left: 0;
  background-image: url(/images/page/recruit/img_recruit_03.jpg);
  transform: translateX(-20%);
}
.recruit__heading::after {
  top: 220px;
  right: 0;
  background-image: url(/images/page/recruit/img_recruit_04.jpg);
  transform: translateX(20%);
}
.recruit__heading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: none;
  position: relative;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .recruit__heading-inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.recruit__heading-inner::before, .recruit__heading-inner::after {
  position: absolute;
  left: 50%;
  width: 130px;
  height: 180px;
  margin-left: -65px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 769px) {
  .recruit__heading-inner::before, .recruit__heading-inner::after {
    width: 182px;
    height: 252px;
    margin-left: -91px;
  }
}
@media screen and (min-width: 1024px) {
  .recruit__heading-inner::before, .recruit__heading-inner::after {
    width: 208px;
    height: 288px;
    margin-left: -104px;
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading-inner::before, .recruit__heading-inner::after {
    width: 247px;
    height: 342px;
    margin-left: -123px;
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading-inner::before, .recruit__heading-inner::after {
    width: 260px;
    height: 360px;
    margin-left: -130px;
  }
}
.recruit__heading-inner::before {
  top: -8px;
  background-image: url(/images/page/recruit/img_recruit_01.jpg);
  transform: translateX(-120%);
}
@media screen and (min-width: 1024px) {
  .recruit__heading-inner::before {
    top: 32px;
    transform: translateX(-130%);
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading-inner::before {
    top: 16px;
    transform: translateX(-135%);
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading-inner::before {
    transform: translateX(-145%);
  }
}
.recruit__heading-inner::after {
  top: 0;
  background-image: url(/images/page/recruit/img_recruit_02.jpg);
  transform: translateX(120%);
}
@media screen and (min-width: 1024px) {
  .recruit__heading-inner::after {
    top: unset;
    bottom: 32px;
    transform: translateX(130%);
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading-inner::after {
    bottom: 16px;
    transform: translateX(135%);
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading-inner::after {
    transform: translateX(145%);
  }
}
.recruit__heading-ttl {
  margin-bottom: 1em;
  color: #3d4a50;
  font-size: 3.6rem;
}
@media screen and (min-width: 1024px) {
  .recruit__heading-ttl {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading-ttl {
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading-ttl {
    font-size: 4.8rem;
  }
}
.recruit__heading-subttl {
  margin-bottom: 1em;
  font-size: 2rem;
}
@media screen and (min-width: 1216px) {
  .recruit__heading-subttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading-subttl {
    font-size: 2.4rem;
  }
}
.recruit__heading-catch {
  max-width: 240px;
  margin-bottom: 1em;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .recruit__heading-catch {
    margin-bottom: 5em;
  }
}
@media screen and (min-width: 1024px) {
  .recruit__heading-catch {
    max-width: 100%;
    margin-bottom: 1em;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading-catch {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1408px) {
  .recruit__heading-catch {
    font-size: 2.4rem;
  }
}
.recruit__heading-lead {
  width: 80%;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  .recruit__heading-lead {
    width: 100%;
    max-width: 100%;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .recruit__heading-lead {
    font-size: 1.6rem;
  }
}
.recruit .box {
  padding: 0;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.7);
}
.recruit__list {
  overflow: hidden;
  margin: 0;
  border: 1px solid #ffffff;
  border-radius: 16px;
}
.recruit__item {
  height: 120px;
  padding: 0;
}
.recruit__item:nth-child(3), .recruit__item:nth-child(4) {
  border-top: 1px solid #ffffff;
}
.recruit__item-link {
  display: flex;
  height: 100%;
  transition: background-color 0.5s ease;
}
.recruit__item-link .ico-arrow {
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 16px);
  margin: 16px 8px;
}
.recruit__item-link:hover, .recruit__item-link:focus, .recruit__item-link:active {
  background-color: #ffffff;
}
.recruit__item-link:hover .recruit__item-img, .recruit__item-link:focus .recruit__item-img, .recruit__item-link:active .recruit__item-img {
  opacity: 0.5;
}
.recruit__item-ttl {
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  font-weight: normal;
}
.recruit__item-subttl {
  color: #3f9877;
  font-size: 1.3rem;
}
.recruit__item-img {
  position: relative;
  overflow: hidden;
  width: 50%;
  transition: all 0.5s ease;
}
.recruit__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================
 7.0 - バナー
-------------------------------------------------- */

/*# sourceMappingURL=home.css.map */
