@charset "UTF-8";

/* ===============================
top
=============================== */

/* ===============================
pg_mv
=============================== */
.pg_mv {
  margin-bottom: 54px;
}
.pg_mv_inner {
  position: relative;
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  pointer-events: none;
}
.pg_mv_text {
  position: relative;
  top: 314px;
  left: -2px;
  z-index: 2;
  width: calc(661 / 16 * 1rem);
  max-width: 100%;
}
.pg_mv_text img {
  width: 100%;
}
.pg_mv_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
}
.pg_mv_img img {
  display: block;
  width: 100%;
  height: 100%;
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_mv {
    margin-bottom: 48px;
  }
  .pg_mv_inner {
    max-width: 375px;
    height: 450px;
    border-radius: 0 0 30px 30px;
  }
  .pg_mv_text {
    top: 178px;
    left: -2px;
    width: calc(362 / 16 * 1rem);
  }
  .pg_mv_img {
    width: 375px;
    height: 450px;
  }
}

/* オープニング アニメーション */
.pg_mv_inner {
  background-color: rgb(37 92 170 / 5%);
}
.pg_mv_img img {
  opacity: 0;
  transform: scale(1.15) translateY(12px);
  filter: blur(6px);
  transition:
  opacity 1.8s cubic-bezier(0.23, 0.88, 0.38, 1),
  transform 1.8s cubic-bezier(0.23, 0.88, 0.38, 1),
  filter .6s ease-out;
  will-change: opacity, transform;
}
.pg_mv.is_loading_end .pg_mv_img img {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* テキスト帯 */
.pg_mv_text img {
  opacity: 0;
  transform: translate(0, 16px);
  filter: blur(6px);
  transition:
  opacity 1s cubic-bezier(0.23, 0.88, 0.38, 1),
  transform 1s cubic-bezier(0.23, 0.88, 0.38, 1),
  filter .3s ease-out;
  will-change: opacity, transform;
}
.pg_mv.is_loading_end .pg_mv_text img {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
  transition-delay: .6s;
}

/* 動きを苦手とするユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .pg_mv_img img,
  .pg_mv_text img {

    /* 変形はやめて、フェードだけにする */
    transform: none !important;
    filter: none !important;
    transition:
    opacity .2s ease-out;
  }
  .pg_mv.is_loading_end .pg_mv_img img,
  .pg_mv.is_loading_end .pg_mv_text img {
    opacity: 1;
  }
}

/* ===============================
pg_about
=============================== */
.pg_about {
  width: 100%;
  overflow: hidden;
}
.pg_about_intro {
  margin-bottom: 90px;
}
.pg_about_title {
  margin-bottom: 1.8em;
}
.pg_about_intro_text {
  max-width: 580px;
  margin: 0 auto;
}
.pg_about_intro_text p {
  line-height: 2.375;
}
.pg_about_intro_text p + p {
  margin-top: 2.375em;
}
.pg_about_illust {
  position: relative;
  z-index: 2;
  min-height: 344px;
  background-color: var(--color_khaki_300);
}
.pg_about_illust::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1600px;
  height: 344px;
  background: var(--color_khaki_400) url(../../img/pages/top/about_bg_pc.svg) no-repeat 0 0 / 100% 100%;
}
.pg_about_illust_img img {
  display: block;
  margin: 0 auto;
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_about_intro {
    margin-bottom: 0;
    padding: 0 32px;
  }
  .pg_about_title {
    margin-bottom: 1em;
  }
  .pg_about_intro_text {
    position: static;
    max-width: 516px;
    margin-bottom: 62px;
  }
  .pg_about_intro_text p {
    line-height: 2;
  }
  .pg_about_intro_text p + p {
    margin-top: 0;
  }
  .pg_about_illust {
    min-height: initial;
    padding-bottom: 42px;
  }
  .pg_about_illust::before {
    top: -20px;
    bottom: auto;
    transform: translateX(-50%);
    min-width: 769px;
    height: 231px;
    background-image: url(../../img/pages/top/about_bg_sp.svg) ;
  }
  .pg_about_illust_img img {
    max-width: 320px;
  }
}

/* ===============================
pg_news
=============================== */
.pg_news {
  position: relative;
  padding: 43px 20px 17px;
  background-color: var(--color_khaki_300);
}
.pg_news::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -257px;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1600px;
  height: 257px;
  background: url(../../img/pages/top/news_bg_pc.svg) no-repeat 0 0 / 100% 100%;
  pointer-events: none;
}
.pg_news_title.md_title {
  margin-bottom: 43px;
}
.pg_news_item_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  width: min(940px, 100%);
  gap: 20px;
  margin: 0 auto;
}
.pg_news_item {
  width: 220px;
  max-width: 100%;
}
.pg_news_item a {
  display: block;
  padding: 10px;
}
.pg_news_item_thumbnail {
  margin-bottom: 18px;
  border-radius: 25px;
  overflow: hidden;
}
.pg_news_item_thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pg_news_item_date {
  display: block;
  margin-bottom: 5px;
}
.pg_news_more {
  margin-top: 62px;
}
.pg_news_more a {
  display: block;
  max-width: 150px;
  margin: 0 auto;
  padding: 9px 15px;
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: 4px solid var(--color_blue_400);
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_news {
    padding: 20px 10px 80px;
  }
  .pg_news::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    width: 100%;
    min-width: 768px;
    height: 92px;
    background-image: url(../../img/pages/top/news_bg_sp.svg);
  }
  .pg_news_more {
    margin-top: 53px;
  }
}

/* ===============================
pg_banner
=============================== */
.pg_banner {
  min-height: 300px;
  padding: 135px 20px 37px;
  background-color: #fff;
}
.pg_banner_lists {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(720px, 100%);
  gap: 35px 28px;
  margin: 0 auto;
  z-index: 2;
}
.pg_banner_lists a {
  display: block;
}
.pg_banner_lists img {
  display: block;
  border: 1px solid #606060;
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_banner {
    padding-top: 57px;
  }
  .pg_banner_lists {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(720px, 100%);
    gap: 32px 28px;
  }
}