@charset "utf-8";
/*----------------------------------------------------------
　全体
-----------------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 62.5%;/*10px相当*/
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	background: #fff;
	color: #333;
	text-align: center;
}
@media only screen and ( max-width: 749px ) {
	body {
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
.left {
	float: left;
}
.right {
	float: right;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.textC {
	text-align: center;
}
.textL {
	text-align: left;
}
.textR {
	text-align: right;
}
.text_fff {
	color: #fff;
}
.red {
	color: #c3002f;
}
.text_b {
  font-weight: 700;
}
a:link, a:visited {
	color: #005ECF;
	text-decoration: none;
}
a:hover {
	color: #005ECF;
	text-decoration: none;
}
/*イメージマップ用
IE対応：<area onFocus="this.blur();">
------------------------------------*/
area {
	border: none;
	outline: none;
}
/*******************************************************************
　ページ共通パーツ
*******************************************************************/

@media print, screen and (min-width:750px){
	.display_sp {display: none}
}
@media screen and (max-width:749px){
	.display_pc {display: none}
}

/*******************************************************************
　各セクション
*******************************************************************/
/*共通 ------------------------------*/
.contents {
	width: 100%;
	text-align: center;
	margin: 0 auto;
  position: relative;
  background: #E5F7FB;
}
.wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.container {
	width: calc(800 / 900 * 100%);
	max-width: 800px;
	margin: 0 auto;
}
.box {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
@media only screen and ( max-width: 749px ) {
	.container {
	}
}

/*----------------------------------------------------------
　メイン
-----------------------------------------------------------*/
.mvArea h1 {
  padding: 5% 0;
}
.mv_notice {
  margin: 3% 0;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}
/*----------------------------------------------------------
　計算エリア
-----------------------------------------------------------*/
.calcArea .container {
  background: #fff;
  padding: 3%;
}
.calcArea h2 {
  width: 100%;
  background: #00B4DC;
  font-size: 2.2rem;
  padding: 2%;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5%;
}
.calcArea h2 span {
  vertical-align: super;
  font-size: 50%;
}
.calcArea h3 {
  padding: 0.5em 1em;
  border: 2px solid #323232;
  border-radius: 200px;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 5% auto;
}
.calcArea h3 span {
  color: #00B4DC;
  font-weight: 700;
}
/*車種選択
---------------------------------------*/
.car_name_box {
  display: flex;
  justify-content: center;
}
@media only screen and ( max-width: 699px ) {
  .car_name_box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .car_name_box dd {
    margin-bottom: 5%
  }
}
.car_name_box {
  font-size: 1.9rem;
}
.car_name_box label {
  cursor: pointer;
}
.car_name_box input[type=radio] {
  transform: scale(1.3);
  margin-right: 0.3em;
}
.car_name_box label.type_checked {
  background: #E5F7FB;
}

/*単価入力
---------------------------------------*/
.car_unitcost_box {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
.car_unitcost_box > div {
  width: calc( 1 / 3 * 100%);
  min-width: 220px;
  margin-bottom: 3%;
}
@media only screen and ( max-width: 859px ) {
  .car_unitcost_box > div {
    margin-bottom: 5%;
  }
}
.car_unitcost_box dl {
    padding: 0 5%;
}
.car_unitcost_title {
  color: #00B4DC;
  font-weight: 700;
  white-space: nowrap;
}

.mileage {
  margin-top: 4px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 7px 7px 7px 14px;
  font-size: 2.0rem;
  border: 2px solid #00B4DC;
}

.calc_btn {
	-webkit-appearance: none;
	background-color: rgba(0, 0, 0, 0.32);
	background-image: none;
	border: none;
	border-radius: 200px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 2.0rem;
	padding: 1em 2em;
	text-decoration: none;
  background: #323232;
  width: 90%;
  max-width: 600px;
  margin: 5% auto 0;
  font-weight: 700;
}
.calc_btn:focus {
	outline: none;
}
.calc_btn::-moz-foucus-inner {
	border: none;
	padding: 0;
}
.calc_btn:hover {
	outline: none;
  opacity: 0.7;
  transition: 0.3s;
}


/*結果表示
---------------------------------------*/
.car_result_box {
  display: flex;
  justify-content: space-between;
  margin: 8% auto 3%;
}
.car_result_box > div {
  width: 48%;
}

@media only screen and ( max-width: 700px ) {
  .car_result_box {
    justify-content: center;
    flex-wrap: wrap;
    margin: 8% auto;
  }
  .car_result_box > div {
    width: 100%;
    margin-bottom: 5%;
  }

}
@media only screen and ( max-width: 700px ) {
.car_result_box {
  justify-content: center;
  flex-wrap: wrap;
  margin: 8% auto 3%;
}
}
.car_result.gas {
  border: 1px solid #808080;
}
.car_result.ev {
  border: 1px solid #c3002f;
}
.gas .car_result_title {
  background: #808080;
  font-weight: 700;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.5em 0;
}
.ev .car_result_title {
  background: #c3002f;
  font-weight: 700;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.5em 0;
}

.result_box {
  display: flex;
  justify-content: space-between;
  padding: 1em;
}
.result_box > div {
  width: 50%;
  margin: 0 auto;
}
.result_cost {
  font-size: 2.4rem;
  font-weight: 700;
}
.result_cost span {
  font-weight: 700;
}
.yen {
  font-size: 75%;
  margin-left: 0.3em;
}
.ev .result_title {
  color: #c3002f;
}

/*差額表示
---------------------------------------*/
.car_diff_box {
  display: flex;
  justify-content: space-between;
  border: 2px solid #00B4DC;
  border-radius: 200px;
  overflow: hidden;
  align-items: center;
  margin-top: -20px;
  margin-bottom: 5%;
}
.car_diff_title {
  width: 37.5%;
  background: #00B4DC;
  padding: 2% 3%;
  font-size: 2.0rem;
  font-weight: 700;
  color: #fff;
}
.diff_box_wrap {
  width: 60%;
}
.diff_box {
  display: flex;
  justify-content: flex-start;

}
.diff_box > div {
  width: 50%;
}
.diff_title {
  font-weight: 700;
  color: #00B4DC;
}
.diff_cost {
  font-size: 2.4rem;
  font-weight: 700;
  color: #c3002f;
}
.diff_cost span {
  font-weight: 700;
}

@media only screen and ( max-width: 749px ) {
  .car_diff_box {
    display: block;
    border-radius: 20px;
    margin-top: 0;
  }
  .car_diff_title {
    width: 100%;
    background: #00B4DC;
    padding: 0.5em;
  }
  .diff_box_wrap {
    width: 100%;
    padding: 1em 0;
  }
}

.otoku {
  
}

/* -----------------------------------------------------
　注意事項
-----------------------------------------------------------*/
.notice_inner {
	width: 100%;
	max-width: 800px;
	margin:0 auto;
	text-align: left;
	color: #333333;
}
.notice_inner p {
	font-size: 1.4rem;
	line-height: 1.5;
	padding: 3% 2% 3rem;
}

@media only screen and ( max-width: 749px ) {
	.notice_inner p {
		font-size: 1.2rem;
	}
}


/*非表示 ------------------------------*/

