@charset "UTF-8";
/*================================================

base

================================================*/
/*================================================
 * reset */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}
body , html {/*7/5追加*/
    height: 100%;
}

#wrap{/*7/5追加*/
     width: 100%;
     position: relative;
     height:auto !important; /*IE6対策*/
     height: 100%; /*IE6対策*/
     min-height: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select, button {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

section, option {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

label {
  display: inline-block;
}
ul.notes li {
	text-indent: -1em;
	margin-left: -1em;
	line-height: 1.4;
}
.textLeft {
	text-align: left;
}

/*================================================
* base */
body {
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'MS Sans Serif', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #222222;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 769px) {
  body {
    min-width: 1040px;
  }
}

input,
select,
button,
textarea {
  outline: none;
}

select,
button,
label {
  cursor: pointer;
}

:placeholder-shown {
  color: #ccc;
  line-height: 1.7em;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #ccc;
  line-height: 1.7em;
}

@media only screen and (max-width: 768px) {
  ::-webkit-input-placeholder {
    font-size: 11px;
  }
}

/* Firefox 18- */
:-moz-placeholder {
  color: #ccc;
  line-height: 1.7em;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #ccc;
  line-height: 1.7em;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #ccc;
  line-height: 1.7em;
}

/*================================================

* layout

================================================*/
.inner {
  width: 1000px;
  box-sizing: content-box;
  padding: 0 20px;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
  /*閉じるボタン調整*/
  .featherlight .featherlight-close-icon {
    background: rgba(255, 255, 255, 0.5)!important;/*rgba(255, 255, 255, 0)*/
    position: fixed!important;/*追加*/
    margin: 15px 10px 20px 20px!important;/*追加*/
  }
}

/*================================================

* plugin

================================================*/
/*================================================
* featherlight */
/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.4.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2016, Noel Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    background: #333;
    background: transparent;
  }
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }
  .featherlight:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -.25em;
  }
  .featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /*滑らかなスクロール 0923*/
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;/*50px_1004変更*/
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    background: #fff;
    cursor: auto;
    white-space: normal;
  }
  .featherlight .featherlight-inner {
    display: block;
  }
  .featherlight .featherlight-close-icon {
    font-size: 30px;
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    line-height: 50px;
    width: 50px;
    cursor: pointer;
    text-align: center;
    font-family: Arial,sans-serif;
    background: #fff;
    background: rgba(255, 255, 255, 0);
    color: #6fba2c;
  }
  .featherlight .featherlight-image {
    width: 100%;
  }
  .featherlight-iframe .featherlight-content {
    border-bottom: 0;
    padding: 0;
  }
  .featherlight iframe {
    border: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 10px;
    margin-right: 10px;
    height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}

/*================================================

* module

================================================*/
/*================================================
* utility */
.clr:after {
  content: '';
  display: table;
  clear: both;
  height: 0;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.none {
  display: none;
}

/*================================================
* header */
.header {
  background-color: #fff;
  padding: 14px 0;
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 6px 0;
  }
}

.header .inner {
  position: relative;
}
/* 20170712 furutani del
.logo a {
  display: block;
  width: 332px;
  height: 44px;
  background: url(../img/logo_sitemain.svg) 0 0 no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 1;
  transition: opacity 0.3s ease;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .logo a {
    width: 203px;
    height: 27px;
    background: url(../img/logo_sitemain.svg) 0 0 no-repeat;
    background-size: contain;
  }
}

.logo a:hover {
  opacity: 0.7;
}
*/
.logo div {
  display: block;
  width: 332px;
  height: 44px;
  background: url(../img/logo_sitemain.svg) 0 0 no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 1;
  transition: opacity 0.3s ease;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .logo div {
    width: 203px;
    height: 27px;
    background: url(../img/logo_sitemain.svg) 0 0 no-repeat;
    background-size: contain;
  }
}

.header-tel {
  position: absolute;
  right: 20px;
  width: 314px;
  top: 1px;
}

@media only screen and (max-width: 768px) {
  .header-tel {
    display: none;
  }
}

/*================================================
* sectionHeader */
.sectionHeader {
  background-color: #0095e2;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  padding: 24px 0 19px;
}

@media only screen and (max-width: 768px) {
  .sectionHeader {
    font-size: 14px;
    padding: 17px 0 12px;
  }
  .sectionHeader .inner {
    padding: 0;
  }
}

.sectionHeaderHeading {
  font-size: 40px;
}

.sectionHeaderHeading2 {
  font-size: 40px;
}

@media only screen and (max-width: 768px) {
  .sectionHeaderHeading {
    font-size: 30px;
  }

  .sectionHeaderHeading2 {
    font-size: 30px;
  }
}

.sectionHeaderIcon {
  text-align: center;
  margin: 10px 0 14px;
}

@media only screen and (max-width: 768px) {
  .sectionHeaderIcon {
    margin: 7px 0 9px;
  }
}

.sectionHeaderIcon img {
  width: 70px;
  vertical-align: middle;
  margin: 10px;
}

@media only screen and (max-width: 768px) {
  .sectionHeaderIcon img {
    width: 60px;
  }
}

/*================================================
* formlayouts */
.formHeading {
  color: #6fba2c;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin: 23px auto 22px;
}

@media only screen and (max-width: 768px) {
  .formHeading {
    margin: 12px 0;
    font-size: 12px;
    text-align: left;/*D-14_0915*/
    line-height: 1.5;
  }
}

.formHeadingDesc {
  color: #6fba2c;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin: 0px auto 22px;
}

/*================================================

SP改行対応　0913
================================================*/

@media only screen and (max-width: 768px) {
   .tet2:before{
     content: "\A";
     white-space: pre;
   }
}

/*================================================*/

.formLeft {
  float: left;
  width: 50%;
  /*border-right: 1px solid #e9dfd2;*/
  padding-right: 20px;
}

.formRight {
  float: right;
  width: 50%;
  border-left: 1px solid #e9dfd2;
  padding-left: 19px;
}

@media only screen and (max-width: 768px) {
  .formLeft,
  .formRight {
    float: none;
    width: auto;
    padding: 0;
    border: none;
  }
}

/*================================================
* formSection */
.formSection {
  border-top: 1px solid #e9dfd2;
  position: relative;
  padding: 15px 0 25px;
}

@media only screen and (max-width: 768px) {
  .formSection {
    padding-bottom: 20px;
  }
}

.formSection:before {
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  background-color: #6fba2c;
  position: absolute;
  top: -1px;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .formSection:before {
    width: 50%;
  }
}

.formSection.formSectionPbmin {
  padding-bottom: 17px;
}

@media only screen and (min-width: 769px) {
  .formSection:last-child {
    padding-bottom: 0;
  }
}

.formSection > dt {
  font-weight: bold;
  font-size: 10px;
  margin-bottom: 13px;
}

.formSection > dt img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.formSection dd {
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .formRight .formSection:last-child {
    padding-bottom: 0;
  }
}

.formSectionType {
  font-size: 15px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/*================================================
* inputList */
.inputList {
  margin-bottom: -7px;
}

@media only screen and (max-width: 768px) {
  .inputList {
    margin-bottom: -9px;
  }
}

.inputList > li {
  float: left;
  width: 33.333%;
  padding-right: 10px;
  margin-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  .inputList > li {
    width: 50%;
    padding-right: 0;
    margin-bottom: 9px;
  }
}

.inputList.inputListFlex {
  margin-bottom: 3px;
}

@media only screen and (max-width: 768px) {
  .inputList.inputListFlex {
    margin-bottom: -18px;
  }
}

.inputList.inputListFlex > li {
  width: auto;
  margin-bottom: 0;
}

.inputList.inputListFlex > li:not(:last-child) {
  margin-right: 0px;
}

@media only screen and (max-width: 768px) {
  .inputList.inputListFlex > li {
    float: none;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .inputList6 {
    margin-bottom: -6px;
  }
}

.inputList6 > li {
  float: left;
  width: 74px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .inputList6 > li {
    width: 32%;
    margin-bottom: 6px;
  }
}

@media only screen and (min-width: 769px) {
  .inputList6 > li:not(:nth-child(6n)) {
    margin-right: 7px;
  }
}

@media only screen and (max-width: 768px) {
  .inputList6 > li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}

.inputList4 {
  margin-bottom: -7px;
}

.inputList4 > li {
  float: left;
  width: 25%;
  margin-bottom: 7px;
}

.inputList4.inputList4Type02 > li:nth-child(4n) {
  clear: both;
}

.inputList4To3 {
  margin-bottom: -7px;
}

.inputList4To3 > li {
  float: left;
  width: 25%;
  margin-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  .inputList4To3 > li {
    width: 33.333%;
    font-size: 11px;
  }
}

.inputList4To3 > li:nth-child(4n) {
  clear: both;
}

/*================================================
* inputIcon */
.inputIcon {
  display: inline-block;
  border: 1px solid #e9dfd2;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  position: relative;
  vertical-align: middle;
  top: -2px;
}

@media only screen and (max-width: 768px) {
  .inputIcon {
    margin-right: 4px;
    top: -1px;
  }
}

.inputIcon input {
  opacity: 0;
}

.inputIcon input:checked + .inputIconMark {
  opacity: 1;
}

.inputIconMark {
  opacity: 0;
}

.inputIconCheckbox .inputIconMark {
  width: 8px;
  height: 14px;
  position: absolute;
  top: -1px;
  left: 5px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.inputIconCheckbox .inputIconMark:before, .inputIconCheckbox .inputIconMark:after {
  content: "";
  display: block;
  background-color: #6fba2c;
  position: absolute;
}

.inputIconCheckbox .inputIconMark:before {
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}

.inputIconCheckbox .inputIconMark:after {
  width: 2px;
  height: 0;
  bottom: 0;
  right: 0;
  transition: all 0.1s ease;
}

.inputIconCheckbox input:checked + .inputIconMark:after {
  height: 100%;
}

.inputIconRadio {
  border-radius: 50%;
}

.inputIconRadio .inputIconMark {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #6fba2c;
  border-radius: 50%;
  border: 4px solid #fff;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  transition: all 0.1s ease;
}

.inputIconRadio input:checked + .inputIconMark {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*================================================
* iconQuestion */
.iconQuestion {
  width: 13px;
  height: 13px;
  background-color: #6fba2c;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  margin: 0 4px 0 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  line-height: 1;
  position: relative;
  top: -2px;
}

@media only screen and (min-width: 769px) {
  .iconQuestion {
    display: none;
  }
}

.iconQuestion img {
  width: 5px !important;
  height: auto !important;
  margin: auto !important;
  position: relative !important;
  top: 2px !important;
  vertical-align: top !important;
}

/*================================================
* formSectionComponents */
.formSectionBtn {
  background-color: #6fba2c;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 10px;
  border-radius: 10px;
  padding: 6px 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

@media only screen and (min-width: 769px) {
  .formSectionBtn:hover {
    top: 11px;
    box-shadow: 0 0 0 transparent;
  }
}

@media only screen and (max-width: 768px) {
  .formSectionBtn {
    padding-left: 14px;
    padding-right: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
}

.inputCaption {
  font-size: 10px;
  display: block;
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {
  .inputCaption {
    display: inline-block;
    margin-left: 0;
  }
}

.tag {
  background: #e74545;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  padding: 3px 3px 3px 6px;
  margin-left: 3px;
  border-radius: 3px;
  vertical-align: top;
  position: relative;
  display: inline-block;
  margin-left: 2px;
  white-space: nowrap;/*0725*/
}

@media only screen and (max-width: 768px) {
  .tag {
    margin: 0;
    vertical-align: middle;
    top: -1px;
  }
}

.caption {
  font-size: 10px;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .caption {
    margin-top: 12px;
  }
}

.caption.captionNear {
  margin-top: 7px;
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  .caption.captionNear {
    margin-top: 12px;
  }
}

.link {
  text-decoration: underline;
  color: #6fba2c;
}

.link:hover {
  text-decoration: none;
}

.textArrow {
  margin: 0 10px;
}

/*================================================
* carTypeBtn */
.carTypeBtn {
  display: table;
  border: 1px solid #e9dfd2;
  border-radius: 4px;
  width: 74px;
  height: 74px;
  font-size: 10px;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .carTypeBtn {
    width: 100%;
    height: 60px;
  }
}

.carTypeBtn input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  margin: 0;
  opacity: 0;
}

.carTypeBtn input:checked + .carTypeBtnBg {
  opacity: 1;
}

.carTypeBtn:hover .carTypeTip {
  opacity: 1;
  bottom: 100%;
}

.carTypeBtnBg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(111, 186, 44, 0.15);
  border: 1px solid #6fba2c;
  z-index: 1;
  opacity: 0;
  border-radius: 4px;
  box-sizing: content-box;
  top: -1px;
  left: -1px;
}

.carTypeBtnImg {
  display: block;
  margin: auto;
  width: 39px;
  margin-bottom: 6px;
}

.carTypeBtnText {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  padding-top: 3px;
}

.carTypeTip {
  position: absolute;
  bottom: 80%;
  left: -1px;
  background-color: #6fba2c;
  color: #fff;
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.5;
  z-index: 10;
  border-radius: 10px 10px 10px 0;
  padding: 14px 12px;
  opacity: 0;
  transition: all 0.25s ease;
  will-change: bottom;
  text-align: left;
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .carTypeTip {
    display: none;
  }
}

.carTypeTip:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 3px solid transparent;
  border-bottom: 6px solid transparent;
  border-top: 6px solid #6fba2c;
  border-left: 3px solid #6fba2c;
  position: absolute;
  top: 100%;
  left: 0;
}

.carTypeBtnWgn .carTypeBtnText {
  padding-top: 11px;
}

.carTypeBtnWgn .carTypeBtnImg {
  margin-bottom: 1px;
}

/*================================================
* search */
.search {
  display: table;
  width: 100%;
  height: 39px;
}

.mikomi {
  display: table;
  width: 100%;
  height: 39px;
  text-align: left;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .search {
    height: 33px;
  }
}

.searchInput,
.searchBtn {
  display: table-cell;
  vertical-align: top;
}

.searchInput input,
.searchInput button,
.searchBtn input,
.searchBtn button {
  width: 100%;
  height: 39px;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .searchInput input,
  .searchInput button,
  .searchBtn input,
  .searchBtn button {
    height: 33px;
  }
}

.searchInput {
  width: 87.5%;
}

@media only screen and (max-width: 768px) {
  .searchInput {
    width: 80%;
  }
}

.searchInput input {
  border: 1px solid #e9dfd2;
  border-right: none;
  padding: 10px;
  border-radius: 3px 0 0 3px;
  line-height: 1.7em;
}

.mikomiInput {
  vertical-align: middle;
}
.mikomiInput input {
  border: 1px solid #e9dfd2;
/*  border-right: none;*/
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
/*  line-height: 1.7em;*/
  width: 90%;
  height: 39px;
  top: 0;
  left: 0;
  box-sizing: border-box;
/*  display: block;*/
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
  margin: 0 0 5px 10px;
}

@media only screen and (max-width: 768px) {
  .mikomiInput input {
    width: 100%;
    margin: 0px;
  }
}


.searchInput input:focus {
  border-color: #ccc2b6;
}

.searchBtn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  margin: 0;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #6fba2c;
  border-radius: 0 3px 3px 0;
  transition: all 0.3s ease;
  opacity: 1;
}

.searchBtn button:hover {
  opacity: 0.8;
}

/*================================================
* alertbox */
.alertbox {
  text-align: center;
  background-color: #f8f7f3;
  font-size: 11px;
  margin: 26px 0 12px;
  padding: 7px 10px;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .alertbox {
    margin: 12px 0 14px;
    text-align: left;
    font-size: 10.9px;
    word-break: break-all;
    padding: 12px 10px;
    line-height: 1.6;
  }
}

/*================================================
* itemNav */
.itemNav {
  background-color: #e8e3d9;
  padding: 16px 0 13px;
}

.itemNav .inner {
  position: relative;
}

.itemNavCurrent {
  font-size: 12px;
  position: absolute;
  top: 11px;
  left: 20px;
}

@media only screen and (max-width: 768px) {
  .itemNavCurrent {
    position: static;
    float: left;
    padding: 12px 0 0;
  }
}

.itemNavNumber {
  font-size: 25px;
  font-weight: bold;
  color: #6fba2c;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@media only screen and (max-width: 768px) {
  .itemNavNumber {
    letter-spacing: -2px;
  }
}

/*================================================
* paging */
.paging {
  display: inline-block;
  border-radius: 5px;
}

.paging > li {
  float: left;
}

.paging a,
.paging span {
  display: block;
  text-decoration: none;
  font-size: 15px;
  color: #222222;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-right: 1px solid #e9dfd2;
  padding-top: 13px;
  position: relative;
  top: 0;
  transition: top 0.2s ease;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.paging a:hover,
.paging > .isCurrent span {
  background-color: #dfccb2;
  color: #fff;
}

.paging a:hover {
  top: 1px;
  box-shadow: 0 0 0 transparent;
}

.paging .pagingPrev,
.paging .pagingNext {
  width: 80px;
  overflow: hidden;
  text-indent: -9999px;
  position: relative;
}

.paging .pagingPrev:after,
.paging .pagingNext:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #222;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -3px;
}

.paging .pagingPrev {
  border-radius: 4px 0 0 4px;
}

.paging .pagingPrev:after {
  border-left: 1px solid #222;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.paging .pagingNext {
  border-radius: 0 4px 4px 0;
  border-right: none;
}

.paging .pagingNext:after {
  border-right: 1px solid #222;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -7px;
}

.paging a.pagingPrev:hover:after,
.paging a.pagingNext:hover:after {
  border-color: #fff;
}

.paging span.pagingPrev:after,
.paging span.pagingNext:after {
  border-color: #d3d3d3;
}

.pagingWrapper {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .pagingWrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 3px;
  }
  .paging {
    display: table-row;
    width: 100%;
  }
  .paging > li {
    display: table-cell;
    float: none;
    vertical-align: middle;
  }
  .paging > li:first-child, .paging > li:last-child {
    width: 18%;
  }
  .paging a, .paging span {
    width: 100%;
  }
  .paging .dot:after {
    content: "…";
    color: #888;
  }
  .pagingPrev, .pagingNext {
    width: 100% !important;
  }
}

/*================================================
* sort */
.sort {
  position: absolute;
  right: 20px;
  top: 0px;
}

@media only screen and (max-width: 768px) {
  .sort {
    position: static;
    float: right;
    padding: 3px 0;
  }
}

.sort > dt {
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
  margin-right: 5px;
}

.sort > dt:after {
  content: ":";
}

.sort > dd {
  display: inline-block;
  vertical-align: middle;
}

.sort select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  margin: 0;
  background-color: #fff;
  padding: 0 20px 0 15px;
  width: 190px;
  border-radius: 5px;
  font-size: 15px;
  height: 39px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .sort select {
    width: 165px;
  }
}

.sort select::-ms-expand {
  display: none;
}

.sortSelectWrapper {
  position: relative;
}

.sortSelectWrapper:after {
  content: "";
  display: block;
  width: 7px;
  height: 16px;
  background: url(../img/icon_spin.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -8px;
}

/*================================================
* itemContent */
.itemContent {
  background-color: #f8f7f3;
  /*padding: 29px 0 20px; 20170420*/
  padding: 10px 0 0px;
}

@media only screen and (max-width: 768px) {
  .itemContent {
    padding: 10px 0 26px;
  }
}

/*================================================
* itemList */
.itemList > li {
  width: 192px;
  float: left;
  margin-bottom: 10px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .itemList > li {
    width: 49%;
  }
}

@media only screen and (min-width: 769px) {
  .itemList > li:not(:nth-child(5n)) {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .itemList > li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

/*================================================
* item */
.item {
  display: block;
  text-decoration: none;
  width: 100%;
  text-align: center;
  border: 1px solid #eae6db;
  background-color: #fff;
  border-radius: 4px;
  color: #222;
  position: relative;
  top: 0;
  transition: all 0.1s ease;
}

.item:after {
  content: "";
  border-radius: 4px;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0 solid #ef5619;
  box-sizing: border-box;
  transition: all 0.1s ease;
}

@media only screen and (min-width: 769px) {
  .item:hover {
    top: 2px;
  }
  .item:hover:after {
    border-width: 3px;
  }
  .item:hover .itemBtn {
    box-shadow: 0 0 0 transparent;
  }
}

.itemImg {
  border-bottom: 1px solid #eae7df;
  padding: 27px 0 15px;
}

@media only screen and (max-width: 768px) {
  .itemImg {
    padding: 16px 10px 8px 10px;
  }
}

.itemTitle {
  font-weight: bold;
  font-size: 15px;
  padding: 8px 5px;
  height:46px;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .itemTitle {
    font-size: 13px;
    padding: 8px 3px;
    height: 40px;
  }
}

.itemLabel {
  background-color: #f4f2eb;
  font-size: 12px;
  padding: 4px 5px;
  margin: 0 1px;
}

@media only screen and (max-width: 768px) {
  .itemLabel {
    font-size: 10px;
  }
}

.itemDataList {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-bottom: 1px solid #eae7df;
}

.itemDataList > li {
  display: table-cell;
  font-size: 11px;
  color: #ae8311;
  padding: 5px 2px 4px;
}

.itemDataList > li:first-child {
  border-right: 1px solid #eae7df;
}

@media only screen and (max-width: 768px) {
  .itemDataList > li {
    font-size: 10px;
    padding: 7px 0 5px;
  }
}

.itemPrice {
  font-size: 12px;
  padding: 12px 5px 4px;
}

@media only screen and (max-width: 768px) {
  .itemPrice {
    font-size: 10px;
    padding: 12px 5px 9px;
  }
}

.itemPriceData {
  font-weight: bold;
  color: #ef5619;
  vertical-align: middle;
}

.itemPriceNumber {
  font-size: 25px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@media only screen and (max-width: 768px) {
  .itemPriceNumber {
    font-size: 20px;
  }
}

.itemBtn {
  background-color: #ef5619;
  color: #fff;
  font-size: 13px;
  padding: 9px 5px 6px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

.itemBtn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/icon_arrow.png) 0 0 no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: relative;
  top: -1px;
  margin-left: 3px;
}

/*================================================
* history */
.sectionHistory {
  padding: 56px 0;
}

@media only screen and (max-width: 768px) {
  .sectionHistory {
    padding: 26px 0 11px;
  }
}

.historyHeading {
  font-size: 35px;
  text-align: center;
  margin-bottom: 39px;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  .historyHeading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.historyHeadingBold {
  font-weight: bold;
  color: #6fba2c;
}

/*================================================
* footerTel */
.footerTel {
  background-color: #f8f7f3;
  text-align: center;
  padding: 36px 0 42px;
  display: block;
  cursor: default;
  height: 141px;/*7/5追加*/
  /*position: absolute;7/5追加*/
  /*bottom: 102px;7/5追加*/
  /*width: 100%;7/5追加*/
}

@media only screen and (max-width: 768px) {
  .footerTel {
    padding: 17px 0 24px;
  }
}

.footerTelImg {
  width: 500px;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .footerTelImg {
    width: 297px;
    max-width: 100%;
  }
}

/*================================================
* footer */
.footer {
  background-color: #6fba2c;
  color: #fff;
  font-size: 12px;
  padding: 44px 0;
}
.footerBottom {
  background-color: #6fba2c;
  color: #fff;
  font-size: 12px;
  padding: 44px 0;  height: 102px;/*7/5追加*/
  position: absolute;/*7/5追加*/
  bottom: 0;/*7/5追加*/
  width: 100%;/*7/5追加*/
}


@media only screen and (max-width: 768px) {
  .footer {
    padding: 15px 0;
    height: auto;/*7/5追加*/
  }
}

@media only screen and (max-width: 768px) {
  .footerMenu {
    text-align: center;
    margin-bottom: 28px;
  }
}

@media only screen and (min-width: 769px) {
  .footerMenu {
    float: left;
  }
}

@media only screen and (min-width: 769px) {
  .footerMenu > li {
    float: left;
  }
  .footerMenu > li:not(:last-child) {
    margin-right: 17px;
  }
}

@media only screen and (max-width: 768px) {
  .footerMenu > li {
    display: inline-block;
    margin: 0 5px;
    width: 45%; /* 2分割 */
  }
/*  .footerMenu > li:first-child {
    display: block;
    margin: 0 0 10px;
  }
*/
  .footerMenu > li:nth-of-type(1) {
    text-align: right;  /* 右寄せ（プライバシーポリシー） */
    margin: 0 0 10px;   /* 幅調整 */
  }
  .footerMenu > li:nth-of-type(2) {
    text-align: left;   /* 左寄せ（個人情報保護方針） */
  }
  .footerMenu > li:nth-of-type(3) {
    text-align: right;  /* 右寄せ（サイト利用条件） */
    margin: 0 0 0px;    /* 幅調整 */
  }
  .footerMenu > li:nth-of-type(4) {
    text-align: left;   /* 左寄せ（お支払い等について） */
  }
}

.footerMenu a {
  text-decoration: none;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .footerMenu a:hover {
    text-decoration: underline;
  }
}

.copyright {
  font-size: 11px;
}

@media only screen and (min-width: 769px) {
  .copyright {
    float: right;
  }
}

@media only screen and (max-width: 768px) {
  .copyright {
    font-size: 10px;
    text-align: center;
    line-height: 1.4;
  }
}

.copyrightMark {
  font-size: 14px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/*================================================
* pagetop */
.pagetop {
  display: block;
  width: 45px;
  height: 45px;
  background: #6fba2c url(../img/icon_arrow_top.png) 50% 48% no-repeat;
  background-size: auto 12px;
  border: 1px solid #fff;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 50%;
  position: fixed;
  right: 10px;
  bottom: 40px;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  .pagetop {
    width: 60px;
    height: 60px;
    background-size: 30px auto;
    bottom: 70px;
    /*right: calc(50% - 500px);*/
    right: 10px;
    transition: all 0.2s ease;
  }
  .pagetop:hover {
    background-color: #86c74c;
  }
}

/*================================================
* headingBorder in modal */
.headingBorder {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 2px solid #6fba2c;
  padding-bottom: 10px;
  margin: 10px auto;
}

/*================================================
* dlTable in modal */
.dlTable {
  display: table;
  border-collapse: collapse;
  border-top: 1px solid #e3d7c7;
  margin-bottom: 10px;
}

.dlTable > dl {
  display: table-row;
  border-bottom: 1px solid #e3d7c7;
}

.dlTable > dl > dt,
.dlTable > dl > dd {
  display: table-cell;
  vertical-align: middle;
  font-size: 10px;
  padding: 10px 5px;
}

.dlTable > dl > dt {
  text-align: center;
  border-right: 1px solid #e3d7c7;
  width: 100px;
}

.dlTable > dl dd {
  padding: 10px 14px;
}

.dlTableImg {
  display: block;
  margin: auto;
  text-align: center;
  width: 40px;
  margin-bottom: 10px;
}

/*================================================

INDEX_ZERO + OTHER

================================================*/

.notApp{
	text-align:center;
	margin:60px 0;
	font-weight:bold;
	color:#ef5619;
	font-size:16px;
}

.textSmall {
	font-size: 12px;
	line-height: 1.4;
}

.lineH15 {
	line-height: 1.5;
}

.forIp5 {
	display: none;
}

@media only screen and (max-width: 320px) {

	.formSectionBtn {
		text-align: center;
		border-radius: 16px;
	}

	.forIp5{
		display: block;
	}

}
/*==============================================

BANNER調整 2016/7/5追加

==============================================*/

.mb-10{
	margin-bottom: 10px;
}


/*==============================================

フッター外部リンク対応 2016/7/28追加

==============================================*/
footer .inner a span.blank {
	display: inline-block;
	background: url(../img/icon_blank.png) no-repeat right center;
	background-size: 10px;
	padding-right: 14px;
}

/*==============================================

フリープラン外部リンク対応 2016/9/5追加

==============================================*/

.freeplanInfobox{
    border: solid 3px #6fba2c;
    margin: 5px 0 12px ;
    padding: 10px;
}

.freeplanInfobox .textBold{
    font-weight: bold;
    color: #6fba2c;
}

/*.freeplanInfobox .text_bg{
    color: #ffffff;
    background-color: #6fba2c;
    padding: 4px 4px 4px 7px;
    margin: 0 5px;
}

@media only screen and (max-width: 768px) {
.freeplanInfobox .text_bg{
    color: #ffffff;
    background-color: #6fba2c;
    padding: 1px 1px 1px 5px;
    margin: 0 5px;
    }
}*/

.freeplanInfo{
    font-weight: bold;
    margin-top: -0.2em;
    height: 30px;
    color: #6FBA2C;
    padding-top: 7px;
    margin-bottom: 1px;
}



/*==============================================

フリープラン調整 2016/9/14 KPS追加

==============================================*/

.item .freePlan{
    position: absolute;
    text-align: center;
    width: 100%;
    color: #ffffff;
    background-color: #6fba2c;
    border-radius: 4px 4px 0 0;
    padding: 5px 0;
    transition: 0.1s ease;
}

.item .textSmall{
    font-size: 11px;
}

@media only screen and (max-width: 768px) {
.item .freePlan{
    position: absolute;
    text-align: center;
    width: 100%;
    color: #ffffff;
    background-color: #6fba2c;
    border-radius: 4px 4px 0 0;
    padding: 1px;
    transition: 0.1s ease;
    } 
.item .textSmall{
    font-size: 65%;
    }
}

@media only screen and (max-width: 320px) {
.item .freePlan{
    position: absolute;
    text-align: center;
    font-size: 80%;
    width: 100%;
    color: #ffffff;
    background-color: #6fba2c;
    border-radius: 4px 4px 0 0;
    padding: 0;
    transition: 0.1s ease;
    }

    .item .textSmall{
    font-size: 60%;
    }

}

.textBold {
    font-weight: bold !important;
}

/*==============================================

STEP1説明文

===============================================*/

#alertbox2 {
	margin: 12px 0;
    line-height: 1.7;
    max-width: auto;
}

#alertbox2 > .textLeft {
    background-color: #f8f7f3;
    padding: 7px 10px;
	float: left;
}

@media only screen and (min-width: 769px) {
#alertbox2 > .textLeft {
	max-width: 680px;
}
}
    
#alertbox2 > div {
	float: right;
}

#alertbox2 > div > img {
    width: 300px;
    margin-left: 15px;
}

@media only screen and (max-width: 768px) {
  #alertbox2 {
	margin: 12px 0 0;
}  
    
    #alertbox2 > div > img {
    width: 100%;
    margin: 12px 0 0;
}
    
  #alertbox2 > .textLeft {
	width: 100%;
}  
}

/*==============================================

ビジネスプラン調整 2016/9/21 KPS追加
色味提案中（黒・他）

==============================================*/
/*black*/
.businessPlanInfo{
    font-weight: bold;
    margin-top: -0.2em;
    height: 30px;
    color: #B3B0A8;
    padding-top: 7px;
    margin-bottom: 1px;
}
.item .businessPlan{
    position: absolute;
    text-align: center;
    width: 100%;
    color: #ffffff;
    background-color: #B3B0A8;
    border-radius: 4px 4px 0 0;
    padding: 5px 0;
    transition: 0.1s ease;
}

@media only screen and (max-width: 768px) {
.item .businessPlan{
    position: absolute;
    text-align: center;
    width: 100%;
    color: #ffffff;
    background-color: #B3B0A8;
    border-radius: 4px 4px 0 0;
    padding: 1px;
    transition: 0.1s ease;
    }

}

@media only screen and (max-width: 320px) {
.item .businessPlan{
    position: absolute;
    text-align: center;
    font-size: 60%;
    width: 100%;
    color: #ffffff;
    background-color: #B3B0A8;
    border-radius: 4px 4px 0 0;
    padding: 0;
    transition: 0.1s ease;
    }
 
}


/*==============================================

ビジネスプラン調整 2016/9/14 KPS追加

==============================================*/



/*=========0131追加  主要装備==========*/
.sectionHeaderTxt{
	position: relative;
	top: 5px;
	left: 10px;
}
.mt_15{
	margin-top: 15px;
}
.mt_25{
	margin-top: 25px;
}
.mt_50{
	margin-top: 50px;
}
.mt_100{
	margin-top: 100px;
}
.equTit{
	position: relative;
	top:3px;
}
.itemSs{
	font-size: 11px;
	padding: 5px 3px 4px;
	line-height: 1.5;
}
/*.inputList4To4{
	margin-top: 25px;
}*/
.inputList4To4 > li {
	float: left;
	width: 33%;
	margin-bottom: 7px;
}
.formSectionBtn1.active,
.formSectionBtn1 {
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	display: inline-block;
	position: absolute;
	right: 0;
	top: 10px;
	border-radius: 25px;
	padding: 10px 100px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
.formSectionBtn1{
	background: url(../img/icon_arr_dwn.png)97% 45% no-repeat #6fba2c;
	background-size: 20px;
}
.formSectionBtn1.active{
	background: url(../img/icon_arr_up.png)97% 45% no-repeat #6fba2c;
	background-size: 20px;
}
 .formSectionBtn1:hover {
	top: 11px;
	box-shadow: 0 0 0 transparent;
}
.recomtlb {
	font-size: 12px;
	width: 100%;
	margin: 21px 0 20px;
	display: none;
}
.recomtlb th,
.recomtlb td {
	border: solid 1px #c5beb6;
	padding: 5px;
	width: 230px;
	height: 35px;
	vertical-align: middle;
	line-height: 1.3;
}
.recomtlb thead {
	font-weight: bold;
	background-color: #e8e3d9;
}
.recomtlb tr:nth-child(even){
	background-color: #f8f7f3;
}
.recomtlb td:nth-child(1){
	font-weight: bold;
	width: 305px;
}
/*====選択ボックス====*/
.chekInfo{
	position: relative;
	color: #6fba2c;
	font-weight: bold;
	top: -15px;
	font-size: 14px;
}
.carChecked{
	color: #6fba2c;
	font-size: 14px;
	font-weight: bold;
}
.carCheck{
	color: #B3B0A8;
	font-size: 14px;
}

/*====pageComp====*/
.pageComp {
	display: none;
	width: 195px;
	height: 65px;
	background: #6fba2c url(../img/icon_arr_pagedw.png) 80% 50% no-repeat;
	background-size: 22px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border-radius: 35px;
	position: fixed;
	right: -30px;
	z-index: 2;
	text-align: center;
	padding-top: 2px;
	padding-right: 35px;
	bottom: 145px;
	text-decoration: none;
	cursor: pointer; /*0329追加*/
}
.pageCompLab{
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	vertical-align: middle;
	line-height: 1.2;
	font-size: 14px;
}
.pageCompLab img{
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 13px;
	right: 10px;
}
.pageCompNum{
	font-size: 20px;
}
.pageCompMax{
	font-weight:lighter;
	font-size: 10px;
}
/*===========================================
		0315追加　―　各装備の説明ボタン
===========================================*/
.equipmentBtn {
	text-decoration: none;
	color: #fff;
	background-color: #6fba2c;
	font-size: 11px;
	font-weight: bold;
	position: absolute;
	top: 15px;
	margin-left: 160px;
	border-radius: 25px;
	padding: 5px 10px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
 .equipmentBtn:hover {
	top: 16px;
	box-shadow: 0 0 0 transparent;
}
/*===========================================
    2017/4/20 - 追加
===========================================*/
.formSectionBtn2 {
  background: #6fba2c;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  border-radius: 25px;
  padding: 5px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  width: 15%;
  margin: 10px 0 15px -25px;
}
.equipmentList {
  margin-left: 5em;
}
.equipmentList img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -6px;
  right: 26px;
}
#nF_btn_pg {
  margin: 10px auto;
  text-align: center;
}
.btn {
  display: inline-block;
  width: 284px;
  color: #fff;
  font-size: 15px;
  background: #6fba2c;
  border-radius: 70px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  cursor: pointer;
  margin: 10px 0!important;
  line-height: normal;
}
.Compbtn-large {
  width: 648px !important;
  /*padding: 8px;*/
  padding: 1px 8px 1px;
  font-size: 24px;
  letter-spacing: .1em;
  font-weight: bold;
  line-height: 1.5!important;
}
.btn-Font {
  color: #fff!important;
  text-decoration: none!important;
}
.btn:hover {
  box-shadow: none;
  position: relative;
  top: 1px;
}
.Compbtn-large.icon_wit::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/arrow3.png) 0 0 no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: relative;
  margin: 3px;
  float: right;
  top: 18px;
}
.btnArea {
  text-align: center;
  padding: 15px 0 20px;
}

.btnAreaBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btnAreaSyasyuHikaku {
  text-align: center;
  padding: 15px 0 20px;
}
.btnAreaUsedCar {
  text-align: center;
  padding: 15px 0 20px;
}
.carComp {
  font-size: 24px;
  display: inline-block;
}
.carCompMax {
  font-size: 12px;
  padding-right: 8px;
}
.carCompNum {
  font-size: 20px;
}
.carCompChoice {
  font-size: 16px;
}
.formSection.formSectionPbmin {
    padding-bottom: 51px;
}
.pb_51 {
  padding-bottom: 51px;
}
@media only screen and (min-width: 769px){
  .formSection:last-child {
    padding-bottom: 35px;
}
}
.itemLabel_lst {
  background-color: #f4f2eb;
  font-size: 12px;
}
.itemLabel_lst li{
    color: #222;
    padding: 1px 0px;
}
.itemLabel_lst > li:first-child {
    border-right: 1px solid #eae7df;
    display: table-cell;
    font-size: 11px;
    padding: 5px 2px 4px;
}
.CompbtnStep1 {
  /*padding: 5px 0;*/
    padding: 10px 0;
}
.CompbtnStep1 .carComp img {
    position: relative;
    /*top: -1px;*/
    vertical-align: middle;
    right: 10px;
    width: 14px;
}
.CompbtnStep1.Compbtn-large.icon_wit::after {
  top: 3px;
  right: 10px;
}
.equipmentList .formSectionType {
  font-weight: bold;
  left: -25px;
  margin-bottom: 10px;
  display: inline-block;
}
.equipmentList .inputList4To4:first-of-type {
  margin-bottom: 15px;
}
.btn_bk{
  background-color: #f8f7f3;
}
.equipmentList .inputList4To4 .carTypeBtn {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 12px;
  display: inline;
}
.equipmentList .inputList4To4 .carTypeBtn .carTypeTip {
  padding: 7px 6px;
}

.otherCostInput input {
  border: 1px solid #e9dfd2;
  height: 30px;
  border-radius: 3px;
}

.btn-Back01{    
	display: inline-block;
    /*width: 300px;*/
	color: #fff;
    font-size: 12px;
    background: #B3B0A8;
    border-radius: 35px;
    text-decoration: none;
    text-align: center;
    vertical-align: center;
    padding: 12px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-Back01:hover{
    position: relative;
    top: 1px;
    opacity: 0.8
}

.btn-medium {
    width: 160px;
    padding: 6px;
    font-size: 12px;
    letter-spacing: .1em;
}

.flex-box {
	position: relative;
    display: flex;
    align-items: flex-end;
}

.videoBtn {
	display: flex;
	align-items: center;
	width: 120px;
	height: 40px;
	background: #666;
	color: #FFF;
	border: 1px solid;
	border-radius: 50px;
	margin-left: 10px;
	padding: 5px 5px 5px 10px;
	text-align: center;
	line-height: 25px;
	text-decoration: none;
}

.videoBtn::before {
	font-size: 20px;
	margin-right: 5px;
}

.videoBtn > span {
	font-weight: bold;
}

.videoBtn2 {
	position: absolute;
	bottom: 5px;
	right: 5px;
	display: flex;
	align-items: center;
	width: 90px;
	height: 35px;
	background: #666;
	color: #FFF;
	border: 1px solid;
	border-radius: 50px;
	padding: 5px 5px 5px 10px;
	text-align: center;
	line-height: 25px;
	text-decoration: none;
}

.videoBtn2::before {
	font-size: 14px;
	margin-right: 3px;
}

.videoBtn:hover {
    position: relative;
    top: 1px;
    opacity: 0.8;
}

.videoBtn2:hover {
    bottom: 4px;
    opacity: 0.8;
}

.pos_rel {
	position: relative;
}

#equipVideoBtn.videoBtn {
	width: 130px;
	display: none;
	margin-top: 10px;
}