/* * {
  outline: 1px solid magenta;
} */

/* フォント読み込み */
/* @import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css); */

/***************** 全体 *****************/
body {
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  /* width: 100%; */
  margin: auto;
  display: block;
}

p {
  /* letter-spacing: 0.1em; */
  line-height: 1.4em;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
  /* 画像をテキストの先頭に合わせる */
  align-items: flex-start;
}
.date{
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 0.5em 0;
  font-weight: bold;
}
.cta_img {
  margin-top: 1.5em;
}

/* 現在の時刻 */
.conversion .now_time {
  margin: auto;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  top: -16.5vw;
  right: -4.5em;
  font-size: 3.7vw;
  z-index: 10;

  /* 文字の縁に色 */
  /* text-shadow: -1px -1px 0 #000,  
                  1px -1px 0 #000,  
                 -1px  1px 0 #000,  
                  1px  1px 0 #000;  */
}

/* タイトル */
.title {
  font-size: 2.5em;
  color: #0B329D;
  font-weight: bold;
  text-align: center;

}

/* 大きいフォント */
.font_big {
  font-size: 1.5em;
}

/* 小さいフォント */
.font_small {
  font-size: 0.8em;
}

/* レッドフォント */
.font_red {
  color: #b60000;
}

/* オレンジフォント */
.font_orange {
  color: #F3480A;
}

/* ブルーフォント */
.font_blue {
  color: #0B329D;
}

/* 黄色フォント */
.font_yellow {
  color: #FDDE27;
}

/* PCサイズ */
@media (min-width:768px) {
  body {
    width: 30%;
    margin: 0 auto;
  }

  /* 現在の時刻 */
  .conversion .now_time {
    margin: auto;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    top: -4.7vw;
    right: -4.5em;
    font-size: 1.1vw;
    z-index: 10;
  }
}

/***************** index.html *****************/
/* #region ======= header ======= */
header .hd_img_1 {
  /* 1枚目を右寄せ */
  float: left;
}

header .hd_img_2 {
  /* 2枚目を右寄せ */
  float: right;
}
/* #endregion */

/* 料金プラン */
#fee {
  margin-top: 0.5em;
}

#fee ul {
  margin: 1em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#fee ul li {
  border: 1px solid #0B329D;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  margin: 0.2em 0.1em;
  position: relative;

  width: 48%;
  /* リストアイテムを2列にするための幅設定 */
  box-sizing: border-box;
  /* ボーダーボックスモデルを使用して要素の幅を調整 */
}

#fee ul li .li_area {
  padding: 0.3em 0.3em;
  position: relative;
}

#fee ul li .fee_content {
  text-align: left;
  margin: 1em 0;
  font-size: 0.7em;
}

#fee ul li p {
  font-size: 1.1em;
}

#fee ul li h1 {
  background-color: #0B329D;
  color: #ffffff;
  text-align: center;
  padding: 0.5em 0;
  font-size: 1em;
}

#fee ul li h2 {
  color: #0B329D;
  margin-top: 0.5em;
  margin-bottom: 0.3em;
  font-size: 0.8em;
}

#fee ul li .tax {
  font-size: 0.6em;
  color: #F3480A;
  position: absolute;
  top: 21vw;
  left: 37vw;
  line-height: 0.6em;
}

#fee ul li .message {
  font-size: 0.5em;
  position: absolute;
  top: 17vw;
  left: 3vw;
  line-height: 0.6em;

  transform: rotate(-35deg);
  display: inline-block;
  /* 回転させた要素をブロック要素として扱うため */
}

#fee ul li .old_money {
  position: relative;
}

#fee ul li .new_money {
  color: #F3480A;
}


#fee .fee_content::before {
  content: "";
  background-image: url('../images/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  float: left;
  margin-right: 0.5em;
  margin-bottom: 2em;
}

#fee ul li .old_money::before {
  content: "";
  position: absolute;
  border-top: 3px double red;
  width: 100px;
  top: 50%;
}

/* PCサイズ */
@media (min-width:768px) {
  #fee ul li .tax {
    top: 4.2vw;
    left: 9.2vw;
  }
  #fee ul li .message {
    top: 3.5vw;
    left: 2vw;
    font-size: 0.7em;
  }
}

/* 支払い方法 */
#method {
  margin: 0 0.5em;
}

#method p {
  font-size: 0.8em;
}

/* 安心の明朗会計 */
#accounting {
  border: 1px solid #0B329D;
  padding: 1em 1em;
  margin: 2em 0.5em;
  text-align: center;
}

#accounting h1 {
  font-size: 1.4em;
  font-weight: bold;
}

#accounting h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 0.7em;
}

#accounting p {
  text-align: justify;
  margin: 1.5em 0;
  font-weight: bold;
  font-size: 0.9em;
}

/* トラブル */
#trouble {
  background-image: url('../images/danger1.png');
  background-size: 100% 100%;
  /* 画像全体を表示 */
  background-repeat: no-repeat;
  text-align: center;
  padding: 1.5em 0.5em;
  margin: 1.5em 0;
}

#trouble p {
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 1em;
  line-height: 1.5em;
  text-align: justify;
}

#trouble h1 {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.4em;
  margin-top: 0.5em;
}

#trouble .note_img {
  width: 18%;
  margin-top: 1em;
}

/* 安く・早く・丁寧 */
#point {
  background-image: url('../images/graphpaper.jpg');
  background-size: 100% 100%;
  /* 画像全体を表示 */
  background-repeat: no-repeat;
  margin: 1.5em 0.5em;
  padding: 1.5em 0;
}

#point .point_img {
  width: 80%;
  margin: auto;
  display: block;
}

#point ul {
  margin: 3em 0;
}

#point ul li {
  border: 2px solid #0B329D;
  padding: 1.5em 1em;
  position: relative;
  background-color: #ffffff;
  margin-top: 2em;
}

#point ul li h1 {
  font-size: 1.4em;
  margin-left: 1.8em;
  padding-bottom: 0.8em;
  line-height: 1.5em;
  font-weight: bold;
  color: #0B329D;
}

#point ul li img {
  width: 100%;
  margin-top: 1.5em;
}

#point ul li .title_area {
  border-bottom: 2px solid #0B329D;
  text-align: left;
}

#point ul li p {
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin-top: 1em;
  text-align: justify;
  font-size: 0.9em;
  font-weight: bold;
}

#point ul li .title_01::before {
  content: "";
  background-image: url('../images/01.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 1em;
}

#point ul li .title_02::before {
  content: "";
  background-image: url('../images/02.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 1em;
}

#point ul li .title_03::before {
  content: "";
  background-image: url('../images/03.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 1em;
}

/************** 作業の流れ **************/
#flow {
  background-image: url('../images/boarder.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;

  padding: 1.5em 0.5em;
}

#flow .main_title {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  color: #0B329D;
  margin: 1.5em 0;
}

#flow ul {
  margin: 1em 0;
}

#flow li {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 6vw 1em;
  text-align: left;
  font-weight: bold;
  position: relative;
  margin-top: 5em;
}

#flow li h1 {
  color: #0B329D;
  font-size: 1.2em;
}

#flow li p {
  font-size: 0.8em;
  margin-top: 0.5em;
}

#flow .arrow {
  /* display: inline-block;
  transform: scaleX(2.5);
  font-size: 1.5em;
  color: #0B329D;
  text-align: center;
  position: relative;
  left: 50%;
  margin: 0.8em 0; */

    display: inline-block;
  transform: scaleX(2.5);
  font-size: 1.5em;
  color: #0B329D;
  position: absolute;
  left: 50%;
  top: 33vw;
}

#flow .before01::before {
  content: "";
  background-image: url('../images/call.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 80px;
  float: left;
  margin-right: 1em;
}

#flow .before02::before {
  content: "";
  background-image: url('../images/car.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 80px;
  float: left;
  margin-right: 1em;
}

#flow .before03::before {
  content: "";
  background-image: url('../images/inspection.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 80px;
  float: left;
  margin-right: 1em;
}

#flow .before04::before {
  content: "";
  background-image: url('../images/repair.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 80px;
  float: left;
  margin-right: 1em;
}

#flow .before05::before {
  content: "";
  background-image: url('../images/pay.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 80px;
  float: left;
  margin-right: 1em;
}

#flow .num_img {
  width: 40px;
  position: absolute;
  top: -1.5em;
  left: 0.5em;
}


/* お客様の声 */
#voice{
  margin: 1.5em 0.5em;
}

#voice .voice_img{
  width: 80%;
}
#voice li{
 border: 1px solid #0B329D;
 background-color: #FFFEF1;
 border-radius: 10px;
 padding: 1em 0.5em;
 margin-top: 1.5em;
}
#voice p{
 font-weight: bold;
 }
#voice h1{
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4em;
 }
 #voice h2{
  background-color: #0B329D;
  color: #ffffff;
  display: inline-block;
  padding: 0.5em 1.5em;
  font-size: 0.8em;
  position: relative;
  top: -8vw;
 }

/* PCサイズ */
@media (min-width:768px) {
  #voice h2{
    top: -4vw;
   }
}





/************** 対応エリア **************/
#aria{
  background-color:#ffffff ;
  text-align: center;
  padding: 1.5em 0;
  margin-top: 3em;
}

#aria .aria_content{
  width: 90%;
  margin: auto;
}
#aria .aria_content .area_text{
  width: 90%;
  height: 13em;
  margin: auto;
  background-color:#ffffff ;
  text-align: justify;
  padding: 0 1em;
  line-height: 1.2em;

}
#aria .aria_content ul li{
 margin-bottom:2em ;
}
#aria .aria_content h1{
  color: #ffffff;
  font-size: 2em;
  font-weight: 1000;
}

#aria .aria_content .request_img{
  width: 100%;
  margin: 2em 0;
}
#aria ul li h2{
  background-color:#F4D624 ;
  font-size: 1.3em;
  font-weight: 1000;
  padding: 0.5em 0;
  display: inline-block;
  width: 70%;
  margin-bottom: -10em;
}
#aria ul li h3{
 padding-top: 2em;
 font-size: 0.8em;
}

/************** よくある質問 **************/
#question {
  text-align: center;
}

#question ul li{
  margin: 2em 0;
  text-align: justify;
}
#question .question_text{
  width: 90%;
  margin: auto;
}
#question h1{
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  margin-top: 1em;
  background-color: #0B329D;
  padding: 0.5em 0;
}
#question .question_text h2{
  background-color: #000000;
  color: #ffffff;
  padding: 1em 1em;
  text-align: justify;
}
#question .question_text h3{
  line-height: 1.3em;
  font-weight: bold;
}

/* フッター */
footer {
 text-align: center;
 color: #ffffff;
 height: 10em;
 margin: auto;
 background-color: #0B329D;
 /* 上下から真ん中 */
 display: flex;
 /* align-items: center; */
 justify-content: center;
}

footer p {
 font-size: 0.8em;
}
footer h1 {
 margin-top: 1em;
}
/* CVボタン固定 */
#fixed_cv_btn{
 width:23em;
 position: fixed;
 bottom: 0;
 margin:auto;
 /* display: none; */
 z-index: 9999;
}
/* 固定CTA現在の時刻 */
#fixed_cv_btn .now_time{
 top:6em;
 left: 0.5em;
}

/* PCサイズ */
@media (min-width:768px) {
 footer {
   height: 15em;
 }

/* CVボタン固定 */
#fixed_cv_btn{
 width:30%;
}
}


















/***************** company.html *****************/
.main_company {
  width: 90%;
  margin: auto;
}

.company_title {
  padding: 1em 0;
  font-size: 1.5em;
  font-weight: 1000;
  text-align: center;
}

.tbl_company {
  width: 100%;
  font-size: 1.1em;
  line-height: 1.3em;
}

.tbl_company th {
  font-weight: bold;
  display: block;
  background-color: #c5c5c5;
  border-top: 1px solid #000000;
  padding: 0.6em 0;
}

.tbl_company td {
  text-align: center;
  display: block;
  padding: 0.6em 0;

}

.spTopBtm {
  padding: 1.5em 0 1.5em 0;

}

.conBox {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 1.5em;
}

.privacy {
  border: 1px solid #ddd;
  padding: 10px 10px 10px;
  box-sizing: border-box;
  height: 190px;
  overflow: auto;
  margin-top: 30px;
}

.privacy p.leftSp {
  margin: 0.5em 0 0.5em 1em;
}

.privacy p {
  font-size: 15px;
  text-align: left;
  padding: 1em 0;
  font-weight: bold;

}