@charset "UTF-8";

/*スタイルシートの中で sanitize.css を読み込み、リセットします。*/
@import url(/css/sanitize.css);
/*フォントを統一するためにGoogle の 日本語対応の Web フォント を利用します。*/

html {
  font-size: 62.5%;
}

body {
	font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 2.0rem;
	line-height: 1.8em;	
	-webkit-text-size-adjust: 100%;
  background-color: #FFF;
	width: 100%;
	margin: 0 auto;
	color: #1d293f;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
	color: #383838;
}
html, body {
width: auto !important;
overflow-x: hidden !important;
}

a:hover {
	color: #fdcdc9;
	text-decoration: none;
}

a,a:hover {
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}

a img:hover {
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	opacity:0.6;
	filter: alpha(opacity=60);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=60)";  /* ie 8 */
	-moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.6;              /* Safari 1.x */
	zoom:1;	
}

.pc_none{display:none;}
.floatL{float:left;}
.floatR{float:right;}
.textL{text-align:left;}
.textR{text-align:right;}
.textC{text-align: center;}
.txt_indent{
	padding-left:1em;
	text-indent:-1em;
}
.font18{font-size: 1.8rem;}
.font20{font-size: 2rem;}
.red{color:#ee6100;}
.bold{font-weight:bold;}
.img_center{vertical-align:inherit;}
.inBlock{display: inline-block}
.flex{
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}


/* コンテンツ共通
---------------------------------------------------------------------- */
#wrapper{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.secWrap01{
	width: 1000px;
	margin: 0 auto;
  position: relative;
}

section{
	padding: 70px 0;
}

.secWrap01 .sideTtl{
  position: absolute;
  top:80px;
  left: 0;
}

.secWrap01 .btmTtl01{
  text-align: right;
  margin: 70px auto 0;
}

.secWrap01 .btmTtl02{
  position: absolute;
  bottom: -190px;
  right: 0;
}

.futura{
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
}

.subTtl h2{
	color: #1c3853;
	font-size: 6rem;
	padding: 25px 0 0;
	position: relative;
	margin-bottom: 100px;
}

.subTtl h2:before {
	content: '';
	position: absolute;
	bottom: -40px;
	display: inline-block;
	width: 162px;
	height: 3px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #1c3853;
	border-radius: 2px;
}

/* ヘッダー
---------------------------------------------------------------------- */
header{
	width: 100%;
	border-bottom: #228ab2 5px solid;
}
.headLogo{
	padding: 14px 0 4px;
	float: left;
}

.headLogo h1{
	text-align: left;
}


/*-----Gnavi-----*/
#nav-drawer {
  position: relative;
	z-index: 999999;
	float: right;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 84px;
  height: 82px;
  vertical-align: middle;
	cursor: pointer;
	background: #1d293f;
}

/*ハンバーガーアイコンをCSSだけで表現*/
/*#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}*/

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}


/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
	text-align: left;
}

#nav-content h2{
	width: 60%;
	margin: 30px auto 0;
}

#nav-content ul{
	padding: 30px;
}

#nav-content ul li{
	position: relative;
	padding: 10px 0;
	border-bottom: dashed 1px #ccc;
}

#nav-content ul li:after{
	content: url(../images/arrow02_r.svg);
	position: absolute;
	top:5px;
	right: 0;
	width: 20px;
}

#nav-content ul li a{
	color: #383838;
}

#nav-content ul li a:hover{
	color: #228ab2;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-input:checked ~ #nav-close:focus-within{
	display: none;
}

/* コンテンツ
---------------------------------------------------------------------- */
/*-----メインビジュアル-----*/
.mv{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	background: url("../images/mv_img.jpg") no-repeat;
	padding: 60px 0 0;
	min-height: 770px;
	position: relative;
}

.mvIcon{
	position: absolute;
	bottom: -8%;
	right: 5%;
}



/*-----高く買取ります-----*/
.about h3{
	margin: 20px auto;
}

.about p{
	width: 720px;
	margin: 0 auto;
	text-align: left;
}




/*-----こんな方におすすめ！!-----*/
.recommend{
	background: #1d293f;
}

.recommendIn{
	background: url("../images/recommend_bg.png") no-repeat bottom;
}

.recommend ul{
	width: 800px;
	margin: 60px auto 0;
	justify-content: space-between;
}

.recommend ul li{
	margin-bottom: 50px;
}



/*-----5つの理由-----*/
.reason h2{
	margin-bottom: 50px;
}

.reasonIn01{
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
}

.reasonIn01 div p{
	float: left;
}

.reasonIn01 div .reasonInR{
	width: 70%;
	float: right;
	text-align: left;
	padding-top: 20px;
}

.reasonIn01 div .reasonInR h3{
	font-size: 5rem;
	line-height: 1.3em;
	color: #eb545f;
	margin-bottom: 30px;
}

.reasonIn01 div .reasonInR p{
	font-size: 2rem;
	line-height: 1.3em;
}

.point01Img{
	margin: 50px auto 0;
}

.reasonBg{
	background: #1d293f;
}

.reasonIn02{
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
	color: #FFF;
}

.reasonIn02 .ttl p{
	float: left;
}

.reasonIn02 .ttl h3{
	float: right;
	width: 70%;
	text-align: left;
	font-size: 5rem;
	line-height: 1.3em;
	color: #ffff33;	
	margin-top: 30px;
}

.reasonIn02 .content{
	padding: 30px 0;
}

.reasonIn02 .content .txt{
	width: 600px;
	margin: 20px auto 0;
}

.reasonIn01Box{
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.reasonIn01Box .txt{
	width: 600px;
	margin: 0 auto;
}

.reasonIn03Box{
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.reasonIn01 .reasonIn03Box p {
    float: none;
}

.reasonIn03Box .txt{
	width: 600px;
	margin: 20px auto 0;
}




/*-----買取保証-----*/
.security{
	background: #abc5d2;
}

.securityIn{
	background: #FFF;
	width: 920px;
	margin: 30px auto;
	padding: 50px;
}

.securityIn .img01{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.securityIn p{
	text-align: left;
	margin: 50px auto;
}

.securityIn .img02 li{
	margin-bottom: 30px;
}


/*-----買取り(売却)の流れ-----*/
.flow h2{
	margin-bottom: 80px;
}

.flowBox{
	width: 820px;
	background: #f6f7f7;
	position: relative;
	padding: 40px 30px 30px;
	text-align: left;
	line-height: 1.5em;
	margin: 40px auto;
	min-height: 140px;
}

.flowBox h3{
	position: absolute;
	top:-20px;
	left: 20px;
}

.flowBox h3 span{
	font-size: 2.6rem;
	color: #f47a7c;
	vertical-align: super;
	padding-left: 20px;
}

.flowBox p a{
	text-decoration: underline;
	color: #228ab2;
}

.flowBox p a:hover{
	text-decoration: none;
}

.flow01:after{
	content: url("../images/flow_icon01.png");
	position: absolute;
	bottom: -40px;
	right: 20px;
}

.flow02:after{
	content: url("../images/flow_icon02.png");
	position: absolute;
	bottom: -30px;
	right: 40px;
}

.flow03:after{
	content: url("../images/flow_icon03.png");
	position: absolute;
	bottom: -20px;
	right: 50px;
}

.flow04:after{
	content: url("../images/flow_icon04.png");
	position: absolute;
	bottom: -30px;
	right: 40px;
}

.flow05:after{
	content: url("../images/flow_icon05.png");
	position: absolute;
	bottom: -30px;
	right: 40px;
}


/*-----よくある質問-----*/
.faq{
	background: #f6f7f7;
}

.faqBox {
	width: 820px;
	margin: 40px auto;
}

.faqBox dl dt{
	background: #228ab2;
	color: #FFF;
	padding: 5px 10px 5px 60px;
	position: relative;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
}

.faqBox dl dt:before{
	background: #1d293f;
	content: "Q";
	position: absolute;
	top:50%;
	left: 0;
	padding: 5px 13px;
	font-size: 2.4rem;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	width: 50px;
	text-align: center;
	height: 100%;
	-webkit-transform: translateY(-50%);
  transform: translateY(-50%);
	  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}

.faqBox dl dd{
	background: #FFF;
	padding: 20px 20px 20px 60px;
	text-align: left;
	position: relative;
}

.faqBox dl dd:before{
	background: #f47a7c;
	content: "A";
	position: absolute;
	border-radius:50px;
	top: 20px;
	left: 17px;
	padding: 0px 10px;
	font-size: 2.4rem;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #fff;
}


/*-----会社概要-----*/
.company{
	background: #1d293f;
}

#map-area{
	width:1000px; 
	height:400px;
	margin: 30px auto;
}

.company dl{
	color: #FFF;
	width: 820px;
	margin: 0 auto;
}

.company dl dt{
	background: #228ab2;
	display: inline-block;
	min-width: 155px;
	vertical-align: top;
	padding: 3px 5px;
}
.company dl dd{
	width: 70%;
	display: inline-block;
	text-align: left;
	margin-bottom: 35px;
	padding-left: 15px;
}




/*-----お問い合わせフォーム-----*/
.contact{
	padding-bottom: 70px;
}

.contactTxt01{
	font-size: 2rem;
	font-weight: bold;
	margin: 50px auto;
}

.tel-mobile {
    display: none;
}

.tel{
	font-size: 4.6rem;
	position: relative;
	margin-bottom: 5px;
	display: inline-block;
	color: #228ab2;
}

.tel .iconTel{
	width: 45px;
	display: inline-block;
	padding: 8px 7px 0;
}

.contactTxt02{
	margin: 50px auto;
}

.privacyBox{
  width: 80%;
  height: 300px;
	margin: 30px auto;
	background: #f5f5f5;
  overflow: scroll;	
	font-size: 1.6rem;
	padding: 20px;
	line-height: 1.6em;
}

form#mail_form .privacyBox dl{
	padding: 20px 0;
}

form#mail_form .privacyBox dl dt,
form#mail_form .privacyBox dl dd{
	float: none;
	width: 100%;
	padding:0;
}


/* フッター
---------------------------------------------------------------------- */
footer{
	background: #228ab2;
	padding: 50px 0;
}

.footer{
	width: 1000px;
	margin: 0 auto;
	color: #FFF;
}

.footBnr{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footBnr li{
	margin: 10px;
}


.copy{
	font-size: 1.6rem;
}

.pagetop {
	position: fixed;
	bottom: 10px;
	right: 1%;
}
.pagetop a {
	display: block;
}



/* お問い合わせありがとうございます
---------------------------------------------------------------------- */
.thanks{
	padding-top: 200px;
}

.thanks section{
	padding-top: 30px;
}

.thanks h3{
	margin-bottom: 40px;
	font-size: 3rem;
}

.thanks .thanksTxt{
	font-size: 2rem;
	margin-bottom: 30px;
}

.thanks .back{
	font-size: 2rem;
	text-decoration: underline;
	margin-top: 50px;
}


/*----------------------------------------------------
	tb
----------------------------------------------------*/

@media screen and (max-width: 999px) {
	.tab_none{display:none;}

	img{
		max-width:100%;
		height:auto;
	}

	/* コンテンツ共通
	---------------------------------------------------------------------- */
	section{
		padding: 10% 0;
	}

	.secWrap01{
		width: 90%;
	}
	
	.secWrap01 .sideTtl{
		top: 0;
	}
	
	.secWrap01 .btmTtl02{
		bottom: -150px;
	}
	
	
	/* ヘッダー
	---------------------------------------------------------------------- */
	header .secWrap01{
		width: 100%;
	}
	
	
	.mv{
		background-position: center;
	}
	
	.headLogo h1{
		padding-left: 50px;
	}
	
	#nav-drawer{
	}
	
	#nav-open {
}

	/* コンテンツ
	---------------------------------------------------------------------- */
	/*-----高く買取ります-----*/
	.about p{
		text-align: left;
		font-size: 2rem;
		width: 90%;
    margin: 0 auto;
	}

	/*-----こんな方におすすめ！!-----*/
	.recommend ul{
		width: 90%;
	}
	
	.recommend ul li {
    width: 45%;
	}
	
	.recommendIn {
    background-size: contain;
	}
	
	
	/*-----5つの理由-----*/
	.reasonIn01,
	.reasonIn02,
	.reasonIn03Box{
		width: 90%;
	}
	
	.reasonIn01 div p,
	.reasonIn01 div .reasonInR,
	.reasonIn02 .ttl p,
	.reasonIn02 .ttl h3{
		float: none;
	}
	
	.reasonIn01 div .reasonInR,
	.reasonIn02 .ttl h3{
		width: 100%;
		margin: 0 auto;
	}
	
	.reasonIn01 div .reasonInR h3{
		text-align: center;
	}
	
	.reasonIn01 div .reasonInR p {
    line-height: 1.5em;
		margin-bottom: 20px;
	}	
	
	.point01Img li{
		margin-bottom: 30px;
	}
	
	.reasonIn02 .ttl h3{
		text-align: center;
		margin-top: 20px;
	}
	
	.reasonIn02 .content .txt,
	.reasonIn03Box .txt{
		width: 100%;
	}
	
	
	/*-----買取保証-----*/
	.securityIn{
		width: 90%;
		margin: 30px auto;
		padding-top: 10%;
	}
	
	.securityIn .img01 li {
			text-align: center;
			margin-bottom: 50px;
			width: 100%;
	}	
	
	.securityIn p{
		margin-top: 0;
	}
	
	/*-----買取の流れ-----*/
	.flowBox{
		width: 100%;
	}
	
	/*-----会社概要-----*/
	#map-area{
		width: 100%;
	}
	
	/*-----よくある質問-----*/
	.faqBox {
			width: 100%;
			margin: 30px auto;
	}	
	
	.faqBox dl dt {
		line-height: 1.3em;
		padding: 10px 10px 10px 60px;
	}
	
	
	/*-----お問い合わせ-----*/
	.privacy{
		margin-top: 5%;
	}
	
	.privacyBox{
		width: 100%;
	}

	/* フッター
	---------------------------------------------------------------------- */
	.footer{
		width: 100%;
	}
	
	
	/* お問い合わせありがとうございます
	---------------------------------------------------------------------- */
	.headThanks .headLogo h1{
		width:20%;
	}
	
	.thanks{
		padding-top: 15%;
	}

	
}
	
/*----------------------------------------------------
	sp
----------------------------------------------------*/

@media screen and (max-width: 767px) {
	
	.sp_none{display:none;}
		.pc_none{display: block;}
	img{
		max-width:100%;
		height:auto;
	}

	/* コンテンツ共通
---------------------------------------------------------------------- */
section {
    padding: 10% 0 15%;
}
		
	.secWrap01 h2{
		max-width: 85%;
		margin: 0 auto;
	}
	
	.brPc{
		display: none;
	}
	
	
/* ヘッダー
---------------------------------------------------------------------- */
	.headLogo {
    width: 60%;
    padding: 15px 0 0;
	}
	
	.headLogo h1{
		padding-left: 10%;
	}
	
	#nav-open {
		width: 64px;
		height: 62px;
	}
	
	
	
/* コンテンツ
---------------------------------------------------------------------- */
	.mv{
		min-height: 450px;
		background-size: cover;
	}
	
	.mvIcon {
    width: 40%;
	}
	
	
	.tel-pc {
			display: none;
	}

	.tel-mobile{
		display:inline;
		}
	
	/*-----高く買取ります-----*/
	.about .secWrap01 h2{
		max-width: 100%;
	}
	
	
	/*-----こんな方におすすめ-----*/
	.reason h2 {
    margin-bottom: 0;
	}
	
	.recommend ul li {
    width: 100%;
	}
	
	.recommendIn {
    background-size: auto;
	}
	
	.point{
		width: 40%;
		margin: 0 auto;
	}
	
	.reasonIn01 div .reasonInR h3,
	.reasonIn02 .ttl h3{
    font-size: 3.4rem;
	}

	
	/*-----買取保証-----*/
	.securityIn{
		padding: 10% 5% 2%;
		margin-bottom: 0;
	}
	
	
	
	
	/*-----買取の流れ-----*/
	
	.flowBox {
		padding-bottom: 18%;
	}
	
	.flow02:after,
	.flow03:after,
	.flow04:after,
	.flow05:after{
		right: 4%;
	}
	
	/*-----会社概要-----*/
	#map-area {
    width: 90%;
	}
	
	.company dl{
		width: 90%;
	}
	
	.company dl dt,
	.company dl dd{
		width: 100%;
	}
	
	.company dl dt{
		margin-bottom: 15px;
	}
	
	/*-----お問い合わせ-----*/
	.tel{
		font-size: 3.4rem;
	}
	
	.contact {
    padding-bottom: 5%;
	}
	
	#Contact .secWrap01 .btmTtl02{
		bottom: -5%;
	}


/* フッター
---------------------------------------------------------------------- */
	footer{
		margin-top: 20%;
		padding: 7% 0;
	}	
	
	.footer{
		width: 90%;
	}
	
	.footBnr li{
		margin-bottom: 5px;
	}
	

	/* お問い合わせありがとうございます
	---------------------------------------------------------------------- */
	.thanks{
		padding-top: 20%;
	}
	
	.thanks h2{
		width: 80%;
		margin: 0 auto;
	}

	
	
}

