@charset "utf-8";
/* CSS Document */

#lower-image {
	background: url(../../images/main_image.jpg) center -150px;
	background-size: cover;
}

#lower-contents #main-contents h2 {
	clear: none;
}

#lower-contents #main-contents h3 {
	display: block;
}

#main-contents section {
	clear: both;
	overflow: hidden;
}

#main-contents section ul {
	margin-top: 10px;
	clear: both;
}

#main-contents #flow a {
	color: var(--color-link);
	font-weight: bold;
	text-decoration: underline;
	display: inline;
}

#main-contents #flow a:hover {
	text-decoration: none;
}

#main-contents dt {
	color: var(--color-link);
	font-weight: bold;
}

#main-contents dd {
}

#main-contents dd span {
	color: #F05C9E;
	font-weight: bold;
}

#main-contents #support {
	width: 100%;
	padding: 20px;
	margin-bottom: 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-sizing: border-box;
}

#main-contents #support li {
	padding: 20px 0;
	vertical-align: top;
	box-sizing: border-box;
}

#main-contents #support h4 {
	position: relative;
	margin-bottom: 20px;
	padding-left: 30px;
	font-size: 1.4rem;
	color: #46A9D9;
}

#main-contents #support h4:before {
	position: absolute;
	top: -3px;
	left: 0;
	content: "";
	width: 22px;
	height: 22px;
	background: url(../images/face_sad.png) left center no-repeat;
	background-size: 22px 22px;
}

#lower-contents #main-contents #support p {
	position: relative;
	padding-left: 30px;
}

#main-contents #support p:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 22px;
	height: 22px;
	background: url(../images/face_smile.png) left center no-repeat;
	background-size: 22px 22px;
}

#main-contents .float {
	max-width: 260px;
	text-align: center;
	margin: 0 auto 30px;
}

#main-contents .box {
	padding: 30px;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 10px;
	box-sizing: border-box;
}

#lower-contents #main-contents .box h2 {
	margin-top: 0;
	margin-bottom: 10px;
	padding: 0;
	font-size: 16px;
	font-size: 1.6rem;
	color: var(--color-link);
}

#main-contents .box h2:before {
	display: none;
}

.faq {
}

.faq dl {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 20px 0;
}

.faq dt {
}

.faq dd {
}

.flow {
	
}

.flow li {
	position: relative;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 2.0em 0 !important;
	margin: 0 !important;
}

.flow li:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 32px;
	height: 32px;
	margin: auto;
	padding: 10px;
	z-index: 1;
	background: #fff url(/common/images/flow_arrow.png) center no-repeat;
	background-size: 50%;
	transform: translateY(50%);
}

.flow > *:last-child:after {
	display: none !important;
}

.flow .ttl {
	font-weight: normal !important;
	color: rgb(0, 0, 0) !important;
}

.flow .flow-num {
	display: inline-block;
	width: 20px;
	margin-right: 10px;
	padding: 0 !important;
	text-align: left;
	font-weight: bold !important;
	color: var(--color-link) !important;
}

.flow .txt {
	padding-left: 30px;
}


@media screen and (min-width: 768px) {
	#main-contents .float {
		float: right;
		width: 40%;
		margin-left: 30px;
		margin-bottom: 0;
	}

	#main-contents #support {
		padding: 20px 40px;
	}
}

@media screen and (min-width: 1280px) {
	.faq dl {
		display: flex;
		justify-content: space-between;
	}
	
	.faq dt {
		width: calc(33.333% - 20px);
		margin: 0 !important;
	}
	
	.faq dd {
		width: calc(66.666% - 20px);
	}

	#main-contents #support li {
		width: calc(33.33% - 20px);
	}

	.flow li {
		display: flex;
		justify-content: space-between;
		padding: 2.5em 20px !important;
	}

	.flow .ttl {
		width: calc(33.333% - 10px);
		margin-bottom: 0 !important;
	}

	.flow .txt {
		width: calc(66.666% - 10px);
		padding-left: 0;
	}
}