@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#000000;
  margin:0;
  padding:0;
  background:#FFFFFF;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  position:relative;
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/



/* body base
===============================================================*/
.l-wrap {
  padding: 100px 0 0 0;
}
.l-inner {
  height: auto;
  width: auto;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 1240px) {
  .l-inner {
    padding: 0 15px;
  }
}

@media screen and (min-width: 769px) {
  .u-spOnly {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-pcOnly {
    display: none;
  }
  .l-wrap {
    padding: 64px 0 0 0;
  }
}

span.u-word-wrap {
  display: inline-block;
}


/* header
===============================================================*/
.c-header {
  background-color: rgb(0, 145, 215);
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 10000; 
  padding:10px 0;
  width: 100%;
}
.c-header__inner{
  width: auto;
  height: 80px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
/* ロゴ */
.c-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

/* 輸入車の売却なら外車マスター */
.c-header__logoSub {
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.286;
  text-align: left;
  margin-left: 12px;
}
/*  */
.c-header__contact{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

/* お電話からのご相談・お問合せ */
.c-header__contactTitle {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 3px;
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 13px;
}

/* フレックス部ー電話番号受付時間 */
.c-header__contactTelTime{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* 電話番号 */
.c-header__contactTel{
  font-size: 48px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: rgb(255, 255, 255);
  line-height: 0.7;
  text-align: left;
  margin-right: 9px;
}
/* 受付時間 */
.c-header__contactTime {
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.286;
  text-align: left;
}
/* ボタンー無料査定を依頼する */
.c-header__buttonRequest a{
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1;
  text-align: center;

  border-radius: 10px;
  background-color: rgb(0, 73, 134);
  height: 50px;
  padding:10px 18px;
  margin-left: 18px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.c-header__buttonRequest a>img{
  margin-left: 13px;
}

@media screen and (max-width: 960px) {
  /* 輸入車の売却なら外車マスター */
  .c-header__logoSub {
    font-size: 11px;
    line-height: 1.286;
  }
  /* お電話からのご相談・お問合せ */
  .c-header__contactTitle {
    border-radius: 10px;
    padding: 3px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  /* 電話番号 */
  .c-header__contactTel{
    font-size: 30px;
  }
  /* 受付時間 */
  .c-header__contactTime {
    font-size: 12px;
  }
  /* ボタンー無料査定を依頼する */
  .c-header__buttonRequest a{
    font-size: 14px;
    height: 40px;
    padding:5px 10px;
    margin-left: 10px;
  }
  .c-header__buttonRequest a>img{
    margin-left: 8px;
  }
}

@media screen and (max-width: 768px) {
  .c-header {
    padding:7px 0;
  }
  .c-header__inner{
    height: 50px;
  }
  .c-header__logo img{
    height: 46px;
  }
  .c-header__logoSub {
    font-size: 13px;
    line-height: 1.286;
  }
}

/* スマホ時の固定フッター
===============================================================*/
.c-bottom {
  background-color: rgb(0, 145, 215);
  position: fixed; 
  bottom: 0;
  left: 0;
  z-index: 10000; 
  padding:10px 15px;
  width: 100%;
  box-sizing: border-box;
}
.c-bottom__inner {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
/* SP用お問い合わせボタン */
.c-bottom__button{
  /* width: 57% ;  */
  /*48.5*/
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.c-bottom__button + .c-bottom__button{
  width: 40%;
}
.c-bottom__button a{
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: rgb(0, 73, 134);
  padding:10px 10px;
}
.c-bottom__button__textL {
  font-size: 14px;
}
.c-bottom__buttonTelIcon {
  font-size: 16px;
  margin-right: 9px;
}
.c-bottom__buttonTelTxtWrap {
  text-align: left;
}
.c-bottom__buttonTelTxt {
  font-size: 14px;
  line-height: 1.3;
  display: block;
}
.c-bottom__buttonTelTime {
  margin-top: 3px;
  font-size: 10px;
  display: block;
}
/*
@media screen and (max-width: 490px) {
  .c-bottom__button a{
    font-size: 12px;
    padding:10px 10px;
  }
  .c-bottom__icon{
    font-size: 25px;
    margin-left: 8px;
  }
  .c-bottom__contactTime {
    display: none;
  }
}
*/


/* footer
===============================================================*/
.c-footer{
  background-color: #ffffff;
  border-top: 1px solid rgb(0, 145, 215);
  width: 100%;
  height: 70px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.c-footer__copyright{
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .c-footer__copyright{
    font-size: 11px;
  }
}

