@charset "UTF-8";
/* CSS Document */
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
  /* ==============================
 トピックス詳細ページ start
============================== */
  .topicsDetailSection {
    background: #fff;
    padding: 10vw 5vw;
	min-height:80vh;
  }
  .topicsDetail__inner {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    font-size: 1rem;
    line-height: 2;
  }
  .topicsDetail__image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }
  .topicsDetail__header {}
  .topicsDetail__title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #0a3b78;
    margin: 0;
  }
  .topicsDetail__date {
    font-size: 0.9rem;
    color: #999;
    white-space: nowrap;
  }
  .topicsDetail__line {
    border: none;
    border-top: 1px solid #ccc;
    margin: 1.5rem 0;
  }
  .topicsDetail__body p {
    margin-bottom: 1.5rem;
    text-align: justify;
  }
  .topicsDetail__body a {
    color: #0a3b78;
    text-decoration: underline;
    font-weight: bold;
  }
  /* ==============================
 トピックス詳細ページ end
============================== */
  /* ==============================
 TenjinNewsSection start
============================== */
  .TenjinNewsSection {
    background: #fff;
    color: #000;
    padding: 6vw 0;
  }
  .tenjin-hero {
    padding: 0 5vw;
  }
  .tenjin-hero img {
    width: 100%;
    height: auto;
    display: block;
  }
  .tenjin-content {
    padding: 5vw 7vw 3vw;
  }
  .tenjin-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .tenjin-title h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: #0a3b78;
    font-weight: 500;
  }
  .tenjin-date {
    font-size: 1.2rem;
    color: #999;
  }
  .tenjin-line {
    border: none;
    border-top: 1px solid #ccc;
    margin: 1rem 0 2rem;
  }
  .tenjin-textwrap {
    display: grid;
    grid-template-columns: 1fr 25vw;
    gap: 3vw;
    align-items: start;
    align-items: stretch; /* ← 高さ揃えるポイント */
  }
  .tenjin-text {
    width: 100%;
    font-size: 1.15rem;
    line-height: 2;
    text-align: justify;
  }
  .tenjin-text h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: #0a3b78;
    font-weight: 500;
  }
  .tenjin-sideimg {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .tenjin-sideimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* ビデオ枠 */
  .newvideo_container {
    margin: 5vw 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
  }
  .video-container {
    position: relative;
    width: 80vw;
    padding-top: calc(80vw * 9 / 16); /* アスペクト比 16:9 */
    background-color: #000;
  }
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
  }
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url('../../images/play_bot.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    z-index: 1;
  }
  /* ==============================
  ギャラリー画像グリッド start
============================== */
  .gallery-row-box {
    padding: 5vw 0 0 0;
  }
  .gallery-row-two {
    display: grid;
    grid-template-columns: 32.6667% 66.3333%; /* 左=3分割1列分、右=残り */
    gap: 1%;
    padding-bottom: 1%;
  }
  .gallery-row-three {
    display: grid;
    grid-template-columns: 32.6667% 32.6667% 32.6667%; /* 均等3分割 */
    gap: 1%;
	padding-bottom: 1%;
  }
    .gallery-row-two2 {
    display: grid;
    grid-template-columns: 49.5% 49.5%; /* 左=3分割1列分、右=残り */
    gap: 1%;
  }
  /* 画像を枠にフィット：同一比率で揃え、トリミングして隙間なく埋める */
  .gallery-row-two img, .gallery-row-three img, .gallery-row-two2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいに埋める（必要なら下の contain に差し替え） */
    display: block;
  }
  .gallery-row-three img {
    aspect-ratio: 3 / 2; /* 例：3:2。必要なら 16/9 や 4/3 に変更可 */
  }
  /* ==============================
  ギャラリー画像グリッド end
============================== */
  /* ==============================
 TenjinNewsSection end
============================== */
}
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
/* ==============================
 * トピックス詳細ページ（SP） start
 * ============================== */
.topicsDetailSection {
  background: #fff;
  padding:0 0 8vw 0;
}

.topicsDetail__inner {
  width: 87vw;
  margin: 0 auto;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  padding:70px 0 0 0 ;
}

.topicsDetail__image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 0.4rem;
}

.topicsDetail__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0a3b78;
  margin: 0 0 0.5rem 0;
}

.topicsDetail__date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
}

.topicsDetail__line {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}

.topicsDetail__body p {
  margin-bottom: 1.2rem;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
}

.topicsDetail__body a {
  color: #0a3b78;
  text-decoration: underline;
  font-weight: bold;
}
/* ==============================
 * トピックス詳細ページ（SP） end
 * ============================== */


/* ==============================
 * TenjinNewsSection（SP） start
 * ============================== */
.TenjinNewsSection {
  background: #fff;
  color: #000;
  padding: 0 0 8vw 0;
}

.tenjin-hero {
  width: 100vw;
  margin: 0 auto 6vw;
  padding: 70px 0 0 0;
}
.tenjin-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.tenjin-content {
  width: 87vw;
  margin: 0 auto;
}

.tenjin-title h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: #0a3b78;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tenjin-date {
  font-size: 0.9rem;
  color: #999;
}

.tenjin-line {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0 2rem;
}

/* PC横並び → SP縦積み */
.tenjin-textwrap {
  display: flex;
  flex-direction: column;
  gap: 6vw;
}

.tenjin-text {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.tenjin-sideimg {
  width: 100%;
}
.tenjin-sideimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 動画枠 */
.newvideo_container {
  margin: 8vw 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 9 / 16); /* 16:9比率 */
  background-color: #000;
}
.video-container iframe,
.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('../../images/play_bot.svg') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  z-index: 1;
}
/* ==============================
 * TenjinNewsSection（SP） end
 * ============================== */


/* ==============================
 * ギャラリー画像グリッド（SP） start
 * ============================== */
.gallery-row-box {
  width: 87vw;
  margin: 0 auto;
  padding: 6vw 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.gallery-row-two,
.gallery-row-three,
.gallery-row-two2{
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.gallery-row-two img,
.gallery-row-three img,
.gallery-row-two2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
/* ==============================
 * ギャラリー画像グリッド（SP） end
 * ============================== */

  .PC {
    display: none;
    max-width: 0%;
    max-height: 0%;
  }
  .SP {}
}