@charset "UTF-8";

:root {
	--white: #FFFFFF;
	--black: #000;
	--green: #07B400;
	--light-green: #F1FDF0;
}

/* @font-face {
font-family: 'Noto Sans CJK JP';
src: url('../fonts/NotoSansCJKjp-VF.otf');
font-weight: 100 900;
font-style: normal;
font-display: swap;
} */

body {
	color: var(--dark-blue);
	font-family: "Noto Sans JP", sans-serif;
	/* font-family: 'Noto Sans CJK JP', sans-serif; */
	font-optical-sizing: auto;
	font-style: normal;
	text-align: justify;
	word-break: break-word;
	letter-spacing: 0;
	font-weight: 500;
}

.sp {
	display: none;
}

p {
	font-size: 1.8rem;
	line-height: 3.4rem;
	font-weight: 300;
}

span {
	display: inline-block;
}

img {
	display: inline-block;
	width: 100%;
}

.strong {
	font-weight: bold;
}

a,
a::before,
a::after {
	display: inline-block;
	cursor: pointer;
	transition: all 0.5s;
}

a:hover,
a:hover::before,
a:hover::after {
	opacity: 0.7;
	transition: all 0.5s;
}

.hidden {
	display: none;
}

/* 1200px以上は固定（1200pxデザインのまま） */
html {
	font-size: 10px; /* 1rem = 10px */
}

/* 1200〜769：左右100pxずつ空けた内側幅でスケール */
@media (max-width: 1200px) and (min-width: 769px) {
	html {
		/* 1200のとき：(1200-200)=1000 → 10px */
		font-size: calc(((100vw - 200px) * 10) / 1000);
	}
}

/* 768以下：SP基準 */
@media (max-width: 768px) {
	html {
		font-size: calc((100vw * 10) / 390);
	}
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 100;
	background-color: var(--white);
}

.wrapper {
	max-width: 100rem;
	margin: auto;
}

.header_top {
	width: 112.4rem;
	margin-left: -6.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_top_left a {
	display: flex;
	align-items: center;
}

.header_top_right {
	display: flex;
	align-items: center;
}

.header_logo img {
	width: 7.2rem;
}

.header_logo p {
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: bold;
}

.site_title {
	display: block;
	font-size: 3.2rem;
	line-height: 3.5rem;
	font-weight: bold;
	color: var(--green);
}

.header_tel {
	margin-right: 3rem;
}

.header_tel a {
	font-size: 4rem;
	line-height: 5.5rem;
	padding-left: 3.4rem;
	font-weight: bold;
	position: relative;
}

.header_tel a::before {
	position: absolute;
	content: "";
	top: 0.5rem;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 3rem;
	height: 3rem;
	background-image: url(../img/tel_icon.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.header_tel p {
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: bold;
}

.header_blog {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin-right: 2rem;
}

.header_blog a {
	font-size: 1.8rem;
	line-height: 2.6rem;
	padding-left: 2.5rem;
	position: relative;
}

.header_blog a::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 1.7rem;
	height: 1.5rem;
	background-image: url(../img/arrow01.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.header_line {
	font-size: 2.2rem;
	width: 14.6rem;
	height: 7.9rem;
	border-radius: 0 0 0.5rem 0.5rem;
	color: var(--white);
	background-color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header_bottom {
	margin-top: 3.2rem;
	padding-bottom: 3rem;
}

.header_menu,
.header_menu ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1.9rem;
}

.header_menu ul li a {
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: bold;
	padding-left: 1.9rem;
	position: relative;
}

.header_menu ul li a:hover {
	color: var(--green);
	transition: all 0.5s;
	opacity: 1;
}

.header_menu ul li a::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 1.7rem;
	height: 1.5rem;
	background-image: url(../img/arrow01.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.5s;
	opacity: 0;
}

.header_menu ul li a:hover::before {
	opacity: 1;
}

.header_menu ul li a::after {
	position: absolute;
	content: "";
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 0.2rem;
	background-color: var(--green);
	transition: all 0.5s;
	opacity: 0;
}

.header_menu ul li a:hover::after {
	opacity: 1;
}

.header_menu ul li a.active {
	color: var(--green);
	padding-left: 1.9rem;
	position: relative;
}

.header_menu ul li a.active::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 1.7rem;
	height: 1.5rem;
	background-image: url(../img/arrow01.png);
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 1;
}

.header_menu ul li a.active::after {
	position: absolute;
	content: "";
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 0.2rem;
	background-color: var(--green);
	opacity: 1;
}


















.hamburger_menu {
	display: none;
}

main {
	padding-top: 17.2rem;
}

.fv_box {
	position: relative;
}

.fv_box img {
	height: 51rem;
	object-fit: cover;
	border-radius: 2.5rem;
}

.fv_txt {
	position: absolute;
	top: 6.5rem;
	left: 4rem;
}

.fv_maintxt {
	font-size: 3.2rem;
	letter-spacing: 0.052em;
	line-height: 6.4rem;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 2.5rem;
}

.fv_maintxt span {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1.2s cubic-bezier(.25,.8,.25,1) forwards;
}

.fv_maintxt span:nth-child(1) { animation-delay: 0.0s; }
.fv_maintxt span:nth-child(3) { animation-delay: 0.4s; }
.fv_maintxt span:nth-child(5) { animation-delay: 0.8s; }
.fv_maintxt span:nth-child(7) { animation-delay: 1.2s; }

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.fv_subtxt {
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: 300;
	background-color: var(--white);
	padding: 1.1rem 1.6rem 1.1rem 1.1rem;
}

.fv_subtxt span {
	display: inline;
	font-weight: 500;
}

.title {
	text-align: center;
	margin-bottom: 4.8rem;
}

.title span {
	font-size: 2rem;
	line-height: 2.7rem;
	color: var(--green);
	padding-top: 2.7rem;
	position: relative;
}

.title span::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 2.36rem;
	height: 2.23rem;
	background-image: url(../img/home_icon.png);
	background-repeat: no-repeat;
	background-size: contain;
}

h2 {
	font-size: 3.2rem;
	line-height: 5.5rem;
	font-weight: bold;
}

.event {
	padding: 5rem 0 9.5rem 0;
}

.event_lists {
	margin-top: 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.event_lists li {
	width: 31.8rem;
}

.event_thumb {
	margin-bottom: 1.4rem;
	overflow: hidden;
}

.event_thumb img {
	width: 100%;
	height: 19rem;
	object-fit: cover;
	transition: all 0.5s;
}

.event_lists li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.category {
	font-size: 1.6rem;
	line-height: 2.4rem;
	color: var(--white);
	background-color: var(--green);
	text-align: center;
	padding: 0 1.3rem 0.3rem 1.3rem;
	border-radius: 1.3rem;
	margin-bottom: 0.5rem;
}

.event_details {
	padding-left: 4rem;
	margin-bottom: 0.7rem;
	position: relative;
}

.event_details::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 3.23rem;
	height: 3.42rem;
	background-image: url(../img/calender_icon_01.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.date {
	display: block;
	font-size: 1.6rem;
	line-height: 2.6rem;
}

.place {
	display: block;
	font-size: 1.6rem;
	line-height: 2.6rem;
}

.event_title {
	font-size: 1.8rem;
	line-height: 3.4rem;
	padding: 0.95rem 1.4rem;
	background-color: var(--light-green);
}

.btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	width: 38.7rem;
	height: 5.5rem;
	font-size: 2rem;
	line-height: 3.4rem;
	border: 0.1rem solid var(--green);
	box-shadow: 0.5rem 0.5rem var(--green);
	margin: auto;
	margin-top: 5.5rem;
	transition: box-shadow 0.5s ease, transform 0.5s ease;
	transition: all 0.5s;
}

.btn a:hover {
	opacity: 1;
	box-shadow: none;
	transform: translate(0.5rem, 0.5rem);
	color: var(--white);
	background-color: var(--green);
	transition: all 0.5s;
}

.icon {
	position: relative;
	width: 3.23rem;
	height: 3.42rem;
	margin-top: 0.5rem;
}

.icon::before,
.icon::after {
	content: "";
	position: absolute;
	inset: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: opacity 0.5s;
}

.icon_calender::before {
	background-image: url("../img/calender_icon_02.png");
	opacity: 1;
}

.icon_calender::after {
	background-image: url("../img/calender_icon_03.png");
	opacity: 0;
}

.btn a:hover .icon::before {
	opacity: 0;
}

.btn a:hover .icon::after {
	opacity: 1;
}

.icon_search::before {
	background-image: url("../img/search_icon01.png");
	opacity: 1;
}

.icon_search::after {
	background-image: url("../img/search_icon02.png");
	opacity: 0;
}


/* リフォームメニュー */

.reform_menu {
	padding: 7.5rem 0 9.5rem 0;
	background-color: var(--light-green);
}

.reform_menu_tab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 3.5rem;
	margin-bottom: 9rem;
}

.reform_menu_tab a {
	width: 31.8rem;
	height: 23.9rem;
	background-color: var(--white);
	border-radius: 2rem;
	font-size: 2.4rem;
	line-height: 3.4rem;
	position: relative;
	text-align: center;
}

.reform_menu_tab a::before {
	position: absolute;
	content: "";
	right: 0;
	left: 0;
	bottom: 1.5rem;
	margin: auto;
	width: 8.2rem;
	height: 1.7rem;
	background-image: url(../img/arrow03.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.reform_menu_tab img {
	display: block;
	margin: auto;
	margin-bottom: 2.8rem;
	margin-top: 2.8rem;
}

.full_reform_link img {
	width: 9.21rem;
}

.water_reform_link img {
	width: 8.42rem;
}

.outside_reform_link img {
	width: 9.06rem;
}

.reform_menu_box {
	margin-bottom: 8rem;
}

.reform_menu_box h3 {
	font-size: 2.4rem;
	line-height: 3.4rem;
	margin-bottom: 3rem;
	text-align: center;
	position: relative;
}

.full_reform h3 {
	padding-top: 10.5rem;
}

.full_reform h3::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 9.21rem;
	height: 8.86rem;
	background-image: url(../img/reform_icon01.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.reform_menu_lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2.8rem 2.4rem;
}

.reform_menu_lists li a {
	display: flex;
	align-items: center;
	width: 48.6rem;
	height: 12.2rem;
	background-color: var(--white);
	border-radius: 2rem;
	position: relative;
	overflow: hidden;
}

.reform_menu_lists li a::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 1.2rem;
	margin: auto;
	width: 1.5rem;
	height: 2.17rem;
	background-image: url(../img/arrow02.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.full_reform img {
	width: 20.1rem;
	height: 100%;
    object-fit: cover;
	margin-right: 2rem;
}

.reform_menu_lists h4 {
	font-size: 2.2rem;
	line-height: 3.8rem;
}

.water_reform h3 {
	padding-top: 11.5rem;
}

.water_reform h3::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 8.42rem;
	height: 8.76rem;
	background-image: url(../img/reform_icon02.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.water_reform img {
	width: 20.1rem;
	height: 100%;
    object-fit: cover;
	margin-right: 2rem;
}

.water_reform span {
	font-size: 2.2rem;
	line-height: 3.8rem;
	color: var(--green);
}

.outside_reform h3 {
	padding-top: 9.2rem;
}

.outside_reform h3::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 9.06rem;
	height: 7.35rem;
	background-image: url(../img/reform_icon03.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.outside_reform img {
	width: 20.1rem;
	height: 100%;
    object-fit: cover;
	margin-right: 2rem;
}

.outside_reform span {
	font-size: 2.2rem;
	line-height: 3.8rem;
	color: var(--green);
}

.work {
	padding: 9.5rem 0 0 0;
}

.work_lists {
	margin-top: 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.work_lists li {
	width: 31.8rem;
}

.work_thumb {
	margin-bottom: 1.4rem;
	overflow: hidden;
}

.work_thumb img {
	width: 100%;
	height: 19rem;
	object-fit: cover;
	transition: all 0.5s;
}

.work_lists li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.work_title {
	font-size: 1.6rem;
	line-height: 2.6rem;
}

.work_title span {
	font-size: 2.4rem;
	line-height: 2.6rem;
	color: var(--green);
	margin-top: 0.9rem;
}

.voice {
	padding: 11rem 0 10rem 0;
}


.voice_lists {
	margin-top: 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.voice_lists li {
	width: 31.8rem;
}

.voice_thumb {
	margin-bottom: 1.4rem;
	overflow: hidden;
}

.voice_thumb img {
	width: 100%;
	height: 19rem;
	object-fit: cover;
	transition: all 0.5s;
}

.voice_lists li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.voice_title {
	font-size: 1.8rem;
	line-height: 3.4rem;
	margin-top: 1.2rem;
}

.name {
	display: block;
	font-size: 1.6rem;
	line-height: 3.4rem;
	margin-top: 1.5rem;
	text-align: end;
}

.review {
	padding: 6.5rem 0 9.5rem 0;
	background-color: var(--light-green);
}

.contact {
	padding: 5.5rem 0 7rem 0;
}

.contact_box {
	display: flex;
	justify-content: space-between;
}

.contact_tel {
	width: 40rem;
}

.contact_tel span {
	font-size: 2.2rem;
	line-height: 3.2rem;
	color: var(--white);
	background-color: var(--green);
	padding: 1rem 1.3rem 1.3rem 1.3rem;
	margin-bottom: 1.5rem;
}

.contact_tel p {
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: 500;
	margin-bottom: 3rem;
}

.contact_tel a {
	font-size: 5.1rem;
	line-height: 7.4rem;
	padding-left: 6rem;
	font-weight: bold;
	position: relative;
}

.contact_tel a::before {
	position: absolute;
	content: "";
	top: 0.8rem;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 5rem;
	height: 5rem;
	background-image: url(../img/tel_icon.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.contact_other a {
	width: 43rem;
	height: 7.3rem;
	display: flex;
	align-items: center;
	font-size: 2.6rem;
	line-height: 4.4rem;
	padding-left: 2.2rem;
	border: 0.1rem solid var(--green);
	box-shadow: 0.6rem 0.6rem var(--green);
	transition: box-shadow 0.5s ease, transform 0.5s ease;
	margin-bottom: 3rem;
	transition: all 0.5s;
}

.contact_other a:last-child {
	margin-bottom: 0;
}

.contact_other a:hover {
	opacity: 1;
	box-shadow: none;
	transform: translate(0.6rem, 0.6rem);
	color: var(--white);
	background-color: var(--green);
	transition: all 0.5s;
}

.contact_other a:hover .icon::before {
	opacity: 0;
}

.contact_other a:hover .icon::after {
	opacity: 1;
}

.icon_line,
.icon_mail {
	position: relative;
	width: 5.4rem;
	height: 5.4rem;
	margin-right: 3.5rem;

}

.icon_line::before {
	background-image: url("../img/line.png");
	opacity: 1;
}

.icon_line::after {
	background-image: url("../img/line02.png");
	opacity: 0;
}

.icon_mail::before {
	background-image: url("../img/mail_icon01.png");
	opacity: 1;
}

.icon_mail::after {
	background-image: url("../img/mail_icon02.png");
	opacity: 0;
}


footer {
	color: var(--white);
	background-color: var(--green);
	padding: 3.5rem 0 0.5rem 0;
}

.footer_box {
	display: flex;
	align-items: center;
	gap: 7.5rem;
}

.footer_logo {
	width: 14.2rem;
}

.footer_logo img {
	margin-bottom: 2.8rem;
}

.footer_logo p {
	width: 110%;
	font-size: 1.4rem;
	line-height: 2rem;
}

.footer_menu {
	width: 41.8rem;
}

.footer_menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 9.4rem;
}

.footer_menu ul li {
	width: 16.2rem;
}

.footer_menu ul li a {
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: bold;
}

.privacy {
	font-size: 1.4rem;
	line-height: 2rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

.copyright {
	font-size: 1.4rem;
	line-height: 2rem;
	text-align: center;
}

/* 下層ページ */

.page-fv {
	padding: 2rem 0;
	background-color: var(--light-green);
}

.page-fv .title {
	margin-bottom: 0;
}

.page-fv h1 {
	font-size: 3.2rem;
	line-height: 4.6rem;
	font-weight: bold;
}

.message {
	margin-top: 8.5rem;
}

.page_h2_g {
	color: var(--green);
	text-align: center;
	margin-bottom: 4.5rem;
	font-size: 3.2rem;
	line-height: 5.5rem;
	font-weight: bold;
}

.company {
	margin-top: 10.5rem;
}

.company_table {
	width: 100%;
	border-bottom: 1px solid #707070;
}

.company_table th,
.company_table td {
	padding: 2rem;
	font-size: 2rem;
	line-height: 2.9rem;
	font-weight: bold;
	border-top: 1px solid #707070;
}

.company_table th {
	width: 20rem;
	color: var(--green);
	background-color: var(--light-green);
}

.access {
	margin-top: 11rem;
	margin-bottom: 7.5rem;
}

.access_box {
	display: flex;
	justify-content: space-between;
}

.access_box p {
	width: 31rem;
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-weight: bold;
}

.googlemap {
	margin-top: 3rem;
	width: 60.7rem;
}

.googlemap iframe {
	width: 60.7rem;
	height: 38.3rem;
}

/* お問い合わせ */

.cf7-form {
	margin: 5rem 0;
}

.cf7-row { 
	margin-bottom: 4.5rem;
}

.cf7-head { 
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
}

.cf7-label { 
	margin: 0;
	font-weight: bold;
	font-size: 1.8rem;
}

.cf7-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 3rem;
	font-size: 1.6rem;
	font-weight:bold;
	color:var(--white);
}

.cf7-badge.req { 
	background: var(--green);
}

.cf7-badge.opt { 
	background :#767676;
}

.cf7-body {
	padding-left: 4rem;
}

.wpcf7-form-control-wrap {
	width: 62.2rem;
}

.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 2rem 1.5rem;
	border: 1px solid #cfcfcf;
	border-radius: 0.5rem;
	font-size: 1.8rem;
	font-weight: 500;
	outline: none;
}

.is-required input {
	background-color: #F7F7F7;
}

.cf7-form textarea {
	width: 92.1rem;
	max-height: 20rem;
	resize: vertical;
}

.cf7-form .wpcf7-list-item { 
	margin: 0 4rem 0 0; 
}

.cf7-form .wpcf7-list-item:last-child {
	margin: 0;
}

.cf7-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 500;
}

.cf7-form input[type="radio"],
.cf7-form input[type="checkbox"] { 
	transform: translateY(1px);
}

.cf7-form input[type="radio"] {
	width: 2.7rem;
	height: 2.7rem;
	accent-color: #16a34a;
	cursor: pointer;
}


/* CF7のチェックボックス全部 */
.cf7-form input[type="checkbox"] {
	width: 2.7rem;
	height: 2.7rem;
	accent-color: #16a34a; /* 緑 */
	cursor: pointer;
}

.cf7-checkgrid,
.cf7-other {
	padding-left: 3.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4rem;
}

.cf7-other {
	gap: 1rem;
}

.cf7-checkgrid label,
.cf7-other label {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 2.5rem;
}

.cf7-other label {
	margin-bottom: 0;
}

.reform-other-text {
	margin-left: 4.5rem;
}

@media (max-width: 768px){
	.cf7-checkgrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 送信ボタン */
.cf7-submit { 
	margin-top: 5rem;
	text-align:center;
}

.cf7-btn {
	width: 39rem;
	font-size: 2rem;
	line-height: 3.4rem;
	padding: 1.3rem 0;
	font-weight: 500;
	cursor: pointer;
	border: 0.1rem solid var(--green);
	box-shadow: 0.5rem 0.5rem var(--green);
	margin: auto;
	transition: box-shadow 0.5s ease, transform 0.5s ease;
	transition: all 0.5s;
}

.cf7-btn:hover {
	box-shadow: none;
	transform: translate(0.5rem, 0.5rem);
	color: var(--white);
	background-color: var(--green);
	transition: all 0.5s;
}

.cf7-submit span {
	display: block;
}

.page_template {
	margin: 8rem 0;
}

.page_template h2 {
	font-size: 2.8rem;
	margin-bottom: 3rem;
}

.page_template p {
	margin-bottom: 3rem;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	p {
		font-size: 1.6rem;
		line-height: 2;
	}

	h2 {
		font-size: 2.4rem;
		line-height: 1.5;
	}

	section {
		padding: 5rem 0!important;
		margin: 0!important;
	}

	.fv {
		padding: 0!important;
	}

	header {
		height: 5.5rem;
		background-color: var(--white);
	}

	.header_top {
		width: 30.9rem;
		margin-left: 0;
	}

	.header_top_left a {
		align-items: initial;
	}

	.header_logo img {
		width: 3.7rem;
		margin-right: 0.4rem;
	}

	.header_logo p {
		font-size: 0.78rem;
		line-height: 1.2;
	}

	.site_title {
		font-size: 1.7rem;
		line-height: 1.2;
	}

	.header_tel,
	.header_blog {
		display: none;
	}

	.header_line {
		font-size: 1.3rem;
		width: 8.8rem;
		height: 4.6rem;
	}

	.header_bottom {
		display: none;
	}

	.hamburger_menu {
		display: block;
		width: 3.3rem;
		height: 3.8rem;
		position: fixed;
		top: 1rem;
		right: 1.8rem;
		z-index: 10001;
	}

	.menu_btn {
		display: block;
		width: 3.3rem;
		height: 3.8rem;
		z-index: 10001;
		left: 0;
		right: 0;
		margin: auto;
		position: relative;
	}

	.menu_btn::before {
		position: absolute;
		content: "MENU";
		bottom: 0;
		left: -5%;
		right: 0;
		margin: auto;
		color: #707070;
		font-weight: bold;
		font-size: 1.05rem;
		text-align: center;
		width: 110%;
	}

	#menu_btn_check:checked + .menu_btn::before {
		content: "CLOSE";
	}

	.menu_btn span,
	.menu_btn span:before,
	.menu_btn span:after {
		content: '';
		display: block;
		height: 0.16rem;
		width: 3.3rem;
		background-color: var(--green);
		position: absolute;
		margin: auto;
		z-index: 81;
		/* box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5); */
	}

	.menu_btn span:before {
		top: 0.9rem;
		left: 0;
	}
	.menu_btn span::after {
		top: 1.8rem;
		left: 0;
	}
	#menu_btn_check:checked ~ .menu_btn span::after {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu_btn_check:checked ~ .menu_btn span {
		top: 1rem;
		transform: rotate(45deg);
	}

	#menu_btn_check:checked ~ .menu_btn span::before {
		top: 0;
		transform: rotate(-90deg);
	}

	#menu_btn_check {
		display: none;
	}

	.menu_content {
		width: 100%;
		position: fixed;
		top: 5.5rem;
		left: 100%;
		z-index: 10000;
		transition: all 0.5s;
		background-color: var(--light-green);
		padding-bottom: 2.8rem;
	}

	.menu_content .header_tel, 
	.menu_content .header_blog {
		display: block;
		margin-right: 0;
		text-align: center;
	}

	.menu_content .header_tel {
		width: 33.1rem;
		margin: auto;
		border: 1px solid #707070;
		border-radius: 1rem;
		background-color: var(--white);
		margin-top: 2.24rem;
		padding: 0.5rem 0 1.6rem 0;
	}

	.menu_content .header_tel a {
		font-size: 3.9rem;
		line-height: 5.7rem;
	}

	.menu_content .header_tel a::before {
		width: 3rem;
		height: 3rem;
	}

	.menu_content .header_blog {
		width: 33.1rem;
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: initial;
		margin-top: 1.6rem;
	}

	.menu_content .header_blog li {
		margin-bottom: 0;
	}

	.menu_content .header_blog a {
		width: 100%;
		color: #000;
		font-size: 1.8rem;
		line-height: 2.5rem;
		padding-left: 3.15rem;
		text-align: left;
	}

	.menu_content .header_blog a::before {
		left: 0.6rem;
	}

	.menu_content .nav {
		width: calc(100% - 2.08rem);
		margin: auto;
		margin-top: 4.15rem;
	}

	.menu_content .nav li > a {
		display: block;
		font-size: 1.8rem;
		line-height: 2.5rem;
		padding: 0.88rem 0;
		border-top: 1px solid #707070;
		padding-left: 2.1rem;
		font-weight: bold;
	}

	.menu_content .nav li:last-child {
		border-bottom: 1px solid #707070;
	}

	.menu_content .nav li > a.active {
		color: var(--green);
	}

	#menu_btn_check:checked ~ .menu_content {
		left: 0;
	}

	.menu_close {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 2.8rem auto 0;
		cursor: pointer;
	}

	.menu_close span {
		position: relative;
		width: 3.3rem;
		height: 3.3rem;
	}

	.menu_close span::before,
	.menu_close span::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 3.3rem;
		height: 0.16rem;
		background: var(--green);
	}

	.menu_close span::before {
		transform: rotate(45deg);
	}

	.menu_close span::after {
		transform: rotate(-45deg);
	}

	.menu_close p {
		font-size: 1.05rem;
		line-height: 1;
		font-weight: bold;
		color: #707070;
	}


	main {
		padding-top: 5.5rem;
	}

	.wrapper {
		width: calc(100% - 2.08rem);
		/* width: calc(100% - 40px); */
	}

	.fv_box img {
		height: 34.9rem;
		border-radius: 1.3rem;
	}

	.fv_txt {
		top: 1.74rem;
		left: 1.74rem;
	}

	.fv_maintxt {
		letter-spacing: 0.035em;
		font-size: 1.88rem;
		line-height: 2.9rem;
		margin-bottom: 1rem;
	}

	.fv_maintxt span {
		text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.76);
	}

	.fv_subtxt {
		font-size: 0.85rem;
		line-height: 1.5;
		padding: 0.6rem;
	}

	.event_lists {
		flex-wrap: wrap;
		gap: 3rem;
	}

	.event_lists li {
		width: 100%;
	}

	.event_lists li a {
		width: 100%;
	}

	.btn a {
		width: 100%;
		font-size: 1.6rem;
	}

	.reform_menu_tab {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1.5rem 4%;
		margin-bottom: 5rem;
	}

	.reform_menu_tab a {
		width: 48%;
		font-size: 1.6rem;
		height: 18rem;
		line-height: 2.4rem;
	}

	.reform_menu_tab img {
		width: 7rem;
		margin-bottom: 1.5rem;
		margin-top: 1.5rem;
	}

	.reform_menu_box {
		margin-bottom: 5rem;
	}

	.reform_menu_lists {
		gap: 2rem;
	}

	.reform_menu_lists li {
		width: 100%;
	}

	.reform_menu_lists li a {
		width: 100%;
		height: initial;
	}

	.reform_menu_lists h4 {
		font-size: 1.8rem;
		line-height: 1.5;
	}

	.full_reform img,
	.water_reform img,
	.outside_reform img {
		width: 12rem;
		margin-right: 2rem;
	}

	.water_reform span,
	.outside_reform span {
		font-size: 2rem;
		line-height: 2.4rem;
	}

	.work_lists {
		flex-wrap: wrap;
		gap: 3rem;
	}

	.work_lists li,
	.work_lists li a {
		width: 100%;
	}

	.voice_lists {
		flex-wrap: wrap;
		gap: 3rem;
	}

	.voice_lists li,
	.voice_lists li a {
		width: 100%;
	}

	.name {
		margin-top: 0;
	}

	.contact_box {
		flex-wrap: wrap;
		gap: 3rem;
	}

	.contact_tel {
		width: 100%;
		text-align: center;
	}

	.contact_tel span {
		display: block;
		text-align: center;
	}

	.contact_tel a {
		font-size: 4.1rem;
	}

	.contact_tel a::before {
		left: 1rem;
		width: 4rem;
		height: 4rem;
		top: 0.5rem;
	}

	.contact_other {
		width: 100%;
	}

	.contact_other a {
		width: 100%;
		font-size: 1.8rem;
	}

	.footer_box {
		flex-wrap: wrap;
		gap: 5rem;
	}

	.footer_logo {
		width: 100%;
		display: flex;
		align-items: center;
		gap: 2rem;
	}

	.footer_logo img {
		width: 10rem;
		margin-bottom: 0;
	}

	.footer_logo p {
		width: 100%;
		font-size: 1.6rem;
	}

	.footer_menu ul {
		gap: 1rem;
		margin-bottom: 5rem;
	}

	.footer_menu ul li {
		width: 17rem;
	}

	.footer_menu ul li a {
		font-size: 1.6rem;
	}

	/* 下層ページ */
	.page-fv {
		padding: 2rem 0!important;
	}

	.page-fv h1 {
		font-size: 2.4rem;
		line-height: 3.6rem;
	}

	.page_h2_g {
		font-size: 2.4rem;
		margin-bottom: 2rem;
		line-height: 1.5;
	}

	.company_table th,
	.company_table td {
		padding: 2rem 0 2rem 1rem;
		font-size: 1.6rem;
	}

	.company_table th {
		width: 14rem;
	}

	.access_box {
		flex-wrap: wrap;
	}

	.access_box p {
		width: 100%;
	}

	.googlemap {
		width: 100%;
	}

	.googlemap iframe {
		width: 100%;
		height: 38.3rem;
	}

	.cf7-row {
		margin-bottom: 3rem;
	}

	.cf7-head {
		margin-bottom: 2rem;
	}

	.cf7-body {
		padding-left: 0;
	}

	.wpcf7-form-control-wrap {
		width: 100%;
	}

	.cf7-checkgrid,
	.cf7-other {
		padding-left: 0;
	}

	.cf7-form input[type="text"],
	.cf7-form input[type="email"],
	.cf7-form input[type="tel"],
	.cf7-form textarea{
		width: 100%;
		box-sizing: border-box;
		padding: 1rem;
		border: 1px solid #cfcfcf;
		border-radius: 0.5rem;
		font-size: 1.8rem;
		font-weight: 500;
		outline: none;
	}

	.cf7-form input[type="radio"],
	.cf7-form input[type="checkbox"] {
		width: 2rem;
		height: 2rem;
	}

	.cf7-form .wpcf7-list-item {
		margin: 0 2rem 0 0;
	}

	.cf7-form .wpcf7-list-item label {
		margin-bottom: 1rem;
	}

	.reform-other-text {
		margin-left: 0;
	}

	.cf7-form textarea {
		width: 100%;
	}

	.cf7-btn {
		width: 100%;
	}

	.page_template h2 {
		font-size: 2rem;
		line-height: 1.5;
	}
}