@charset "utf-8";
.header {
	width: 100%;
	height: 6.875rem;
	top: -1px;
	background-color: var(--back);
	position: -webkit-sticky;
	position: sticky;
	display: flex;
	z-index: 999;
}
.header-inner {
	width: 100%;
	margin: 0 clamp(2rem, -19.3125rem + 31vw, 9.75rem);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	display: flex;
	width: 10.125rem;
	height: auto;
}
.logo img {
	width: 100%;
}
.main-nav {
	display: flex;
	align-items: center;
	margin-left: auto;
}
.main-nav a {
	color: #FFFCF1;
}
.main-nav .sub-menu {
	display: none;
}
.main-menu ul {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 700;
	gap: clamp(2rem, -3.5602rem + 8.0802vw, 4.015rem);
}
.main-menu ul li:not(:nth-child(4)):not(:nth-child(5))::after {
	position: absolute;
	content: "";
	width: 3px;
	height: 3px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	margin-left: clamp(1rem, -1.7594rem + 4.01vw, 2rem);
	background-color: #FFFCF1;
}
/* コンタクトボタン */
.header-contact {
	margin-left: clamp(0.5rem, -2.5481rem + 5.8407vw, 2.5625rem);
	display: flex;
	gap: clamp(0.5rem, -0.4417rem + 1.8045vw, 1.25rem);
}
.header-contact .header-contact-block {
	text-align: center;
}
.header-contact .header-contact-block .header-contact-attention {
	position: relative;
	margin-bottom: 7px;
	color: #FFFCF1;
	font-weight: 500;
}
.header-contact-attention::before, .header-contact-attention::after {
	position: absolute;
	content: "";
	top: 50%;
	width: 20px;
	height: 1px;
	background-color: #FFFCF1;
}
.attention-label1::before {
	left: -.5rem;
	transform: rotate(53deg);
}
.attention-label1::after {
	right: -.5rem;
	transform: rotate(-53deg);
}
.attention-label2::before {
	left: .5rem;
	transform: rotate(53deg);
}
.attention-label2::after {
	right: .5rem;
	transform: rotate(-53deg);
}
.header-contact .header-contact-block .header-contact-button {
	width: 12.5rem;
	height: 2.5rem;
	background-color: #FFFCF1;
	font-size: 1rem;
	color: #41745C;
	text-decoration: underline;
	text-underline-offset: 2px;
	-webkit-text-underline-offset: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2rem;
}
.header-blog-inner {
	display: none;
}
@media(max-width:1100px) {
	.header {
		height: clamp(4.375rem, -3.5024rem + 15.0943vw, 6.875rem);
	}
	.header-inner {
		margin: 0 1.5625rem;
	}
	.logo {
		width: clamp(6.25rem, 3.8566rem + 9.1176vw, 10.125rem);
	}
	.logo img {
		width: 100%;
	}
	.header-inner #humburger {
		width: 1.5625rem;
		height: 1.5625rem;
		margin: auto 0;
		display: inline-block;
		position: relative;
		background-color: transparent;
		cursor: pointer;
		border: none;
		z-index: 999;
	}
	.header-inner #humburger span {
		width: 1.25rem;
		height: 1.2px;
		top: 50%;
		left: 50%;
		position: absolute;
		background-color: #FFFCF1;
	}
	.header-inner #humburger span:nth-of-type(1) {
		transform: translate(-50%, calc(-50% - 0.6rem));
		transition: transform 0.3s ease;
	}
	.header-inner #humburger span:nth-of-type(2) {
		transform: translate(-50%, -50%);
		transition: opacity 0.3s ease;
	}
	.header-inner #humburger span:nth-of-type(3) {
		transform: translate(-50%, calc(-50% + 0.6rem));
		transition: transform 0.3s ease;
	}
	/* 展開時 */
	.header-inner #humburger.close span:nth-of-type(1) {
		width: 1.5rem;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.header-inner #humburger.close span:nth-of-type(2) {
		opacity: 0;
	}
	.header-inner #humburger.close span:nth-of-type(3) {
		width: 1.5rem;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.main-nav {
		width: 100%;
		height: 100%;
		max-height: 0;
		top: clamp(4.25rem, -3.6274rem + 15.0943vw, 6.75rem);
		right: 0;
		background-color: var(--back);
		opacity: 0;
		overflow: hidden;
		position: fixed;
		z-index: 990;
		transition: all 0.5s;
		flex-direction: column;
		align-items: flex-start;
	}
	.main-nav.panelactive {
		max-height: 32rem;
		opacity: 1;
		transition: all 0.9s;
	}
	.main-nav a {
		text-decoration: underline;
		text-underline-offset: 2px;
	-webkit-text-underline-offset: 2px;
	}
	.main-nav .PC-none {
		display: flex;
	}
	.main-menu, .sub-menu, .header-contact {
		width: 100%;
		padding: 0 1.5625rem;
	}
	.main-menu ul {
		width: 100%;
		padding: 1rem 0 2.5rem;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		text-align: left;
		gap: 2.5rem 0;
	}
	.main-menu ul li.list-break {
    grid-column: 1 / -1;
  }
	.main-menu ul .last-list {
		width: 100%;
		order: 1;
	}
	.main-menu ul li, .sub-menu ul li {
		position: relative;
		padding-left: .875rem;
		line-height: 1;
	}
	.main-menu ul li:not(:nth-child(4)):not(:nth-child(5))::after {
		display: none;
	}
	.main-menu ul li::before {
		position: absolute;
		content: "";
		width: 3px;
		height: 3px;
		top: .5em;
		transform: translateY(-50%) rotate(45deg);
		left: 0;
		background-color: #FFFCF1;
	}
	/* 対応工事 */
	.last-list a {
		position: relative;
		width: 200%;
		display: flex;
	}
	.last-list a::before {
		position: absolute;
		content: "";
		top: 50%;
		transform: translateY(-50%);
		margin-left: 6.5rem;
		width: calc(100% - 6.5rem);
		height: 1px;
		background-color: #FFFCF1;
	}
	.last-list a::after {
		position: absolute;
		content: "";
		top: 50%;
		right: 0;
		transform: translateY(-50%) rotate(45deg);
		width: 5px;
		height: 5px;
		background-color: #FFFCF1;
	}
	/* サブメニュー */
	.main-nav .sub-menu {
		display: flex;
	}
	.sub-menu ul {
		width: 100%;
		padding-bottom: 3.75rem;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		text-align: left;
		gap: 2.5rem 0;
	}
	.header-contact {
		margin: 0;
		justify-content: center;
		gap: 1.25rem;
	}
	.header-blog-inner {
		width: 100%;
		display: inline-flex;
		justify-content: center;
	}
	.header-bloglink {
		margin: 1.875rem 1.5625rem 0;
	}
	.header-bloglink img {
		max-width: 25rem;
	}
}
@media(max-width:834px) {
	.header {
		height: 4.375rem;
	}
	.main-nav.panelactive {
		max-height: 40rem;
	}
	.main-menu ul {
		font-size: clamp(0.8125rem, 0.6397rem + 0.6912vw, 1rem);
	}
	.main-menu ul, .sub-menu ul {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		text-align: left;
		gap: 2.5rem 0;
	}
	.sub-menu ul {
		padding-bottom: 1.875rem;
		font-size: clamp(0.75rem, 0.6348rem + 0.4608vw, 0.875rem);
	}
	.last-list a {
		width: auto;
	}
	/* コンタクトボタン */
	.header-contact .header-contact-block .header-contact-attention {
		font-size: clamp(0.8125rem, 0.6397rem + 0.6912vw, 1rem);
	}
	.attention-label2::before {
		left: .8rem;
		transform: rotate(53deg);
	}
	.attention-label2::after {
		right: .8rem;
		transform: rotate(-53deg);
	}
	.header-contact .header-contact-block .header-contact-button {
		width: clamp(10rem, 7.6959rem + 9.2166vw, 12.5rem);
		font-size: clamp(0.8125rem, 0.6397rem + 0.6912vw, 1rem);
	}
	.header-bloglink img {
		max-width: 21.25rem;
	}
}