@charset "UTF-8";

/*-----------------------------
base
-----------------------------*/
/*@font-face {
	font-family: 'Noto Serif JP', sans-serif;
	font-weight: normal;
	font-weight: 400;
	src: url('../fonts/NotoSerifCJKjp-Medium.otf') format('otf'),
		 url('../fonts/NotoSerifCJKjp-Medium.woff') format('woff'),
	 	 url('../fonts/NotoSerifCJKjp-Medium.woff2') format('woff2');
}
*/
html {
	font-size: 62.5%;
}

body *{
	box-sizing:border-box;
	margin:0;
	padding:0;	
}

body {
	background-color:#fff;
	color: #101010;
	font-size: 2rem;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic,"Yu Gothic", "メイリオ", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	font-weight: 500;
	min-width:320px;
	margin:0 auto;
	width:100%;
	line-height: 1.5;
    letter-spacing: 0.2px;
}

body > section{
	position: relative;
	padding: 60px 0;
}

.flex{
	display:flex;
}

header{
	position: relative;
	width: 100%;
	margin: 0 auto;
}
	header > img{
		width: 100%;
	}

header h1{ padding: 0 20px; }

header h1 img{
	vertical-align: baseline;
	max-width: 160px;
	width: 100%;
}

h2{
	text-align: center;
	color: #333;
	font-weight: 600;
	font-size: 3.7rem;
	margin-bottom: 30px;
}

h3{
	font-size: 2.5rem;
	line-height: 1.5;
}

figure > img{ width: 100%; }

.contents{
	max-width: 1140px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

@media screen and (max-width: 800px){
	header h1 a{
		display: block;
		width: 18%;
	}
}

@media screen and (max-width: 600px){
	body {
		font-size: 1.4rem;
	}
	
	body > section {
		padding: 40px 0;
	}
	
	h2{
		font-size: 1.8rem;
	}
	
	h3{font-size: 1.5rem;}

		header h1 a{
			width: 25%;
		}
	
		header h1 img{
			vertical-align: top;
			padding: 18px 0;
		}
	
	
	
}

/*-----------------------------
文字
-----------------------------*/

/*-----------------------------
余白
-----------------------------*/
.mb0{ margin-bottom:0; }
.mb40{ margin-bottom:40px; }

/*-----------------------------
共通パーツ
-----------------------------*/
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
	-moz-margin-before: 0;
    -moz-margin-after: 0;
    -moz-margin-start: 0;
    -moz-margin-end: 0;
	-moz-padding-start: 0;
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
	-webkit-padding-start: 0;
}

a{
	text-decoration:none;
}

a:link{
	color:#101010;
}
a:visited{
	color:#101010;
}

.spStyle,
.spStyle980,
.spStyle800,
.spStyle480{
	display:none;
}

img{
	vertical-align:bottom;
}

.txt_c{
	text-align: center;
}
@media screen and (max-width: 980px){
	.spStyle980{
		display:block;
	}
}
@media screen and (max-width: 800px){
	.pcStyle800{
		display:none;
	}
	.spStyle800{
		display:block;
	}
}
@media screen and (max-width: 767px){
	.pcStyle{
		display: none;
	}
	.spStyle{
		display:block;
	}
}
@media screen and (max-width: 480px){
	.pcStyle480{
		display:none;
	}
	.spStyle480{
		display:block;
	}
}

/*-----------------------------
ボタン
-----------------------------*/

@media screen and (max-width: 768px){
}

/*-----------------------------
こんなお悩みありませんか？
-----------------------------*/
.trouble_box {
	position: relative;
	margin-bottom: 60px;
	width: 48%;
}

.trouble_box_wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.trouble_box .txt_area{
	position: relative;
	background-color: #f3f3f3;
	border-radius: 10px;
	padding: 20px;
	width: 80%;
}
	.trouble_box .txt_area::before{
		content: "";
		position: absolute;
		width: 56px;
		height: 57px;
		top: 0;
		z-index: -1;
	}

.trouble_box .txt_area.left,
.trouble_box .txt_area.right{
	margin: 0 0 0 auto;
}
	.trouble_box .txt_area::before{
		background: url("../images/img_hukidashi_l.png") no-repeat;
		background-size: contain;
		left: -44px;
	}


.trouble_box figure{
	width: 80%;
	margin-top: -20px;
}

.comment{
	color: #294f76;
	text-align: center;
	font-weight: bold;
	font-size: 3rem;
	margin-bottom: 10px;
}
@media screen and (max-width: 980px){
	.trouble_box_wrap{
		display: block;
	}
		.trouble_box{
			width: 100%;
		}
	
	.trouble_box .txt_area.right{
		margin: auto;
	}
	
	.trouble_box .txt_area.left::before{
		background: url("../images/img_hukidashi_l.png") no-repeat;
		background-size: contain;
		left: -44px;
	}
	.trouble_box .txt_area.right::before{
		background: url("../images/img_hukidashi_r.png") no-repeat;
		background-size: contain;
		right: -44px;
		left: auto;
	}

	.trouble_box figure.right{
		margin: -20px 0 0 auto;
	}
}
@media screen and (max-width: 600px){
	.trouble_box {
		margin-bottom: 30px;
	}
	.comment{
		font-size: 1.7rem;
	}
	
	.trouble_box .txt_area {
		width: 90%;
	}
		.trouble_box .txt_area::before {
			width: 44px;
			height: 40px;
		}
			.trouble_box .txt_area.left::before {
				left: -32px;
			}

			.trouble_box .txt_area.right::before {
				right: -32px;
			}
}
@media screen and (max-width: 480px){
}
/*-----------------------------
ビデオ査定とは
-----------------------------*/
#whatIs{
	background: #f9fae8;
}

#whatIs h2{
	margin-bottom: 60px;
}

#whatIs .contents{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#whatIs .whatIs_box{
	margin-right: 3%;
	margin-bottom: 80px;
	width: 31.3338%;
}

#whatIs .whatIs_box:nth-child(3),
#whatIs .whatIs_box:nth-child(5){
	margin-right: 0;
}

#whatIs .whatIs_box:nth-child(4),
#whatIs .whatIs_box:nth-child(5){
	margin-bottom: 10px;
}
	.whatIs_box .img_area{
		position: relative;
	}

.whatIs_box .img_area div {
	position: absolute;
	top: -20px;
	left: 20px;
}

	.whatIs_box .img_area div h3{
		background: #47301e;
		color: #fff;
		padding: 0 20px;
		letter-spacing: 3px;
		font-size: 1.8rem;
	}

.whatIs_box .img_area div h3 span {
    font-size: 25px;
}

.whatIs_box .img_area div h3::before{
	content: "";
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #47301e;
	position: absolute;
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
}

.whatIs_box .img_area figure{
	margin-bottom: 20px;
}

@media screen and (max-width: 980px){
	#whatIs h2{
		margin-bottom: 30px;
	}
	
	#whatIs .contents{
		display: block;
	}
	
	#whatIs .whatIs_box{
		margin-bottom: 100px;
		margin-right: 0;
		width: 100%;
	}
	
	#whatIs .whatIs_box:nth-child(4){
		margin-bottom: 100px;
	}
	
	.whatIs_box .img_area div h3{
		font-size: 2.5rem;
	}
	.whatIs_box .img_area div{
		top: -25px;
	}
	
	.whatIs_box .img_area div h3 span{
		font-size: 30px;
	}
}

@media screen and (max-width: 600px){
	#whatIs .whatIs_box{
		margin-bottom: 60px;
	}
	
	#whatIs .whatIs_box:nth-child(4){
		margin-bottom: 60px;
	}
	
	.whatIs_box .img_area div {
		top: -15px;
		left: 10px;
	}
	

	
	.whatIs_box .img_area div h3 {
		padding: 0 10px;
		letter-spacing: 2px;
		font-size: 1.4rem;
	}
	
	.whatIs_box .img_area div h3 span{
		font-size: 2rem;
	}
	
	.whatIs_box .img_area div h3::before {
		border-left: 15px solid transparent;
		border-right: 15px solid transparent;
		border-top: 15px solid #47301e;
	}

}

@media screen and (max-width: 450px){
}

/*-----------------------------
申込みフロー
-----------------------------*/
#flow h2{
	line-height: 2;
}
	#flow .sub_ttl{
		background: #294f76;
		color: #fff;
		padding: 5px 20px;
		font-size: 2.5rem;
	}

#flow .contents{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.flow_box{
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
	width: 24%;
}
.flow_box .img_area{
	position: relative;
}
	.flow_box .img_area p {
		position: absolute;
		background: #294f76;
		color: #fff;
		border-radius: 50%;
		padding: 14px 16px;
		text-align: center;
		bottom: -33px;
		left: 50%;
		transform: translateX(-50%);
		line-height: 1.3;
		font-weight: bold;
		width: 70px;
		height: 70px;
		font-size: 1.4rem;
	}

	.flow_box .img_area p span {
		font-size: 2.5rem;
	}

.flow_box .txt_area{
	background: #e4ecf7;
	padding: 40px 20px 20px;
	line-height: 2;
	height: 100%;
}
	.flow_box .txt_area h3,
	.flow_box .txt_area .attention{
		text-align: center;
		color: #294f76;
	}

.flow_box .txt_area h3{
	font-size: 2rem;
	margin-bottom: 10px;
}

.flow_box .txt_area p{
	font-size: 1.6rem;
}

.flow_box .txt_area .attention{
	font-size: 1.4rem;
	font-weight: bold;
}

.arrow{
	display: block;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 30px solid #ccc;
	width: 40px;
	margin: 0 auto 30px;
}

@media screen and (max-width: 980px){
	#flow .contents{
		display: block;
	}
	.flow_box{
		width: 100%;
	}
		.flow_box:last-child{
			margin-bottom: 0;
		}
	
	.flow_box .img_area p{
		padding: 16px 17px;
		bottom: -40px;
		left: 50%;
		width: 90px;
		height: 90px;
	}
		.flow_box .img_area p span{
			font-size: 3.5rem;
		}

	
	.flow_box .txt_area{
		padding: 60px 30px 20px;
	}
		.flow_box .txt_area h3{
			font-size: 2.5rem;
		}
	
		.flow_box .txt_area p {
			font-size: 2rem;
		}
	
		.flow_box .txt_area .attention{
			font-size: 1.8rem;
		}
	

}

@media screen and (max-width: 600px){
	#flow .sub_ttl{
		font-size: 1.4rem;
	}
	
	.flow_box .img_area p {
		padding: 10px 0;
		width: 70px;
		height: 70px;
		bottom: -35px;
	}
		.flow_box .img_area p span {
			font-size: 3rem;
		}
	
	.flow_box .txt_area {
		padding: 50px 20px 20px;
	}
		.flow_box .txt_area h3{
			margin-bottom: 10px;
			font-size: 1.8rem;
		}
	
		.flow_box .txt_area p {
			font-size: 1.4rem;
		}
	
	.flow_box .txt_area .attention{
		font-size: 1.1rem;
	}
	
}

/*-----------------------------
利用前に
-----------------------------*/
#howTo{ padding-top: 0; }

/*#howTo > h2{ line-height: 1; }*/

#howTo h2 .sub_ttl{
	font-size: 2.5rem;
}


.dl_wrap{
	background: #f9fae8;
	margin: 0 auto 60px;
	max-width: 750px;
	width: 100%;
	padding: 30px;
}
	.dl_wrap h3{
		text-align: center;
		margin-bottom: 20px;
	}

.dl_bnr{
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
	.dl_bnr > div{
		text-align: center;
	}
		.dl_bnr > div > p{
			margin-bottom: 10px;
		}

		.dl_bnr > div > a img{
			width: 100%;
		}

.app_bnr{
	margin-right: 7%;
}
	.app_bnr img{
		max-width: 180px;
	}

.android_bnr img{
	max-width: 222px;
}

.dl_wrap > p{
	text-indent: -20px;
	padding-left: 20px;
}

#howTo .contents > p{
	margin-bottom: 30px;
}

.howTo_box{
	background: #e6e6e6;
	padding: 20px;
}
.howTo_box:last-child{padding-top: 0;}
.howTo_box h3{
	margin-bottom: 10px;
}
.ulStyle li{
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}
.ulStyle li::before{
	content: "・";
	position: absolute;
	left: 7px;
}

@media screen and (max-width: 767px){
}

@media screen and (max-width: 600px){
	#howTo .contents > p {
		margin-bottom: 20px;
	}
	
	.dl_wrap{
		margin: 0 auto 40px;
		padding: 20px;
	}
	.dl_bnr{
		display: block;
	}
	
	.dl_bnr > div > a img{
		max-width: 160px;
	}
	
	.app_bnr {
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.dl_wrap > p{
		text-indent: -14px;
		padding-left: 14px;
	}
	
	#howTo h2{
		margin-bottom: 20px;
	}
	
	#howTo h2 .sub_ttl{
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px){
	.dl_bnr > div > a img{
		max-width: 120px;
	}
}


/*-----------------------------
Q & A
-----------------------------*/
#QandA{
	background: #e4ecf7;
}

.toggle_area{
	margin-bottom: 20px;
}

.toggle_area dt,
.toggle_area dd > div{
	display: flex;
	align-items: baseline;
}

.toggle_area dt{
	background: #294f76;
	color: #fff;
	padding: 10px 40px 10px 10px;
	cursor: pointer;
}

.toggle_area dd{
	display: none;
	background: #fff;
	padding: 10px;
}

.toggle_btn{
	position: relative;
}
	.toggle_btn::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		width: 5px;
		height: 5px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		transform: translateY(-50%) rotate(135deg);
	}
		.toggle_btn.open::before {
			transform: rotate(-45deg);
		}

.qStyle,
.aStyle{
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	padding: 5px 13px;
	margin-right: 10px;
}
.qStyle{
	color: #294f76;
	background: #fff;
}
.aStyle{
	color: #fff;
	background: #294f76;
}


@media screen and (max-width: 600px){
	.qStyle, .aStyle {
		padding: 5px 10px;
		width: 30px;
		height: 30px;
	}
}
/*-----------------------------
footer
-----------------------------*/
footer{
	text-align:center;
	padding:60px 20px;
	padding-bottom: 180px;
}

footer > a{
	display: inline-block;
	margin-bottom: 20px;
}

.inquiry{
	position: fixed;
	background: rgba(127, 127, 127, 0.7);
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	padding: 20px;
	width: 100%;
	font-weight: bold;
}

	.inquiry > div{
		max-width: 730px;
		width: 100%;
	}

	.inquiry.pcStyle480 a:hover{
		cursor: default;
		opacity: none;
	}

	.inquiry.spStyle480 a:hover {
		filter: alpha(opacity=50);
		-moz-opacity: 0.5;
		opacity: 0.5;
	}

.inquiry ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
	.inquiry ul li{
		margin-right: 10px;
	}
		.inquiry ul li img{width: 100%;}

#pagetop{
	position: relative;
	width: 60px;
	margin-right: 0;
}
	#pagetop a {
		display: block;
		width: 100%;
		height: 100%;
		background: #fff;
		opacity: 1;
		border-radius: 5px;
	}
		#pagetop a::before {
			content: "";
			background: url("../images/footer_pagetop.png") no-repeat center;
			background-size: contain;
			display: block;
			max-width: 18px;
			width: 100%;
			height: 16px;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
		}


@media screen and (max-width: 600px){
	footer {
		padding: 30px 20px 110px;
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 480px){
	.inquiry{padding: 10px;}
	#pagetop a::before{
		max-width: 12px;
		height: 11px;
	}
}

@media screen and (max-width: 350px){
	footer {
		padding: 30px 20px 90px;
	}
}
