@charset "UTF-8";
/* ============================================================
// info.scss (新着情報)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 22.9074889868vw + 154.0969162996px, 500px);
  padding-top: clamp(76px, 4.7577092511vw + 58.1585903084px, 130px);
  overflow: hidden;
  background-image: url(../images/info/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  border-bottom: 3px solid #00b0ca;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #004b40;
  border-bottom: 2px solid #fff;
  z-index: 3;
}
.page-header__inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  z-index: 2;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 2.2907488987vw + 25.40969163px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-shadow: 0 0 10px #fff, 0 0 5px #fff;
}
.page-header__jp {
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px #fff, 0 0 5px #fff;
  margin-top: 10px;
  padding-bottom: 10px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #1d1d1d;
}

/* ------------------------------------------------------------
// 記事詳細
------------------------------------------------------------ */
.info-detail {
  max-width: 900px;
  margin: 0 auto;
}
.info-detail__header {
  margin-bottom: 40px;
  padding-top: 20px;
  text-align: left;
  border-bottom: 1px solid #dfc9da;
  padding-bottom: 25px;
}
.info-detail__date {
  position: relative;
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #979797;
  margin-bottom: 12px;
}
.info-detail__title {
  font-size: clamp(20px, 0.8810572687vw + 16.6960352423px, 30px);
  font-weight: 700;
  line-height: 1.4;
}
.info-detail__entry {
  line-height: 2.2;
  margin: 40px 0;
  padding: clamp(30px, 1.7621145374vw + 23.3920704846px, 50px);
  background: #fff;
  border: 1px solid #b2c6f8;
  border-top: 4px solid #425b98;
  border-radius: 8px;
}
.info-detail__files {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 40px;
}
.info-detail__file-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #b2c6f8;
  border-radius: 30px;
  box-shadow: 2px 2px 0 #c4c4c4;
  transition: all 0.3s ease;
}
.info-detail__file-link i {
  color: #425b98;
}
.info-detail__file-link:hover {
  background: #1d1d1d;
  color: #fff;
  box-shadow: 0 0 0;
  transform: translate(2px, 2px);
}
.info-detail__file-link:hover i {
  color: #fff;
}
.info-detail__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid #dfc9da;
}
@media (max-width: 767px) {
  .info-detail__nav {
    flex-direction: column;
    align-items: center;
  }
}
.info-detail__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: clamp(50px, 0.8810572687vw + 46.6960352423px, 60px);
  border-radius: clamp(25px, 0.4405286344vw + 23.3480176211px, 30px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .info-detail__nav-btn {
    width: 100%;
  }
}
.info-detail__nav-btn--home, .info-detail__nav-btn--list {
  background: #fff;
  border: 1px solid #b2c6f8;
  box-shadow: 4px 4px 0 #c4c4c4;
}
.info-detail__nav-btn--home:hover, .info-detail__nav-btn--list:hover {
  background: #1d1d1d;
  color: #fff;
  box-shadow: 0 0 0;
  transform: translate(4px, 4px);
}

.info-slider__main {
  margin-bottom: 12px;
}
.info-slider__main .photo-ofi {
  padding-bottom: 56.25%;
  border-radius: 4px;
}
.info-slider__thumbnail .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-slider__thumbnail .slick-slide {
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  margin: 0 5px;
  border-radius: 4px;
  overflow: hidden;
}
.info-slider__thumbnail .slick-current {
  border-color: #425b98;
}
.info-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 8px 8px;
  background: #425b98;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 0.1762114537vw + 9.3392070485px, 12px);
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.info-slider .arrow:hover {
  background: #425b98;
}
.info-slider .arrow:hover.prev {
  padding-left: 22px;
  padding-right: 14px;
}
.info-slider .arrow:hover.next {
  padding-right: 22px;
  padding-left: 14px;
}
.info-slider .arrow.prev {
  left: -20px;
  border-radius: 0 2px 2px 0;
}
.info-slider .arrow.next {
  right: -20px;
  border-radius: 2px 0 0 2px;
}