@charset "UTF-8";

#main-area {
	background: no-repeat center center #eceaeb;
}
.inner { 
	max-width: 980px;
	margin: 0px auto;
}

#flow { background: #daeaf1; }
#flow img {
	max-width: 100%;
	border: 1px solid #1b81b2;
}
#flow .title {
	color: #223e6c;
	font-weight: bold;
	text-align: center;
}
#flow .title::after {
	content: "";
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-top: solid #223e6c;
}
#flow li dt {
	color: #223e6c;
	font-weight: bold;
	text-align: center;
}
#flow li dt::before {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	font-weight: normal;
	border-radius: 50%;
	background-color: #06c755;
	font-family: "Century Gothic", sans-serif;
}
#flow li:nth-child(1) dt::before { content: "1"; }
#flow li:nth-child(2) dt::before { content: "2"; }
#flow li:nth-child(3) dt::before { content: "3"; }
#flow li:nth-child(4) dt::before { content: "4"; }
#flow li dt small {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #223e6c;
}

#consult .title {
	color: #fff;
	font-weight: bold;
	text-align: center;
	background-color: #f8833e;
}
#consult .inner { position: relative; }
#consult .inner::before {
	content: "";
	display: block;
	margin-left: auto;
	margin-right: auto;
	background: url(../images/arrow_kochira.gif) no-repeat center center;
	background-size: 100% 100%;
}

#checkList { background: #87cee8; }
#checkList .cTitle {
	color: #223e6c;
	font-weight: bold;
	text-align: center;
}
#checkList .list { position: relative; }
#checkList .list::before,
#checkList .list::after {
	position: absolute;
}
#checkList .list::before {
	width: 0;
	height: 0;
	content: "";
	display: block;
	border-style: solid;
	border-color: #f8833e transparent transparent;
}
#checkList .list::after {
	color: #fff;
	font-weight: bold;
	content: "こちらを\Aチェック";
	white-space: pre;
	border-radius: 50%;
	background-color: #f8833e;
	display: flex;
	align-items: center;
	justify-content: center;
}
#checkList .list > li {
	display: flex;
	background: #fff;
	border-radius: 10px;
}
#checkList .list > li .listCheck label {
	line-height: 0;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
}
#checkList .list > li .listCheck input[type="checkbox"] {
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}
#checkList .list > li .listCheck input[type="checkbox"] + span {
	content: "";
	background: #fff;
	display: inline-block;
	border: solid #f8833e;
	position: relative;
}
#checkList .list > li .listCheck input[type="checkbox"] + span::after {
	content: "";
	opacity: 0;
	display: block;
	position: absolute;
	border-right: solid #f8833e;
	border-bottom: solid #f8833e;
	transform: scale(1.2) rotate(45deg);
	transition-duration: .3s;
	transition-property: transform, opacity;
}
#checkList .list > li .listCheck input[type="checkbox"]:checked + span::after {
	opacity: 1;
	transform: scale(1) rotate(45deg);
}
#checkList .list > li .listText {
	color: #223e6c;
	font-weight: bold;
}
#checkList .list > li .textBox {
	border: 1px solid #e1e1e1;
}
#checkList .list > li .textBoxInner ol > li > span:first-child {
	text-indent: 0;
	display: inline-block;
}

#listFoot {
	position: relative;
	background-color: #daeaf1;
}
#listFoot::before {
	content: "";
	top: 0;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	margin: 0 auto;
	display: block;
	position: absolute;
	border-style: solid;
	border-color: #87cee8 transparent transparent;
}
#listFoot .button a {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-weight: bold;
	position: relative;
	border-radius: 999px;
	transition-duration: .3s;
	transition-property: background-color;
	background: url(../../common/images/icon_line.svg) no-repeat #06c755;
}
#listFoot .button a.disabled {
	pointer-events: none;
	background-color: #919191;
}
#listFoot .button a::after {
	content: "";
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: block;
	position: absolute;
	border-right: solid #fff;
	border-bottom: solid #fff;
	transform: rotate(-45deg);
}
#listFoot .attention { color: #ff004e; }
#listFoot .attention strong {
	font-weight: bold;
	text-decoration: underline;
}

 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PC min-width: 981px
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media only screen and (min-width: 981px) {
	#main-area { background-image: url(../images/ph_main.jpg); }
	#contents { margin: 100px auto; }
	#contents .sTitle { font-size: 22px; }

	#flow {
		margin-top: 75px;
		padding: 72px 0 105px;
	}
	#flow .title {
		font-size: 24px;
	}
	#flow .title::after {
		width: 121px;
		margin-top: 23px;
		border-width: 5px;
	}
	#flowList {
		display: flex;
		margin-top: 54px;
		justify-content: space-between;
	}
	#flowList li {
		width: calc((100% - 111px) / 4);
	}
	#flowList li dt {
		height: 160px;
		font-size: 20px;
	}
	#flowList li dt::before {
		width: 55px;
		height: 55px;
		font-size: 28px;
		margin-bottom: 12px;
	}
	#flowList li dt small {
		font-size: 12px;
		line-height: 14px;
		margin-top: 5px;
		padding: 4px 7px;
	}
	#flowList li dd {
		position: relative;
	}
	#flowList li:not(:last-child) dd::after {
		content: "";
		top: 0;
		bottom: 0;
		right: -29px;
		width: 0;
		height: 0;
		margin: auto 0;
		position: absolute;
		border-style: solid;
		border-width: 20px 0 20px 20px;
		border-color: transparent transparent transparent #1b81b2;
	}

	#consult .title {
		font-size: 30px;
		padding: 65px 0;
		margin-bottom: 30px;
	}
	#consult .inner::before {
		width: 40px;
		height: 80px;
		margin-bottom: 30px;
	}
	#checkList { padding: 60px 90px 50px; }
	#checkList .cTitle { font-size: 26px; }
	#checkList .list { margin-top: 50px; }
	#checkList .list::before {
		top: -8px;
		left: 46px;
		border-width: 14px 11px 0;
	}
	#checkList .list::after {
		top: -107px;
		left: 7px;
		width: 100px;
		height: 100px;
		font-size: 16px;
		line-height: 23px;
	}
	#checkList .list > li {
		padding: 23px 28px 23px 40px;
	}
	#checkList .list > li + li { margin-top: 20px; }
	#checkList .list > li .listCheck { width: 60px; }
	#checkList .list > li .listCheck input[type="checkbox"] + span {
		width: 30px;
		height: 30px;
		border-width: 2px;
	}
	#checkList .list > li .listCheck input[type="checkbox"] + span::after {
		top: -2px;
		left: 8px;
		width: 10px;
		height: 22px;
		border-width: 5px;
	}
	#checkList .list > li:hover .listCheck input[type="checkbox"]:not(:checked) + span::after {
		opacity: 0.3;
		transition-duration: 0s;
		transform: scale(1) rotate(45deg);
	}
	#checkList .list > li .listCheck + div { width: calc(100% - 60px); }
	#checkList .list > li .listText { font-size: 21px; }
	#checkList .list > li .textBox {
		height: 242px;
		font-size: 12px;
		line-height: 2;
		margin-top: 26px;
	}
	#checkList .list > li .textBoxInner {
		padding: 4px 10px 0 3px;
	}
	#checkList .list > li .textBoxInner ol > li {
		text-indent: -2.5em;
		padding-left: 2.5em;
	}
	#checkList .list > li .textBoxInner ol > li > span:first-child {
		width: 2.5em;
	}

	#listFoot { padding: 75px 40px 80px; }
	#listFoot::before { border-width: 33px 44px 0; }
	#listFoot .button a {
		width: 600px;
		font-size: 26px;
		line-height: 120px;
		background-size: 56px auto;
		background-position: 46px center;
	}
	#listFoot .button a::after {
		width: 16px;
		height: 16px;
		right: 50px;
	}
	#listFoot .attention {
		font-size: 16px;
		line-height: 26px;
		margin-top: 22px;
	}
}

 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SP max-width: 980px
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 980px) {
	#main-area {
		background-image: url(../images/ph_main_sp.jpg);
		background-size: cover;
	}
	#main-area { padding-top: 55px; }
	#main-area .mv_text01 img { width: 167px; }
	#contents { margin: 34px auto 100px; }
	#contents .sTitle { font-size: 13px; }

	#flow {
		margin-top: 32px;
		padding: 28px 5px 85px;
	}
	#flow .title { font-size: 17px; }
	#flow .title::after {
		width: 60px;
		margin-top: 11px;
		border-width: 2.5px;
	}
	#flowList { margin-top: 38px; }
	#flowList > li + li { margin-top: 21px; }
	#flowList dl { display: flex; }
	#flowList dt {
		width: 60%;
		font-size: 15px;
		padding-right: 15px;
		box-sizing: border-box;
	}
	#flowList dt::before {
		width: 36px;
		height: 36px;
		font-size: 18px;
		line-height: 36px;
		margin-bottom: 24px;
	}
	#flowList > li:not(:last-child) dt::after {
		content: "";
		width: 26px;
		height: 84px;
		display: block;
		margin: 23px auto 0;
		background: url(../images/arrow_sp.jpg) no-repeat center center;
		background-size: 100% 100%;
	}
	#flowList dt small {
		font-size: 10px;
		line-height: 12px;
		margin-top: 5px;
		padding: 6px 6px 6px;
	}
	#flowList dd { width: 40%; }

	#consult .title {
		font-size: 21px;
		padding: 45px 0;
	}
	#consult .inner {
		padding-inline: 15px;
	}
	#consult .inner::before {
		width: 28.5px;
		height: 57.5px;
		margin-top: 20px;
	}
	#checkList {
		margin-top: 13px;
		padding: 35px 20px 35px;
	}
	#checkList .cTitle {
		font-size: 19px;
		line-height: 25px;
	}
	#checkList .list { margin-top: 57px; }
	#checkList .list::before {
		top: -5px;
		left: 22px;
		border-width: 9.5px 7.5px 0;
	}
	#checkList .list::after {
		top: -70px;
		left: -4px;
		width: 66px;
		height: 66px;
		font-size: 12px;
		line-height: 15px;
	}
	#checkList .list > li { padding: 12px 15px 10px; }
	#checkList .list > li + li { margin-top: 10px; }
	#checkList .list > li .listCheck {
		width: 36px;
		padding: 10px 0;
		align-self: flex-start;
	}
	#checkList .list > li .listCheck + div {
		width: calc(100% - 36px);
		align-self: center;
	}
	#checkList .list > li .listCheck input[type="checkbox"] + span {
		width: 18px;
		height: 18px;
		border-width: 1px;
	}
	#checkList .list > li .listCheck input[type="checkbox"] + span::after {
		top: 0;
		left: 6px;
		width: 6px;
		height: 12px;
		border-width: 2.5px;
	}
	#checkList .list > li .listText {
		font-size: 14px;
		line-height: 20px;
	}
	#checkList .list > li .textBox {
		height: 375px;
		max-height: calc(100vh - 50px);
		font-size: 12px;
		line-height: 20px;
		margin-top: 13px;
		margin-bottom: 23px;
	}
	#checkList .list > li .textBoxInner { padding-right: 10px; }
	#checkList .list > li .textBoxInner ol > li {
		text-indent: -2em;
		padding-left: 2em;
	}
	#checkList .list > li .textBoxInner ol > li > span:first-child { width: 2em; }

	#listFoot { padding: 47px 15px 20px; }
	#listFoot::before { border-width: 22px 31px 0; }
	#listFoot .button {
		padding: 0 8px;
	}
	#listFoot .button a {
		height: 80px;
		font-size: 17px;
		background-size: 35px;
		background-position: 33px center;
	}
	#listFoot .button a::after {
		width: 11px;
		height: 11px;
		right: 40px;
	}
	#listFoot .attention {
		font-size: 11px;
		line-height: 17px;
		margin-top: 11px;
	}
}