@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-functions
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
.-font-serif {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
}

.-font-set-j {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.-font-set-e {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
home
-----------------------------------------------------*/
.-scrollDown {
  display: none;
  position: absolute;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media screen and (min-width: 960px) {
  .-scrollDown {
    width: 14px;
    display: block;
    position: absolute;
    left: 46px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways-right;
    top: calc(100svh - 223px);
    overflow: hidden;
    height: 223px;
    color: #2D6540;
    line-height: 1;
    font-size: 10px;
  }
}
.-scrollDown:before {
  -webkit-animation: fadeInThenScroll 4s infinite;
          animation: fadeInThenScroll 4s infinite;
  content: "";
  display: block;
  left: -14px;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 223px;
  background: #FFFEEB;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 254, 1)), to(rgb(54, 102, 88)));
  background: linear-gradient(180deg, rgb(255, 254, 1) 0%, rgb(54, 102, 88) 100%);
}
@-webkit-keyframes fadeInThenScroll {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 223px);
            transform: translate(0, 223px);
  }
}
@keyframes fadeInThenScroll {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 223px);
            transform: translate(0, 223px);
  }
}

.p-home-kv {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 60svh;
}
.p-home-kv .swiper-kv {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-home-kv {
    height: 80svh;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-home-kv .swiper-slide-active .swiper-img,
.p-home-kv .swiper-slide-duplicate-active .swiper-img,
.p-home-kv .swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
.p-home-kv .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 60svh;
}
@media screen and (min-width: 768px) {
  .p-home-kv .swiper-slide img {
    height: 80svh;
  }
}
.p-home-kv .swiper-slide img.swiper-kv-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home-kv .swiper-slide img.swiper-kv-pc {
    display: block;
  }
}
.p-home-kv .swiper-slide img.swiper-kv-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-kv .swiper-slide img.swiper-kv-sp {
    display: none;
  }
}
.p-home-kv .swiper-wrapper {
  z-index: 0;
}
.p-home-kv .controls {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home-kv .controls {
    display: block;
  }
}
.p-home-kv .control-btn {
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  width: 24px;
  height: 24px;
  display: none;
}
.p-home-kv .control-btn.display {
  display: block; /* または display: inline-block; */
}
.p-home-kv .control-btn.swiper_pause {
  background: url(../img/swiper/btn_stop.png) no-repeat 50% 50%/contain;
}
.p-home-kv .control-btn.swiper_start {
  background: url(../img/swiper/btn_play.png) no-repeat 50% 50%/contain;
}
.p-home-kv .-txt {
  position: absolute;
  width: clamp(130px, 7.1vw + 107.3px, 223px);
  top: 16%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 1;
  text-align: center;
}
.p-home-kv .-txt img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.p-home-kv .-txt img.-humanism {
  width: clamp(60px, 2.29vw + 52.7px, 90px);
  margin-top: 1.5em;
}
.p-home-kv .flowting-bnr {
  position: absolute;
  right: 0.5em;
  width: clamp(120px, 5.5vw + 102.3px, 192px);
  height: auto;
  aspect-ratio: 1/1;
  bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-home-kv .flowting-bnr {
    right: 1.5em;
    bottom: 1.5em;
  }
}
.p-home-kv .flowting-bnr img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-home-kv .flowting-bnr img.-over {
  z-index: 1;
}
.p-home-kv .flowting-bnr img.-under {
  z-index: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-kv .flowting-bnr:hover {
    opacity: 1 !important;
  }
  .p-home-kv .flowting-bnr:hover img.-over {
    opacity: 0;
  }
  .p-home-kv .flowting-bnr:hover img.-under {
    opacity: 1 !important;
  }
}
.p-home-carousel {
  padding: 0 3.2%;
  margin: 40px 0 64px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-home-carousel {
    margin: 40px 0 96px;
    padding: 0;
  }
}
.p-home-carousel .swiper-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-home-carousel .swiper-bnr {
    gap: 2%;
  }
}
.p-home-carousel .swiper-bnr article {
  width: calc((100% - 12px) / 2);
}
@media screen and (min-width: 768px) {
  .p-home-carousel .swiper-bnr article {
    width: 23.5%;
  }
}
.p-home-carousel .swiper-bnr article img {
  aspect-ratio: 120/49;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-carousel .swiper-bnr article a {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-carousel .swiper-bnr article a:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
.p-home-important {
  margin-top: 1.2em;
}
@media screen and (min-width: 768px) {
  .p-home-important {
    padding: 0;
    position: absolute;
    left: clamp(56px, 3.48vw + 29.3px, 86px);
    bottom: 70px;
    z-index: 1;
    max-width: 410px;
  }
}
.p-home-important h2 {
  background: #9B3657;
  text-align: center;
  padding: 0.4em 0.5em 0.4em;
  display: inline-block;
  border-radius: 3px 3px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home-important h2 {
    padding: 0.5em 0.7em;
    border-radius: 0 3px 0 0;
  }
}
.p-home-important h2 span {
  color: #fff;
  font-size: clamp(10px, 0.45vw + 8.5px, 12px);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  padding-left: 20px;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-important h2 span {
    font-size: 12px;
  }
}
.p-home-important h2 span i {
  width: clamp(13px, 0.45vw + 11.5px, 15px);
  height: clamp(13px, 0.45vw + 11.5px, 15px);
  background: url(../img/common/icon-important.svg) no-repeat 50% 50%/contain;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .p-home-important h2 span i {
    width: 15px;
    height: 15px;
  }
}
.p-home-important dl {
  padding: 0.6em 0 0;
}
@media screen and (min-width: 768px) {
  .p-home-important dl {
    padding: 1.4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-home-important dl dt {
  font-size: 10px;
  line-height: 2;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-home-important dl dt {
    color: #2D6540;
  }
}
.p-home-important dl dd {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
  width: calc(100% - 4.9em);
}
@media screen and (min-width: 768px) {
  .p-home-important dl dd {
    font-size: 14px;
    line-height: 1.57;
    color: #145329;
  }
}
.p-home-news header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 32px;
  gap: 1.5em 1em;
}
@media screen and (min-width: 768px) {
  .p-home-news header {
    margin-bottom: 70px;
  }
}
.p-home-news header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-home-news header nav ul {
    gap: 0.4em;
  }
}
.p-home-news header nav ul li {
  margin: 0;
  padding: 0;
  border: 1px solid #C4D9C3;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-home-news header nav ul li a {
  display: block;
  padding: 0.5em 1em 0.6em;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: clamp(10px, 0.38vw + 8.8px, 15px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #2D6540;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-home-news header nav ul li a {
    padding: 0.5em 1.3em 0.6em;
  }
}
.p-home-news header nav ul li.-here {
  border: 1px solid #2D6540;
}
.p-home-news header nav ul li.-here a {
  background: #2D6540;
  color: #fff;
}
.p-home-news header nav ul li:hover {
  border: 1px solid #2D6540;
}
.p-home-news header nav ul li:hover a {
  background: #2D6540;
  color: #fff;
  opacity: 1;
}
.p-home-newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5em 0.8em;
}
@media screen and (min-width: 960px) {
  .p-home-newsList {
    gap: 3.2em 2em;
  }
}
.p-home-newsList header {
  display: block;
  margin: 0 0 10px 0;
}
.p-home-newsList .-card {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: calc((100% - 0.8em) / 2);
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-newsList .-card:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 960px) {
  .p-home-newsList .-card {
    width: calc((100% - 4em) / 3);
  }
  .p-home-newsList .-card:nth-child(n+7) {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .p-home-newsList .-card {
    width: calc((100% - 6em) / 4);
  }
  .p-home-newsList .-card:nth-child(n+7) {
    display: block;
  }
}
.p-home-newsList .-card .-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 2px;
}
.p-home-newsList .-card .-tag li {
  font-size: clamp(10px, 0.15vw + 9.6px, 12px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  border-radius: 2px 2px 0 0;
  padding: 0.6em 1em;
}
.p-home-newsList .-card .-tag li.College {
  background: #2D6540;
}
.p-home-newsList .-card .-tag li.jrCollege {
  background: #B66633;
}
.p-home-newsList .-card .-tag li.Graduate {
  background: #6B597E;
}
.p-home-newsList .-card figure img {
  aspect-ratio: 279/165;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  border: 1px solid #C4D9C3;
}
.p-home-newsList .-card .-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home-newsList .-card .-meta time {
  font-size: clamp(10px, 0.08vw + 9.7px, 11px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #145329;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home-newsList .-card .-meta .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.p-home-newsList .-card .-meta .category li {
  border: 1px solid #C4D9C3;
  font-size: clamp(10px, 0.15vw + 9.6px, 12px);
  color: #2D6540;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 0.5em 0.6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border-radius: 2px;
}
.p-home-newsList .-card h3 {
  font-size: clamp(13px, 0.38vw + 11.8px, 18px);
  line-height: 1.7;
  color: #145329;
  word-break: normal;
  margin-top: 0.5em;
}
.p-home-newsList .-card a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-home-times {
  position: relative;
  padding-bottom: 50px;
}
.p-home-times::after {
  content: "";
  display: block;
  background: #B4D3B7;
  background: -webkit-gradient(linear, left top, right top, color-stop(-40%, rgba(180, 211, 183, 0.4)), color-stop(150%, rgba(241, 241, 241, 0.4)));
  background: linear-gradient(90deg, rgba(180, 211, 183, 0.4) -40%, rgba(241, 241, 241, 0.4) 150%);
  position: absolute;
  left: 0;
  top: clamp(64px, 1.76vw + 58.3px, 87px);
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-home-times::after {
    right: clamp(112px, 6.96vw + 58.6px, 172px);
  }
}
.p-home-times .-tab {
  padding: 0 6.4%;
  margin: 24px 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-times .-tab {
    margin: 60px 0 50px;
    padding-left: clamp(56px, 3.48vw + 29.3px, 86px);
    padding-right: clamp(150px, 9.05vw + 80.5px, 228px);
  }
}
.p-home-times .-tab .-tabL {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home-times .-tab .-tabL ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
}
.p-home-times .-tab .-tabL ul li a {
  border-radius: 2px;
  display: block;
  padding: 0.7em 1.1em;
  line-height: 1;
  color: #2D6540;
  font-size: clamp(11px, 0.31vw + 9.9px, 15px);
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #C4D9C3;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #fff;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-home-times .-tab .-tabL ul li a {
    padding: 0.8em 1.2em;
  }
}
.p-home-times .-tab .-tabL ul li a span {
  padding-left: 2em;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-home-times .-tab .-tabL ul li a span::before {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  content: "";
  display: block;
  width: 18px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.p-home-times .-tab .-tabL ul li a span.-study::before {
  background: url(../img/common/icon-study.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a span.-education::before {
  background: url(../img/common/icon-education.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a span.-student::before {
  background: url(../img/common/icon-student.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a span.-region::before {
  background: url(../img/common/icon-region.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a span.-magazine::before {
  background: url(../img/common/icon-magazine.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a span.-other::before {
  background: url(../img/common/icon-other.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover {
  background: #2D6540;
  border: 1px solid #2D6540;
  color: #fff;
  opacity: 1;
}
.p-home-times .-tab .-tabL ul li a:hover span::before {
  background: url(../img/common/icon-study_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover span .-study::before {
  background: url(../img/common/icon-study_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover span.-education::before {
  background: url(../img/common/icon-education_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover span.-student::before {
  background: url(../img/common/icon-student_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover span.-region::before {
  background: url(../img/common/icon-region_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover span.-magazine::before {
  background: url(../img/common/icon-magazine_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a:hover span.-other::before {
  background: url(../img/common/icon-other_w.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-tab .-tabL ul li a.-here {
  background: #2D6540;
  border: 1px solid #2D6540;
  color: #fff;
}
.p-home-times .-tab .-tabR {
  width: 112px;
  height: 50px;
  position: relative;
}
.p-home-times .-tab .-tabR .swiper-button-prev,
.p-home-times .-tab .-tabR .swiper-button-next {
  width: 50px;
  height: 50px;
  z-index: 0;
}
.p-home-times .-tab .-tabR .swiper-button-prev::after,
.p-home-times .-tab .-tabR .swiper-button-next::after {
  display: none;
}
.p-home-times .-tab .-tabR .swiper-button-prev {
  background: url(../img/swiper/left.png) no-repeat 50% 50%/contain;
  left: 0;
  position: relative;
}
.p-home-times .-tab .-tabR .swiper-button-prev::after {
  content: "";
  display: block;
  background: url(../img/swiper/left2.png) no-repeat 50% 50%/contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-times .-tab .-tabR .swiper-button-prev:hover::after {
    opacity: 0;
  }
}
.p-home-times .-tab .-tabR .swiper-button-next {
  background: url(../img/swiper/right.png) no-repeat 50% 50%/contain;
  right: 0;
}
.p-home-times .-tab .-tabR .swiper-button-next::after {
  content: "";
  display: block;
  background: url(../img/swiper/right2.png) no-repeat 50% 50%/contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-times .-tab .-tabR .swiper-button-next:hover::after {
    opacity: 0;
  }
}
.p-home-times-outer {
  padding: 0 6.4%;
}
@media screen and (min-width: 768px) {
  .p-home-times-outer {
    padding: 0;
    margin-left: clamp(56px, 3.48vw + 29.3px, 86px);
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .p-home-times .swiper-wrapper {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 3fr;
    grid-template-columns: repeat(1, 3fr);
    gap: 24px;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .p-home-times .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  .p-home-times .swiper-slide:nth-child(n+4) {
    display: none !important;
  }
  .p-home-times .-tabR {
    display: none;
  }
}
.p-home-times .-card {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #fff;
  border-radius: 0 0 2px 2px;
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #C4D9C3;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-times .-card:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .p-home-times .-card {
    min-width: 28vw;
  }
}
.p-home-times .-card figure {
  position: relative;
}
.p-home-times .-card figure img {
  aspect-ratio: 383/224;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-times .-card figure div {
  color: #2D6540;
  background: #fff;
  height: 38px;
  min-width: 78px;
  padding: 1em 1.5em 0.7em 1em;
  line-height: 1;
  font-size: 12px;
  letter-spacing: -0.01em;
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 0 2px 0 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home-times .-card figure div span {
  padding-left: 2em;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-home-times .-card figure div span::before {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  content: "";
  display: block;
  width: 18px;
  height: 16px;
  background: url(../img/common/icon-study.svg) no-repeat 50% 50%/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.p-home-times .-card figure div span.-study::before {
  background: url(../img/common/icon-study.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-card figure div span.-education::before {
  background: url(../img/common/icon-education.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-card figure div span.-student::before {
  background: url(../img/common/icon-student.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-card figure div span.-region::before {
  background: url(../img/common/icon-region.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-card figure div span.-magazine::before {
  background: url(../img/common/icon-magazine.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-card figure div span.-other::before {
  background: url(../img/common/icon-other.svg) no-repeat 50% 50%/contain;
}
.p-home-times .-card time {
  padding-top: 2.8em;
  padding-bottom: 1.3em;
  padding-left: clamp(18px, -0.15vw + 20.4px, 20px);
  padding-right: clamp(18px, -0.15vw + 20.4px, 20px);
  font-size: clamp(10px, 0.15vw + 9.6px, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #145329;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home-times .-card h3 {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: clamp(18px, -0.15vw + 20.4px, 20px);
  padding-right: clamp(18px, -0.15vw + 20.4px, 20px);
  font-size: clamp(16px, 0.15vw + 15.6px, 18px);
  line-height: 1.77;
  color: #145329;
  letter-spacing: -0.01em;
  word-break: normal;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-home-times .-card .-more {
  padding-top: 1.8em;
  padding-bottom: 2.3em;
  padding-left: clamp(18px, -0.15vw + 20.4px, 20px);
  padding-right: clamp(18px, -0.15vw + 20.4px, 20px);
  text-align: right;
  font-size: clamp(11px, 0.15vw + 10.6px, 13px);
  line-height: 1;
  color: #145329;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.p-home-times .-card .-more span {
  position: relative;
  padding-right: 2em;
}
.p-home-times .-card .-more span::before {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/arw-g.svg) no-repeat 50% 50%/contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.p-home-times .-card a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-home-overview {
  background: url(../img/home/overview_sp.jpg) no-repeat 0 50%/cover;
  padding: 115px 0 44px;
  margin-left: 3.2%;
}
@media screen and (min-width: 768px) {
  .p-home-overview {
    margin: 0;
    background: none;
    padding: 0;
  }
}
.p-home-overview header {
  background: none;
  padding: 0 6.4% 74px;
}
@media screen and (min-width: 768px) {
  .p-home-overview header {
    margin-left: clamp(56px, 3.48vw + 29.3px, 86px);
    background: url(../img/home/overview.jpg) no-repeat 0 50%/cover;
    padding: 142px 0 186px 54px;
  }
}
.p-home-overview header h2 {
  font-size: 38px;
  color: #fff;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.2em;
  position: relative;
}
.p-home-overview header h2::after {
  content: "About";
  display: block;
  font-size: 100px;
  line-height: 1;
  font-family: "Marcellus", serif;
  background: linear-gradient(125deg, #fffeec 0%, #e4faeb 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  mix-blend-mode: overlay;
  position: absolute;
  left: 0;
  bottom: 0.2em;
  z-index: 0;
  opacity: 0.6;
  font-weight: 400;
}
.p-home-overview header p {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.p-home-overview .-flex {
  padding: 0 6.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 64px 0;
}
@media screen and (min-width: 768px) {
  .p-home-overview .-flex {
    margin-top: -100px;
    padding-left: clamp(94px, 5.57vw + 51.2px, 142px);
    padding-right: clamp(150px, 9.05vw + 80.5px, 228px);
  }
}
.p-home-overview .-flex .-card {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home-overview .-flex .-card {
    width: calc((100% - 60px) / 3);
  }
}
.p-home-overview .-flex .-card dt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  padding: 0.8em 1.2em;
  background: #114C25;
  background: -webkit-gradient(linear, left top, right top, from(rgb(17, 76, 37)), color-stop(180%, rgb(181, 233, 158)));
  background: linear-gradient(90deg, rgb(17, 76, 37) 0%, rgb(181, 233, 158) 180%);
  letter-spacing: -0.01em;
  position: absolute;
  width: 100%;
  left: -0.6em;
  top: -2em;
  font-size: clamp(13px, 0.67vw + 10.9px, 16px);
}
@media screen and (min-width: 768px) {
  .p-home-overview .-flex .-card dt {
    font-size: clamp(13px, 0.35vw + 10.3px, 16px);
  }
}
.p-home-overview .-flex .-card dd {
  background: #ECF4EC;
  border: 1px solid #C4D9C3;
  border-radius: 2px;
  padding: 2.5em 1.2em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.p-home-overview .-flex .-card dd ul {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.p-home-overview .-flex .-card dd ul li {
  font-size: clamp(13px, 0.67vw + 10.9px, 16px);
  color: #145329;
  line-height: 1.75;
  list-style: circle;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-home-overview .-flex .-card dd ul li {
    font-size: clamp(13px, 0.35vw + 10.3px, 16px);
  }
}
.p-home-overview .-flex .-card dd a {
  letter-spacing: -0.01em;
  font-size: 13px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  color: #145329;
  letter-spacing: -0.01em;
  padding-right: 1.8em;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
  font-weight: 400;
}
.p-home-overview .-flex .-card dd a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/arw-g.svg) no-repeat 50% 50%/contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-home-overview .-flex .-card dd a:hover::after {
  right: -3px;
  opacity: 0.8;
}
.p-home-faculty {
  position: relative;
  background: #B4D3B7;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(180, 211, 183, 0.4)), color-stop(80%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(180deg, rgba(180, 211, 183, 0.4) 0%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.4) 100%);
  padding: 42px 6.4% 0;
}
@media screen and (min-width: 1080px) {
  .p-home-faculty {
    padding: 56px 56px 0;
  }
}
.p-home-faculty nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px 0;
}
@media screen and (min-width: 1440px) {
  .p-home-faculty nav {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 24px;
  }
}
@media screen and (min-width: 1080px) {
  .p-home-faculty nav {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 32px 2.5%;
  }
}
.p-home-faculty .-card {
  width: 100%;
  max-width: 381px;
  margin: 0 auto;
  width: auto;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #C4D9C3;
  border-radius: 3px;
  background: #fff;
  padding-bottom: 2em;
}
@media screen and (min-width: 1080px) {
  .p-home-faculty .-card {
    max-width: unset;
  }
}
@media screen and (min-width: 1440px) {
  .p-home-faculty .-card {
    max-width: unset;
    margin: 0;
  }
}
.p-home-faculty .-card img {
  border-radius: 3px 3px 0 0;
}
.p-home-faculty .-card header {
  position: relative;
  margin-top: -2.5em;
  padding: 1.4em 1.2em;
  width: 94%;
}
.p-home-faculty .-card header::after {
  content: "";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 0;
}
.p-home-faculty .-card header h3 {
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.3em;
  position: relative;
  z-index: 1;
  color: #fff;
}
.p-home-faculty .-card header h3 span {
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: block;
}
.p-home-faculty .-card header p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  color: #fff;
}
.p-home-faculty .-card.-child-studies header::after {
  background: #0C4420;
  background: -webkit-gradient(linear, left top, right top, from(rgba(12, 68, 32, 0.9)), to(rgba(51, 155, 87, 0.9)));
  background: linear-gradient(90deg, rgba(12, 68, 32, 0.9) 0%, rgba(51, 155, 87, 0.9) 100%);
}
.p-home-faculty .-card.-hoiku header::after {
  background: #592D00;
  background: -webkit-gradient(linear, left top, right top, from(rgba(170, 82, 26, 0.9)), to(rgba(255, 184, 69, 0.9)));
  background: linear-gradient(90deg, rgba(170, 82, 26, 0.9) 0%, rgba(255, 184, 69, 0.9) 100%);
}
.p-home-faculty .-card.-childscience header::after {
  background: #180036;
  background: -webkit-gradient(linear, left top, right top, from(rgba(24, 0, 54, 0.9)), to(rgba(244, 206, 255, 0.9)));
  background: linear-gradient(90deg, rgba(24, 0, 54, 0.9) 0%, rgba(244, 206, 255, 0.9) 100%);
}
.p-home-faculty .-card ul {
  padding: 1.5em 1.2em 1.5em 2.2em;
}
.p-home-faculty .-card ul li {
  font-size: 14px;
  color: #145329;
  line-height: 1.6;
  list-style: circle;
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
}
.p-home-faculty .-card ul li span {
  display: block;
  font-size: 10px;
}
.p-home-faculty .-card ul.-column-count {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  gap: 2.5em;
}
.p-home-faculty .-card ul.-column-count li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.p-home-faculty .-card .-more {
  padding-right: 6%;
}
.p-home-faculty .-card a {
  letter-spacing: -0.01em;
  font-size: 13px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #145329;
  letter-spacing: -0.01em;
  padding-right: 2em;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-weight: 400;
}
.p-home-faculty .-card a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/arw-g.svg) no-repeat 50% 50%/contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-home-faculty .-card a:hover::after {
  right: -3px;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .p-home-newsList .-card:nth-child(n+7) {
    display: none;
  }
}