#wrap {
	width: 100%;
	overflow: hidden;
}

.banner_wrap {
	position: relative;
}
.banner_wrap .banner img {
	width: 100%;
}
.banner_wrap nav {
	margin-top: 2.2rem;
	padding: 1.8rem;
	border-bottom: 4px solid #d3d3d3;
}
.banner_wrap nav ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.banner_wrap nav ul li a img {
	width: 100%;
}
.banner_wrap .service {
	position: absolute;
	top: 34%;
	right: -30rem;
	display: flex;
	z-index: 999;
	transition: all 0.6s;
}
.banner_wrap .service .deco {
	content: "";
	display: block;
	position: absolute;
	top: 20%;
	left: -31rem;
	width: 28rem;
	height: 100%;
	background: url("../img/deco.png") no-repeat 0 0 / contain;
	z-index: 999;
	transition: all 0.4s;
	opacity: 1;
}
.banner_wrap .service button {
	position: absolute;
	top: 0;
	left: -2.5rem;
	width: 3.1rem;
	height: 100%;
	background: url("../img/open.png") no-repeat 0 0 / contain;
	border: none;
	outline: none;
	cursor: pointer;
}
.banner_wrap .service.on button {
	position: absolute;
	top: 0;
	left: -2.5rem;
	width: 3.1rem;
	height: 100%;
	background: url("../img/close.png") no-repeat 0 0 / contain;
	border: none;
	outline: none;
	cursor: pointer;
}
.banner_wrap .service.on {
	transform: translateX(-99%);
}
.banner_wrap .service ul {
	display: flex;
	height: 6rem;
	align-items: center;
	font-size: 1.5rem;
	background-color: #fff;
	border: 1px solid #bbb;
	border-right: none;
}
.banner_wrap .service ul li {
	height: 100%;
}
.banner_wrap .service ul li a {
	display: flex;
	align-items: center;
	text-align: center;
	line-height: 1.2;
	font-weight: 600;
	color: #172c67;
	padding: 1rem 1.5rem;
	height: 100%;
	position: relative;
}
.banner_wrap .service ul li:not(:last-child) a::after {
	content: "";
	width: 1px;
	height: 70%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background-color: #ddd;
}


.main {
	background-color: #eaeaea;
	padding: 2.5rem 1.5rem;
}
.main .container {
	background-color: #fff;
	padding: 2rem;
	margin-bottom: 2.5rem;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
}

.main .container:last-child {
	margin-bottom: 0;
}
.main .container .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	    padding-bottom: 1rem;
}
.main .qna.container .title {
    border-bottom: 2px solid #a2c56e
	}
.main .container .title h2 {
width:11rem;
}
.main .container .title h2 img {width:100%}
.main .container .title a {
width:8rem
}
.main .container .title span img {
width:100%
} 



.main .news .title h2 {
}
.main .qna .title h2 {
}
.main .qna .list_wrap ul li a {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	padding: 1.3rem 3rem 1.3rem 0;
	border-bottom: 1px solid #ddd;
	letter-spacing: -.1rem;
	line-height: 1.5;
	position: relative;
}
.main .qna .list_wrap ul li:last-child a {
	border-bottom: none;
}
.main .qna .list_wrap ul li a::before {
	content: "Q. ";
	color: #0aa966;
}
.main .qna .list_wrap ul li a::after {
	content: "";
	width: 2.2rem;
	height: 2.2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background: url("../img/arrow1.png") no-repeat 0 0 / cover;
}
