/*
Theme Name: JaFukuokakurume Theme
Description: オリジナルテーマ
Author: 寺崎勇二
*/

@charset "UTF-8";

/* ==========================================================================
   Variables & Base
   ========================================================================== */
:root {
	--color-primary: #34d399;
	--color-primary-dark: #10b981;
	--color-text: #334155;
	--color-text-light: #64748b;
	--color-bg-body: #ffffff;
	--color-bg-light: #f8fafc;
	--color-border: #e2e8f0;

	--font-main: 'Zen Maru Gothic', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

	--radius-sm: 8px;
	--radius-md: 20px;
	--radius-full: 9999px;

	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);

	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	/* cloud-barの高さ（PC / SP で管理） */
	--cloud-h: 55px;
}

html,
body {
	overflow-x: clip;
	/* hidden はスクロールコンテナを作り sticky を壊すため clip を使用 */
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-main);
	color: var(--color-text);
	background-color: var(--color-bg-body);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 20px;
		/* L2357と統合済み */
	}
}

/* メニュー開閉時の背景スクロールロック */
body.is-locked {
	overflow: hidden;
	position: fixed;
	/* スクロール位置ジャンプ防止 */
	width: 100%;
	/* position:fixed で幅が縮むのを防ぐ */
	/* top は JS 側で動的にセット（scrollY 保持のため） */
}

/* SP用オーバーレイ（メニュー開閉時の背景暗転） */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 900;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* ==========================================================================
   Cloud Bar
   ========================================================================== */
.cloud-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	z-index: 999;
	/* 最背面$2014header・mv-logoの後ろに時かれる */
	pointer-events: none;
}

.cloud-bar__strip {
	width: 100%;
	height: var(--cloud-h);
	/* 55px */
	background-image: url('img/cloude.png');
	background-repeat: repeat-x;
	background-size: auto var(--cloud-h);
	background-position: top left;
	animation: cloudScroll 30s linear infinite;
}

@keyframes cloudScroll {
	0% {
		background-position: 0 top;
	}

	100% {
		background-position: -1000px top;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--cloud-h: 0px;
	}

	.cloud-bar {
		display: none;
		/* SPでは非表示 */
	}
}

/* ==========================================================================
   Header (Fixed, White Base, Rounded)
   ========================================================================== */
.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1001;
	/* PC: 初期状態は透明（雲のアニメが透けて見える） */
	background-color: transparent;
	transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* PCのみ: スクロール時に白背景 + 影 */
@media screen and (min-width: 769px) {
	.header.is-scrolled {
		background-color: rgba(255, 255, 255, 1);
		backdrop-filter: blur(4px);
	}
}

/* SP: 初期間は透明（上に引き上げた動画を透かせる）、スクロールで白背景 */
@media screen and (max-width: 768px) {
	.header {
		background-color: transparent;
	}

	.header.is-scrolled {
		background-color: rgba(255, 255, 255, 1);
		backdrop-filter: blur(4px);
	}
}

.header__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	padding: 6px 86px 6px 86px;
}

.header__logo {
	display: flex;
	align-items: flex-start;
	padding-left: 16px;
	padding-top: 6px;
	position: relative;
	z-index: 1002;
}

.logo-link {
	display: flex;
	align-items: center;
}

.logo2-img {
	height: 60px;
	width: auto;
	display: block;
}

.logo2-pc {
	height: 55px;
	width: auto;
	display: block;
}

.ja-logo-mark,
.logo-text {
	display: none;
}

.header__nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: 1;
	justify-content: flex-end;
}

.header__top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 20px;
	margin-bottom: 4px;
}

.header__top-nav {
	display: flex;
	gap: 20px;
	font-size: 13px;
	font-weight: 700;
}

.header__top-nav a:hover {
	color: var(--color-primary-dark);
}

.header__sns {
	display: flex;
	gap: 12px;
}

.header__sns a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: var(--color-text);
	transition: var(--transition);
}

/* SNSのホバー色分け（任意でブランドカラー） */
.header__sns a[aria-label="Instagram"]:hover {
	color: #E1306C;
}

.header__sns a[aria-label="X（旧Twitter）"]:hover {
	color: #1DA1F2;
}

.header__nav-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 6px;
}

/* PC専用: ロゴタブと重ならないよう左側を詰める */
@media screen and (min-width: 769px) {
	.header__inner {
		/* ロゴ位置(left:2em。82px)+ロゴ幅(約120px)+余白 = 左205px確保 */
		padding: 6px 86px 6px 700px;
	}

	/* .header__nav-item font-sizeはPCブロック(L2067、font-size:16px)に定義済みのため削除 */

	/* SP専用ポリシーリンクはPC版ナビでは非表示 */
	.header__nav-item--policy {
		display: none !important;
	}
}

/* トップページ以外のヘッダー内部ロゴ */
.header__logo-sub {
	display: flex;
	align-items: center;
	height: 100%;
}

.header__logo-sub .logo-link {
	display: flex;
	align-items: center;
}

.header__logo-sub .logo4-img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

/* PC時のロゴ配置（header__innerに影響を与えず、.headerの左端へ絶対配置） */
@media screen and (min-width: 769px) {
	.header__logo-sub {
		position: absolute;
		left: 40px;
		/* 左端から40px */
		top: 50%;
		transform: translateY(-50%);
		z-index: 1002;
	}
}

@media screen and (max-width: 768px) {
	.header__logo-sub {
		margin-right: auto;
		/* スマホではheader__inner左側に寄せる */
	}

	.header__logo-sub .logo4-img {
		height: 32px;
		/* スマホでのサイズ */
	}
}

.header__nav-item {
	font-size: 13px;
	font-weight: 700;
}

.header__nav-item a:not(.btn-present) {
	position: relative;
	padding: 8px 0;
	display: inline-block;
}

.header__nav-item a:not(.btn-present)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background-color: var(--color-primary);
	transition: var(--transition);
	border-radius: var(--radius-full);
}

.header__nav-item a:not(.btn-present):hover {
	color: var(--color-primary-dark);
}

.header__nav-item a:not(.btn-present):hover::after {
	width: 100%;
}

/* オンラインショップ→プレゼントボタンに変更 */
.btn-present {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #eb4747;
	/* 緑色に変更 */
	color: #fff !important;
	padding: 8px 18px;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 4px 10px rgb(211 52 52 / 30%);
}

.btn-present:hover {
	background-color: var(--color-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(16, 185, 129, 0.4);
}

.icon-external {
	font-size: 12px;
}

/* ハンバーガーアイコン */
.header__hamburger {
	display: none;
	/* PCでは非表示 */
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	width: 44px;
	height: 44px;
	position: relative;
	z-index: 1001;
	/* メニューより上に配置 */
}

/* ハンバーガーの3本線 */
.header__hamburger span {
	display: block;
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: var(--color-primary-dark);
	border-radius: 2px;
	left: 50%;
	transform: translateX(-50%);
	transition: var(--transition);
}

.header__hamburger span:nth-child(1) {
	top: 13px;
}

.header__hamburger span:nth-child(2) {
	top: 21px;
}

.header__hamburger span:nth-child(3) {
	top: 29px;
}

/* ハンバーガー開閉時の×印へのアニメーション */
.header__hamburger.is-active span:nth-child(1) {
	top: 21px;
	transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
	top: 21px;
	transform: translateX(-50%) rotate(-45deg);
}

/* ==========================================================================
   MV Frame (Rounded card with white side panels)
   ========================================================================== */
.mv-frame {
	display: flex;
	align-items: stretch;
	background: #ffffff;
	/* clip-path は .mv に移動 */
	margin: -20px 0 0 0;
	position: relative;
	z-index: 1;
}

/* 以下のSP対応は文書末尾の大SPブロックに統合済み *+/

/* SP: clip-path を SP 用に切り替え・幅を画面にぴったり合わせる */
@media screen and (max-width: 768px) {
	.mv-frame {
		clip-path: url(#clip_path_sp);
		margin: 0;
		/* 左右余白なし */
		width: 100vw;
		/* ビューポート幅ぴったり */
		margin-top: -30px !important;
		/* ビデオのトップをハンバーガーメニュー付近に引き上げ */
	}
}

.mv-frame__side {
	width: 70px;
	flex-shrink: 0;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 20px 8px;
}

/* SP: サイドパネルは非表示 */
@media screen and (max-width: 768px) {
	.mv-frame__side {
		display: none;
	}
}

.mv-frame__side img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

/* PC: サイドアイコン $2014 ベルスイングアニメーション */
@media screen and (min-width: 769px) {
	.mv-frame__side {
		gap: 40px;
		/* アイコン 1個分の間隔 */
	}

	/* ベルスイング: 振り子のように左右に揺れて収束する */
	@keyframes bellSwing {
		0% {
			transform: rotate(0deg);
		}

		12% {
			transform: rotate(22deg);
		}

		28% {
			transform: rotate(-18deg);
		}

		44% {
			transform: rotate(13deg);
		}

		58% {
			transform: rotate(-8deg);
		}

		70% {
			transform: rotate(5deg);
		}

		80% {
			transform: rotate(-2deg);
		}

		90% {
			transform: rotate(1deg);
		}

		100% {
			transform: rotate(0deg);
		}
	}

	/* JS が .is-swinging を付けたときだけ動作 */
	.mv-frame__side img {
		transform-origin: top center;
		/* 振り子の支点を上部に */
		display: block;
	}

	.mv-frame__side img.is-swinging {
		animation: bellSwing 2s ease-in-out forwards;
	}

	/* ==============================
	   サイドパネル吹き出し（PC のみ）
	   ============================== */
	.side-icon-wrap {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.side-icon__tooltip {
		position: absolute;
		top: 50%;
		transform: translateY(-50%) scale(0.8);
		white-space: normal;
		/* テキスト折り返し可 */
		text-align: center;
		width: 165px;
		/* 固定幅で楕円の「横」を揃える (110px * 1.5) */
		background-color: #fffde7;
		color: var(--color-primary-dark);
		font-size: 17px;
		/* (11.5px * 1.5 $2248 17px) */
		font-weight: 700;
		line-height: 1.5;
		padding: 30px 24px;
		/* 上下を広げて縦に丸く (20px * 1.5, 16px * 1.5) */
		border-radius: 50%;
		/* 楕円の丸み（固定幅＋上下paddingで楕円に） */
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
		pointer-events: none;
		z-index: 10;
	}

	/* 左パネル：右方向に吹き出し */
	.side-icon__tooltip--right {
		left: calc(100% + 10px);
	}

	.side-icon__tooltip--right::before {
		content: '';
		position: absolute;
		top: 50%;
		left: -8px;
		transform: translateY(-50%);
		border-style: solid;
		border-width: 8px 10px 8px 0;
		border-color: transparent #fffde7 transparent transparent;
	}

	/* 右パネル：左方向に吹き出し */
	.side-icon__tooltip--left {
		right: calc(100% + 10px);
	}

	.side-icon__tooltip--left::before {
		content: '';
		position: absolute;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		border-style: solid;
		border-width: 8px 0 8px 10px;
		border-color: transparent transparent transparent #fffde7;
	}

	/* ホバーで表示 */
	.side-icon-wrap:hover .side-icon__tooltip,
	/* is-swinging（ベルスイング中）に自動表示 */
	.side-icon-wrap img.is-swinging~.side-icon__tooltip {
		opacity: 1;
		visibility: visible;
		transform: translateY(-50%) scale(1);
	}
}

/* ==========================================================================
   MV Logo $2014 左上固定タブ
   右下のみ凸型角丸、::before と ::after で2箇所の逆角丸を実装
   ─ 箇所A ::before : 右側（ロゴ右上 × ヘッダー下端の内角）
   ─ 箇所B ::after  : 下側（ロゴ左下 × 左サイドパネル右端の内角）
   ========================================================================== */
.mv-logo {
	position: fixed;
	top: 3em;
	left: 1em;
	z-index: 1002;
	border-radius: 0 0 30px 0;
	padding: 18px 24px 18px 16px;
	overflow: visible;
}

/* PC のみ: スクロール時に白背景 */
@media screen and (min-width: 769px) {
	.mv-logo.is-scrolled {
		background: #ffffff;
		padding: 1.5em 3em 2em 2.5em;
		margin: 0 0 0 -1.5em;
	}
}

.mv-logo a {
	display: block;
}

.mv-logo .logo2-img {
	height: 120px;
	width: auto;
	display: block;
}

/* SP */
@media screen and (max-width: 768px) {
	.mv-logo {
		padding: 0;
		border-radius: 0 0 14px 0;
		position: absolute;
		top: 1.5em;
		left: 1em;
	}

	/* メニュー開時はナビより後ろに */
	body.is-locked .mv-logo {
		z-index: 0;
	}

	/* スクロール時: ヘッダーバー内に追随 */
	.mv-logo.is-scrolled {
		position: fixed;
		top: 1em;
		/* ヘッダーの垂直中央付近 */
		left: 1em;
		padding: 0;
		border-radius: 0;
		background: transparent;
		z-index: 1002;
	}

	/* スクロール時は逆角丸の擬似要素を非表示 */
	.mv-logo.is-scrolled::before,
	.mv-logo.is-scrolled::after {
		display: none;
	}

	/* スクロール時: ヘッダー高さを増やさないようロゴを縮小 */
	.mv-logo.is-scrolled .logo2-img {
		height: 36px;
	}

	.mv-logo::before {
		right: -14px;
		width: 14px;
		height: 14px;
		border-top-left-radius: 14px;
	}

	.mv-logo::after {
		bottom: -14px;
		width: 14px;
		height: 14px;
		border-top-left-radius: 14px;
	}

	.mv-logo .logo2-img {
		height: 60px;
	}
}

/* ==========================================================================
   Main Visual (Video inside frame)
   ========================================================================== */
.mv {
	position: relative;
	flex: 1;
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #000;
	clip-path: url(#clip_path);
	/* SVGで形状を定義 */
}

.mv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.mv__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* 背景動画を生かしつつ文字を読ませるためのグラデーションフィルター */
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

/* SVG丘型マスク（下部に配置して白で塗りつぶす） */
.mv__wave {
	position: absolute;
	bottom: -2px;
	/* 隙間防止 */
	left: 0;
	width: 100%;
	height: 150px;
	z-index: 10;
}

.mv__wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* 丘の上のアイコン群 */
.mv__icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	/* コンテナ自体はクリック判定させない */
}

.mv-icon {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	color: #fff;
	transform: translateX(-50%);
	pointer-events: auto;
	/* アイコン自体はクリック可能 */
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mv-icon:hover {
	transform: translateX(-50%) translateY(-10px) scale(1.1);
}

.mv-icon svg,
.mv-icon img {
	width: 100%;
	height: 100%;
	/* ドロップシャドウで白動画上でも見えやすく */
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
	object-fit: contain;
}

/* ツールチップ（気球風の吹き出し） */
.mv-icon__tooltip {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background-color: var(--tooltip-bg, #fff);
	/* JSで動的に変更 */
	color: var(--color-primary-dark);
	font-size: 15px;
	/* 少し大きく */
	font-weight: 700;
	padding: 12px 24px;
	/* 気球のように丸みと大きさを */
	border-radius: 30px;
	/* 気球風に大きな丸み */
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	/* 浮遊感を強める */
	pointer-events: none;
	/* ツールチップ自体はホバー判定しない */
}

/* 吹き出しの尻尾 */
.mv-icon__tooltip::after {
	content: '';
	position: absolute;
	top: 98%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 8px;
	/* 尻尾も少し大きく */
	border-style: solid;
	border-color: var(--tooltip-bg, #fff) transparent transparent transparent;
}

/* PC時の手動ホバー、またはJSによるPCランダムポップ/SP中央ポップ */
@media screen and (min-width: 769px) {
	.mv-icon:hover .mv-icon__tooltip {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
}

.mv-icon.is-active-pc .mv-icon__tooltip,
.mv-icon.is-active-sp .mv-icon__tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* 中央からのパーセンテージとボトム位置の調整 */
/* y(t) = 300 * t * (1-t) から計算し、数pxの隙間を開けて配置 */
.mv-icon--1 {
	left: 15%;
	bottom: 30px;
}

.mv-icon--2 {
	left: 27%;
	bottom: 58px;
}

.mv-icon--3 {
	left: 39%;
	bottom: 64px;
}

.mv-icon--4 {
	left: 50%;
	bottom: 71px;
}

.mv-icon--5 {
	left: 61%;
	bottom: 66px;
}

.mv-icon--6 {
	left: 72%;
	bottom: 54px;
}

.mv-icon--7 {
	left: 85%;
	bottom: 43px;
}


.mv__content {
	position: relative;
	z-index: 20;
	text-align: center;
	width: 100%;
	padding: 0 80px;
}

.mv__catchcopy {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	margin: 0;
	letter-spacing: 0.1em;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* MV Side Icons */
.mv__side-icons {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	z-index: 15;
	pointer-events: none;
}

.mv__side-icons--left {
	left: 18px;
}

.mv__side-icons--right {
	right: 18px;
}

.mv__side-icons img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

/* ==========================================================================
   Merge Intro Section
   ========================================================================== */
.merge-intro {
	background-color: #fff;
	padding: 50px 20px 40px;
	text-align: center;
}

.merge-intro__logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.merge-intro__icon {
	height: 100px;
	width: auto;
	object-fit: contain;
}

.merge-intro__main-logo {
	height: 90px;
	width: auto;
	object-fit: contain;
}

.merge-intro__text {
	font-size: clamp(18px, 2.2vw, 26px);
	font-weight: 700;
	color: #1a4a1a;
	line-height: 1.8;
	margin: 0;
	letter-spacing: 0.05em;
}

/* ==========================================================================
   Products Slider (Swiper Integration)
   ========================================================================== */
.products-slider {
	padding: 20px 0 80px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}

.products-slider__container {
	position: relative;
	padding: 0 60px;
	/* PC時のナビゲーションボタン分スペース */
}

.products-slider .swiper {
	width: 100%;
}

.slider-card {
	display: block;
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	/* 16:9 などの比率を維持して画像を表示 */
	aspect-ratio: 16 / 9;
	box-shadow: var(--shadow-sm);
	background-color: #f1f5f9;
}

/* 視認性を上げるための上部グラデーション（削除済み） */

.slider-card__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	z-index: 0;
}

.slider-card:hover .slider-card__img {
	transform: scale(1.05);
}

.slider-card__title {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	text-align: center;
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	z-index: 10;
	/* 文字を際立たせる強いドロップシャドウ */
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
	line-height: 1.3;
}

/* Swiper カスタマイズ: ナビゲーションボタン（四角い緑） */
.products-slider__container .swiper-button-next,
.products-slider__container .swiper-button-prev {
	background-color: var(--color-primary-dark);
	color: #ffffff;
	width: 44px;
	height: 44px;
	border-radius: 4px;
	margin-top: -22px;
	/* 縦中央 */
	transition: var(--transition);
}

.products-slider__container .swiper-button-next::after,
.products-slider__container .swiper-button-prev::after {
	font-size: 20px;
	/* 矢印を少し小さめに調整 */
	font-weight: bold;
}

.products-slider__container .swiper-button-next:hover,
.products-slider__container .swiper-button-prev:hover {
	background-color: #059669;
	/* ホバーで濃い緑 */
}

/* 外側に配置 */
.products-slider__container .swiper-button-prev {
	left: 0;
}

.products-slider__container .swiper-button-next {
	right: 0;
}

/* ページネーション（ドット部分） */
.products-slider__container .swiper-pagination {
	bottom: -50px;
	/* スライダー下の余白に配置 */
}

.products-slider__container .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #cbd5e1;
	/* グレー */
	opacity: 1;
	margin: 0 6px !important;
	transition: var(--transition);
}

.products-slider__container .swiper-pagination-bullet-active {
	background-color: var(--color-primary-dark);
	/* アクティブ時は濃い緑 */
	transform: scale(1.2);
}

/* スライダー下部バナーボタン */
.slider-banner-wrap {
	text-align: center;
	margin: 0 0 100px 0;
	/* スライダー自体の下から100px、ページネーション(-50px)から約50px下になります */
	padding: 0 20px;
}

.btn-slider-banner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 800px;
	background-color: #009ca6;
	/* 参考画像に近い青緑 */
	color: #ffffff !important;
	font-size: 20px;
	font-weight: bold;
	padding: 20px 40px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	position: relative;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.btn-slider-banner:hover {
	background-color: #00848d;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-slider-banner .icon-arrow-circle {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.btn-slider-banner .icon-arrow-circle::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #009ca6;
	border-right: 2px solid #009ca6;
	transform: rotate(45deg);
	margin-left: -2px;
}

.btn-slider-banner:hover .icon-arrow-circle {
	transform: translateY(-50%) translateX(5px);
}

/* SP以下の調整 */
@media screen and (max-width: 768px) {
	.products-slider__container {
		/* SP時はコンテナ自体の余白を消し、スライダーをど真ん中に配置 */
		padding: 0;
	}

	.products-slider .swiper {
		/* 矢印を配置する際に見切れないように内側にpaddingを取る */
		padding: 0 45px 50px;
	}

	.slider-card__title {
		font-size: 18px;
		top: 15px;
	}

	.products-slider__container .swiper-button-next,
	.products-slider__container .swiper-button-prev {
		/* SP時も矢印を表示（少し小さく調整） */
		display: flex;
		width: 36px;
		height: 36px;
		margin-top: -35px;
		/* pagination分上がっているので少し上寄りに補正 */
	}

	/* 矢印を画面の端ギリギリに再配置（元のpadding-0に合わせるため） */
	.products-slider__container .swiper-button-prev {
		left: 5px;
	}

	.products-slider__container .swiper-button-next {
		right: 5px;
	}

	.products-slider__container .swiper-button-next::after,
	.products-slider__container .swiper-button-prev::after {
		font-size: 16px;
	}
}


/* ==========================================================================
   Recommended Banners (おすすめ情報)
   ========================================================================== */
.rec-banners__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* PC: 3列 */
	gap: 20px;
}

.rec-banners__item {
	display: block;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	background: #f8f8f8;
}

.rec-banners__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.rec-banners__item img {
	width: 100%;
	height: 110px;
	object-fit: contain;
	/* 縦横比を保持してはみ出さない */
	display: block;
	background: #fff;
	padding: 8px 16px;
}

/* SP: 2列 */
@media screen and (max-width: 768px) {
	.rec-banners__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.rec-banners__item img {
		height: 75px;
		padding: 6px 10px;
	}
}

/* ==========================================================================
   Footer CTA
   ========================================================================== */
.footer-cta {
	padding: 80px 0;
	background-color: var(--color-bg-light);
	/* スライダーの下と馴染むように変更 */
}

.footer-cta__inner {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.cta-banner {
	flex: 1;
	max-width: 500px;
	border-radius: var(--radius-md);
	padding: 50px 40px;
	text-align: center;
	background-color: #ffffff;
	/* 白抜きに変更 */
	border: 1px solid #d1fae5;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(52, 211, 153, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.cta-banner:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: #34d399;
}

.cta-banner--shop {
	border-color: #d1fae5;
	/* プレゼント グリーン系 */
}

.cta-banner--shop::before {
	background: linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta-banner--shop:hover {
	border-color: #34d399;
}

.cta-banner__subtitle {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-primary-dark);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

/* .cta-banner--shop .cta-banner__subtitle: 親(.cta-banner__subtitle)と同値のため削除 */

/* 商品カード SP可変 */
@media screen and (max-width: 768px) {
	.products__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.category-card__img-wrap {
		height: 100px;
	}

	.category-card__title {
		font-size: 13px;
	}

	.recommend-card {
		grid-column: span 2;
	}
}

.cta-banner__title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: var(--color-text);
}

.cta-banner__text {
	margin: 0;
	font-size: 15px;
	color: var(--color-text-light);
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section-block {
	padding: 100px 0;
	background-color: #fbfaec;
}

.section-block.bg-gray {
	background-color: var(--color-bg-light);
}

/* .section-header は下の Products セクションで完全定義 */

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary-dark);
	margin: 0 0 10px 0;
	letter-spacing: 0.1em;
}

.section-subtitle {
	display: block;
	font-size: 14px;
	color: var(--color-text-light);
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.btn-wrap--center {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	border: 2px solid var(--color-primary);
	border-radius: var(--radius-full);
	color: var(--color-primary-dark);
	font-weight: 700;
	transition: var(--transition);
	background-color: #fff;
}

.btn-more::after {
	content: '→';
	margin-left: 10px;
	transition: transform 0.3s;
}

.btn-more:hover {
	background-color: var(--color-primary);
	color: #fff;
}

.btn-more:hover::after {
	transform: translateX(5px);
}

.btn-more--accent {
	background-color: #f59e0b;
	border-color: #f59e0b;
	color: #fff;
	box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.btn-more--accent:hover {
	background-color: #d97706;
	border-color: #d97706;
	box-shadow: 0 6px 14px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   News (お知らせ)
   ========================================================================== */
.news__list {
	max-width: 900px;
	margin: 0 auto;
	border-top: 1px solid var(--color-border);
}

.news-item {
	border-bottom: 1px solid var(--color-border);
}

.news-item__link {
	display: flex;
	align-items: center;
	padding: 25px 20px;
	transition: background-color 0.3s;
}

.news-item__link:hover {
	background-color: var(--color-bg-light);
}

.news-item__link:hover .news-item__title {
	color: var(--color-primary-dark);
}

.news-item__meta {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 250px;
	/* PCでは日付とカテゴリの幅を固定 */
	flex-shrink: 0;
}

.news-item__date {
	font-size: 15px;
	color: var(--color-text-light);
	font-weight: 500;
}

.news-item__category {
	font-size: 12px;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: var(--radius-full);
	background-color: var(--color-primary);
	color: #fff;
}

/* カテゴリごとの色分け例 */
.news-item__category[data-cat="news"] {
	background-color: #3b82f6;
	/* 青 */
}

.news-item__category[data-cat="bank"] {
	background-color: #f59e0b;
	/* オレンジ */
}

.news-item__category[data-cat="agri"] {
	background-color: var(--color-primary-dark);
	/* 緑 */
}

.news-item__title {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	transition: color 0.3s;
}

/* ==========================================================================
   Products (おすすめ商品 - カテゴリ形式)
   ========================================================================== */
.section-header {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 40px;
	text-align: center;
	/* 統合: 旧定義(L1276)と統合済み */
}

.section-header__link {
	font-size: 16px;
	color: var(--color-primary-dark);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	transition: var(--transition);
}

.section-header__link:hover {
	color: var(--color-primary);
	transform: translateX(5px);
}

.arrow-circle {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: var(--color-primary-dark);
	border-radius: 50%;
	position: relative;
}

.arrow-circle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 42%;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

.products__grid {
	display: grid;
	/* よつ葉乳業風の3列レイアウト */
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.category-card {
	background-color: #fff;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card__link {
	display: flex;
	align-items: center;
	padding: 25px;
	gap: 20px;
	height: 100%;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-card__img-wrap {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .category-card__img は下(L1609)で transition 付きで定義済み */

.category-card__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-text);
	transition: color 0.3s;
}

.category-card:hover .category-card__title {
	color: var(--color-primary-dark);
}

/* おすすめカード（スライド内蔵） */
.recommend-card {
	background-color: #fff7e1;
	/* よつ葉に近い薄オレンジ/クリーム */
	border-radius: var(--radius-md);
	position: relative;
	padding: 20px;
	grid-column: span 1;
	overflow: hidden;
}

.recommend-card__badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: #ff9800;
	color: #fff;
	padding: 4px 14px;
	border-radius: var(--radius-full);
	font-size: 11px;
	font-weight: 700;
	z-index: 10;
}

.recommend-swiper {
	width: 100%;
	height: 100%;
	padding-bottom: 20px;
}

.recommend-card__content {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 0 5px;
}

.recommend-card__img-wrap {
	width: 90px;
	height: 90px;
	flex-shrink: 0;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
	padding: 8px;
}

.recommend-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.recommend-card__info {
	flex: 1;
}

.recommend-card__title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--color-text);
	line-height: 1.3;
}

.recommend-card__desc {
	font-size: 12px;
	color: var(--color-text-light);
	line-height: 1.4;
}

.recommend-swiper .swiper-pagination-bullets {
	bottom: 0 !important;
}

.recommend-swiper .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: #deb887;
	opacity: 0.5;
}

.recommend-swiper .swiper-pagination-bullet-active {
	background: #ff9800;
	opacity: 1;
}

.category-card__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.category-card:hover .category-card__img {
	transform: scale(1.1);
}

/* ==========================================================================
   Pickup (ピックアップ)
   ========================================================================== */
.pickup__list {
	display: flex;
	flex-direction: column;
	gap: 60px;
	max-width: 1000px;
	margin: 0 auto;
}

.pickup-card {
	display: flex;
	align-items: center;
	gap: 60px;
	background-color: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.pickup-card__figure {
	margin: 0;
	width: 50%;
	/* 半分を画像領域に */
	flex-shrink: 0;
}

.pickup-card__img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	/* 縦幅を確保 */
	object-fit: cover;
}

.pickup-card__content {
	padding: 40px 60px 40px 0;
	width: 50%;
}

.pickup-card__title {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-primary-dark);
	margin: 0 0 20px 0;
}

.pickup-card__text {
	font-size: 15px;
	color: var(--color-text);
	line-height: 1.8;
	margin: 0 0 30px 0;
}

/* 左右反転バリエーション */
.pickup-card--reverse {
	flex-direction: row-reverse;
}

.pickup-card--reverse .pickup-card__content {
	padding: 40px 0 40px 60px;
}

/* ==========================================================================
   Footer Main
   ========================================================================== */
.footer {
	background-color: #ffffff;
	border-top: 1px solid var(--color-border);
	padding: 60px 0 20px;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer__brand {
	max-width: 300px;
}

.footer__logo {
	color: var(--color-primary-dark);
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

.footer__address {
	font-size: 14px;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.8;
}

.footer__nav-wrap {
	display: flex;
	gap: 80px;
}

.footer__nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer__nav a {
	font-size: 15px;
	color: var(--color-text);
	position: relative;
	display: inline-block;
}

.footer__nav a:hover {
	color: var(--color-primary-dark);
}

.footer__nav a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--color-primary-dark);
	transition: var(--transition);
}

.footer__nav a:hover::after {
	width: 100%;
}

.footer__bottom {
	border-top: 1px solid var(--color-border);
	padding-top: 25px;
	text-align: center;
}

.footer__copyright {
	font-size: 13px;
	color: #94a3b8;
	margin: 0;
}

/* ==========================================================================
   PC Header Redesign & Animations
   ========================================================================== */
/* SPでは不要な新要素を隠す */
.nav-bg,
.header__wave {
	display: none;
}

/* PC用ロゴはSPでは非表示 */
.header__logo--pc {
	display: none;
}

/* ナビのパステル調カラー変数 */
.nav-color-1 {
	--nav-color: #6ee7b7;
}

.nav-color-2 {
	--nav-color: #fcd34d;
}

.nav-color-3 {
	--nav-color: #93c5fd;
}

.nav-color-4 {
	--nav-color: #fca5a5;
}

.nav-color-5 {
	--nav-color: #c4b5fd;
}

.nav-color-6 {
	--nav-color: #fdba74;
}

.nav-color-7 {
	--nav-color: #a7f3d0;
}

.nav-color-8 {
	--nav-color: #ffcc80;
}

/* 新着情報用オレンジ系 */

@keyframes bubbleSway {
	0% {
		transform: translate(-50%, -50%) scale(1.1);
		border-radius: 50%;
	}

	25% {
		transform: translate(-52%, -54%) scale(1.15) rotate(5deg);
		border-radius: 45% 55% 42% 58% / 55% 45% 58% 42%;
	}

	50% {
		transform: translate(-48%, -46%) scale(1.1) rotate(-3deg);
		border-radius: 50% 50% 50% 50% / 48% 52% 55% 45%;
	}

	75% {
		transform: translate(-53%, -48%) scale(1.15) rotate(2deg);
		border-radius: 55% 45% 52% 48% / 45% 55% 48% 52%;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.1);
		border-radius: 50%;
	}
}

@media screen and (min-width: 769px) {

	/* PCレイアウト上書き: 中央揃えと高さを出す */
	.header__inner {
		position: relative;
		flex-direction: column;
		padding-top: 20px;
		/* 上部余白を増やして高さを出す */
		padding-bottom: 0;
	}

	/* PC表示時はSP用ロゴ領域を非表示に */
	.header__logo--sp {
		display: none;
	}

	.ja-logo-mark {
		height: 30px;
		/* テキストサイズに合わせる */
	}

	.logo-text {
		font-size: 30px;
		/* 少し大きく */
		line-height: 1;
	}

	.header__nav {
		align-items: center;
		/* ナビを中央揃え */
		width: 100%;
		position: static;
		/* positionリセットしてtopナビの基準をinnerにするか */
		margin-top: 20px;
		/* 余白追加 */
	}

	.header__top {
		position: absolute;
		top: 0;
		/* 上端にぴったり付ける */
		left: 0;
		/* 左右のパディングに合わせる */
		right: 0;
		display: flex;
		justify-content: flex-end;
		/* 右側にまとめて配置 */
		align-items: flex-start;
		/* 上寄せ */
		margin-bottom: 0;
		z-index: 20;
		padding: 10px 100px 10px 86px;
	}

	/* 左側: 採用情報・お問い合わせ */
	.header__top-nav--left {
		display: flex;
		gap: 20px;
	}

	.top-nav-item {
		position: relative;
		min-width: 130px;
		text-align: center;
	}

	.top-nav-item a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		/* 下のpaddingを広げて、ホバーで下がる半円が見切れないようにする */
		padding: 5px 15px 40px;
		color: var(--color-text);
		text-decoration: none;
		position: relative;
		overflow: hidden;
		/* 半円の形にするための準備 */
		box-sizing: border-box;
	}

	/* 上からぶら下がる半円の背景 */
	.top-nav-bg {
		position: absolute;
		top: -37.5px;
		/* ナビサイズに合わせて75pxの半円に見せる */
		left: 50%;
		transform: translateX(-50%);
		width: 75px;
		/* ナビサイズに合わせる */
		height: 75px;
		/* ナビサイズに合わせる */
		background-color: var(--top-nav-color, #e2e8f0);
		border-radius: 50%;
		z-index: 1;
		transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		opacity: 0.7;
		/* ナビアニメーションの色味と合わせる */
	}

	.top-nav-color-1 {
		--top-nav-color: #ffd1ba;
	}

	/* 採用: パステルピーチ */
	.top-nav-color-2 {
		--top-nav-color: #a2e0eb;
	}

	/* お問い合わせ: パステルシアン */
	.top-nav-color-3 {
		--top-nav-color: #bdecb6;
	}

	/* 公式ブログ: パステルミント */
	.top-nav-color-4 {
		--top-nav-color: #e0cffc;
	}

	/* プレゼント: パステルライラック */
	/* Instagram: 3色パステルグラデーション */
	.top-nav-ig .top-nav-bg {
		background: linear-gradient(135deg, #FFCFD2 0%, #E1BEE7 50%, #B3E5FC 100%);
		background-color: transparent;
	}

	.top-nav-ig a:hover .top-nav-bg {
		background: linear-gradient(135deg, #FFCFD2 0%, #E1BEE7 50%, #B3E5FC 100%);
		background-color: transparent;
		opacity: 0.9;
	}

	/* X: モノクロパステルグラデーション */
	.top-nav-x .top-nav-bg {
		background: linear-gradient(135deg, #BDBDBD 0%, #EEEEEE 100%);
		background-color: transparent;
	}

	.top-nav-x a:hover .top-nav-bg {
		background: linear-gradient(135deg, #BDBDBD 0%, #EEEEEE 100%);
		background-color: transparent;
		opacity: 0.9;
	}

	/* SNS項目はアイコンのみで幅が狭いため、半円が見えるよう最低幅を確保 */
	.top-nav-ig a,
	.top-nav-x a {
		min-width: 130px;
	}

	.top-nav-txt {
		position: relative;
		z-index: 2;
		font-weight: 700;
		font-size: 13px;
	}

	/* ホバーで少し下に伸びるギミック（おまけ） */
	.top-nav-item a:hover .top-nav-bg {
		transform: translateX(-50%) translateY(10px);
	}

	/* 右側: 左側と同じ形式になったトップナビ群（均等間隔） */
	.header__top-nav--right {
		display: flex;
		gap: 0;
		justify-content: space-between;
		width: 100%;
	}

	/* SNS共通・ホバー切り替えアニメーション（フェード・レイアウトシフトなし） */
	.sns-item .top-nav-txt {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.sns-item .sns-icon {
		display: block;
		width: 15px;
		height: 15px;
		flex-shrink: 0;
		opacity: 1;
		transition: opacity 0.2s ease;
	}

	.sns-item .sns-text {
		display: block;
		/* 常にDOM上に存在 */
		position: absolute;
		/* レイアウトに影響させない */
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
		font-size: 13px;
		opacity: 0;
		/* 通常時は透明 */
		transition: opacity 0.2s ease;
		pointer-events: none;
	}

	.sns-item:hover .sns-icon {
		opacity: 0;
		/* アイコンをフェードアウト */
	}

	.sns-item:hover .sns-text {
		opacity: 1;
		/* テキストをフェードイン */
		pointer-events: auto;
	}

	/* ---------------------------------
	   グローバルメニュー（下段）
	   --------------------------------- */
	.header__nav-list {
		/* 背景の円が完全に等間隔になるよう、隙間と幅を統一 */
		gap: 15px;
		padding: 20px 0 20px 0;
		width: 100%;
		justify-content: end;
		/* 両端揃え気味 */
	}

	.header__nav-item {
		font-size: 16px;
		font-family: 'Zen Maru Gothic', "Hiragino Kaku Gothic ProN", sans-serif;
	}

	/* ロゴ以外のメニューアイテムを均等幅にする */
	.header__nav-item:not(.header__logo--pc) {
		flex: 1;
		/* すべてのメニュー項目を同じ幅に */
		display: flex;
		justify-content: flex-end;
		/* 中の要素を中央に */
	}

	.header__nav-item a:not(.logo-link--pc) {
		/* 固定幅や左右広めのパディングを外し、flexの幅内で中央揃えにする */
		padding: 15px 25px;
		width: 100%;
		color: var(--color-text);
		text-decoration: none;
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		white-space: nowrap;
		/* テキストの折り返しを防ぎ、長細い画面でも円の位置は保つ */
	}

	/* 中央のPCロゴ用スタイル */
	.header__nav-item.header__logo--pc {
		flex: 1.5;
		/* 真ん中のロゴは少し幅を広めに取る */
		display: flex;
		justify-content: center;
		align-items: center;
		/* ホバーの丸背景を消すための設定 */
		pointer-events: auto;
	}

	.header__nav-item.header__logo--pc a {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		color: var(--color-text);
		padding: 0;
		/* ナビ幅を圧迫しないよう、最大幅を制限して縮小可能にする */
		max-width: 250px;
	}

	.logo-container--pc {
		display: flex;
		flex-direction: column;
		align-items: center;
		/* コンテナ内の中央揃え */
		gap: 12px;
		/* 3段の上下間隔を少し広げる */
		width: 100%;
		/* コンテナ内で100%幅に広げる */
	}

	.header__nav-item.header__logo--pc a::after {
		display: none !important;
		/* 下線を防ぐ */
	}

	.logo-text-org {
		font-size: 14px;
		/* テキストサイズを大きく */
		font-weight: 500;
		letter-spacing: 0;
		/* space-betweenで勝手につくので0にする */
		line-height: 1;
		color: #555;
		display: flex;
		width: 100%;
		/* 下のロゴ行の幅にぴったり合わせるため */
		justify-content: space-between;
		/* 両端揃えにして横幅を完璧に合わせる */
	}

	.logo-top-row {
		display: flex;
		align-items: center;
		gap: 4px;
		/* ロゴとテキストをもう少し近づける */
		width: 100%;
		/* 中段を基準とする横幅 */
		justify-content: center;
		/* 中段は中央揃え */
	}

	.ja-logo-mark--pc {
		height: 24px;
		/* JAテキストと全く同じ高さに */
		width: auto;
	}

	.logo-text-ja {
		font-size: 23px;
		/* ロゴと高さを揃えつつ、幅を取りすぎないサイズに変更 */
		font-weight: 700;
		letter-spacing: 0.05em;
		/* 幅節約のために少し縮める */
		line-height: 1;
		color: #000;
		font-family: "Kozuka Gothic Pro", "Kozuka Gothic Pr6N", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	}

	.logo-text-en {
		font-size: 15px;
		/* テキストを大きく */
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1;
		font-family: 'Zen Maru Gothic', sans-serif;
		display: flex;
		width: 100%;
		/* 横幅を100%に合わせて両端揃え */
		justify-content: space-between;
		/* 単語（要素）間で等間隔に配置 */
	}

	.logo-text-en span {
		display: inline-block;
		/* 全体の周期を長めに設定し、10%の間だけ跳ねる設定にする */
		animation: logoCharRandomBounce 5s ease-in-out infinite;
	}

	/* 文字ごとに周期とディレイをバラバラにしてランダム感を出す */
	.logo-text-en span:nth-child(1) {
		animation-duration: 4.1s;
		animation-delay: 0.2s;
	}

	.logo-text-en span:nth-child(2) {
		animation-duration: 5.3s;
		animation-delay: 1.5s;
	}

	.logo-text-en span:nth-child(3) {
		animation-duration: 3.7s;
		animation-delay: 0.8s;
	}

	.logo-text-en span:nth-child(4) {
		animation-duration: 6.2s;
		animation-delay: 2.1s;
	}

	.logo-text-en span:nth-child(5) {
		animation-duration: 4.7s;
		animation-delay: 3.4s;
	}

	.logo-text-en span:nth-child(6) {
		animation-duration: 5.9s;
		animation-delay: 0.5s;
	}

	.logo-text-en span:nth-child(7) {
		animation-duration: 3.2s;
		animation-delay: 1.2s;
	}

	.logo-text-en span:nth-child(8) {
		animation-duration: 4.4s;
		animation-delay: 2.7s;
	}

	.logo-text-en span:nth-child(9) {
		animation-duration: 5.6s;
		animation-delay: 1.8s;
	}

	.logo-text-en span:nth-child(10) {
		animation-duration: 4.9s;
		animation-delay: 0.1s;
	}

	.logo-text-en span:nth-child(11) {
		animation-duration: 3.5s;
		animation-delay: 2.3s;
	}

	.logo-text-en span:nth-child(12) {
		animation-duration: 6.1s;
		animation-delay: 3.9s;
	}

	.logo-text-en span:nth-child(13) {
		animation-duration: 4.2s;
		animation-delay: 0.6s;
	}

	.logo-text-en span:nth-child(14) {
		animation-duration: 5.1s;
		animation-delay: 1.4s;
	}

	.logo-text-en span:nth-child(15) {
		animation-duration: 3.9s;
		animation-delay: 2.9s;
	}

	@keyframes logoCharRandomBounce {

		/* 0%$301C10%の間だけ跳ねて（約0.5秒）、残りの時間は静止する */
		0%,
		10%,
		100% {
			transform: translateY(0);
		}

		5% {
			transform: translateY(-7px);
		}
	}

	/* 元の下線アニメーションを無効化 */
	.header__nav-item a:not(.logo-link--pc)::after {
		display: none;
	}

	.header__nav-item a:not(.logo-link--pc):hover {
		color: var(--color-primary-dark);
	}

	.nav-txt {
		position: relative;
		z-index: 2;
		text-align: center;
	}

	/* 常に表示する丸背景 */
	.nav-bg {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 75px;
		/* ふよふよの丸をもう少し大きめに */
		height: 75px;
		/* ふよふよの丸をもう少し大きめに */
		background-color: var(--nav-color, #e2e8f0);
		border-radius: 50%;
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.7;
		/* 少し大きくしたので透明度調整 */
		z-index: 1;
		transition: opacity 0.3s;
	}

	.header__nav-item a:not(.btn-present):hover .nav-bg {
		opacity: 0.9;
		/* シャボン玉アニメーション */
		animation: bubbleSway 2.5s ease-in-out infinite;
	}

	.btn-present {
		font-family: 'Zen Maru Gothic', sans-serif;
		font-size: 14px;
		padding: 12px 24px;
	}

	/* 逆丘カーブの設定 */
	.header__wave {
		display: block;
		/* PC時のみ表示 */
		position: absolute;
		bottom: -38px;
		left: 0;
		width: 100%;
		height: 40px;
		z-index: 1000;
		pointer-events: none;
		overflow: hidden;
	}

	.header__wave svg {
		display: block;
		width: 100%;
		height: 100%;
	}
}

/* ==========================================================================
   Responsive (768px 以下をスマホ表示とする)
   ========================================================================== */
@media screen and (max-width: 768px) {
	/* .container padding は L73-78 で定義済み（padding: 0 20px） */

	.header__inner {
		padding: 10px 20px;
	}

	/* SPロゴ関係の調整 */
	.ja-logo-mark {
		height: 25px;
		/* SP時は少し小さく */
	}

	.logo-text {
		font-size: 16px;
		/* 文字もSPサイズに最適化 */
	}

	/* ハンバーガーをスマホで表示 */
	.header__hamburger {
		display: block;
	}

	/* 固定ヘッダーの高さ分、ロゴとハンバーガーの高さを合わせる */
	.header__logo {
		font-size: 20px;
	}

	/* SP用ドロップダウンメニュー */
	.header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 320px;
		height: 100dvh;
		/* dvh: モバイルブラウザのアドレスバーを考慮 */
		height: 100vh;
		/* fallback */
		height: 100dvh;
		background-color: #fff;
		padding: 80px 30px 80px;
		/* 下部を80pxに拡大してスクロール末尾が見えるよう確保 */
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
		z-index: 950;
		transition: right 0.4s cubic-bezier(0.8, 0, 0.2, 1);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		/* iOS慣性スクロール */
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.header__nav.is-active {
		right: 0;
	}

	/* メニュー内の上段部分のSP対応 */
	.header__top {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		border-bottom: 1px solid var(--color-border);
		padding-bottom: 25px;
		margin-bottom: 25px;
		gap: 20px;
	}

	.header__top-nav {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	.header__sns {
		gap: 15px;
	}

	/* メインナビのSP対応 */
	.header__nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		width: 100%;
	}

	.header__nav-item {
		width: 100%;
		border-bottom: 1px dashed var(--color-border);
		padding-bottom: 15px;
	}

	.header__nav-item a:not(.btn-present) {
		display: block;
		width: 100%;
	}

	.header__nav-item a:not(.btn-present)::after {
		display: none;
	}

	/* SP専用: ポリシーリンク（小さめのサブナビ表示） */
	.header__nav-item--policy {
		border-bottom: 1px dashed var(--color-border);
		padding-bottom: 12px;
	}

	.header__nav-item--policy a {
		font-size: 12px;
		color: var(--color-text-light);
		padding-left: 12px;
		position: relative;
	}

	.header__nav-item--policy a::before {
		content: '›';
		position: absolute;
		left: 0;
		color: var(--color-primary-dark);
	}

	/* SP用: アコーディオン子メニュー */
	.header__sub-nav {
		display: none;
		padding: 10px 0 0 12px;
		gap: 10px;
		flex-direction: column;
	}

	.header__nav-item.has-child.is-open>.header__sub-nav {
		display: flex;
	}

	.header__sub-nav li a {
		font-size: 13px;
		color: var(--color-text-light);
		display: block;
		padding: 4px 0;
	}

	/* アコーディオン開閉インジケーター */
	.header__nav-item.has-child>a::after {
		content: '＋';
		float: right;
		font-size: 16px;
		font-weight: 400;
		display: block !important;
		position: static !important;
		transform: none !important;
		width: auto !important;
		height: auto !important;
		background: none !important;
		transition: transform 0.3s ease;
	}

	.header__nav-item.has-child.is-open>a::after {
		content: '－';
	}


	.btn-present {
		width: 100%;
		justify-content: center;
		margin-top: 10px;
		padding: 12px 24px;
	}

	/* MVの調整 */
	.mv {
		min-height: 500px;
	}

	.mv__catchcopy {
		font-size: 16px;
	}

	.mv__wave {
		height: 80px;
		/* アイコンを乗せるため少し高さを残す */
	}

	.mv-icon {
		width: 40px;
		height: 40px;
	}

	.mv-icon--1 {
		bottom: 12px;
	}

	.mv-icon--2 {
		bottom: 30px;
	}

	.mv-icon--3 {
		bottom: 34px;
	}

	.mv-icon--4 {
		bottom: 37px;
	}

	.mv-icon--5 {
		bottom: 34px;
	}

	.mv-icon--6 {
		bottom: 30px;
	}

	.mv-icon--7 {
		bottom: 30px;
	}

	/* スライダーの調整 */
	.products-slider {
		padding: 0px 0 60px;
	}

	.swiper-wrapper {
		padding: 0;
		gap: 0;
	}

	.swiper-slide {
		width: 260px;
		/* SP時は少し小さく */
	}

	.product-card {
		max-width: 260px;
	}

	.btn-slider-banner {
		font-size: 16px;
		padding: 15px 20px;
	}

	.btn-slider-banner .icon-arrow-circle {
		right: 15px;
		width: 24px;
		height: 24px;
	}

	.btn-slider-banner .icon-arrow-circle::after {
		width: 6px;
		height: 6px;
	}

	/* セクション共通（余白の最適化） */
	.section-block {
		padding: 60px 0;
	}

	.section-title {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.section-header {
		margin-bottom: 40px;
	}

	/* News */
	.news-item__link {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 0;
	}

	.news-item__meta {
		width: 100%;
		margin-bottom: 10px;
	}

	/* Products - SP時は2列 */
	.products__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}

	.item-card__body {
		padding: 15px;
	}

	.item-card__title {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.item-card__excerpt {
		font-size: 12px;
	}

	.item-card__badge {
		font-size: 10px;
		padding: 4px 10px 4px 12px;
		top: 10px;
	}

	/* Pickup */
	.pickup__list {
		gap: 40px;
	}

	.pickup-card,
	.pickup-card--reverse {
		flex-direction: column;
		gap: 0;
	}

	.pickup-card__figure {
		width: 100%;
	}

	.pickup-card__img {
		min-height: 200px;
	}

	.pickup-card__content,
	.pickup-card--reverse .pickup-card__content {
		width: 100%;
		padding: 30px 20px;
	}

	.pickup-card__title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.pickup-card__text {
		font-size: 14px;
		margin-bottom: 25px;
		line-height: 1.7;
	}

	/* Footer CTA */
	.footer-cta {
		padding: 50px 0;
	}

	.footer-cta__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.cta-banner {
		width: 100%;
		max-width: none;
		padding: 40px 20px;
	}

	.cta-banner__title {
		font-size: 20px;
	}

	.cta-banner__text {
		font-size: 13px;
	}

	/* Footer Main */
	.footer {
		padding: 40px 0 20px;
	}

	.footer__top {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 30px;
	}

	.footer__nav-wrap {
		gap: 20px;
		flex-direction: column;
	}

	.footer__logo {
		font-size: 24px;
	}

	/* ページネーション */
	.products-slider__container .swiper-pagination {
		bottom: 0px;
	}

	/* logo2 (SP) */
	.logo2-img {
		height: 44px;
	}

	/* MV side icons: hidden on SP */
	.mv__side-icons {
		display: none;
	}

	/* merge-intro (SP) */
	.merge-intro {
		padding: 36px 20px 28px;
	}

	.merge-intro__logos {
		gap: 16px;
	}

	.merge-intro__icon {
		height: 55px;
	}

	.merge-intro__main-logo {
		height: 75px;
	}

	.merge-intro__text {
		font-size: 15px;
		line-height: 1.7;
	}

	/* slider-banner (SP) */
	.slider-banner-wrap {
		margin-bottom: 30px;
		margin-top: 0px;
	}

	/* mv-frame (SP) */
	.mv-frame {
		margin: 0;
		border-radius: 0;
	}

	.mv-frame__side {
		display: none;
	}

	.mv {
		min-height: 100vw;
		border-radius: 0;
	}
}

/* =========================================
   組織概要ページ (page-about.php) 用スタイル
========================================= */
.about-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-top: 2px solid #333;
}

.about-table th,
.about-table td {
	padding: 20px;
	border-bottom: 1px solid #ddd;
	line-height: 1.6;
}

.about-table th {
	width: 25%;
	background: #f4f7f4;
	text-align: left;
	font-weight: 500;
	color: #333;
}

.about-table td {
	width: 75%;
}

/* PDFリンクのリスト装飾 */
.pdf-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pdf-list li {
	margin-bottom: 10px;
}

.pdf-list li:last-child {
	margin-bottom: 0;
}

.pdf-link {
	display: inline-flex;
	align-items: center;
	color: #007630;
	/* JAグリーン */
	text-decoration: underline;
	transition: opacity 0.3s;
}

.pdf-link:hover {
	opacity: 0.7;
}

.pdf-link::before {
	content: "PDF";
	display: inline-block;
	background: #d93025;
	color: #fff;
	font-size: 0.7rem;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 3px;
	margin-right: 8px;
	text-decoration: none;
}

/* 内部ページリンク（PDFではなくページ遷移） */
.page-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #007630;
	text-decoration: underline;
	transition: gap 0.2s ease, opacity 0.2s;
	text-underline-offset: 2px;
}

.page-link:hover {
	gap: 10px;
	opacity: 0.8;
}

.page-link::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #007630;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.page-link:hover::before {
	transform: translateX(2px);
}

@media screen and (max-width: 768px) {

	.about-table th,
	.about-table td {
		display: block;
		width: 100%;
	}

	.about-table th {
		border-bottom: none;
		padding-bottom: 10px;
	}

	.about-table td {
		padding-top: 0;
		padding-bottom: 25px;
	}
}

/* =========================================
   定型約款ページ (page-teikeiyakan.php) 用スタイル
========================================= */
.terms-category {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	margin-bottom: 40px;
}

.terms-category__title {
	font-size: 1.4rem;
	color: #333;
	border-bottom: 2px solid #007630;
	/* JAグリーン */
	padding-bottom: 12px;
	margin-bottom: 25px;
}

.terms-table {
	width: 100%;
	border-collapse: collapse;
}

.terms-table tbody {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px 30px;
}

.terms-table tr {
	display: flex;
	align-items: center;
	padding-bottom: 5px;
}

.terms-table td {
	border: none;
	padding: 0;
}

.terms-table .terms-no {
	width: 25px;
	font-weight: 500;
	color: #333;
	text-align: right;
	padding-right: 10px;
	padding-top: 3px;
	flex-shrink: 0;
}

.terms-table .terms-name {
	flex-grow: 1;
}

@media screen and (max-width: 768px) {
	.terms-category {
		padding: 25px 20px;
	}

	.terms-table tbody {
		grid-template-columns: 1fr;
	}
}

/* =========================================
   ドロップダウンメニュー (JAバンク等)
========================================= */
/* PC版 */
@media screen and (min-width: 769px) {
	.header__nav-item.has-child {
		position: relative;
	}

	.header__sub-nav {
		position: absolute;
		top: 100%;
		left: 25%;
		min-width: 220px;
		background: #fff;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: all 0.3s ease;
		padding: 10px 0;
		border-radius: 8px;
		z-index: 2000;
	}

	.header__nav-item.has-child:hover .header__sub-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header__sub-nav li a {
		padding: 12px 20px;
		display: block;
		color: #333;
		font-weight: 500;
		font-size: 14px;
		transition: all 0.3s;
	}

	.header__sub-nav li a:after {
		display: none !important;
		/* 親のアンダーラインを無効化 */
	}

	.header__sub-nav li a:hover {
		background: #f4f7f4;
		color: var(--color-primary-dark);
		padding-left: 25px;
		/* ホバーで少しインデント */
	}
}

/* SP版 */
@media screen and (max-width: 768px) {
	.header__sub-nav {
		display: none;
		padding-left: 15px;
		margin-top: 5px;
		background: rgba(0, 0, 0, 0.02);
		border-radius: 8px;
	}

	.header__nav-item.has-child.is-open .header__sub-nav {
		display: block;
	}

	.header__nav-item.has-child>a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header__nav-item.has-child>a::after {
		content: '+';
		font-size: 1.2rem;
		transition: transform 0.3s;
		font-weight: normal;
	}

	.header__nav-item.has-child.is-open>a::after {
		transform: rotate(45deg);
	}

	.header__sub-nav li a {
		padding: 10px 15px;
		display: block;
		font-size: 14px;
		border-bottom: 1px dashed #ddd;
	}

	.header__sub-nav li:last-child a {
		border-bottom: none;
	}
}

/* =========================================
   金融円滑化ページ (page-kinyuenkatuka.php) 用スタイル
========================================= */
.kenkatuka-block {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	margin-bottom: 32px;
	overflow: hidden;
}

.kenkatuka-block__title {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #333;
	background: #f4f7f4;
	border-left: 4px solid #007630;
	padding: 18px 28px;
	margin: 0;
	line-height: 1.5;
}

.kenkatuka-block__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #007630;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.kenkatuka-block__body {
	padding: 28px 32px;
	line-height: 1.8;
	color: #444;
}

.kenkatuka-block__body p {
	margin-bottom: 0;
}

.kenkatuka-info-box {
	background: #f8faf8;
	border: 1px solid #d4e6d4;
	border-radius: 8px;
	padding: 18px 20px;
	margin-top: 20px;
}

.kenkatuka-info-box__label {
	font-weight: 600;
	color: #007630;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.kenkatuka-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.kenkatuka-link-list li {
	margin-bottom: 6px;
}

.kenkatuka-link-list li:last-child {
	margin-bottom: 0;
}

.kenkatuka-ext-link {
	color: #007630;
	text-decoration: underline;
	transition: opacity 0.3s;
	font-size: 0.95rem;
}

.kenkatuka-ext-link:hover {
	opacity: 0.7;
}

.kenkatuka-note {
	display: inline-block;
	font-size: 0.85rem;
	color: #777;
	margin-left: 10px;
}

.kenkatuka-table {
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.kenkatuka-block__title {
		font-size: 1rem;
		padding: 15px 18px;
		gap: 10px;
	}

	.kenkatuka-block__body {
		padding: 20px 18px;
	}
}

/* =========================================
   ポリシーページ共通スタイル
   (page-privacy.php / page-security.php)
========================================= */
.policy-intro {
	background: #fff;
	border-radius: 12px;
	padding: 28px 32px;
	margin-bottom: 32px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.policy-meta {
	font-size: 0.88rem;
	color: #888;
	line-height: 1.8;
	margin-bottom: 14px;
}

.policy-lead {
	line-height: 1.9;
	color: #444;
	font-size: 0.97rem;
}

.policy-block {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	margin-bottom: 20px;
	overflow: hidden;
}

.policy-block__title {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #333;
	background: #f4f7f4;
	border-left: 4px solid #007630;
	padding: 16px 24px;
	margin: 0;
	line-height: 1.5;
}

.policy-block__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #007630;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.policy-block__body {
	padding: 22px 28px;
	line-height: 1.9;
	color: #444;
	font-size: 0.96rem;
}

.policy-block__body p {
	margin: 0;
}

.policy-closing {
	text-align: right;
	font-size: 0.9rem;
	color: #666;
	margin-top: 20px;
	padding-right: 8px;
}

@media screen and (max-width: 768px) {
	.policy-intro {
		padding: 20px 18px;
	}

	.policy-block__title {
		font-size: 0.97rem;
		padding: 14px 16px;
		gap: 10px;
	}

	.policy-block__body {
		padding: 18px 16px;
	}
}

/* =========================================
   フッター ポリシーナビ
========================================= */
.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

.footer__policy-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px 24px;
	margin-bottom: 12px;
}

.footer__policy-nav a {
	font-size: 0.8rem;
	color: var(--color-text-light);
	/* 修正: 白→テキストカラー */
	text-decoration: underline;
	transition: color 0.2s;
}

.footer__policy-nav a:hover {
	color: #fff;
}

/* =========================================
   手数料のご案内ページ (page-tenpo-fee.php)
========================================= */
.fee-date {
	text-align: right;
	font-size: 0.88rem;
	color: #666;
	margin-bottom: 32px;
	padding-right: 4px;
}

.fee-section {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
	padding: 32px 36px;
	margin-bottom: 32px;
}

.fee-section__title {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a3a2a;
	border-bottom: 2px solid #007630;
	padding-bottom: 12px;
	margin: 0 0 24px;
}

.fee-section__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #007630;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.fee-subsection__title {
	font-size: 0.97rem;
	font-weight: 700;
	color: #fff;
	background: #4a8c60;
	border-radius: 6px;
	padding: 8px 16px;
	margin: 22px 0 12px;
}

.fee-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.fee-table-wrap--scroll {
	border: 1px solid #d4e8da;
	border-radius: 8px;
}

.fee-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
	min-width: 420px;
}

.fee-table thead tr th {
	background: #e8f4ec;
	color: #1a3a2a;
	font-weight: 700;
	padding: 10px 12px;
	border: 1px solid #c5dece;
	text-align: center;
	white-space: nowrap;
}

.fee-table tbody td {
	padding: 8px 12px;
	border: 1px solid #ddeee4;
	text-align: center;
	vertical-align: middle;
	color: #333;
	line-height: 1.5;
}

.fee-table tbody td:first-child,
.fee-table tbody td.fee-group {
	text-align: left;
	background: #f6fbf8;
	font-weight: 500;
}

.fee-table .fee-group {
	background: #f0f8f3;
	font-weight: 700;
	text-align: center;
	color: #1a3a2a;
	border-right: 2px solid #c5dece;
}

.fee-table .fee-free {
	color: #007630;
	font-weight: 600;
}

/* ATM複合テーブル */
.fee-table--atm {
	min-width: 880px;
	font-size: 0.8rem;
}

.fee-table--atm thead tr:first-child th {
	background: #2d6e4e;
	color: #fff;
}

.fee-table--atm thead tr:last-child th {
	background: #e8f4ec;
	font-size: 0.72rem;
}

/* 注釈 */
.fee-note {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.7;
	margin-top: 8px;
}

.fee-note-list {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}

.fee-note-list li {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.7;
	padding-left: 0;
}

/* 両替2カラム */
.fee-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

/* お問い合わせCTAボックス */
.fee-contact-box {
	text-align: center;
	background: linear-gradient(135deg, #1e5e38, #007630);
	color: #fff;
	border-radius: 14px;
	padding: 36px 24px;
	margin-top: 12px;
}

.fee-contact-box p {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.fee-contact-box__org {
	font-size: 1rem;
	opacity: 0.85;
	letter-spacing: 0.1em;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
	.fee-section {
		padding: 20px 16px;
	}

	.fee-section__title {
		font-size: 1.05rem;
		gap: 10px;
	}

	.fee-table {
		font-size: 0.82rem;
	}

	.fee-table tbody td {
		padding: 7px 8px;
	}

	.fee-two-col {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fee-table--atm {
		font-size: 0.72rem;
	}
}

/* =========================================
   フッター サブナビ（下層リンク）
========================================= */
.footer__sub-nav {
	list-style: none;
	padding: 0;
	margin: 4px 0 0 12px;
}

.footer__sub-nav li {
	margin-bottom: 2px;
}

.footer__sub-nav a {
	font-size: 0.85rem;
	color: var(--color-text-light);
	/* 修正: 白→テキストカラー（フッター背景は白） */
	text-decoration: none;
	transition: color 0.2s;
	padding-left: 10px;
	position: relative;
}

.footer__sub-nav a::before {
	content: "›";
	position: absolute;
	left: 0;
	opacity: 0.6;
}

.footer__sub-nav a:hover {
	color: #fff;
}

/* footer内では常時展開 */
.footer__sub-nav--always {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	max-height: none !important;
	pointer-events: auto !important;
}

/* =========================================
   おすすめ情報バナー全ページ共通表示 マージン調整
   (footer.php 経由で全ページに表示される場合)
========================================= */

/* 下層ページ（ポリシー・約款・手数料等）の
   mainコンテンツ最後の余白とrec-bannersのpadを調整 */
.main+.rec-banners,
main+.rec-banners {
	margin-top: 0;
}

/* トップページ(.products-slider や .pickup) の後ろは
   section-block側のpadding-topで自然につながるのでそのまま */

/* 下層ページでは.mainの最後のsectionにpbが付くため
   rec-bannersのsection-blockのpt上書きで統一 */
.rec-banners.section-block {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
	.rec-banners.section-block {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/* =========================================
   お知らせ総合一覧ページ (home.php) 用スタイル
   ========================================= */
.news-archive__filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
}

.news-archive__filter-btn {
	display: inline-flex;
	align-items: center;
	padding: 6px 18px;
	border-radius: var(--radius-full);
	border: 1.5px solid var(--color-border);
	font-size: 13px;
	font-weight: 700;
	color: var(--color-text-light);
	background: #fff;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
}

.news-archive__filter-btn:hover,
.news-archive__filter-btn.is-active {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: #fff;
}

/* カテゴリごとのボタンアクティブ色 (バッジ色と連動させるためのクラス) */
.news-archive__filter-btn.is-active[data-cat="news"],
.news-archive__filter-btn:hover[data-cat="news"] {
	background-color: #3b82f6;
	border-color: #3b82f6;
}

.news-archive__filter-btn.is-active[data-cat="bank"],
.news-archive__filter-btn:hover[data-cat="bank"] {
	background-color: #f59e0b;
	border-color: #f59e0b;
}

.news-archive__filter-btn.is-active[data-cat="agri"],
.news-archive__filter-btn:hover[data-cat="agri"] {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
}

/* ページネーション */
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--color-border);
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text);
	text-decoration: none;
	transition: var(--transition);
	margin: 0 3px;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: #fff;
}

.pagination .page-numbers.dots {
	border: none;
	background: transparent;
}

@media screen and (max-width: 768px) {
	.news-archive__filter {
		gap: 6px;
	}

	.news-archive__filter-btn {
		font-size: 12px;
		padding: 5px 14px;
	}
}

/* PC専用: 特定のリンクを遷移不可（クリック無効）にする（将来的にリンク付与予定用） */
@media screen and (min-width: 769px) {
	.nolink-pc {
		pointer-events: none;
		cursor: default;
	}
}