@charset "UTF-8";
/* ============================================================
// info.scss (新着情報)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 16vw + 180px, 500px);
  margin-bottom: clamp(60px, 3.6923076923vw + 46.1538461538px, 120px);
  padding-top: clamp(76px, 3.3230769231vw + 63.5384615385px, 130px);
  overflow: hidden;
  background-color: #333333;
  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;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #ffffff;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 1.6vw + 28px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1230769231vw + 13.5384615385px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #1068c0;
}

/* ------------------------------------------------------------
// 記事一覧リスト
------------------------------------------------------------ */
.info-category__nav-category {
  max-width: 900px;
  margin: 0 auto clamp(60px, 3.6923076923vw + 46.1538461538px, 120px);
  padding: 0 20px;
}
.info-category__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-category__category-link {
  display: block;
  padding: 10px 24px;
  background: #ffffff;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  border: 1px solid #dce4ec;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}
.info-category__category-link:hover {
  background: #f4f7f9;
  color: #1068c0;
  border-color: #1068c0;
  text-decoration: none;
}
.info-category__category-link.is-active {
  background: #1068c0;
  color: #ffffff;
  border-color: #1068c0;
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 767px) {
  .info-category__nav-category {
    padding: 0 15px;
  }
  .info-category__category-list {
    gap: 8px;
  }
  .info-category__category-link {
    font-size: 13px;
    min-width: calc(50% - 4px);
    padding: 10px 15px;
  }
}
.info__grid {
  display: grid;
  gap: 60px 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 991px) {
  .info__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .info__grid {
    grid-template-columns: 1fr;
  }
}
.info__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.info__card:hover .info__img img {
  transform: scale(1.05);
}
.info__card:hover .info__text {
  color: #1068c0;
}
.info__card:hover .info__more-btn {
  background-color: #1068c0;
  color: #ffffff;
}
.info__body {
  padding-top: 0;
  margin-bottom: 15px;
  order: 1;
}
.info__date {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 5px;
}
.info__text {
  font-size: clamp(16px, 0.1230769231vw + 15.5384615385px, 18px);
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.info__img {
  order: 2;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}
.info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.info__btn-wrapper {
  order: 3;
  text-align: center;
  margin-top: auto;
}
.info__more-btn {
  display: inline-block;
  padding: clamp(6px, 0.2461538462vw + 5.0769230769px, 10px) 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1068c0;
  border: 1px solid #1068c0;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* ------------------------------------------------------------
// 記事詳細
------------------------------------------------------------ */
.info-detail {
  max-width: 900px;
  margin: 0 auto;
}
.info-detail__header {
  margin-bottom: 40px;
  padding-top: 20px;
  text-align: left;
}
.info-detail__date {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #1068c0;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.info-detail__date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: #1068c0;
}
.info-detail__title {
  font-size: clamp(22px, 0.4923076923vw + 20.1538461538px, 30px);
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  letter-spacing: -0.02em;
}
.info-detail__entry {
  margin: 40px 0;
  padding: clamp(30px, 1.2307692308vw + 25.3846153846px, 50px);
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-top: 4px solid #1068c0;
  line-height: 2.2;
  color: #333;
  font-size: 16px;
}
.info-detail__files {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0;
  list-style: none;
  padding: 0;
}
.info-detail__file-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  background: #f4f7f9;
  color: #1068c0;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.info-detail__file-link i {
  font-size: 1.1em;
}
.info-detail__file-link:hover {
  background: #1068c0;
  color: #ffffff;
  text-decoration: none;
}
.info-detail__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid #dddddd;
}
.info-detail__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 54px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.info-detail__nav-btn--home {
  background: #ffffff;
  color: #888;
  border: 1px solid #dddddd;
}
.info-detail__nav-btn--home:hover {
  background: #f9f9f9;
  color: #444444;
  border-color: #dddddd;
}
.info-detail__nav-btn--list {
  background: #1068c0;
  color: #ffffff;
}
.info-detail__nav-btn--list:hover {
  background: #0d56a0;
  color: #ffffff;
}

.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: #1068c0;
}
.info-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 12px 18px;
  background: #1068c0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.info-slider .arrow:hover {
  background: #0d56a0;
}
.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: 0;
  border-radius: 0 2px 2px 0;
}
.info-slider .arrow.next {
  right: 0;
  border-radius: 2px 0 0 2px;
}