/* * {
  outline: 1px solid magenta;
} */

/* フォント読み込み */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* #region ======= 全体処理 ======= */

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

img {
  margin: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* letter-spacing: 0.1em;
line-height: 1.5em; */

/* PCサイズ */
@media (min-width:768px) {
  body {
    width: 30%;
    margin: 0 auto;
  }
}

/* #endregion */

/* #region ======= 自作クラス ======= */

.flex {
  display: flex;
  /* 画像をテキストの先頭に合わせる */
  align-items: flex-start;
}

.date {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 0.5em 0;
  font-weight: bold;
}

/* 大きいフォント */
.big {
  font-size: 1.3em;
}

/* 小さいフォント */
.small {
  font-size: 0.8em;
}

/* レッドフォント */
.red {
  color: #b60000;
}

/* 黄色フォント */
.yellow {
  color: #FDDE27;
}

/* グリーンフォント */
.green{
  color: #005B2A;
}

/* #endregion */

/* #region ======= CTA関連 ======= */

.conversion {
  margin: 1.5em 0;
}
.conversion .conversion_content{
  padding: 1.5em 0.5em;
  background-color: #005B2A;
}

/* #endregion */


/***************** index.html *****************/
/* #region ======= header ======= */
header .hd_img_1 {
  /* 1枚目を右寄せ */
  float: left;
}

header .hd_img_2 {
  /* 2枚目を右寄せ */
  float: right;
}

/* #endregion */

/* #region ======= 料金プラン ======= */
#plan{
  margin: 0 0.5em;
  margin-top: 2.5em;
  text-align: center;
}

#plan h1{
  font-size: 35px;
  font-weight: 1000;
}
#plan h2{
  font-size: 25px;
  margin-top: 1.5em;
  line-height: 1.3em;
}
#plan .kinds{
  background-image: url('../images/graphpaper.jpg');
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  padding: 1.5em 0.5em;
  margin: 1.5em 0;
  border: 1px solid #3b69ff;
}



#plan img{
  margin-top: 1.5em;
}
/* #endregion */

/* #region ======= こんなお悩み ======= */
#worries{
  margin-top: 2.5em;
  padding: 2em 0.5em;
  background-color: #E6E6E6;
}

#worries ul{
  margin: 1.5em 0;
  line-height: 1.8em;
 }

 #worries li{
  display: flex;

  /* 要素間に均等なスペースを作りつつ、最初と最後の要素を端に寄せます */
  justify-content: space-between;
  border-bottom:2px solid #000000;
  padding: 1em 0;
 }
 #worries li img{
  margin: 0;
 }

 #worries li h1{
  font-size: 20px;
 }

 #worries li .li_text{
  font-size: 20px;
 }
 #worries li .li_text::before{
  content: "";
  background-image: url('../images/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  width: 34px;
  height: 27px;
  margin-right: 0.3em;
  margin-bottom: 1em;
 }
/* #endregion */

/* #region ======= 放置しておくのは危険です ======= */
#danger{
  margin-top: 2em;
  padding: 0 0.5em;
}

#danger h1{
  margin-top: 1em;
  text-align: center;
  font-size: 25px;
  line-height: 1.5em; 
}

#danger ul{
  margin-top: 2em;
}

#danger li{
  text-align: justify;
  border-bottom:2px solid #000000;
  padding: 1.5em 0;
 }

 #danger li .li_area{
  display: flex;

  /* 要素間に均等なスペースを作りつつ、最初と最後の要素を端に寄せます */
  justify-content: space-between;
 }
 #danger li .case{
  font-size: 15px;
  color: #ffffff;
  padding: 0.2em 0.4em;
  border-radius: 15px;
  background-color: #005B2A;
  display: inline-block;
 }
 #danger li .li_text{
  font-size: 20px;
  margin-right: 0.5em;
  margin-top: 0.5em;
  line-height: 1.3em;
 }


/* #endregion */

/* #region ======= 完全駆除します ======= */
#extermination{
  margin: 1em 0;
}
#extermination .title_area{
  background-color: #005B2A;
  padding: 1em 0;
  text-align: center;
  color: #ffffff;
}
#extermination .title_area h1{
  font-size: 30px;
  line-height: 1.3em;
}

#extermination .title_area h2{
  font-size: 15px;
  line-height: 1.8em;
  margin-top: 1em;
}

#extermination .extermination_content{
  background-image: url('../images/concrete.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1.5em 0.5em;
}

#extermination ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列に分ける */
  gap: 15px; /* グリッドアイテム間のスペース */
}
#extermination li{
  border: 1px solid #005B2A;
  background-color: #ffffff;
  border-radius: 7px 7px 0 0;
}
#extermination li h1{
 text-align: center;
 background-color: #005B2A;
 color: #ffffff;
 padding: 0.4em 0;
 font-size: 25px;
 border-radius: 5px 5px 0 0;
}
#extermination .li_text_area{
  padding: 1em 0.5em;
}
#extermination .li_text{
  margin-top: 0.5em;
  line-height: 1.3em;
}

/* #endregion */

/* #region ======= お客様の声 ======= */
#voice{
  padding: 2em 0.5em;
}

#voice ul{
  margin: 1em 0;
}

#voice ul li{
  border: 1px solid #005B2A;
  padding: 1em 0.5em;
  border-radius: 10px;
  margin-top: 1.5em;
}

#voice ul li .status{
  background-color: #005B2A;
  color: #ffffff;
  display: inline-block;
  padding: 0.3em 1em;
  margin-top: 2em;
}

#voice ul li h1{
  font-size: 24px;
  margin-top: 1em;
  line-height: 1.3;
}

#voice ul li .text{
  line-height: 1.5;
  margin-top: 1em;
}
/* #endregion */

/* #region ======= 選べれる理由 ======= */
  #reason{
    margin: 1.5em 0.5em;
  }

  #reason .title{
    text-align: center;
    line-height: 1.5em;
    font-size: 25px;
  }

  #reason li{
    margin: 1em 0;
    padding: 1em 0.5em;
    border: 1px solid #005B2A;
    border-radius: 5px;
  }

  #reason li .li_title_area{
   display: flex;
   border-bottom: 2px solid #000000;
  }

  #reason li .li_title{
    color: #005B2A;
    font-size: 23px;
    line-height: 1.5em;
  }

  #reason li p{
    line-height: 1.5em;
    margin-top: 1em;
  }

  #reason .number_img{
    margin: 0;
    margin-bottom: 2em;
    margin-right: 0.5em;
  }
/* #endregion */

/* #region ======= ご依頼から解決までの流れ ======= */
#flow {
  padding: 1.5em 0.5em;
}

#flow .main_title {
  font-size: 1.8em;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-top: 2em;
}


#flow li {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 6vw 1em;
  text-align: left;
  font-weight: bold;
  position: relative;
  margin-top: 3em;
  border: 1px solid #005B2A;
  height:auto;
}

#flow li h1 {
  color: #005B2A;
  font-size: 1.3em;
  line-height: 1.3em;
  text-align: center;
  margin-top: 0.5em;
}


#flow li p {
  font-size: 0.8em;
  margin-top: 1em;
  line-height: 1.5em;
}


#flow li .before01::before {
  content: "";
  background-image: url('../images/call.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 80px;
  float: left;
  margin-right: 1em;
margin-bottom: 1em;
}

#flow .before02::before {
  content: "";
  background-image: url('../images/free.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 80px;
  float: left;
  margin-right: 1em;
  margin-bottom: 7em;
}

#flow .before03::before {
  content: "";
  background-image: url('../images/startwork.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 80px;
  float: left;
  margin-right: 1em;
  margin-bottom: 3em;
}

#flow .before04::before {
  content: "";
  background-image: url('../images/pay.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 80px;
  float: left;
  margin-right: 1em;
  margin-bottom: 2em;
}

#flow .num_img {
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* #endregion */

/* #region ======= 対応エリア ======= */
#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 h1{
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  background-color: #005B2A;
  padding: 0.8em 0;
}

#aria .aria_content .request_img{
  margin-top: 2em;
  margin-bottom: 2em;
}
#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;
}
/* #endregion */

/* #region ======= よくある質問 ======= */
#question {
  text-align: center;
}

#question ul li{
  margin: 2em 0;
  text-align: justify;
}
#question .question_text{
  width: 90%;
  margin: auto;
}
#question h1{
  font-size: 2em;
  font-weight: bold;
  margin-top: 0.5em;
  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;
}
/* #endregion */

/* #region ======= フッター ======= */
footer {
  text-align: center;
  color: #ffffff;
  height: 10em;
  margin: auto;
  background-color: #005B2A;
  justify-content: center;
 }
 
 footer p {
  font-size: 0.8em;
 }
 footer h1 {
  padding-top: 1.5em;
 }
 footer h2 {
   padding-top: 1.5em;
   color: #ffffff;
  }
 /* CVボタン固定 */
 #fixed_cv_btn{
  position: fixed;
  bottom: 0;
  margin:auto;
  /* display: none; */
  z-index: 9999;
 }
 /* 固定CTA現在の時刻 */
 #fixed_cv_btn .now_time{
  top:21vw;
  left: 0.5em;
  font-weight: bold;
  font-size: 3.7vw;
 }
 
 /* PCサイズ */
 @media (min-width:768px) {
  footer {
    height: 18em;
  }
 
 /* CVボタン固定 */
 #fixed_cv_btn{
  width:30%;
 }
 
 /* 固定CTA現在の時刻 */
 #fixed_cv_btn .now_time{
   top:6vw;
   font-size: 1vw;
  }
 }
/* #endregion */


/***************** company.html *****************/
/* #region 全体 */

.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;
}
/* #endregion */
