@charset "UTF-8";
/*
  File Name   : top.css
  Description : Write top content styles
*/


/********** MAIN VISUAL **********/
.mv {
  position: relative;
  min-height: 500px;
  height: calc(100vh - 100px);
  height: calc(100svh - 100px);
}
.mv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: min(60px, calc(60 / 1280 * 100vw));
  color: #fff;
  text-shadow: 0 0 20px #000000;
  letter-spacing: 0.2em;
  line-height: calc(90 / 60);
  z-index: 1;
  font-family: 'Noto Sans JP', sans-serif;
  width: max-content;
}
.mv-splide .splide__slide {
  display: block;
}
.mv-splide .splide__slide img {
  min-height: 500px;
  height: calc(100vh - 100px);
  height: calc(100svh - 100px);
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.mv-splide .splide__pagination {
  position: static;
  padding: 20px 20px 0;
  gap: 6px;
}
.mv-splide .splide__pagination .splide__pagination__page {
  width: 12px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #999;
  margin: 0;
  transform: scale(1) !important;
}
.mv-splide .splide__pagination .splide__pagination__page.is-active {
  background-color: #25B2E6;
}
@media screen and (max-width: 1024px) {
  .mv {
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
  }
  .mv-copy {
    text-shadow: 0 0 10px #000000;
  }
  .mv-splide .splide__slide img {
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
  }
}
@media screen and (max-width: 599px) {
  .mv {
    min-height: 400px;
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    display: grid;
    place-items: center;
    position: relative;
  }
  .mv-copy {
    font-size: min(45px, calc(45 / 599 * 100vw));
    max-width: 95%;
    grid-area: 1 / 1 / 2 / 2;
  }
  .mv-splide .splide__slide img {
    min-height: 400px;
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    grid-area: 1 / 1 / 2 / 2;
  }
  .mv-splide .splide__pagination {
    padding: 14px;
    gap: 6px;
  }
  .mv-splide .splide__pagination .splide__pagination__page {
    width: 10px;
  }
}

/********** MENU **********/
.menu {
  padding-block: 100px;
}
.menu-lists {
  display: grid;
}
.menu-lists._col-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 23px
}
.menu-lists._col-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.menu-list-link {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
}
.menu-list-link:hover .menu-list-bg img {
  transform: scale(1.05);
}
.menu-list-bg,
.menu-list-title {
  grid-area: 1 / 1 / 2 / 2;
}
.menu-list-bg img {
  transition: transform 0.3s ease;
}
.menu-list-title {
  font-size: min(40px, calc(40 / 1280 * 100vw));
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 10px #050D1C;
  text-align: center;
  line-height: calc(50 / 40);
  letter-spacing: 0;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .menu {
    padding-block: 50px;
  }
  .menu-lists._col-3,
  .menu-lists._col-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .menu-list-bg img {
    width: 100%;
    transform: scale(1.05);
    aspect-ratio: 560 / 380;
    object-fit: cover;
  }
  .menu-list-bg:hover img {
    transform: scale(1.1);
  }
  .menu-list-title {
    font-size: min(40px, calc(40 / 640 * 100vw));
  }
}

/********** SECTION-TITLE **********/
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title-main {
  font-size: 40px;
  font-weight: bold;
}
.section-title-sub {
  font-size: 17px;
  margin-top: 10px;
  color: #25B2E6;
}
@media screen and (max-width: 1024px) {
  .section-title-main {
    font-size: 35px;
  }
  .section-title-sub {
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .section-title-main {
    font-size: 22px;
  }
  .section-title-sub {
    font-size: 11px;
  }
}

/********** NEWS **********/
.news {
  background: #F5F6F7;
  padding-block: 140px 132px;
}
.news-inner {
  display: grid;
  grid-template-columns: calc(430 / 1200* 100%) 1fr;
  align-items: center;
}
.news-content {
  border-left: 1px solid #000;
  position: relative;
}
.news-lists {
  padding-left: 80px;
}
.news-list {
  display: grid;
  grid-template-areas:
    "thumb date"
    "thumb title"
    "thumb desc";
  grid-template-columns: auto 1fr;
  gap: 0 56px;
}
.news-list .thumb {
  grid-area: thumb;
}
.news-list .thumb img {
  max-height: 150px;
  min-height: 120px;
  max-width: 220px;
  object-fit: contain;
}
.news-list .date {
  grid-area: date;
  font-size: 17px;
  line-height: 1;
}
.news-list .title {
  grid-area: title;
  margin-top: 8px;
}
.news-list .title a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: fit-content;
}
.news-list .title a:hover {
  text-decoration: none;
}
.news-content-link {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #25B2E6;
  font-size: 18px;
  float: right;
}
.news-content-link:hover {
  text-decoration: underline;
}
.news-content-link img {
  padding-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .news {
    padding-block: 100px;
  }
  .news-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 800px;
  }
  .news-content {
    border-left: none;
  }
  .news-lists {
    padding-left: 0;
  }
  .news-list .date {
    font-size: 15px;
    margin-top: 20px;
  }
  .news-list .title a {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .news {
    padding-block: 50px;
  }
  .news-inner {
    gap: 25px;
  }
  .news-list {
    grid-template-areas:
      "thumb"
      "date"
      "title";
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news-list .date {
    font-size: 12px;
    margin-top: 12px;
  }
  .news-list .title a {
    font-size: 14px;
    -webkit-line-clamp: 100;
    overflow: visible;
  }
  .news-content-link {
    margin-top: 20px;
    font-size: 14px;
    gap: 16px;
  }
  .news-content-link img {
    width: 14px;
  }
}