/* ---------------------------------------- */
/* 基本 */
/* ---------------------------------------- */

:root {
	--blue: #0068B7;
	--green1: #009A44;
	--roboto: "Roboto", sans-serif;
}
.quotation-page {
	background-color: #ffffff;
}

/* ---------------------------------------- */
/* .header */
/* ---------------------------------------- */

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	border-bottom: 1px solid #dddddd;
	z-index: 1000;
}
.header > .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
}
.header .nav-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.header .nav-wrap {
	font-size: 15px;
}

/* .site-logo */
.header .site-logo {
	line-height: 1;
	font-size: 20px;
	margin: 0;
	padding: 0 0 0 40px;
	transition: top 0.3s;
}
.header .site-logo a {}
.header .site-logo img {
	transition: width 0.3s;
}
@media (max-width: 991px) {
	.header .site-logo {
		padding-left: 20px;
	}
	.header .site-logo img {
		width: 120px;
	}
}
@media (max-width: 767px) {
	.header .site-logo img {
		width: 100px;
	}
}

/* .nav-upper */
.header .nav-upper > ul {
	display: flex;
	justify-content: flex-end;
}
.header .nav-upper > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #F3F3F3;
	height: 40px;
	padding: 0 15px;
}
.header .nav-upper > ul > li::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 1px;
	height: 15px;
	background-color: #999999;
}
.header .nav-upper > ul > li:first-child::before {
	content: none;
}
.header .nav-upper > ul > li.has-child:hover::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	content: "";
	width: 15px;
	height: 10px;
	background-color: var(--green1);
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	z-index: 2;
}
.header .nav-upper > ul > li > a {
	font-weight: 700;
	transition: 0.3s;
}

/* .nav-ul-child */
@media (min-width:768px) {
	.header .nav-upper > ul > li > a:hover {
		color: var(--green1);
	}
	.header .nav-ul-child {
		display: block;
		position: fixed;
		top: 40px;
		left: 0;
		width: 100lvw;
		background-color: #ffffff;
		border-top: 1px solid #eeeeee;
		padding: 40px 40px 20px;
		box-shadow: 0 20px 20px rgba(0,0,0,0.1);
		transition: opacity 0.3s,visibility 0.3s;
		opacity: 0;
		visibility: hidden;
	}
	.header .nav-upper > ul > li:hover .nav-ul-child {
		opacity: 1;
		visibility: visible;
		z-index: 1;
	}
	.header .nav-ul-child > dl {
		display: flex;
		max-width: 1200px;
		margin: 0 auto;
	}
	.header .nav-ul-child > dl > dt {}
	.header .nav-ul-child .cat-title {
		line-height: 1.2;
		font-size: 48px;
		font-family: "Outfit", "Noto Sans JP", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		margin-bottom: 0.1em;
	}
	.header .nav-ul-child .cat-title::first-letter {
		color: #009A44;
	}
	.header .nav-ul-child .sub-title {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4;
		margin-bottom: 2em;
	}
	.header .nav-ul-child .btn-wrap {
	}
	.header .nav-ul-child .btn-wrap a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 14px;
		font-weight: 700;
		width: 240px;
		height: 50px;
		color: #ffffff;
		background: linear-gradient(70deg, #0068B7, #009A44);
		border-radius: 50px;
		text-decoration: none;
	}
	.header .nav-ul-child .btn-wrap a::after {
		transition: right 0.3s;
	}
	.header .nav-ul-child .btn-wrap a::after {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		content: "\f105";
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: 1.2em;
		text-rendering: auto;
		color: #ffffff;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.header .nav-ul-child .btn-wrap a:hover::after {
		right: 15px;
	}
	.header .nav-ul-child > dl > dd {
		flex-basis: 723px;
		margin: 0 0 0 auto;
	}
	.header .nav-ul-child ul {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -20px;
		padding: 0;
	}
	.header .nav-ul-child ul > li {
		flex-basis: 50%;
		max-width: 50%;
		margin: 0;
		padding: 0 20px 20px;
	}
	.header .nav-ul-child ul > li > a {
		display: flex;
		align-items: center;
		color: #333333;
	}
	
	.header .nav-ul-child ul > li > a .img-wrap {
		position: relative;
		margin-right: 20px;
	}
	.header .nav-ul-child ul > li > a .img-wrap::after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		content: "";
		background-color: #001E34;
		opacity: 0.5;
		transition: opacity 0.3s;
	}
	.header .nav-ul-child ul > li > a .img-wrap img {
		width: 80px;
		height: 80px;
		object-fit: cover;
	}
	.header .nav-ul-child ul > li > a .text-wrap {
		transition: opacity 0.3s;
	}
	.header .nav-ul-child ul > li > a .text-wrap .num {
		display: block;
		line-height: 1.6;
		font-size: 14px;
		font-family: "Outfit", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
		padding-left: 20px;
		margin-bottom: 0.25em;
	}
	.header .nav-ul-child ul > li > a .text-wrap .num::before {
		position: absolute;
		transform: translate(-20px,0.8em);
		content: "";
		width: 15px;
		border-top: solid 1px #333333;
	}
	.header .nav-ul-child ul > li > a .text-wrap .text {
		line-height: 1.6;
		font-size: 15px;
		font-weight: 700;
		margin-bottom: 0;
	}
	.header .nav-ul-child ul > li > a:hover {}
	.header .nav-ul-child ul > li > a:hover .img-wrap::after {
		opacity: 0;
	}
	.header .nav-ul-child ul > li > a:hover .text-wrap {
		opacity: 0.6;
	}
}
@media (max-width:1199px) {
	
}

/* .nav-lower */
.header .nav-lower {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 15px;
}
.header .nav-lower .icon-wrap > ul,
.header .nav-lower .button-wrap > ul {
	display: flex;
	align-items: center;
}
.header .nav-lower .icon-wrap > ul > li {
	display: flex;
	align-items: center;
	height: 70px;
	margin-right: 3em;
}
.header .nav-lower .icon-wrap > ul > li > a {
	position: relative;
	display: block;
	font-size: 130%;
	font-weight: 700;
}
.header .nav-lower .icon-wrap > ul > li:nth-child(2) > a {
	padding-left: 1.2em;
}
.header .nav-lower .icon-wrap > ul > li:nth-child(2) > a::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 90%;
	font-family: FontAwesome;
	font-weight: normal !important;
	content: "\f003";
	color: var(--green1);
}
.header .tel-wrap dl {
	line-height: 1.1;
}
.header .tel-wrap dl dt {
	font-family: var(--roboto);
	font-size: 160%;
}
.header .tel-wrap dl dt span {
	color: var(--green1);
}
.header .tel-wrap dl dd {
	font-size: 85%;
}
.header .button-wrap ul,
.header .button-wrap ul li {
	margin-left: 10px;
}
.header .button-wrap ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 130px;
	height: 40px;
	font-size: 105%;
	font-weight: 700;
	border-radius: 5px;
}
.header .button-wrap ul li:nth-child(1) a {
	border: 1px solid #707070;
}
.header .button-wrap ul li:nth-child(1) a::before {
	font-family: FontAwesome;
	font-weight: normal !important;
	content: "\f090";
	color: var(--green1);
	margin-right: 0.4em
}
.header .button-wrap ul li:nth-child(2) a {
	background-color: var(--green1);
	color: #ffffff;
}

/* .product-list */
.header .nav-lower .icon-wrap > ul > li.products {
	position: relative;
}
.header .nav-lower .icon-wrap > ul > li.products:hover::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	content: "";
	width: 15px;
	height: 10px;
	background-color: var(--green1);
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	z-index: 2;
}
.header .product-list {
	display: block;
	position: fixed;
	top: 110px;
	left: 50%;
	transform: translateX(-50%);
	width: 100lvw;
	max-width: 1150px;
	background-color: #ffffff;
	border-top: 1px solid #eeeeee;
	padding: 30px;
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
	transition: opacity 0.3s,visibility 0.3s;
	opacity: 0;
	visibility: hidden;
}
.header .nav-lower .icon-wrap ul li:hover .product-list {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
.header .product-list .row-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.header .product-list .col-list {
	width: 25%;
	border-right: 1px solid #dddddd;
	padding: 0 15px;
}
.header .product-list .col-list:last-child {
	border-right: none;
}
.header .product-list .col-list .title {
	font-size: 16px;
	color: #ffffff;
	text-align: center;
	background-color: var(--green2);
	padding: 5px 10px;
	margin: 0 0 20px 0;
}
.header .product-list .col-list ul {
	margin: 0 -5px;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.header .product-list .col-list ul li {
	width: 50%;
	padding: 0 5px;
	margin-bottom: 15px;
}
.header .product-list .col-list ul li a {
	display: block;
	transition: 0.3s;
}
.header .product-list .col-list ul li a dl dt {
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.header .product-list .col-list ul li a dl dt img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}
.header .product-list .col-list ul li a:hover {
	color: var(--green2);
}
.header .product-list .col-list ul li a:hover dl dt img {
	scale: 1.1;
}
.header .product-list .col-list ul li dl dd {
	font-size: 13px;
	font-weight: 700;
	margin-top: 5px;
}
.header .product-list .col-list ul li a.off {
	pointer-events: none;
}

/* PCレスポンシブ */
@media (max-width: 1199px) {
	.header .nav-wrap {
		font-size: 13px;
	}
	.header .nav-lower .icon-wrap > ul > li {
		margin-right: 2.5em;
	}
	.header .button-wrap ul li a {
		width: 110px;
		height: 35px;
	}
}

/*スクロールで薄く*/
.header .nav-wrap {
	transition: font-size 0.3s;
}
.header .nav-upper > ul > li,
.header .nav-lower .icon-wrap > ul > li {
	transition: height 0.3s;
}
.header .button-wrap ul li a {
	transition: width 0.3s, height 0.3s;
}
.header .nav-ul-child,
.header .product-list {
	transition: 0.3s;
}
@media (min-width:992px) {
	.header.narrow .site-logo img {
		width: 136px;
	}
	.header.narrow .nav-wrap {}
	.header.narrow .nav-upper > ul > li {
		height: 30px;
	}
	.header.narrow .nav-lower .icon-wrap > ul > li {
		height: 50px;
	}
	.header.narrow .button-wrap ul li a {
		width: 120px;
		height: 35px;
	}
	.header.narrow .nav-ul-child {
		top: 30px;
	}
	.header.narrow .product-list {
		top: 80px;
	}
}
@media (max-width: 1199px) {
	.header.narrow .button-wrap ul li a {
		width: 110px;
		height: 35px;
	}
}

/*スマホナビ*/
@media (min-width:992px) {
	.header .nav-wrap-sp,
	.nav-sp-menu {
		display: none !important;
	}
}
@media (max-width:991px) {
	body.fixed {
		position: relative;
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
	.header {
		border-bottom: 1px solid #dddddd;
	}
	.header > .inner {
		height: 60px;
	}
	.header .nav-wrap {
		display: none;
	}
	.header .nav-wrap-sp {
		display: flex;
		padding-right: 15px;
	}
}

/* .nav-wrap-sp */
.header .nav-wrap-sp ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.header .nav-wrap-sp .member-wrap ul {
	display: flex;
	justify-content: center;
}
.header .nav-wrap-sp .member-wrap ul li {
	margin-left: 5px;
}
.header .nav-wrap-sp .member-wrap ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 40px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	border-radius: 5px;
}
.header .nav-wrap-sp .member-wrap ul li:nth-child(1) a {
	border: 1px solid #707070;
}
.header .nav-wrap-sp .member-wrap ul li:nth-child(2) a {
	background-color: var(--green1);
	color: #ffffff;
}
.header .nav-wrap-sp .hamburger {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 40px;
	height: 40px;
	background-color: var(--blue);
	color: #ffffff;
	line-height: 1;
	margin-left: 10px;
	cursor: pointer;
}
.header .nav-wrap-sp .hamburger dl {
	
}
.header .nav-wrap-sp .hamburger dl dt {
	position: relative;
	width: 100%;
	height: 6px;
}
.header .nav-wrap-sp .hamburger dl dt::before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -3px);
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	transition: 0.3s;
}
.header .nav-wrap-sp .hamburger dl dt::after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, 3px);
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	transition: 0.3s;
}
.header .nav-wrap-sp .hamburger dl dd {
	font-family: var(--roboto);
	font-weight: 700;
	font-size: 8px;
	margin-top: 8px;
}
.header .nav-wrap-sp .hamburger.open dl dt::before {
	transform: translate(-50%, -50%) rotate(15deg);
}
.header .nav-wrap-sp .hamburger.open dl dt::after {
	transform: translate(-50%, -50%) rotate(-15deg);
}

/* .nav-sp-menu */
.nav-sp-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
	background-color: #ffffff;
	z-index: 100;
	display: none;
}
.nav-sp-menu .inner {
	padding: 59px 0 100px 0;
}
.nav-sp-menu .nav-list {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: 1px solid #dddddd;
}
.nav-sp-menu .nav-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.nav-sp-menu .nav-list ul li {
	border-top: 1px solid #dddddd;
}
.nav-sp-menu .nav-list ul li .product,
.nav-sp-menu .nav-list ul li .aco,
.nav-sp-menu .nav-list ul li a {
	position: relative;
	display: block;
	padding: 12px 40px 12px 0;
}
.nav-sp-menu .nav-list ul li .aco::before {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 10px;
	height: 2px;
	background-color: var(--green1);
}
.nav-sp-menu .nav-list ul li .aco::after {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	content: "";
	width: 10px;
	height: 2px;
	background-color: var(--green1);
	transition: 0.3s;
}
.nav-sp-menu .nav-list ul li .aco.open::after {
	transform: translateY(-50%);
}
.nav-sp-menu .nav-list ul li a::after {
	position: absolute;
	right: 23px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--green1);
	border-right: 2px solid var(--green1);
}
.nav-sp-menu .nav-list ul li .aco + ul {
	display: none;
}
.nav-sp-menu .nav-list > ul > li .product,
.nav-sp-menu .nav-list > ul > li .aco,
.nav-sp-menu .nav-list > ul > li > a {
	padding-left: 20px;
}
.nav-sp-menu .nav-list > ul > li > ul {
	background-color: #F3F3F3;
}
.nav-sp-menu .nav-list > ul > li > ul > li .aco,
.nav-sp-menu .nav-list > ul > li > ul > li > a {
	padding-left: 30px;
}
.nav-sp-menu .nav-list > ul > li > ul > li > ul {
	background-color: #666666;
}
.nav-sp-menu .nav-list > ul > li > ul > li > ul > li {
	border-top: 1px solid rgba(255,255,255,0.25);
}
.nav-sp-menu .nav-list > ul > li > ul > li > ul > li .aco,
.nav-sp-menu .nav-list > ul > li > ul > li > ul > li a {
	font-size: 15px;
	color: #ffffff;
	padding-left: 40px;
}
.nav-sp-menu .nav-list > ul > li > ul > li > ul > li a::after {
	border-color: #ffffff;
}
.nav-sp-menu .container {
	text-align: center;
}
.nav-sp-menu .tel-wrap {
	line-height: 1.4;
	margin: 30px 0 20px 0;
}
.nav-sp-menu .tel-wrap dl dt {
	font-family: var(--roboto);
	font-size: 24px;
}
.nav-sp-menu .tel-wrap dl dt span {
	color: var(--green1);
}
.nav-sp-menu .tel-wrap dl dd {
	font-size: 12px;
}
.nav-sp-menu .brn-wrap a {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 240px;
	min-height: 45px;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background-color: #009A44;
	text-decoration: none;
	padding: 10px 20px;
	margin-top: 10px;
}
.nav-sp-menu .brn-wrap a::after {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%);
	content: "";
	display: block;
	font-size: 15px;
	width: 1em;
	height: 1em;
	background-image: url('../img/common/footer-nav-btn-arrow.png');
	background-size: 1em;
}
.nav-sp-menu .brn-wrap a:nth-child(2) {
	background-color: #0068B7;
}
@media (min-width:768px) {
	.nav-sp-menu a {
		transition: 0.3s;
	}
	.nav-sp-menu a:hover {
		opacity: 0.5;
	}
}









