@charset "utf-8";
/* CSS Document */
@import url("html5doctor_reset.css");

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
    letter-spacing: 0.1em;
    background-image: url("../images/bg.jpg");
    font-size: 15px;
    color: #21345c;
}

.space40 {
    height: 40px;
}

.space10 {
    height: 10px;
}

.SP {
    display: none;
}

.PC {
    display: inherit;
}

/* ヘッダー固定 */
header{
  background-color:#21345c;
  height:60px;
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}

/* ナビ基準 */
#header-nav{ position:relative; }

/* メニューの整列 */
#header-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  width:1000px;
  height:60px;
  margin:0 auto;
}

/* リスト初期化 */
#header-menu li{ list-style:none; }

/* -------------------------
   通常メニュー（下線アニメーション）
-------------------------- */
#header-menu a{
  position:relative;
  color:#fff;
  font-size:16px;
  text-decoration:none;
  padding:15px 12px;
  display:inline-block;
  overflow:hidden;
}

/* 下線（非表示状態） */
#header-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:10px;
  height:1px;
  width:0;
  background:#fff;
  transition:width .5s ease;
}

/* hoverで左→右へ出現 */
#header-menu a:hover::after{
  width:100%;
}

/* -------------------------
   ECボタン専用デザイン
-------------------------- */
#header-menu .ec a{
  position:relative;
  color:#21345c !important;
  font-weight:600;
}

/* ECの枠 */
#header-menu .ec span{
  background-color:#fff;
  padding:0.2em 1em;
  border-radius:20px;
  transition:.5s;
  border:1px solid transparent;
}

/* EC hover：青ベタ＋白文字＋白枠 */
#header-menu .ec a:hover span{
  background-color:#21345c;
  color:#fff;
  border-color:#fff;
}

/* ECは下線アニメーションなし */
#header-menu .ec a::after{
  display:none;
}

/* ヘッダー分の余白をページ上部につける 
body{
  padding-top:60px;
}*/

/*#header-menu > li.ec{
  position: absolute;
  right: max(16px, calc((100vw - 1000px) / 2));
  top: 50%;
  transform: translateY(-50%);
}

#header-menu > li.ec a{
  background-color: #fff;
  color: #21345c;
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 600;
}
*/
/*===========================main=============================*/
#mainvisual img{
    width: 100%;
    height: auto;
    display: block;
}  

/* コンテナ = 横並びを中央寄せ */
#concept{
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;   /* 左右中央 */
  align-items: flex-start;   /* 上端を揃える（中央にしたければ center） */
  gap: 1em;                /* 段間の距離（お好みで） */
  flex-direction: row-reverse;
}

/* 子要素を縦書きにする（Safari対策も） */
#concept > *{
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 2.5em;
  letter-spacing: .2em;
  margin: 0;                 /* ブラウザ既定の余白をリセット */
}

/* 見出しと本文の体裁 */
#concept h2{
  color: #21345c;
  font-weight: 600;
  letter-spacing: .3em;
  line-height: 3em;
  font-size: 22px;
}
#concept p{
    font-size: 16px;
}

/* === 浜名湖や：こだわり（うなぎイラスト） ================== */
#concept {
  position: relative;     /* 擬似要素の基準にする */
  z-index: 0;
}

/* 左側に薄く大きめのうなぎイラストを配置 */
#concept::before {
  content: "";
  position: absolute;
  left: -150px;            /* もう少し外に出したければ -40px などに */
  top: 70px;              /* 上下位置はここで調整 */
  width: 440px;           /* 大きさ（420〜480px で微調整） */
  height: 420px;
  background: url("../images/unagi.webp") center / contain no-repeat;
  opacity: .7;           /* 薄さ（0.15〜0.25 目安） */
  pointer-events: none;   /* クリック干渉防止 */
  z-index: 0;             /* テキストの下に */
}

#concept.shirayaki_concept::before {
  left: -20px;            /* もう少し外に出したければ -40px などに */
  top: 10px;              /* 上下位置はここで調整 */
  width: 350px;           /* 大きさ（420〜480px で微調整） */
  height: 420px;
}

#concept.yoman_concept::before {
  left: -20px;            /* もう少し外に出したければ -40px などに */
  top: 30px;              /* 上下位置はここで調整 */
  width: 350px;           /* 大きさ（420〜480px で微調整） */
  height: 420px;
}


/* テキストは必ずイラストの上に */
#concept > * {
  position: relative;
  z-index: 1;
}


/* 幅いっぱいに並べる（親がcontainer制限なら外に出す or 下記で100%に） */
#menu_bnr,
#menu_bnr .menu_box{
  width: 100%;
}

/* 横並び・余白なし */
.menu_box{
  display: flex;
  gap: 0;
}

/* 画像リンクをブロック化して割合指定 */
.menu_box a{ 
  display: block;
  flex: 0 0 25%;       /* デフォは25% */
}
.menu_box a:first-child{
  flex-basis: 50%;     /* 先頭だけ50% */
}

/* 画像は枠いっぱいにフィット（比率維持） */
.menu_box img{
  width: 100%;
  height: auto;
  display: block;
}

/* まず a を「表示枠」にする（はみ出しを隠す） */
.menu_box a{
  display:inline-block;
  overflow:hidden;        /* ← ここが重要 */
}

/* 画像は枠の中でズームさせる */
.menu_box a img{
  display:block;
  width:100%;
  height:auto;
  transform:scale(1);
  transition:transform .5s ease;
}

/* hoverで内部だけズーム（レイアウトは変わらない） */
.menu_box a:hover img{
  transform:scale(1.03);  /* ← ズーム率。お好みで 1.1～1.2 */
}


/* でしこ帯：左右 50/50、縦中央揃え */
#deshiko_bnr{
  display: flex;
  align-items: center;        /* 右カラムの縦位置を中央に */
  background: #21345c;        /* 紺 */
  width: 100%;
}

/* 左側：画像ラッパーを40%にする */
#deshiko_bnr .deshiko_img_wrap{
  flex: 0 0 40%;
  height: 100%;
}

/* ラッパーの中の画像をカバー表示 */
#deshiko_bnr .deshiko_img_wrap img{
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
}

/* 右カラム（テキスト側） */
#deshiko_bnr .deshiko_text{
  flex: 1;                    /* 残りの 50% を使用 */
  color: #fff;
  box-sizing: border-box;
  padding: 40px 80px;         /* 画のような内側余白 */
  display: grid;
  align-content: center;      /* 中身を縦方向でまとめて中央に */
  gap: 14px;
}

/* 見出し＋細い罫線 */
#deshiko_bnr .deshiko_text h2{
  font-size: 18px;
  letter-spacing: .12em;
  margin: 0 0 20px;
}
#deshiko_bnr .deshiko_text h2::after{
  content: "";
  display: block;
  width: 70%;                 /* 罫線の長さ（お好みで調整） */
  height: 1px;
  margin-top: 10px;
  background: rgba(255,255,255,.6);
}

/* ボタン本体 */
#deshiko_bnr .deshiko_text .btn-outline{
  margin-top:40px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border:1px solid rgba(255,255,255,.75);
  color:#fff;
  text-decoration:none;
  width:300px;
  position:relative;
  overflow:hidden;
  transition:color .3s ease, border-color .3s ease;
}

/* 白背景（下層に固定） */
#deshiko_bnr .deshiko_text .btn-outline::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background:#fff;
  z-index:1;               /* ← 上に来ていたのを下げる */
  transition:width .4s ease;
}

/* hover：白背景が伸びる */
#deshiko_bnr .deshiko_text .btn-outline:hover::before{
  width:100%;
}

/* テキスト（最前面へ） */
#deshiko_bnr .deshiko_text .btn-outline span,
#deshiko_bnr .deshiko_text .btn-outline::after{
  position:relative;
  z-index:2;               /* ← テキストと矢印は前面に強制 */
}

/* 矢印 */
#deshiko_bnr .deshiko_text .btn-outline::after{
  content:"›";
  font-size:18px;
  line-height:1;
  color:inherit;
}

/* hover：文字と矢印を青に */
#deshiko_bnr .deshiko_text .btn-outline:hover{
  color:#21345c;
  border-color:#fff;
  font-weight: 600;
}



/* セクション全体の背景・余白 */
#greeting{
  background: var(--c-beige, #f4f0e7);
  padding: 64px 0;
}

/* 2カラム配置 */
#greeting .greet-wrap{
  width: 1000px;
  margin: 0 auto;
  display:flex;
  gap: 48px;
}

/* 右：写真 */
#greeting .greet-photo img{
  height: auto;
  display: block;
}

/* 左：縦書きブロックと本文 */
#greeting .greet-left{}

/* 縦書きの氏名＋肩書き（氏名が左、肩書きが右に来る） */
#greeting .greet-name{
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #21345c;
}

#greeting .tate{
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .22em;
}

/* 氏名（大きめ） */
#greeting .name{
  font-size: 22px;
  font-weight: 700;
  line-height: 2.2;
  margin: 0;
}

/* 肩書き（少し小さめ） */
#greeting .role{
  font-size: 14px;
}

/* 点線の罫線 */
#greeting .greet-rule{
  border: 0;
  border-top: 2px dotted rgba(33,52,92,.45);
  margin: 10px 0 22px;
}

/* 本文（横書き） */
#greeting .greet-body p{
  line-height: 2.2;
  letter-spacing: .06em;
  color: #333;
}

/* 2つ目以降の挨拶ブロックは写真⇄テキストを逆にする */
#greeting > .greet-wrap:not(:first-of-type){
  flex-direction: row-reverse;
}


/* セクション背景と余白 */
#news {
  background: #fbfaf3;
  padding: 60px 0;
}

#news .news-title {
  color: #21345c;
  font-size: 22px;
  letter-spacing: .18em;
  text-align: center;
}

/* コンテンツ幅 */
#news .news-wrap {
  width: 1000px;
  margin: 0 auto;
}

/* 一覧（罫線つき3カラム風：日付 / カテゴリ / タイトル） */
#news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(33, 52, 92, .28);
}

#news .news-item {
  display: flex;                 /* ← Flex で横並び */
  align-items: center;
  gap: 24px;                     /* カラム間のスペース */
  padding: 18px 0;
  border-bottom: 1px solid rgba(33, 52, 92, .28);
}

/* 日付：固定幅 180px */
#news .news-date {
  flex: 0 0 180px;               /* 固定幅 */
  text-align: center;
  color: #21345c;
  opacity: .85;
  letter-spacing: .14em;
  font-feature-settings: "tnum" 1;
}

/* カテゴリ：固定幅 120px（ラベル風） */
#news .news-cat {
  flex: 0 0 100px;               /* 固定幅 */
  display: inline-grid;
  place-items: center;
  min-width: 100px;
  padding: 6px 0;
  background: #21345c;
  color: #fff;
  letter-spacing: .2em;
  font-size: 13px;
}

/* タイトル：残り幅いっぱい */
#news .news-text {
  flex: 1 1 auto;                /* 余った幅をすべて使う */
  color: #21345c;
  text-decoration: none;
}

#news .news-text:hover {
  text-decoration: underline;
  text-underline-offset: .2em;
}

/* MOREボタン */
#news .news-more {
  display: block;
  width: 300px;
  margin: 40px auto 0;
  padding: 15px 0;
  border: 1px solid #21345c;
  color: #21345c;
  text-align: center;
  letter-spacing: .18em;
  position: relative;
}

#news .news-more::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}

.news-more {
    text-decoration: none;
}

/* MOREボタン 基本 */
.news-more,
.news-more:link,
.news-more:visited{
  display:inline-block;
  padding:10px 28px;
  border:1px solid #21345c;
  color:#21345c;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition:color .3s ease, border-color .3s ease;
  z-index:1;
}

/* 左から流れる青背景（初期0%） */
.news-more::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background:#21345c;    /* ← 青ベタ */
  z-index:-1;            /* ← テキストより奥に置く */
  transition:width .4s ease;
}

/* hover：背景が左→右に広がる */
.news-more:hover::before{
  width:100%;
}

/* hover：文字と枠線を白に（他のa:hoverを上書き） */
.news-more:hover,
.news-more:hover:link,
.news-more:hover:visited{
  color:#fff !important;
  border-color:#fff !important;
}


/* セクション背景・見出し */
#shop_info {
  background-color: #21345c;
  color: #fff;
  padding: 60px 0;
}

#shop_info .shop-title {
  text-align: center;
  color: #fff;
  font-size: 22px;
  letter-spacing: .18em;
  margin: 0 0 24px;
}

/* 2カラムレイアウト（Flex） */
#shop_info .shop-wrap {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;  /* 右側のテーブルを縦中央に */
  gap: 48px;
}

/* 左：写真 */
#shop_info .shop-photo {
  flex: 0 0 480px;      /* 写真側の幅（調整可：480〜560px） */
}

#shop_info .shop-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右：情報テーブル */
#shop_info .shop-table {
  flex: 1 1 auto;
  width: 100%;
}

#shop_info .shop-table .row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .65);  /* 罫線 */
}

#shop_info .shop-table .row:first-child {
  border-top: 1px solid rgba(255, 255, 255, .65);
}

#shop_info .shop-table dt {
  flex: 0 0 90px;       /* 左ラベル幅（カンプ感：120〜140px） */
  color: rgba(255, 255, 255, .95);
  letter-spacing: .08em;
}

#shop_info .shop-table dd {
  flex: 1 1 auto;        /* 右側は可変 */
  margin: 0;
  color: rgba(255, 255, 255, .98);
  letter-spacing: .04em;
}


.map {
    width: 1000px;
    margin: 0 auto;
}

.map iframe {
    width: 100%;
    height: 400px;
}

/* ボタンの外枠 */
#shop_info .ec-more{
  width:350px;
  margin:0 auto;
  text-align:center;
  background-color:#fff;
  padding:15px 0;
  position:relative;
  overflow:hidden;
  border:1px solid #21345c; /* ← 枠線追加 */
}

/* ボタン内のテキスト */
#shop_info .ec-more a{
  text-decoration:none;
  color:#21345c;
  font-weight:600;
  position:relative;
  z-index:2;
  display:inline-block;
  transition:color .3s ease, border-color .3s ease;
}

/* 左から流れる青背景（初期 0%） */
#shop_info .ec-more::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background:#21345c; /* ← 青 */
  z-index:1;
  transition:width .4s ease;
}

/* hover：背景が左→右に伸びる */
#shop_info .ec-more:hover::before{
  width:100%;
}

/* hover：文字と枠線が白に */
#shop_info .ec-more:hover a{
  color:#fff;
}

#shop_info .ec-more:hover{
  border-color:#fff;
}

/*pagetop========================*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#21345c;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
    border: 1px solid #fff;
    letter-spacing: .1em
}

#page-top a:hover{
	background: #21345c;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝footer＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
footer {
    background-color: #1f263a;
    text-align: center;
}

footer h1 {
    color: #fff;
    font-weight: 300;
}

small {
    color: #fff;
    font-size: 12px;
    font-weight: 200;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝養殖について＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.heading img {
    width: 100%;
    height: auto;
    display: block;
}

.outline {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap:30px;
    justify-content: space-between;
}

.outline_text {
    letter-spacing: .2em;
    line-height: 1.8em;
}

/* 飼育工程：コンテナ */
.breeding_process {
  width: 1000px;
  margin: 0 auto;
}

/* 見出し：中央＋左右罫線 */
.breeding_process > h2 {
  position: relative;
  text-align: center;
  color: #21345c;
  font-size: 22px;
  letter-spacing: .18em;
  margin: 0;
}
.breeding_process > h2::before,
.breeding_process > h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 2px;
  background: rgba(33, 52, 92, .55);
  transform: translateY(-50%);
}
.breeding_process > h2::before { left: 0; }
.breeding_process > h2::after  { right: 0; }

/* 2カラム本体：高さ固定（全カード共通） */
.processdetails {
  position: relative;
  margin: 16px 0 0;
  height: 220px; /* ←ここを変えれば一括で高さ調整できます */
}

/* 左：白カード（テキスト側） */
.processdetails .details_text {
  width: 60%;                 /* ←テキスト側の幅 */
  height: 100%;               /* 画像と同じ高さに揃える */
  background: #fff;
  box-sizing: border-box;
  padding: 25px 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  display: grid;
  align-content: start;
  row-gap: 12px;
}

/* 右：写真（幅40%・高さ100%で常に揃える） */
.processdetails > img {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;                 /* ←画像側の幅 */
  height: 100%;               /* ←親の固定高にフィット */
  object-fit: cover;          /* はみ出しはトリミングして均一に */
  display: block;
}

/* 見出し・本文 */
.processdetails .details_text h3 {
  font-size: 18px;
  letter-spacing: .16em;
  color: #21345c;
  padding-top: 10px;
}
.processdetails .details_text p {
  margin: 0;
  line-height: 1.9;
  color: #21345c;
  font-size: 14px;
  width: auto;                /* ←以前の 65% 指定をリセット */
}

/* ── .inversion を付けたカードだけ左右反転 ── */
.processdetails.inversion > img {
  left: 0;
  right: auto;
}
.processdetails.inversion .details_text {
  margin-left: auto;          /* テキストカードを右側へ */
}

.ec_bnrbox{
  text-align:center;
}

.ec_bnrbox a{
  display:inline-block;
  width:700px;      /* ← 今のバナー幅があるならここに指定（任意） */
  height:200px;     /* ← バナー高さ固定（あなたの現状を維持） */
  overflow:hidden;  /* ← ズーム時にはみ出した部分を隠す */
  position:relative;
}

/* 画像の初期状態（枠にフィットさせる） */
.ec_bnrbox img{
  width:100%;
  height:100%;
  object-fit:cover;        /* ← 比率を維持しつつ枠にちょうどよく収める */
  transform:scale(1);
  transition:transform .6s ease;
  display:block;
}

/* hover：画像だけズーム（枠サイズは不変） */
.ec_bnrbox a:hover img{
  transform:scale(1.05);   /* ← 動きの強さは調整可 */
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝infomation＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#news.information {
    background-image: url("../images/bg.jpg");
}

/* カテゴリーボタン */
.category-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 6px 80px;
  border: 1px solid #21345c;
  background: transparent; /* ←塗りなし */
  color: #21345c;
  font-size: 16px;
  cursor: pointer;
  transition: .2s;
}

.filter-btn:hover {
  background: #21345c;
  color: #fff;
}

.filter-btn.active {
  background: #21345c;
  color: #fff;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝single-page＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#single-page{
  width: 700px;
  margin: 0 auto;
}

#single-page .single-title{
  text-align: center;
}

.single-title h2 {
    font-size: 26px;
}

.single-title .time {
    font-size: 14px;
}

#single-page .single-text{
  width: 100%;
  line-height: 2;
}

#single-page .single-text img{
  width: 100%;
  height: auto;
  margin: 24px 0;
}

#single-page .single-text h4,
#single-page .single-text h3{
  margin-top: 40px;
  margin-bottom: 5px;
}

#single-page .single-text p{
  margin-bottom: 24px;
}

#single-page h3 {
    border-bottom: 1px solid #21345c;
    font-size: 21px;
}

#single-page h4 {
    font-size: 18px
}

.single-text a{
    color: #21345c;;

}


.category-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.filter-btn {
  display: inline-block;
  padding: 6px 80px;
  border: 1px solid #21345c;
  background: transparent;
  color: #21345c;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.filter-btn:hover {
  background: #21345c;
  color: #fff;
}

.filter-btn.active {
  background: #21345c;
  color: #fff;
  border-color: #21345c;
}



/* ページネーション全体の中央寄せ */
.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ページ番号のスタイル */
.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 16px;
  border: 1px solid #21345c;
  color: #21345c;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s, color 0.3s;
  font-family: "Noto Serif JP", serif;
}

/* 現在のページ */
.news-pagination .current {
  background-color: #21345c;
  color: #fff;
  border-color: #21345c;
  cursor: default;
}

/* hover時のスタイル */
.news-pagination .page-numbers:hover:not(.current) {
  background-color: #21345c;
  color: #fff;
}

/* « や » の矢印 */
.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
  font-weight: bold;
}


.post-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.post-nav-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #21345c;
  color: #21345c;
  font-size: 15px;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  transition: all 0.3s ease;
}

.post-nav-btn:hover {
  background: #21345c;
  color: #fff;
}

.post-nav-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
