@charset "UTF-8";

/*#breadcrumbs,
h1.hdl01{
	display: none;
}*/

.hdl02 span{
	color: #C00;
}

/* ------------------------------------------- */
/* edit-area contact */
/* ------------------------------------------- */
.edit-area.contact{
	padding: 60px 0;
	background: #FFF;
}
@media screen and (max-width: 767px){
	.edit-area.contact{
		padding: 40px 0;
	}
}

.edit-area.contact .offer-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
@media screen and (max-width: 767px){
	.edit-area.contact .offer-list{
		justify-content: center;
	}
}
.edit-area.contact .offer-list li{
	width: 32.3%;
	max-width: 300px;
}
@media screen and (max-width: 767px){
	.edit-area.contact .offer-list li{
		margin-bottom: 20px;
		width: 100%;
	}
	.edit-area.contact .offer-list li:last-child{
		margin-bottom: 0;
	}
}

.edit-area.contact .offer-list li a{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	width: 100%;
	height: 170px;
	text-align: center;
	text-decoration: none;
	background: #FFF;
	border: 1px solid #00A0E8;
	transition: ease .25s color;
}

@media screen and (min-width: 1025px){
	.edit-area.contact .offer-list li a:hover{
		color: #00A0E8;
	}
}
.edit-area.contact .offer-list li a:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
	border: 4px solid transparent;
	border-left-color: #FFF;
}

.edit-area.contact .offer-list li a:before{
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -10px;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background: #00A0E8;
}
.edit-area.contact .offer-list li .icon{
	margin: 10px 0 20px;
}
.edit-area.contact .offer-list li .text{
	height: 45px;
	font-weight: bold;
}
.edit-area.contact .offer-list li .text span{
	color: #C00;
	font-size: 1.4rem;
}


/*-------------------------------------------*/
/*edit-area faq-list*/
/*-------------------------------------------*/

.edit-area{
	counter-reset: number;
}
.edit-area .faq-list{
	margin-bottom: 60px;
}
.edit-area .faq-list li{
	counter-increment: number;
	margin-bottom: 10px;
}
.edit-area .faq-list li dt{
	position: relative;
	display: block;
	padding: 15px 20px 15px 60px;
	font-weight: bold;
	line-height: 140%;
	text-decoration: none;
	vertical-align: middle;
	box-sizing: border-box;
	border-radius: 3px;
	border: 1px solid #DDD;
	cursor: pointer;
}
.edit-area .faq-list li dt:hover{
	background: #FAFAFA;
}

.edit-area .faq-list li dt:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #29C5A0;
	border-right: 2px solid #29C5A0;
	box-sizing: border-box;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.edit-area .faq-list li dt.on:after{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}


.edit-area .faq-list li dt:before{
	content: "Q"counter(number);
	position: absolute;
	left: 10px;
	top: 10px;
	display: inline-block;
	width: 32px;
	height: 32px;
	color: #FFF;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	line-height: 30px;
	border-radius: 16px;
	box-sizing: border-box;
	background: #29C5A0;
}

.edit-area .faq-list li dd{
	display: none;
	position: relative;
	padding: 10px 0 10px 60px;
	margin-bottom: 30px;
	color: #000;
	line-height: 26px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1.5px;
}



.edit-area .faq-list li dd:before{
	content: "A";
	position: absolute;
	left: 10px;
	top: 10px;
	display: inline-block;
	width: 32px;
	height: 32px;
	color: #FFF;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	line-height: 30px;
	border-radius: 16px;
	box-sizing: border-box;
	background: #FF9833;
}

.edit-area .faq-list li .bottom{
	display: inline-block;
	margin-bottom: 20px;
}
.edit-area .faq-list li .bottom.img:hover img{
	opacity: 0.6;
}
.edit-area .faq-list li .color{
	color: #EF0000;
}
.edit-area .faq-list li .natural{
	font-size: 14px;
	font-weight: normal;
}
.edit-area .faq-list li .indent {
	text-indent: -1rem;
	padding-left: 14px;
}
.edit-area .faq-list li .small{
	font-weight: normal;
	font-size: 12px;
}
.edit-area .faq-list li .normal{
	font-size: 14px;
	font-weight: normal;
}