@charset "UTF-8";
/* -------- トップ・MV ---------*/
.mv {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1920/735;
}
.mv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.3);
}
.mv__swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mv__bg {
  width: 100%;
  height: 100%;
}
.mv__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv__ttl {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}

/* -------- トップ・見出しパーツ ---------*/
.headingLv2 {
  text-align: center;
  margin-bottom: 48px;
}
.headingLv2__main {
  position: relative;
  display: block;
  letter-spacing: 0.1em;
  font-size: 2.625em;
  font-weight: bold;
  margin-bottom: 0.35em;
}
.headingLv2__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5625em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.headingLv2__sub::before, .headingLv2__sub::after {
  content: "";
  width: 1.2em;
  border-top: 1px solid #333333;
}
.headingLv2__sub::before {
  margin-right: 1em;
}
.headingLv2__sub::after {
  margin-left: 1em;
}
.headingLv2.headingLv2--mbMd {
  margin-bottom: 64px;
}
.headingLv2.headingLv2--sm .headingLv2__main {
  font-size: 2.1875em;
  margin-bottom: 1em;
}
.headingLv2.headingLv2--sm .headingLv2__main > span {
  font-size: 0.83em;
}
.headingLv2.headingLv2--sm .headingLv2__sub {
  font-size: 1.25em;
}

/* -------- トップ・影付きカード型パーツ ---------*/
.shadowCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 48px;
}

.shadowCard {
  width: 100%;
  box-shadow: 8px 8px 0px rgba(51, 51, 51, 0.7);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.shadowCard__link:focus-visible .shadowCard__imgWrapper::after {
  opacity: 0.6;
}
.shadowCard__link:focus-visible .shadowCard__imgWrapper > img {
  transform: scale(1.08, 1.08);
}
.shadowCard__link:focus-visible .shadowCard__ttl {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .shadowCard__link:hover .shadowCard__imgWrapper::after {
    opacity: 0.6;
  }
  .shadowCard__link:hover .shadowCard__imgWrapper > img {
    transform: scale(1.08, 1.08);
  }
  .shadowCard__link:hover .shadowCard__ttl {
    color: #00B7CC;
  }
}
.shadowCard__imgWrapper {
  aspect-ratio: 521/362;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}
.shadowCard__imgWrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  mix-blend-mode: screen;
  background-color: #fff;
}
.shadowCard__imgWrapper > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s;
}
.shadowCard__ttl {
  font-size: 1.125em;
  line-height: 1.5;
  padding: 12px 16px 32px;
  font-weight: bold;
  transition: color 0.3s;
}

/* -------- トップ・二列投稿パーツ ---------*/
.col2Posts {
  border-top: 1px solid #707070;
}

.col2Post {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #707070;
  padding-top: 20px;
  padding-bottom: 20px;
}
.col2Post__date {
  font-weight: bold;
}
.col2Post__ttl {
  color: #006B8D;
  text-decoration: underline;
  margin-left: 20px;
  line-height: 1.5;
  transition: color 0.3s;
}
.col2Post__ttl:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .col2Post__ttl:hover {
    color: #00B7CC;
  }
}

/* -------- トップ・ボーダーカード型パーツ ---------*/
.borderCards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 15px;
  margin-bottom: 80px;
}

.borderCard {
  border-radius: 20px;
  border: 1px solid #006B8D;
  padding: 15px 15px 20px;
}
.borderCard__link:focus-visible .borderCard__imgWrapper::after {
  opacity: 0.6;
}
.borderCard__link:focus-visible .borderCard__imgWrapper > img {
  transform: scale(1.08, 1.08);
}
.borderCard__link:focus-visible .borderCard__ttl {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .borderCard__link:hover .borderCard__imgWrapper::after {
    opacity: 0.6;
  }
  .borderCard__link:hover .borderCard__imgWrapper > img {
    transform: scale(1.08, 1.08);
  }
  .borderCard__link:hover .borderCard__ttl {
    color: #00B7CC;
  }
}
.borderCard__imgWrapper {
  position: relative;
  border-radius: 20px;
  aspect-ratio: 3/2;
  overflow: hidden;
  transition: opacity 0.3s;
  margin-bottom: 20px;
}
.borderCard__imgWrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  mix-blend-mode: screen;
  background-color: #fff;
}
.borderCard__imgWrapper > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s;
}
.borderCard__ttl {
  color: #006B8D;
  font-size: 1.25em;
  text-decoration: underline;
  margin-bottom: 20px;
  line-height: 1.5;
  transition: color 0.3s;
}
.borderCard__txt {
  margin-bottom: 26px;
  line-height: 1.5;
}