@charset "utf-8";
@font-face {
	font-family: 'Zen-Regular';
	src: url(../font/ZenKakuGothicNew-Regular.ttf) format('truetype');
}
@font-face {
	font-family: 'Zen-Medium';
	src: url(../font/ZenKakuGothicNew-Medium.ttf) format('truetype');
}
@font-face {
	font-family: 'Zen-Bold';
	src: url(../font/ZenKakuGothicNew-Bold.ttf) format('truetype');
}
* {
	box-sizing: border-box;
}
* img {
	vertical-align: bottom;
}
/* スクロール位置の調整 */
section[id], div[id] {
	scroll-margin-top: 70px;
}
#news, #garbage, #bath, #info, #tour {
	scroll-margin-top: 110px;
}
body {
	min-width: 1365px;
	max-width: 2000px;
	margin: 0 auto;
	color: #222;
	font-family: 'Zen-Medium', sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 20px;
}
/* ヘッダー */
.header-wrapper {
	width: 100%;
	background-color: #fff;
}
.header-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	max-width: 1600px;
	height: 135px;
	margin: 0 auto 50px;
	padding: 0 5%;
}
.logo-area {
	flex-shrink: 0;
	width: 264px;
	height: 99px;
}
.logo-link {
	display: block;
	width: 100%;
	height: 100%;
}
.logo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom left;
}
.nav-container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-bottom: -12px;
	font-family: 'Zen-Regular', sans-serif;
	font-weight: normal;
}
.sub-nav {
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
}
.sub-nav-item {
	position: relative;
	display: flex;
	align-items: center;
	color: #333;
	font-size: 14px;
	text-decoration: none;
}
.sub-nav-item::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #333;
	transition: width 0.3s;
	content: '';
}
.sub-nav-item:hover::after {
	width: 100%;
}
.main-nav-list {
	display: flex;
	gap: 15px;
	list-style: none;
}
.nav-link {
	position: relative;
	display: flex;
	align-items: center;
	color: #333;
	font-size: 14px;
	text-decoration: none;
}
.nav-link::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #333;
	transition: width 0.3s;
	content: '';
}
.nav-link:hover::after {
	width: 100%;
}
.icon {
	display: inline-block;
	margin-right: 8px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.icon-type-1 {
	width: 20px;
	height: 28px;
	background-image: url('../img/icon_01.svg');
}
.icon-type-2 {
	width: 17px;
	height: 32px;
	background-image: url('../img/icon_02.svg');
}
.icon-type-3 {
	width: 19px;
	height: 33px;
	background-image: url('../img/icon_03.svg');
}
.icon-type-4 {
	width: 20px;
	height: 26px;
	background-image: url('../img/icon_04.svg');
}
.icon-type-5 {
	width: 20px;
	height: 38px;
	background-image: url('../img/icon_05.svg');
}
/* PC版固定ヘッダー */
@media screen and (min-width: 960px) {
	.header-wrapper.is-fixed,
	.header-wrapper.is-hide {
		padding-top: 185px;
	}
	.header-wrapper.is-fixed .header-inner,
	.header-wrapper.is-hide .header-inner {
		position: fixed;
		right: 0;
		left: calc(0px - var(--scroll-x, 0px));
		z-index: 9000;
		display: flex;
		align-items: center;
		width: 100%;
		min-width: 1210px;
		max-width: 1600px;
		height: 70px;
		margin: 0 auto;
		padding: 0 5%;
	}
	.header-wrapper.is-fixed .header-inner::before,
	.header-wrapper.is-hide .header-inner::before {
		position: absolute;
		top: 0;
		left: 50%;
		z-index: -1;
		width: 200vw;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.95);
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		transform: translateX(-50%);
		content: '';
	}
	.header-wrapper.is-fixed .header-inner {
		animation: slideDown 0.3s ease forwards;
	}
	.header-wrapper.is-hide .header-inner {
		animation: slideUp 0.3s ease forwards;
	}
	@keyframes slideDown {
		from { top: 0px; }
		to { top: 0; }
	}
	@keyframes slideUp {
		from { top: 0; }
		to { top: 0px; }
	}
	.header-wrapper.is-fixed .logo-area,
	.header-wrapper.is-hide .logo-area {
		width: 132px;
		height: 49px;
	}
	.header-wrapper.is-fixed .nav-container,
	.header-wrapper.is-hide .nav-container {
		flex-direction: row;
		align-items: center;
		gap: 15px;
		margin-bottom: 0;
	}
	.header-wrapper.is-fixed .main-nav,
	.header-wrapper.is-hide .main-nav {
		order: 1;
	}
	.header-wrapper.is-fixed .sub-nav,
	.header-wrapper.is-hide .sub-nav {
		order: 2;
		margin-bottom: 0;
	}
	.header-wrapper.is-fixed .icon,
	.header-wrapper.is-hide .icon {
		display: none;
	}
	.header-wrapper.is-fixed .sub-nav-item,
	.header-wrapper.is-fixed .nav-link,
	.header-wrapper.is-hide .sub-nav-item,
	.header-wrapper.is-hide .nav-link {
		font-size: 12px;
	}
}
/* PC版で非表示にするスマホ用要素 */
.sp-menu-btn {
	display: none;
}
/* スマホ用メニュー */
.sp-nav-overlay {
	display: none;
}
.sp-hero-text {
	display: none;
}
.sp-bg-img {
	display: none;
}
/* ヒーロー（メインビジュアル） */
.hero-wrapper {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}
.hero-img {
	display: block;
	width: 100%;
	height: auto;
	background-color: #eee;
}
/* お知らせ */
.news-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1100px;
	margin: 50px auto 100px;
}
.news-heading {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: flex-start;
}
.news-title {
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 24px;
	font-weight: normal;
	line-height: 1;
	letter-spacing: 0.1em;
}
.news-list {
	width: 860px;
	border-top: 1px solid #aed15d;
	list-style: none;
}
.news-item {
	display: flex;
	align-items: center;
	padding: 20px 0 20px 28px;
	border-bottom: 1px solid #aed15d;
}
.news-date {
	flex-shrink: 0;
	color: #666;
}
.news-category {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 32px;
	margin: 0 20px;
	border-radius: 16px;
	background-color: #fff;
	color: #fff;
	line-height: 1;
}
.cat-construction {
	background-color: #004e11;
}
.cat-info {
	background-color: #7fbe26;
}
.cat-important {
	background-color: #e76168;
}
.news-link {
	flex: 1;
	color: #000;
	font-weight: normal;
	text-decoration: none;
}
a.news-link {
	transition: opacity 0.3s;
}
a.news-link:hover {
	text-decoration: underline;
	opacity: 0.7;
}
/* 施設概要・フロー */
.facility-top-img {
	width: 100%;
	height: 170px;
	margin-bottom: -1px;
	background-image: url('../img/bg_img_01.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 2000px auto;
}
.facility-wrapper {
	width: 100%;
	padding: 60px 0 10px;
	background-color: #add05f;
	color: #333;
}
.facility-inner {
	width: 1100px;
	margin: 0 auto;
}
.facility-lead {
	margin-bottom: 60px;
	color: #fff;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 34px;
	font-weight: normal;
	line-height: 1.6;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.facility-lead span {
	display: inline-block;
}
.section-block {
	width: 100%;
	margin-bottom: 80px;
}
.section-header-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 30px;
}
.section-icon-box {
	z-index: 2;
	width: 52px;
	height: 32px;
	margin-bottom: -2px;
	margin-left: 90px;
	background-image: url('../img/icon_06.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.section-title-bar {
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 65px;
	border-radius: 32.5px;
	background-color: #fff;
}
.section-title-text {
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 32px;
	font-weight: normal;
	letter-spacing: 0.1em;
}
.content-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 60px 50px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.facility-intro-card {
	margin-bottom: 40px;
	padding: 40px 50px;
}
.facility-intro-text {
	line-height: 2;
}
.spec-layout {
	display: flex;
	width: 900px;
	margin-bottom: 40px;
	padding: 0;
	border-top: 2px solid #aed15d;
	border-bottom: 2px solid #aed15d;
}
.spec-layout:last-child {
	margin-bottom: 0;
}
.spec-label {
	display: flex;
	flex: 1;
	align-items: flex-start;
	justify-content: center;
	padding: 20px 0;
	border-right: 2px solid #aed15d;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.spec-data {
	flex-shrink: 0;
	width: 700px;
	padding: 20px 0 20px 20px;
}
.spec-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
}
.spec-table th,
.spec-table td {
	padding: 14px 25px;
	border-bottom: 2px solid #fff;
	vertical-align: middle;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
	border-bottom: none;
}
.spec-table tr:nth-child(odd) th,
.spec-table tr:nth-child(odd) td {
	background-color: #cbe097;
}
.spec-table tr:nth-child(odd) th {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.spec-table tr:nth-child(odd) td {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.spec-table tr:nth-child(even) th,
.spec-table tr:nth-child(even) td {
	background-color: #fff;
}
.spec-table th {
	width: 25%;
	color: #333;
	font-weight: normal;
	text-align: left;
	white-space: nowrap;
}
.spec-table td {
	width: 75%;
	color: #333;
	text-align: left;
}
.standard-table {
	width: 100%;
	border: 1px solid #cbe097;
	border-collapse: collapse;
}
.standard-table th,
.standard-table td {
	padding: 12px 10px;
	border: 1px solid #cbe097;
	vertical-align: middle;
}
.standard-table thead th {
	background-color: #cbe097;
	color: #333;
	text-align: center;
}
.standard-table th:nth-child(1) {
	width: 25%;
}
.standard-table th:nth-child(2),
.standard-table th:nth-child(3) {
	width: 37.5%;
}
.standard-table tbody td {
	background-color: #fff;
	color: #333;
}
.standard-table tbody td:nth-child(1) {
	padding-left: 25px;
	text-align: left;
}
.standard-table tbody td:nth-child(2),
.standard-table tbody td:nth-child(3) {
	padding-left: 30px;
	text-align: left;
}
.flow-image-container {
	width: 100%;
	background-color: transparent;
}
.flow-image-container a {
	display: block;
	text-decoration: none;
}
.flow-img {
	display: block;
	width: 100%;
	height: auto;
}
.furnace-card {
	margin-top: 40px;
}
.furnace-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	grid-template-rows: auto 1fr;
	gap: 40px 60px;
	width: 100%;
}
.furnace-text {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}
.furnace-desc {
	margin-bottom: 20px;
	line-height: 1.8;
}
.furnace-features {
	padding: 0;
	list-style: none;
}
.furnace-features li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 1.2em;
	color: #004e11;
	font-weight: 500;
	line-height: 1.6;
}
.furnace-features li:last-child {
	margin-bottom: 0;
}
.furnace-features li::before {
	position: absolute;
	top: 0.4em;
	left: 0;
	width: 0.6em;
	height: 0.6em;
	border-radius: 50%;
	background-color: #004e11;
	content: '';
}
.furnace-img-main {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
}
.furnace-img-sub {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}
.furnace-img-main img {
	display: block;
	width: 100%;
	max-width: 237px;
	height: auto;
	margin: 0 auto;
}
.furnace-img-sub img {
	display: block;
	width: 100%;
	max-width: 641px;
	height: auto;
	margin: 0 auto;
}
/* モーダル */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-active {
	visibility: visible;
	opacity: 1;
}
.modal-content {
	position: relative;
	max-width: 90%;
	max-height: 90vh;
}
.modal-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 90vh;
	object-fit: contain;
}
.modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.modal-close::before,
.modal-close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #fff;
	content: '';
}
.modal-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* リンク集 */
.links-top-img {
	width: 100%;
	height: 180px;
	margin-top: -1px;
	background-image: url('../img/bg_img_02.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 2000px auto;
}
.links-wrapper {
	width: 100%;
	padding: 80px 0 120px;
	background-color: #fff;
	background-image: url('../img/bg_img_03.svg'), url('../img/bg_mochikomi.jpg');
	background-repeat: no-repeat, no-repeat;
	background-position: center bottom, center top;
	background-size: 2000px auto, cover;
}
.links-inner {
	display: flex;
	flex-direction: column;
	width: 1100px;
	min-height: 600px;
	margin: 0 auto;
}
.link-block {
	width: 500px;
}
.link-title-area {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 65px;
	margin-bottom: 30px;
	border-radius: 32.5px;
	background-color: #aed15d;
	font-family: 'Zen-Bold', sans-serif;
	font-weight: normal;
}
.link-title {
	color: #004e11;
	font-size: 24px;
	letter-spacing: 0.1em;
}
.sprout-icon {
	position: absolute;
	bottom: 100%;
	left: 40px;
	width: 52px;
	height: 31px;
	margin-bottom: -1px;
	background-image: url('../img/icon_07.svg');
	background-size: contain;
}
.link-sub-header {
	width: 100%;
	margin-bottom: 20px;
	padding: 8px 0;
	border-radius: 4px;
	background-color: #cbe097;
	color: #004e11;
	text-align: center;
}
.link-list {
	margin-bottom: 30px;
	padding-left: 10px;
	list-style: none;
	column-count: 1;
	column-gap: 10px;
}
.link-list:last-child {
	margin-bottom: 0;
}
.link-item {
	margin-bottom: 15px;
	break-inside: avoid;
}
.link-anchor {
	display: inline-flex;
	align-items: center;
	color: #004e11;
	font-size: 16px;
	text-decoration: none;
	transition: opacity 0.3s;
}
.link-anchor:hover {
	opacity: 0.7;
}
.external-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	background-image: url('../img/arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.bunbetsu-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 900px;
	margin: 0 auto 50px;
}
.bunbetsu-label {
	flex-shrink: 0;
	padding: 10px 30px;
	border-radius: 4px;
	background-color: #cbe097;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 16px;
}
.bunbetsu-list {
	display: flex;
	flex: 1;
	justify-content: space-between;
	margin-left: 40px;
	list-style: none;
}
.facility-btn-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 900px;
	margin: 0 auto;
	gap: 40px 20px;
}
.facility-btn-item {
	width: 400px;
}
.facility-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 400px;
	height: 50px;
	border: 3px solid #004e11;
	border-radius: 25px;
	background-color: #fff;
	background-image: url('../img/arrow.svg');
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 20px;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 22px;
	text-decoration: none;
	transition: opacity 0.3s;
}
.facility-btn:hover {
	opacity: 0.7;
}
.facility-btn-desc {
	margin-top: 15px;
	padding: 0 10px;
	color: #333;
	font-size: 15px;
	line-height: 1.6;
}
/* 問い合わせ・アクセス */
.access-wrapper {
	width: 100%;
	padding: 80px 0 0;
	background-color: #aed15d;
}
.access-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 1100px;
	margin: 0 auto;
	padding-bottom: 80px;
}
.access-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 50px;
	border-radius: 20px;
	background-color: #fff;
	text-align: center;
}
.sp-access-content {
	display: none;
}
.pc-access-content {
	display: block;
	width: 100%;
	text-align: left;
}
.access-block {
	width: 100%;
	margin-bottom: 50px;
}
.access-block:last-child {
	margin-bottom: 0;
}
.access-heading {
	display: flex;
	align-items: center;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
}
.access-heading::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #004e11;
	margin-right: 10px;
}
.access-band {
	width: 800px;
	margin: 0 auto;
	padding: 12px 0 12px 100px;
	background-color: #cbe097;
	color: #333;
	text-align: left;
	font-size: 16px;
}
.access-text {
	width: 800px;
	margin: 0 auto;
	padding: 15px 0 15px 100px;
	text-align: left;
	font-size: 16px;
}
.access-desc {
	margin-bottom: 20px;
	padding-left: 22px;
	font-size: 16px;
	line-height: 1.6;
}
.access-link-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 800px;
	margin: 0 auto;
	padding: 12px 0 12px 100px;
	background-color: #cbe097;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 16px;
	text-decoration: none;
	transition: opacity 0.3s;
}
.access-link-btn:hover {
	opacity: 0.7;
}
.org-name {
	margin-bottom: 30px;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 32px;
	font-weight: normal;
	letter-spacing: 0.05em;
}
.info-row {
	display: inline-block;
	width: 600px;
	margin-bottom: 10px;
	padding: 8px 40px;
	border-radius: 4px;
	background-color: #dceca8;
	color: #004e11;
	font-size: 16px;
}
.info-row:last-child {
	margin-bottom: 0;
}
.info-row.address-row {
	padding: 5px 0;
	background-color: transparent;
}
/* 地図 */
.map-wrapper {
	width: 100%;
	height: 700px;
}
.map-iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.map-bottom-img {
	width: 100%;
	height: 228px;
	margin-top: -1px;
	background-image: url('../img/bg_img_04.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 2000px auto;
}
/* 基幹改良工事について */
.improvement-wrapper {
	width: 100%;
	padding: 80px 0 120px;
	background-color: #fff;
}
.improvement-inner {
	width: 1100px;
	margin: 0 auto;
}
.improvement-title-area {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 65px;
	margin-bottom: 50px;
	border-radius: 32.5px;
	background-color: #aed15d;
}
.improvement-title {
	color: #004e11;
	font-size: 28px;
	letter-spacing: 0.1em;
}
.improvement-desc-block {
	width: 800px;
	margin: 0 auto 60px;
	line-height: 1.8;
}
.improvement-purpose-list {
	margin: 15px 0;
	list-style: none;
}
.improvement-purpose-list li {
	margin-bottom: 5px;
}
.improvement-purpose-list .num {
	color: #004e11;
	margin-right: 5px;
}
.improvement-purpose-list .bold {
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
}
.improvement-points-block {
	padding: 50px;
	margin-bottom: 60px;
	border-radius: 20px;
	background-color: #cbe097;
}
.points-title {
	margin-bottom: 40px;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 24px;
	text-align: center;
	letter-spacing: 0.1em;
}
.points-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.points-img-area {
	flex-shrink: 0;
	width: 380px;
	height: 228px;
}
.points-img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}
.points-list-area {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 20px;
}
.point-item {
	display: flex;
	align-items: center;
	padding: 15px 30px;
	border-radius: 30px;
	background-color: #fff;
}
.point-label {
	margin-right: 20px;
	color: #aed15d;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 18px;
}
.point-text {
	color: #333;
	font-size: 16px;
}
.point-highlight {
	margin-left: 5px;
	color: #004e11;
	font-family: 'Zen-Bold', sans-serif;
	font-size: 20px;
}
.improvement-table-block {
	width: 800px;
	margin: 0 auto;
}
.improvement-table {
	width: 100%;
	border-collapse: collapse;
}
.improvement-table th,
.improvement-table td {
	padding: 15px 20px;
	text-align: left;
	vertical-align: middle;
}
.improvement-table th {
	width: 200px;
	font-weight: normal;
}
.improvement-table tr:nth-child(odd) th,
.improvement-table tr:nth-child(odd) td {
	background-color: #cbe097;
}
.improvement-table tr:nth-child(even) th,
.improvement-table tr:nth-child(even) td {
	background-color: #EBF3D6;
}
/* 工事状況 */
.construction-wrapper {
	display: none;
	width: 100%;
	padding: 80px 0 120px;
	background-color: #fff;
}
.construction-inner {
	width: 1100px;
	margin: 0 auto;
}
.construction-title-area {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 65px;
	margin-bottom: 40px;
	border-radius: 32.5px;
	background-color: #aed15d;
}
.construction-title {
	color: #004e11;
	font-size: 28px;
	letter-spacing: 0.1em;
}
.construction-date-bar {
	width: 100%;
	margin-bottom: 30px;
	padding: 10px 20px;
	border-radius: 4px;
	background-color: #dceca8;
	color: #333;
}
.construction-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}
.construction-item {
	width: calc((1100px - 60px) / 4);
}
.construction-img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	background-color: #eee;
	object-fit: cover;
	aspect-ratio: 4/3;
}
.construction-item-date {
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.4;
}
.construction-desc {
	line-height: 1.4;
}
/* フッター */
.footer-top-img {
	width: 100%;
	height: 228px;
	margin-bottom: -1px;
	background-image: url('../img/bg_img_05.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 2000px auto;
}
.footer-wrapper {
	width: 100%;
	padding: 60px 0 20px;
	background-color: #aed15d;
}
.footer-inner {
	width: 1100px;
	margin: 0 auto;
}
.footer-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	margin-bottom: 40px;
}
.footer-logo {
	display: block;
	width: 515px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.footer-left {
	text-align: center;
}
.footer-right {
	line-height: 1.8;
	text-align: left;
}
.copyright {
	color: #fff;
	text-align: center;
}

/* ==========================================================================
   レスポンシブ設定：タブレット・スマホ共通 (Max 959px)
   ========================================================================== */
@media screen and (max-width: 959px) {
	/* スクロール位置の調整 */
	body {
		min-width: auto;
		padding-top: 60px;
		overflow-x: hidden;
	}
	section[id], div[id] {
		scroll-margin-top: 60px;
	}
	#news, #garbage, #bath, #info, #tour {
		scroll-margin-top: 100px;
	}
	.header-inner,
	.news-section,
	.facility-inner,
	.links-inner,
	.access-inner,
	.improvement-inner,
	.construction-inner,
	.footer-inner {
		box-sizing: border-box;
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
	}
	img,
	iframe {
		max-width: 100%;
		height: auto;
	}
	p,
	a,
	span,
	div,
	li {
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	/* ヘッダー */
	.header-wrapper {
		width: 100%;
		background-color: #fff;
	}
	.header-inner {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9000;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		height: 60px;
		padding: 0 !important;
		background-color: #fff;
	}
	.logo-area {
		flex: 1;
		height: 60px;
		padding: 10px 30px 10px 15px;
	}
	.logo-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: left center;
	}
	.nav-container {
		display: none;
	}
	.sp-menu-btn {
		display: block !important;
		flex-shrink: 0;
		width: 60px;
		height: 60px;
		background-color: #e0e0e0;
		background-image: url('../img/menu_open.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		cursor: pointer;
	}
	/* スマホ用メニュー */
	.sp-nav-overlay {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		display: flex !important;
		flex-direction: column;
		width: 100%;
		height: 100vh;
		background-color: #477207;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.sp-nav-overlay.is-active {
		visibility: visible;
		opacity: 1;
	}
	.sp-nav-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 60px;
		padding: 0;
	}
	.sp-nav-logo {
		flex: 1;
		height: 60px;
		padding: 20px 30px 0 15px;
	}
	.sp-nav-logo-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: left center;
		filter: brightness(0) invert(1);
	}
	.sp-menu-close {
		flex-shrink: 0;
		width: 60px;
		height: 60px;
		background-color: transparent;
		background-image: url('../img/menu_close.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		cursor: pointer;
	}
	.sp-nav-content {
		display: flex;
		flex: 1;
		align-items: flex-start;
		justify-content: center;
		padding-top: 60px;
		overflow-y: auto;
	}
	.sp-nav-list {
		padding: 0;
		padding-bottom: 60px;
		list-style: none;
	}
	.sp-nav-list li {
		margin-bottom: 25px;
	}
	.sp-nav-list a {
		display: flex;
		align-items: center;
		color: #fff;
		font-family: 'Zen-Bold', sans-serif;
		font-size: 18px;
		text-decoration: none;
		letter-spacing: 0.1em;
	}
	.sp-nav-list .icon {
		flex-shrink: 0;
		filter: brightness(0) saturate(100%) invert(69%) sepia(59%) saturate(464%) hue-rotate(41deg) brightness(90%) contrast(87%);
	}
	/* ヒーロー（メインビジュアル） */
	.sp-hero-text {
		display: block !important;
		margin-top: 10px;
		color: #7fbe26;
		font-family: 'Zen-Bold', sans-serif;
		font-size: 24px;
		font-weight: normal;
		line-height: 1.6;
		text-align: center;
	}
	.hero-wrapper {
		margin-top: 15px;
	}
	/* お知らせ */
	.news-section {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}
	.news-list {
		width: 100%;
		max-width: 100%;
	}
	/* 施設概要・フロー */
	.sp-bg-img {
		display: block !important;
		width: 100%;
		height: auto;
	}
	.facility-top-img,
	.links-top-img,
	.map-bottom-img,
	.footer-top-img {
		height: auto;
		background-image: none;
	}
	.section-title-text {
		font-size: 24px;
	}
	.spec-layout {
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		border-top: none;
		border-bottom: none;
	}
	.spec-label {
		padding: 8px 0;
		border-right: none;
		border-bottom: none;
		font-size: 20px;
	}
	.spec-data {
		width: 100%;
		max-width: 100%;
		padding: 0;
		overflow-x: auto;
	}
	.spec-table tr {
		display: block;
		margin-bottom: 0;
	}
	.spec-table tr:last-child {
		margin-bottom: 0;
	}
	.spec-table th,
	.spec-table td,
	.spec-table tr:nth-child(odd) th,
	.spec-table tr:nth-child(odd) td,
	.spec-table tr:nth-child(even) th,
	.spec-table tr:nth-child(even) td {
		display: block;
		width: 100%;
		border-radius: 0;
		text-align: left;
	}
	.spec-table th,
	.spec-table tr:nth-child(odd) th,
	.spec-table tr:nth-child(even) th {
		padding: 12px 15px 4px 15px;
		border-bottom: none;
	}
	.spec-table th::before {
		position: relative;
		top: -2px;
		display: inline-block;
		width: 14px;
		height: 14px;
		margin-right: 8px;
		background-color: #004e11;
		vertical-align: middle;
		content: '';
	}
	.spec-table td,
	.spec-table tr:nth-child(odd) td,
	.spec-table tr:nth-child(even) td {
		padding: 0 15px 12px 15px;
	}
	.standard-table {
		min-width: 680px;
	}
	.furnace-layout {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	.furnace-text {
		order: 1;
	}
	.furnace-img-main {
		order: 2;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.furnace-img-sub {
		order: 3;
	}
	/* リンク集 */
	.links-wrapper {
		padding-bottom: 0;
		background-image: url('../img/bg_mochikomi.jpg');
		background-position: center top;
		background-size: cover;
	}
	.links-inner {
		min-height: auto;
		margin-bottom: 60px;
	}
	.link-block {
		width: calc(50% - 20px);
		margin-bottom: 32px;
	}
	.link-list {
		column-count: 2;
		column-gap: 10px;
	}
	.link-item {
		break-inside: avoid;
	}
	.bunbetsu-block {
		flex-direction: column;
		width: 100%;
		gap: 20px;
		margin-bottom: 40px;
	}
	.bunbetsu-label {
		width: 100%;
		text-align: center;
	}
	.bunbetsu-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		max-width: 340px;
		margin: 0 auto;
		gap: 15px 0;
	}
	.bunbetsu-list li {
		width: 48%;
	}
	.facility-btn-container {
		flex-direction: column;
		align-items: center;
		width: 100%;
		gap: 30px;
	}
	.facility-btn-item {
		width: 95%;
	}
	.facility-btn {
		width: 100%;
		height: 60px;
		border-radius: 30px;
		font-size: 20px;
	}
	.facility-btn-desc {
		text-align: left;
	}
	/* 問い合わせ・アクセス */
	.pc-access-content {
		display: none;
	}
	.sp-access-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.info-row {
		width: 100%;
		max-width: 600px;
		text-align: left;
	}
	.info-row.address-row {
		padding-right: 40px;
		padding-left: 40px;
	}
		/* 地図 */
	.map-wrapper {
		padding-bottom: 32px;
		background-color: #aed15d;
	}
	/* 基幹改良工事について */
	.improvement-title-area {
		margin-bottom: 30px;
	}
	.improvement-title {
		font-size: 22px;
	}
	.improvement-desc-block {
		width: 96%;
		margin: 0 auto 40px;
	}
	.improvement-purpose-list li {
		padding-left: 1.5em;
		text-indent: -1.5em;
	}
	.improvement-points-block {
		padding: 30px 15px;
		margin-bottom: 40px;
	}
	.points-title {
		width: 100%;
		margin: 0 auto 20px;
		font-size: 22px;
		line-height: 1.5;
	}
	.points-content {
		flex-direction: column;
		gap: 20px;
	}
	.points-img-area {
		width: 100%;
		height: auto;
	}
	.points-list-area {
		width: 100%;
	}
	.point-item {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
		border-radius: 20px;
	}
	.point-label {
		margin-right: 0;
		margin-bottom: 5px;
	}
	.point-highlight {
		display: inline-block;
		margin-left: 0;
		margin-top: 5px;
	}
	.improvement-table-block {
		width: 100%;
	}
	.improvement-table tr {
		display: block;
		margin-bottom: 0;
	}
	.improvement-table th,
	.improvement-table td {
		display: block;
		width: 100%;
		text-align: left;
	}
	.improvement-table th {
		padding: 15px 15px 5px 15px;
	}
	.improvement-table th::before {
		position: relative;
		top: -2px;
		display: inline-block;
		width: 14px;
		height: 14px;
		margin-right: 8px;
		background-color: #004e11;
		vertical-align: middle;
		content: '';
	}
	.improvement-table td {
		padding: 0 15px 15px 15px;
	}
	/* 工事状況 */
	.construction-list {
		justify-content: center;
	}
	.construction-item {
		width: calc((100% - 40px) / 3);
		min-width: 330px;
	}
	/* フッター */
	.footer-content {
		gap: 40px;
		margin-bottom: 20px;
	}
	.footer-logo {
		max-width: 97%;
	}
	.copyright {
		font-size: 12px;
	}
}

/* ==========================================================================
   レスポンシブ設定：スマートフォン専用 (Max 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
	body {
		min-width: 360px;
	}
	.header-inner,
	.news-section,
	.facility-inner,
	.links-inner,
	.access-inner,
	.improvement-inner,
	.construction-inner,
	.footer-inner {
		padding-right: 15px;
		padding-left: 15px;
	}
	/* ヘッダー */
	.header-inner {
		padding-right: 0 !important;
	}
	/* スマホ用メニュー */
	.sp-nav-header {
		padding-left: 15px;
	}
	/* お知らせ */
	.news-item {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
		padding: 15px 0;
	}
	.news-category {
		margin: 0;
	}
	/* 施設概要・フロー */
	.facility-lead {
		margin-bottom: 40px;
		font-size: 20px;
	}
	.section-icon-box {
		margin-left: 20px;
	}
	.content-card {
		padding: 30px 15px;
	}
	.facility-intro-card {
		margin-bottom: 30px;
	}
	/* リンク集 */
	.links-inner {
		flex-direction: column;
		row-gap: 0;
	}
	.link-block {
		width: 100%;
	}
	.link-title {
		font-size: 20px;
	}
	.sprout-icon {
		left: 40px;
	}
	.link-list {
		column-count: 2;
		column-gap: 10px;
	}
	.bunbetsu-list {
		max-width: 300px;
	}
	.facility-btn {
		height: 55px;
		border-radius: 27.5px;
		font-size: 18px;
		background-position: right 15px center;
	}
	/* 問い合わせ・アクセス */
	.access-card {
		padding: 30px 15px;
	}
	.org-name {
		font-size: 20px;
		line-height: 1.4em;
		margin-bottom: 10px;
	}
	.info-row,
	.info-row.address-row {
		margin-bottom: 0px;
		padding: 8px 15px;
		text-align: center;
		font-size: 14px;
		width: 100%;
	}
	.info-row.address-row {
    background-color: #F8FFE6;
	}
	.access-link-btn {
		width: 100%;
		padding: 12px 10px;
	}
	/* 地図 */
	.map-wrapper {
		height: 400px;
	}
	/* 工事状況 */
	.construction-title {
		font-size: 22px;
	}
	.construction-item {
		width: calc((100% - 20px) / 2);
	}
	/* フッター */
	.footer-content {
		flex-direction: column;
		gap: 30px;
	}
	.footer-logo {
		width: 97%;
		max-width: 300px;
		height: auto;
	}
}