/*--------------------
What's　地域活動
---------------------*/

.whatsc_css {
	padding: 10px 30px!important;
}
.whatsc_css h2 {
	font-size: 1.8em!important;
	font-weight: bold!important;
	border-bottom: 3px dotted #38839E!important;
	border-radius: 0!important;
	background: #ffffff;
	color: #1F2D5C!important;
	font-family: "Zen Maru Gothic", sans-serif;
}
.whatsc_css p,
.whatsc_css table td {
	font-size: 1.1em;
	line-height: 1.8rem;
}
.whatsc_css .sowb-button {
	line-height: 1.8em!important;
	text-align: left!important;
}
.sasie200 {
	display: block;
	width: 200px!important;
	text-align: center!important;
	margin: 0 auto!important;
}
.sasie250 {
	display: block;
	width: 250px!important;
	text-align: center!important;
	margin: 0 auto!important;
}
.sasie300 {
	display: block;
	width: 300px!important;
	text-align: center!important;
	margin: 0 auto!important;
}
.sasie200 img,
.sasie250 img,
.sasie300 img {
	width: 100%;
	height: auto;
}
/*ロゴ*/
.whatsc_logo {
	width: 70%;
	text-align: center;
	margin: 0 auto;
}
.whatsc_logo img {
	width: 100%;
	height: auto;
}
/*メニュー*/
.whatsc_menu1 {
	display: flex;
	flex-direction: column;
}
.whatsc_menu1 a {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 90%;
	margin: 0;
	padding-top: 18px;
	padding-left: 20px;
	border-bottom: 1px solid #54A1D3;
	transition: background .15s ease, border-color .15s ease;
}
.whatsc_menu1 a span.icon {
	display: inline-block;
	padding: 0 0 14px 20px;
	font-size: 1.3em;
}
.whatsc_menu1 a span.icon img {
	max-width: 50px;
}
.whatsc_menu1 a span.txt {
	display: inline-block;
	padding: 0 20px 6px 10px;
	font-size: 1.3em;
	font-weight: bold;
}

.whatsc_menu1 a:hover {
	background: #E2F7F8;
	color: #0F415C;
	border-bottom-width: 4px;
}

/*カテゴリタイトル*/
.whatsc_title {
	position: relative;
	margin: 40px 0 10px 0;
	background: #1791C4;
	border-radius: 8px;
	padding: 10px 0 10px 150px;
}
.whatsc_title img {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 8px 28px 8px 30px;
	max-width: 160px;
}
.whatsc_title span {
	padding-bottom: 16px;
	font-size: 1.6em;
	font-weight: bold;
	color: #ffffff;
}
/*補足文章枠*/
.whatsc_waku1 {
	margin: 8px;
	padding: 8px 20px;
	border: 1px solid #1791C4;
	border-radius: 20px;
}
.whatsc_waku1 h3 {
	font-size: 1.3em;
	color: #1791C4;
	font-weight: bold;
	margin: 8px 0 10px 0!important;
	padding: 0!important;
	border-bottom: 0;
}
.whatsc_waku1 p {
	color: #3A3A3A;
	line-height: 1.8rem;
}
.whatsc_waku1 .mini {
	font-size: 0.95em;
	color: #3A3A3A;
	line-height: 1.6rem;
}

/*矢印*/
.whatsc_yz {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0;
	margin: 0;
}
.whatsc_yz.width10 img {
	width: 10%;
	height: auto;
	float: none !important;   /* WPが付与するfloatを打ち消す */
}
.whatsc_yz.width20 img {
	width: 20%;
	height: auto;
	float: none !important;   /* WPが付与するfloatを打ち消す */
}
/* ==========================================================
サポーターコメント（吹き出し＋写真）コンポーネント
- 720px以上：横並び／吹き出し口は右側
- 720px未満：縦並び／吹き出し口は下側
- 枠線はつけず、塗りつぶし色のみで吹き出しを表現
- ページ表示時に、吹き出し→写真の順でポンと弾んで現れる
========================================================== */

.tip-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	max-width: 600px;
	padding: 10px;
}

@media (min-width:720px) {
	.tip-wrap {
		flex-direction: row;
		align-items: center;
		gap: 18px;
	}
}

/* --- speech bubble (fill color only, no border) --- */
.tip-bubble {
	position: relative;
	background: #E3F2FA;
	border-radius: 22px;
	padding: 18px 22px;
	width: 100%;
	font-family: "Zen Maru Gothic", sans-serif;
}

@media (min-width:720px) {
	.tip-bubble {
		flex: 1;
		min-width: 0;
		width: auto;
	}
}

.tip-bubble p {
	margin: 0;
	font-size: 1.1em;
	font-weight: 400;
	color: #3A3A38;
}

/* tail: a rotated square filled with the same color as the bubble,
so there's no border/seam mismatch. Position flips by breakpoint. */
.tip-tail {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #E3F2FA;
	border-radius: 5px;
	transform: rotate(45deg);
	/* default (narrow / column layout): pointing down, centered */
	left: auto;
	right: -9px;
	top: 50%;
	bottom: auto;
	margin: -10px 0 0 0;

}

/* --- photo + caption --- */
.tip-photo-col {
	flex: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.tip-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 0 0 2.5px #2E90C4;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.tip-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tip-caption {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 0.9em;
	font-weight: 700;
	color: #3A3A38;
	text-align: center;
	white-space: nowrap;
}

/* ==========================================================
ポップイン アニメーション
ページが表示範囲に入ったタイミングで、
data-pop の付いた要素が下からポンと弾んで現れる
========================================================== */
.pop-item {
	opacity: 0;
	transform: translateY(46px) scale(.85);
}

.pop-item.pop-play {
	animation: tipPopUp .62s cubic-bezier(.25,.8,.3,1.4) forwards;
}

@keyframes tipPopUp {
	0%   { opacity:0; transform:translateY(46px) scale(.85); }
	55%  { opacity:1; transform:translateY(-6px) scale(1.04); }
	78%  { transform:translateY(3px) scale(.98); }
	100% { opacity:1; transform:translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
	.pop-item{ opacity:1; transform:none; animation:none; }
}

/*地域活動の種類*/
.whatsc01cc-card {
	background: #fff;
	border: 1px solid #2E90C4;
	border-radius: 16px;
	overflow: hidden;
	transition: box-shadow .18s ease, transform .18s ease;
}

.whatsc01cc-card:hover {
	box-shadow: 0 6px 18px rgba(46,144,196,.15);
	transform: translateY(-2px);
}

.whatsc01cc-card-image {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px dashed #2E90C4;
}
.whatsc01cc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.whatsc01cc-card-image span {
	font-size: 0.9em;
	font-weight: 700;
	letter-spacing: .02em;
}

.whatsc01cc-card-no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #EB6567;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	flex: none;
}

.whatsc01cc-card-body {
	padding: 16px 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.whatsc01cc-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9em;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

.whatsc01cc-card-content {
	font-size: 0.8em;
	line-height: 1.7;
	margin: 0;
}

.whatsc01cc-card-point {
	display: none;
}

/*フッター*/
.whatscfooter {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.whatscfooter .whatsc_menu1 a:hover {
	transform: translateY(0);
}
