@charset 'UTF-8';
/* ----------------------------------------------------------
	共通・リセット
---------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0px;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.7;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /*16px×62.5%=10px*/
}
body {
  color: #fff;
  font-family: "Montserrat", 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
input, textarea {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
th {
  text-align: left;
  padding: 10px;
  vertical-align: middle;
  white-space: nowrap;
  background-repeat: repeat;
}
td {
  vertical-align: middle;
}
a:focus {
  outline: none;
}
a, a img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a img:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
em {
  opacity: 0;
  font-size: 10px;
}
.text-center {
  text-align: center;
}
/* ----------------------------------------------------------
		WordPress用
---------------------------------------------------------- */
/* ------------------- 画像 ------------------- */
/* 画像のキャプション */
/* 画像の配置 */
/* Internet Explorer用の設定 */
/* アイキャッチ画像 */
/* Masonryレイアウト用の設定 */
/* シャドウを使った写真の装飾 */
/* ----------------------------------------------------------
		WordPress用
---------------------------------------------------------- */
/* ------------------- 画像 ------------------- */
/* ================================================================================
	ヘッダー
================================================================================ */
header {}
.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  padding: 32px 24px;
  justify-content: space-between;
  align-items: flex-end;
}
.menu ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.menu ul li {
  padding-right: 32px;
}
.menu ul li:last-child {
  padding-right: 0px;
}
.menu ul li a {
  text-decoration: none;
  color: #fff;
}
h1.site-title a {
  text-decoration: none;
  color: #fff;
  padding-left: 20px;
  font-size: 2.6rem;
}
h1.site-title span.site-title-sub {
  font-size: 1.8rem;
  padding-left: 32px;
}
@media screen and (max-width: 767.98px) {
  h1.site-title span.site-title-sub {
    display: block;
    padding-left: 20px;
  }
}
@media screen and (min-width: 576px) {}
@media screen and (min-width: 768px) {}
@media screen and (min-width: 992px) {}
@media screen and (min-width: 1200px) {}
@media screen and (max-width: 575.98px) {}
@media screen and (max-width: 767.98px) {}
@media screen and (max-width: 991.98px) {}
@media screen and (max-width: 1199.98px) {}
/* ================================================================================
	フッター
================================================================================ */
footer {
  padding-top: 32px;
  height: 200px;
}
footer.site-footer {
  border-top: 3px solid #fff;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  padding-top: 32px;
}
@media screen and (max-width: 767.98px) {
  footer {
    height: 120px;
  }
}
/* ================================================================================
	グローバルナビゲーション
================================================================================ */
/* -------------------グローバルナビ ------------------- */
/*--------------------    nav        --------------------*/
/* トグルボタン */
.inner {
  max-width: 1240px;
  margin: 0 auto;
}
.header-inner {
  display: flex;
  justify-content: space-around;
}
.site-nav ul.menu {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 767.98px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #000;
    /*動き*/
    transition: all 0.3s;
    display: none;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
    display: block;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
    padding-right: 0;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: left;
  }
}
/* メニューリスト全体 */
.site-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 各メニューリンク */
.site-nav .menu li a, .taxonomy-term-list li a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  line-height: 1;
}
/* ▶マークのスタイル */
.site-nav .menu li a::before, .taxonomy-term-list li a::before {
  content: "▶";
  position: absolute;
  left: -2rem;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 5px;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}
/* ▶をホバー時に点滅させる */
.site-nav .menu li a:hover::before, .taxonomy-term-list li a:hover::before {
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.taxonomy-term-list li {
  margin-bottom: 8px;
}
.taxonomy-title {
  padding: 8px 0px 16px 0px;
}
/*------------------  スマホ用ボタンsmpmenu　   ----------*/
/* トグルボタン */
.openbtn {
  display: none;
}
@media screen and (max-width: 767.98px) {
  /*==================================================
　5-2-7 3本線が奥行きを持って回転して×に
===================================*/
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    display: block;
    position: absolute;
    background: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 9999;
    right: 20px;
  }
  /*ボタン内側*/
  .openbtn .openbtn-area {
    transition: all .4s;
  }
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #000;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると
線と周りのエリアが回転して×になる*/
  .openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .site-nav .menu li a {
    font-size: 1.2em;
    padding-left: 1.8em; /* ▶マークとの距離を調整 */
  }
  .site-nav .menu li a::before {
    font-size: 14px; /* ▶マークをやや大きく */
    padding: 3px 6px;
  }
}
/* ================================================================================
	パンくずナビ
================================================================================ */
/* ================================================================================
	メインコンテナ
================================================================================ */
.content-header {
  height: 350px;
  border-bottom: 5px solid #fff;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
}
.content-header
.content-archive-header {
  height: 250px;
  border-bottom: 5px solid #fff;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
}
.content-header h1 span.page-title, .content-header p.subtitle span.page-title-meta {
  background-color: #000;
  color: #fff;
}
.content-header h1 span.page-title {
  font-size: 3.2rem;
}
.content-header p.subtitle span.page-title-meta {
  font-size: 2.2rem;
}
.content-header p.subtitle span.page-title-meta a {
  color: #fff;
}
.content-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 56px;
}
.content-detail {
  width: 70%;
  padding-left: 56px;
  padding-right: 56px;
}
.sidebar {
  width: 30%;
  padding: 16px;
  border: 5px solid #fff;
  border-radius: 15px;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
}
.contents-detail-recordinfo {
  border: 5px solid white;
  border-radius: 12px;
  margin-bottom: 32px;
}
.contents-detail-recordinfo table {
  border-radius: 12px;
  overflow: hidden;
}
.contents-detail-recordinfo th, .contents-detail-recordinfo td {
  padding: 12px 16px;
  border-bottom: 3px solid white;
  color: #fff;
}
.contents-detail-recordinfo th a, .contents-detail-recordinfo td a {
  color: #fff;
}
.contents-detail-recordinfo th {
  text-align: left;
  width: 30%;
}
.contents-detail-recordinfo tr:last-child td, .contents-detail-recordinfo tr:last-child th {
  border-bottom: none;
}
/* 角丸が適用されるようにtable自体にoverflow:hiddenが必要 */
.contents-detail-group {
  border: 5px solid #fff;
  border-radius: 15px;
  padding: 24px;
  margin-top: 32px;
  margin-bottom: 64px;
}
.contents-detail-group h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #fff;
  padding-left: 24px;
}
.contents-detail-footer {
  padding-top: 32px;
  padding-bottom: 32px;
}
.contents-detail-group-left, .contents-detail-group-right {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .content-wrapper {
    flex-direction: column;
    padding-top: 56px;
  }
  .content-detail {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 32px;
  }
  .sidebar {
    width: 92%;
    padding: 16px;
    margin: 0 auto;
  }
}
/* ================================================================================
	トップページ
================================================================================ */
.firstview {
  height: auto;
  justify-content: center;
  flex-direction: column;
  padding-top: 16px;
}
.firstview__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.firstview__inner-new1, .firstview__inner-new2302, .firstview__inner-new2303 {
  background-color: #8A8A8A;
  overflow: hidden;
}
.firstview__inner-new1 {
  display: flex;
  width: 69.5%;
  height: 465px;
  padding: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex-shrink: 0;
  border: 5px solid #fff;
  border-radius: 15px;
}
.firstview__inner-new23 {
  display: flex;
  width: 30%;
  height: 466px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.firstview__inner-new2302 {
  width: 100%;
  height: 230px;
  border: 5px solid #fff;
  border-radius: 15px;
}
.firstview__inner-new2303 {
  width: 100%;
  height: 230px;
  border: 5px solid #fff;
  border-radius: 15px;
}
.topnews {
  background-color: #000;
  overflow: hidden;
  height: auto;
  padding: 16px 0;
}
.top-genre-list {
  display: flex;
  justify-content: space-between;
}
.flex-spacearound {
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 576px) {}
@media screen and (min-width: 768px) {}
@media screen and (min-width: 992px) {}
@media screen and (min-width: 1200px) {}
@media screen and (max-width: 575.98px) {}
@media screen and (max-width: 767.98px) {
  .firstview {
    height: auto;
    padding: 16px;
  }
  .firstview__inner {
    flex-direction: column;
  }
  .firstview__inner-new1 {
    display: flex;
    width: 100%;
    height: 300px;
  }
  .firstview__inner-new23 {
    display: flex;
    width: 100%;
    height: 270px;
    flex-direction: row;
    gap: 5px;
  }
  .topnews {
    padding: 16px;
  }
}
section.sns {
  padding: 64px 0;
}
@media screen and (max-width: 991.98px) {}
@media screen and (max-width: 1199.98px) {}
/*==================================================
ニュースティッカーのためのcss
===================================*/
/*ニュース1行の周りの余白*/
.newsticker a {
  display: block;
  background: #fff;
  padding: 20px;
}
/*日付*/
.newsticker span {
  display: inline-block;
  font-size: 1.6rem;
  margin-right: 10px;
  color: #777;
}
/*768px以下の見た目*/
@media screen and (max-width:768px) {
  .newsticker {
    padding: 20px;
    background: #fff;
  }
  .newsticker li {
    border-bottom: 1px dashed #ccc;
  }
  .newsticker li:last-child {
    border-bottom: none;
  }
  .newsticker span {
    display: block;
    padding-bottom: 10px;
  }
}
/* ================================================================================
	サイドバー
================================================================================ */
/* ------------------- サイドバー ------------------- */
/* メニュー */
/* サムネイル画像を付けたメニューのデザイン */
/* サムネイル画像に文字を重ねたメニュー */
/* ================================================================================
	記事・固定ページ
================================================================================ */
/* ================================================================================
	サブページ
================================================================================ */
/* ================================================================================
	その他
================================================================================ */
/*ニュース1行の周りの余白*/
.news a {
  display: block;
  background: #fff;
  padding: 10px 15px;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
}
/*日付*/
.news span {
  display: inline-block;
  margin-right: 10px;
}
/*768px以下の見た目 ※1行のままにしたい場合は不要　*/
@media screen and (max-width:768px) {
  .news {
    background: #fff;
  }
  .news li {
    border-bottom: 1px dashed #ccc;
  }
  .news li:last-child {
    border-bottom: none;
  }
  .news span {
    padding-bottom: 10px;
  }
}
.sidebar h3 {
  margin: 0 0 8px 0;
  text-align: center;
  border-bottom: 2px solid #fff;
  padding-bottom: 16px;
}
.sidebar-newslist, .widget-title-detail {
  margin: 0 0 32px 0;
  padding-left: 0;
}
/* ================================================================================
	コンテンツ
================================================================================ */
.topics-slider {
  overflow: hidden;
  padding: 20px 0;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
}
.card-list {
  padding: 48px 0;
}
.topics-header, .card-header {
  padding-bottom: 32px;
}
.topics-header h2, .card-header h2, .sns-header h2 {
  font-family: "hydrophilia-iced", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.2rem;
}
.topics-header h2, .card-header h2, .sns-header h2 {
  font-family: "hydrophilia-iced", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.2rem;
}
.topics-header h2 span, .card-header h2 span {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .card-list {
    padding: 48px 16px;
  }
  .card-header h2 span {
    display: block;
  }
}
/* ================================================================================
	パーツ
================================================================================ */
.custom-post-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.custom-post-item {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
}
.post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.post-tags {
  margin-top: 8px;
}
.tag-link {
  background-color: #eee;
  padding: 3px 8px;
  margin-right: 5px;
  border-radius: 12px;
  font-size: 0.85em;
  text-decoration: none;
  color: #000;
}
.posthead {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  color: white;
  border-radius: 8px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
/* テキストとタグを前面に */
.posthead a {
  color: white;
  text-decoration: none;
}
.posthead_time {
  font-size: 0.8em;
  opacity: 0.8;
}
.posthead {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  color: white;
  border-radius: 8px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
/* ホバー時に拡大と影 */
.posthead:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
/* オーバーレイ */
.posthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 0;
  transition: background 0.3s ease;
}
/* ホバー時にオーバーレイを少し薄く */
.posthead:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}
/* テキストとタグを前面に */
.posthead * {
  position: relative;
  z-index: 1;
}
.posthead a {
  color: white;
  text-decoration: none;
}
span.posthead__h2, span.posthead_tag, span.posthead_time {
  color: #fff;
  background-color: #171717;
  font-size: 1.6rem;
}
span.posthead_tag, span.posthead_time {
  font-size: 1.2rem;
}
.posthead_tag {
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.9em;
  margin-right: 5px;
  text-decoration: none;
}
.posthead_time {
  font-size: 0.8em;
  opacity: 1;
}
.new1 {
  width: 100%;
  height: 100%;
}
.record-grid, .archive-retro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.archive-card {
  border-radius: 10px;
  text-align: center;
  border: 5px solid #fff;
}
.record-item img, .archive-retro img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.record-item h3, .archive-retro h3 {
  margin: 0.5rem 0;
  color: #fff;
}
.record-item h3 span, .archive-retro h3 span {
  display: block;
  font-size: 1.4rem;
}
.record-item .meta, .archive-retro .meta {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.record-item a, .archive-retro a {
  color: #fff;
}
@media (max-width: 768px) {
  .posthead {
    padding: 5px;
    min-height: 220px;
  }
}
/* ヘッダー */
.site-header {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1000;
  border-bottom: 5px solid #fff;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.site-branding a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
}
.site-header.fix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  animation: nyuru 0.5s;
}
@keyframes nyuru {
  0% {
    margin-top: -64px;
  }
  100% {
    margin-top: 0;
  }
}
.pc-nav {
  display: flex;
}
.pc-nav .menu {
  display: flex;
  list-style: none;
  gap: 20px;
}
.pc-nav .menu li a {
  color: #fff;
  text-decoration: none;
}
/* 背景モーダル */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 1000;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.card-item:hover {
  transform: scale(1.02);
}
.card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  height: 220px;
}
.card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.card-meta {
  padding: 1rem;
  color: #fff;
  position: absolute;
  bottom: 0;
}
.card-date {
  margin-bottom: 0.25rem;
}
.card-title {
  margin: 0 0 0.25rem 0;
}
.card-genre {}
span.meta-item {
  background-color: #000;
}
.card-item {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  width: calc(100% / 3 - 1rem); /* 2列 */
  transition: transform 0.2s ease;
  border: 5px solid #fff;
  position:relative;
}
@media (max-width: 768px) {
  .card-item {
    width: calc(100% / 2 - 1rem);
  }
  .card-link {
    height: 160px;
  }
  .card-thumb img {
    object-fit: cover;
    height: 160px;
  }
}
.copyright {
  text-align: center;
}
.sns .icon a {
  font-family: "hydrophilia-iced", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  color: #fff;
}
.record-tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.track-column {
  flex: 1 1 45%;
  min-width: 280px;
}
.side-title {
  margin-bottom: 0.5em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.2em;
}
.track-list {
  list-style: decimal;
  padding-left: 1.2em;
}
.track-list li {
  margin-bottom: 1em;
  line-height: 1.5;
}
.duration {
  font-weight: bold;
  margin-left: 0.5em;
}
.record-details {
  display: block;
}
.taxonomy-term-list {
  margin-bottom: 24px;
  padding-left: 16px;
}
.mosaic-fadein {
  filter: blur(8px) contrast(50%) brightness(150%);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1s ease-out;
}
.mosaic-fadein.visible {
  filter: none;
  opacity: 1;
  transform: scale(1);
}
.wp-block-gallery .wp-block-image figcaption {
  position: static !important;
  text-align: center;
  padding-top: 5px;
  font-size: 0.9em;
  color: #555;
}
.wp-block-gallery .wp-block-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-result-list {
  list-style: none;
  padding: 0;
}
.search-result-item {
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}
.search-result-item .thumb img {
  width: 100px;
  height: auto;
}
.search-result-item .meta h2 {
  margin: 0 0 8px;
}
.sidebar-search-wrapper {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-around;
}
input.sidebar-search {
  border: 5px solid #fff;
  border-radius: 200px;
  padding: 8px;
}
button.sidebar-search {
  padding: 12px 24px;
  border-radius: 10px;
}
.search-section {
  padding: 2rem 0;
  border-top: 1px solid #ddd;
  margin-top: 4rem;
}
.search-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.global-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.search-input {
  flex: 1 1 200px;
  font-size: 2.4rem;
  border-radius: 200px;
  padding: 8px 24px;
}
.search-select {
  padding: 8px 24px;
  font-size: 2.4rem;
}
.search-button {
  padding: 8px 24px;
  background: #333;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
}
.search-button:hover {
  background: #555;
}
a.top-archive-link {
  display: inline-block;
  padding: 2px 16px;
  background-color: #fff;
  color: #000;
  border-radius: 200px;
  float: right;
}
a.top-archive-link:after {
  clear: none;
}
.sidebar-latest-custom-posts {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  flex-wrap: wrap;
}
.sidebar-latest-custom-posts .thumb {
  margin-right: 10px;
  flex-shrink: 0;
}
.sidebar-latest-custom-posts .thumb img {
  width: 95%;
  height: auto;
  object-fit: cover;
}
.sidebar-latest-custom-posts .info {
  font-size: 0.9em;
}
.sidebar-latest-custom-posts .info .date {
  color: #888;
  font-size: 0.8em;
}
.slide-image {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5em;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  text-align: center;
}
.caption h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}
/* 初期状態 */
.caption h3 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease;
  text-shadow: none;
  text-align: left;
}
.slide-inner {
  position: relative;
}
.caption h3 span {
  font-size: 1.2rem;
  display: block;
}
/* ホバー時のアニメーション */
.slide-item:hover .caption h3 {
  color: #ffcc00; /* ゴールド系などアクセントカラーに */
  transform: translateY(-4px); /* 少し浮く */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* 立体感 */
}
.caption {
  background: rgba(0, 0, 0, 0.9); /* 半透明の黒背景 */
  padding: 20px 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: background 0.3s ease;
  /*  border-top: 3px solid rgba(255, 255, 255, 1.00);
*/
}
.slide-item a {
  text-decoration: none;
  color: #fff;
}
/* ホバー時、背景濃く */
.slide-item:hover .caption {
  background: rgba(0, 0, 0, 0.7);
}
.slide-item:hover .caption h3 {
  color: #00ffff;
  transform: scale(1.15);
}
.topic-tags {
  position: absolute;
  top: 0;
  left: 8px;
}
.topic-tags .tag {
  font-size: 1.6rem;
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding-top: 2px;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 2px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: 3px solid rgba(255, 255, 255, 1.00);
  border-left: 3px solid rgba(255, 255, 255, 1.00);
  border-right: 3px solid rgba(255, 255, 255, 1.00);
}
.pagination {
  text-align: center;
  margin: 2em 0;
}
.pagination .nav-links {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5em 0.9em;
  margin: 0.3em;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95em;
  transition: background 0.2s, color 0.2s;
}
.pagination .page-numbers.current {
  background: #333;
  color: #fff;
  font-weight: bold;
}
.pagination .page-numbers:hover {
  background: #666;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .pagination .page-numbers {
    padding: 0.4em 0.7em;
    font-size: 0.85em;
    margin: 0.2em;
  }
  .search-section {
    padding: 48px 16px;
  }
  .search-select {
    width: 70%;
  }
}
a.archive-a {
  color: #fff;
}
.content-detail h3.wp-block-heading {
  font-size: 2.0rem;
  padding-bottom: 16px;
}
.lwptoc-light .lwptoc_i {
  color: #fff !important;
  background: #000 !important;
}
.lwptoc-light .lwptoc_i A {
  color: #fff !important;
  text-decoration: underline !important;
}
.lwptoc-notInherit .lwptoc_i DIV A {
  text-decoration: underline !important;
}
h1.re_first {
  font-size: 2.8rem;
  margin-bottom: 32px;
  border: 4px double #fff;
  padding: 16px;
}
.content-detail h1{
  font-size: 2.8rem;
  margin-bottom: 32px;
}

@media screen and (max-width: 480px) {
  h1.re_first {
    font-size: 2rem;
    margin-bottom: 32px;
    border: 4px double #fff;
    padding: 8px;
  }
.content-detail h1{
    font-size: 2rem;
    margin-bottom: 16px;
  }
}


.content-detail p a{
	color:#fff;
	text-decoration:underline;
}