html {
	--site-header-height: 120px;
	scroll-behavior: smooth;
}

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

a {
    transition: all 0.3s ease;
}

a:hover {
    cursor: pointer;
    opacity: 0.7;
}

body {
	padding-top: var(--site-header-height);
}

.site-header {
	width: 100%;
	height: var(--site-header-height);
	min-width: 1250px;
	border-bottom: 1px solid #e5e5e5;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.site-header-inner {
	width: 100%;
	height: 100%;
	min-width: 1250px;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-title {
	margin: 0;
}

.site-title a {
	display: block;
	text-decoration: none;
	color: #111;
}

.site-title img {
	display: block;
	width: auto;
	max-width: 240px;
	height: 44px;
	object-fit: contain;
}

.site-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.site-nav-list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav-list li {
	flex: 0 0 auto;
}

.site-nav-list a {
	position: relative;
	text-decoration: none;
	color: #111;
	font-size: 18px;
	font-weight: 700;
}

.site-nav-list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background: #018ef4;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.site-nav-list a:hover::after {
	transform: scaleX(1);
}

.site-nav-image {
	display: inline-flex;
	align-items: center;
	margin-left: 15px;
}

.site-nav-image img {
	width: 150px;
	height: auto;
	object-fit: contain;
}

.site-contact-banner {
	display: block;
	width: 100vw;
	margin: 100px calc(50% - 50vw) 0;
	line-height: 0;
	text-decoration: none;
}

.site-contact-banner:hover {
	opacity: 1;
}

.site-contact-banner-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.site-footer {
	margin-top: 0;
	background: #111;
	color: #fff;
}

.site-footer-inner {
	width: 100%;
	padding: 48px 32px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.site-footer-title {
	margin: 0;
	text-align: center;
}

.site-footer-title a {
	display: inline-block;
	width: 300px;
	max-width: 100%;
}

.site-footer-title img {
	display: block;
	width: 300px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.site-footer-nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer-nav-list a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
}

.site-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer-branding {
	display: flex;
	justify-content: center;
}

.site-footer-sns {
	display: flex;
	align-items: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 25px;
}

.site-footer-sns img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-footer-address {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	text-align: left;
}

.site-footer-copy {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
}


.ttl {
    display: flex;
    flex-direction: column;
}
.ttl-en {
    font-size: 20px;
    font-weight: 600;
    color: #018EF4;
}
.ttl-ja {
    font-size: 43px;
    font-weight: 600;
    line-height: 1;
}

.btn {
    width: 320px;
    height: 60px;
    border-radius: 30px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    letter-spacing: 0.05em;
    font-weight: 600;
    background-color: #018EF4;
}

.history-back-button {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 999;
	min-width: 120px;
	height: 52px;
	padding: 0 24px;
	border: none;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #8ed8ff;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
}

.history-back-button:hover {
	opacity: 1;
	background: #6ecdfd;
}

.contact-fixed-button {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999;
	min-width: 280px;
	height: 60px;
	padding: 0 24px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: #9acb45;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.contact-fixed-button:hover {
	opacity: 1;
	background: #86b934;
}

.contact-fixed-button-icon {
	position: relative;
	width: 22px;
	height: 16px;
	border: 2px solid #fff;
	border-radius: 3px;
	flex: 0 0 auto;
}

.contact-fixed-button-icon::before,
.contact-fixed-button-icon::after {
	content: "";
	position: absolute;
	top: 5px;
	width: 11px;
	height: 2px;
	background: #fff;
}

.contact-fixed-button-icon::before {
	left: -1px;
	transform: rotate(33deg);
	transform-origin: left center;
}

.contact-fixed-button-icon::after {
	right: -1px;
	transform: rotate(-33deg);
	transform-origin: right center;
}

.contact-fixed-button-label {
	white-space: nowrap;
}

.page-fv {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.page-fv img {
	display: block;
	width: 100%;
	height: auto;
}

.content-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.content-badge {
	padding: 6px 12px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.content-badge-column {
	background: #f067a6;
}

.content-badge-delivery {
	background: #40ba8d;
}

.content-badge-sprinkler {
	background: #4a90e3;
}

.content-badge-news {
	background: #fbb161;
}

.content-badge-default {
	background: #777;
}


/* 納品実績 */

.news-home,
.news-archive-content,
.single-news-content {
	width: 1200px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
}

.news-home {
	padding: 0 0 100px;
}

.news-home-list {
	margin-top: 40px;
	border-top: 1px solid #e5e5e5;
}

.news-home-item {
	padding: 24px 0;
	border-bottom: 1px solid #e5e5e5;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: start;
	text-decoration: none;
	color: #111;
}

.news-home-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.news-home-meta .content-badges {
	margin-bottom: 0;
}

.news-home-date,
.news-card-date,
.single-news-date {
	font-size: 16px;
	font-weight: 600;
	color: #018ef4;
}

.news-home-title,
.news-card-title {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.6;
}

.news-archive {
	padding: 0 0 100px;
}

.news-archive-content {
	margin-top: 60px;
}

.news-archive-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
	margin-top: 40px;
}

.news-filter-nav {
	margin-top: 32px;
}

.news-filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-filter-list a {
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid #d0d0d0;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #111;
	font-size: 16px;
	font-weight: 600;
	background: #fff;
}

.news-filter-list a.is-current {
	border-color: #018ef4;
	background: #018ef4;
	color: #fff;
}

.news-card {
	width: calc(33.333% - 14px);
	border: 1px solid #e0e0e0;
	text-decoration: none;
	color: #111;
	background: #fff;
}

.news-card-image {
	width: 100%;
	height: 230px;
}

.news-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	color: #999;
	font-size: 18px;
	font-weight: 600;
}

.news-card-body {
	padding: 20px;
}

.news-card-date {
	display: block;
	margin-bottom: 12px;
}

.single-news {
	padding: 60px 0 100px;
}

.single-news-date {
	display: inline-block;
	margin-bottom: 16px;
}

.single-news-title {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
}

.single-news-image {
	margin-top: 40px;
}

.single-news-image img {
	display: block;
	width: 100%;
	height: auto;
}

.single-news-body {
	margin-top: 40px;
	font-size: 18px;
	line-height: 1.9;
}

.single-news-back {
	margin: 60px 0 0;
}

@media (max-width: 767px) {
	.site-contact-banner {
		margin-top: 80px;
	}

	.site-footer {
		margin-top: 0;
	}

	.site-footer-inner {
		padding: 32px 20px;
		gap: 20px;
	}

	.site-footer-title a {
		width: 130px;
	}

	.site-footer-title img {
		width: 130px;
	}

	.site-footer-nav-list {
		flex-direction: column;
		gap: 12px;
	}

	.site-footer-nav-list a {
		font-size: 16px;
	}

	.site-footer-bottom {
		flex-direction: column;
		align-items: center;
	}

	.site-footer-sns {
		gap: 14px;
	}

	.site-footer-address,
	.site-footer-copy {
		text-align: center;
	}

	.news-home,
	.news-archive-content,
	.single-news-content {
		max-width: calc(100% - 32px);
	}

	.news-home {
		padding-bottom: 80px;
	}

	.news-home-list {
		margin-top: 24px;
	}

	.news-home-item {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 18px 0;
	}

	.news-home-meta {
		gap: 12px;
	}

	.news-home-title,
	.news-card-title {
		font-size: 18px;
	}

	.history-back-button {
		left: 16px;
		bottom: 16px;
		min-width: 104px;
		height: 46px;
		padding: 0 20px;
		font-size: 14px;
	}

	.contact-fixed-button {
		right: 16px;
		bottom: 16px;
		min-width: 232px;
		height: 52px;
		padding: 0 20px;
		gap: 10px;
		font-size: 14px;
	}

	.contact-fixed-button-icon {
		width: 20px;
		height: 14px;
	}

	.news-archive,
	.single-news {
		padding: 40px 0 80px;
	}

	.news-archive-content {
		margin-top: 40px;
	}

	.news-archive-grid {
		margin-top: 24px;
		gap: 24px;
	}

	.news-filter-nav {
		margin-top: 24px;
	}

	.news-card {
		width: 100%;
	}

	.news-card-image {
		height: 200px;
	}

	.single-news-title {
		font-size: 28px;
	}

	.single-news-image,
	.single-news-body {
		margin-top: 24px;
	}

	.single-news-body {
		font-size: 16px;
	}

	.single-news-back {
		margin-top: 40px;
	}
}
.record {
	width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

.record-wrap {
	display: flex;
	flex-wrap: wrap;
    justify-content: start;
    column-gap: 20px;
    row-gap: 40px;
	margin-top: 40px;
	scroll-margin-top: 120px;
}

.record-select {
	margin-top: 30px;
}

.record-filter-form {
	display: flex;
    flex-direction: column;
	gap: 16px;
	align-items: flex-start;
    background-color: #fafafa;
}

.record-filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 12px 16px;
}

.record-filter-drawer {
	width: 100%;
}

.record-filter-drawer-toggle {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	text-align: left;
	cursor: pointer;
}

.record-filter-label {
	width: 100%;
	font-weight: 600;
	font-size: 20px;
	margin: 0;
}

.record-filter-drawer-toggle .record-filter-label {
	width: auto;
	margin: 0;
	font-size: 20px;
}

.record-filter-drawer-icon {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 9px solid #333;
	transition: transform 0.3s ease;
}

.record-filter-drawer-toggle[aria-expanded="true"] .record-filter-drawer-icon {
	transform: rotate(180deg);
}

.record-filter-group label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 18px;
}

.record-filter-areas {
	width: 100%;
	border: 1px solid #d0d0d0;
	border-top: none;
	border-radius: 0 0 6px 6px;
	background: #fff;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease;
	margin-top: -1px;
}

.record-filter-drawer-toggle[aria-expanded="true"] {
	border-radius: 6px 6px 0 0;
}

.record-filter-areas-inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 14px 14px 2px;
	border-top: 1px solid #d0d0d0;
}

.record-filter-area-set {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.record-filter-region {
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 6px;
	background: #f0f0f0;
}

.record-filter-region input {
	margin-top: 1px;
}

.record-filter-area-children {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	padding-left: 18px;
}

.record-filter-select {
	min-width: 260px;
	height: 42px;
	padding: 0 36px 0 10px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M0 0h12L6 8z' fill='%23333'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 8px;
}

.record-filter-input {
	margin: 0;
}

.record-filter-btn,
.record-filter-reset {
	height: 44px;
	padding: 0 18px;
	border-radius: 22px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.record-filter-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0 16px 12px;
}

.record-filter-btn {
	border: none;
	background: #018ef4;
	color: #fff;
}

.record-filter-reset {
	border: 1px solid #018ef4;
	color: #018ef4;
	background: #fff;
}

.record-item {
	width: calc(33.333% - 40px);
    height: 530px;
	border: 1px solid #E0E0E0;
}

.record-img {
	width: 100%;
	height: 230px;
}

.record-content {
	padding: 20px;
	font-size: 20px;
	letter-spacing: 0.25;
}

.record-ttl {
	font-size: 25px;
	font-weight: 600;
	margin: 0 0 10px;
}

.record-content .strong {
	font-weight: 600;
	padding-left: 20px;
}

.record-content .child + .child{
	margin-top: 5px;
}

.record-content .child-ttl {
	display: inline-block;
	width: 100px;
	position: relative;
}

.record-content .child-ttl::before {
	content: '/';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.archive-pagination {
	margin-top: 50px;
}

.archive-pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #d0d0d0;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	color: #111;
	background: #fff;
}

.archive-pagination .page-numbers .current {
	border-color: #018ef4;
	background: #018ef4;
	color: #fff;
}

@media (max-width: 767px) {
	.record-filter-drawer-toggle {
		padding: 10px 12px;
	}

	.record-filter-drawer-toggle .record-filter-label {
		font-size: 18px;
	}

	.record-filter-areas {
		margin-top: -1px;
	}

	.record-filter-areas-inner {
		padding: 12px 12px 2px;
	}

	.record-filter-area-children {
		padding-left: 14px;
	}

	.archive-pagination .page-numbers {
		flex-wrap: wrap;
	}
}

/* 納品実績 */