@charset "UTF-8";


/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #000000;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#root{
  overflow: hidden;
}

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}
.outfit{
  font-family: "Outfit", sans-serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none;
  }
  .tb:not(.md){
    display: none;
  }
  .sp:not(.md){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .md:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/*******************************
*　ヘッダー
********************************/
.header{
}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 10px;
  /*background: rgba(255,255,255,0.85);*/
}
.hdr1_box1{

}
.hdr1_box2{

}
.hdr_contact{

}
.hdr_contact_link a{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 11px 5px;
}
.hdr_contact_link a:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}

.pg_header{
  margin-bottom: 30px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_txt{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.pg_header_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #fff;
  text-shadow: 0.5px 0.866px 4.95px rgba(24, 24, 24, 0.8);
}

.mv{
  position: relative;
}
.mv_img{
  position: relative;
}
.mv_img.img_fit:before{
padding-top: 350px;
}

.mv_txt{
  position: absolute;
  width: 100%;
  top: 9.2%;
  left: 50%;
  transform:translateX(-50%);
}
.bg_ribbon{
  text-align: center;
  background-image: url(/system_panel/uploads/images/ribbon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width:631px;
  height: 72px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  text-shadow    :
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff;
}
.bg_ribbon p{
  letter-spacing: 0;
  padding-top: 8px;
}
.mv_tt{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3em;
  color: #fff;
  text-shadow: 0.5px 0.866px 4.95px rgba(24, 24, 24, 0.8);
  margin-top: 7px;
}

@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px 0;
  }


  .hdr1 {
  }
  .hdr_contact{
    display: none;
  }

  /* スマホ用 */
  .gnav{
    display:block !important;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
    display: block;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav .gnav_item{
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
    color: inherit;
    justify-content: center;
    display: block;
    text-align: left;
  }
  .gnav_item:before{
    display: none;
  }
  .gnav .gnav_item + .gnav_item,
  .gnav .gnav_item:first-child,
  .gnav .gnav_item:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .gnav_bg{
    padding: 0;
    background: inherit;
  }

  .gnav_item .gnav_item_sub{
    display: block;
    position: static;
    width: 100%;
    background: aliceblue;
    padding: 15px;
    margin-top: 20px;
  }
  .gnav .gnav_item:hover{
    color: #000000;
  }
  .hdr_outer_tel,
  .hdr_outer_contact{
    display: none;
  }
  .hdr_logo{
    width: 50%;
    display: block;
    margin: 0 auto;
  }
  .bg_ribbon{
    max-width: 395px;
    height: 43px;
    font-size: 12px;
  }
  .bg_ribbon p{
    padding-top: 5px;
  }
  .mv_tt{
    font-size: 22px;
  }


}
@media (min-width:768px){
  .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
  }
  .hdr_logo{
    margin-top: 8px;
    padding-left: 8px;
    position: relative;
  }
  .fitr_logo{
    position: relative;
    display: inline-block;
  }

  .hdr_logo:hover,
  .fitr_logo:hover{
    transform: scale(1.03);
  }
  .fitr_logo:hover{
    transform: scale(1.05);
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_outer_tel{
    min-width: 241px;
    margin-right: 20px;
  }
  .hdr_outer_tel:hover{
    color: #181818;
  }
  .hdr_outer_tel_txt1{
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  .hdr_outer_tel_txt1:before{
    content: "";
    display: block;
    background-image: url(/system_panel/uploads/images/phone-alt-solid.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    margin-right: 14px;
  }
  .hdr_outer_tel_txt2{
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    background: #95d1ee;
    letter-spacing: 0;
    line-height: 1.8em;
    margin-top: 2px;
  }
  .hdr_outer_contact{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eb6100;
    text-align: center;
    border: 1px solid transparent;
    min-width: 86px;
    color: #fff;
    padding: 20px 0 17px;
  }
  .hdr_outer_contact p{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .hdr_outer_contact p:before{
    content: "";
    display: block;
    background-image: url(/system_panel/uploads/images/envelope-solid.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 23px;
    transition: all .3s;
    margin: 0 auto 3px;
  }
  .hdr_outer_contact_green p:before{
    content: "";
    display: block;
    background-image: url(/system_panel/uploads/images/20251002103256339859.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 27px;
    height: 23px;
    transition: all .3s;
    margin: 0 auto 3px;
  }
  .hdr_outer_contact:hover{
    background: #fff;
    color: #eb6100;
    border: 1px solid #eb6100;
  }
  .hdr_outer_contact_green:hover{
    background: #06c755;
    color: #fff;
    border: 1px solid #06c755;
    opacity: 0.8;
  }
  .hdr_outer_contact:hover p:before{
    width: 24px;
    height: 23px;
    background-image: url(/system_panel/uploads/images/mail_or.svg);
  }
  .hdr_outer_contact_green:hover p:before{
    width: 27px;
    height: 23px;
    background-image: url(/system_panel/uploads/images/20251002103256339859.png);
  }


  .pg_header{
    margin-bottom: 40px;
    margin-top: 132px;
  }
  .pg_header_img:before{
    padding-top: 300px;
  }
  .pg_header_tt{
    font-size: 36px;
  }

  .gnav {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
  }
  .gnav .gnav_item {
    font-size: 15px;
    padding: 0 10px;
    /*line-height: 2;*/
    font-weight: 500;
    transition: 0.2s all;
    line-height: 1;
    border-right: 1px solid #fff;
  }
  .gnav .gnav_item:last-child{
    border-right: none;
  }
  .gnav .gnav_item p{
    letter-spacing: 0;
  }
  .gnav .gnav_item a{
    display: block;
    padding: 0 15px;
  }
  .gnav .gnav_item{

  }
  .gnav:hover .gnav_item{
    opacity: 0.5;
  }
  .gnav .gnav_item:hover{
    opacity: 1;
    color: #fff;
  }
  .gnav .gnav_item:hover a{
    opacity: 1;
  }
  .gnav_outer{
    width: 100%;
    background: #93c121;
    color: #fff;
  }


  .mv{
    margin-top: 132px;
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  .bg_ribbon{
    font-size: 20px;
  }
  .mv_tt{
    font-size: 34px;
  }
}
@media (min-width:1024px){
  .header{

  }
  .hdr_logo{

  }
  .hdr_outer{

  }
  .hdr_outer_tel{
    margin-right: 34px;
  }
  .hdr_outer_tel_txt1{
    font-size: 28px;
  }
  .hdr_outer_tel_txt2{

  }
  .hdr_outer_contact{

  }

  .gnav .gnav_item{
    padding: 0 17px;
  }
  .gnav .gnav_item p{
    letter-spacing: 0.2em;
  }

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img:before{
    padding-top: 350px;
  }
  .pg_header_tt{
    font-size: 45px;
  }

  .mv_img.img_fit:before{
    padding-top: 700px;
  }
  .bg_ribbon{
    font-size: 20px;
  }
  .mv_tt{
    font-size: 60px;
  }


}
@media (min-width:1200px){
  .gnav .gnav_item{
    padding: 0 26.5px;
  }

  .pg_header_img:before{
    padding-top: 520px;
  }

  .mv_img.img_fit:before{
    padding-top: 780px;
  }
}





/*******************************
*　フッター
********************************/

.footer{
  background: #93c121;
  margin-top: 50px;
  padding-top: 35px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}

/*.ftr_info_wrap{
  display: flex;
}
.ftr_info_box1{
  width: 90px;
  padding-right: 20px;
  position: relative;
}
.ftr_info_box1:after{
  content: " /";
  position: absolute;
  right: 5px;
  top: 0;
}
.ftr_info_box2{
  width: calc(100% - 90px);
}*/

.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.075em;
  color: #fff;
  padding: 16px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #93c121;
}
.footer_fix02.footer_fix .footer_fix_item_1{
  width: 25%;
  border-right: 1px solid #93c121;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #eb6100;
  color: #fff;
}
.footer_fix02 .footer_fix_item_2{
  width: 25%;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #eb6100;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_1{
  text-align: center;
  color: #fff;
  padding-bottom: 30px;
}
.fitr_logo{

}
.fitr_logo_txt{
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.fitr_logo_txt1{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.fitr_logo_txt2{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  background: #fff;
  width: 100%;
  max-width: 308px;
  margin: 0 auto;
  color: #181818;
  line-height: 1;
  padding: 3px;
  margin-top: 5px;
}
.fitr_logo_txt3{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}
.fitr_add{
  font-size: 16px;
  font-weight: 600;
  margin-top: 14px;
  font-family: "Noto Serif JP", serif;
}
.fitr_add a:hover{
  opacity: 0.7; 
  color: #fff;
}

.ftr_2{
  background: #95d1ee;
}
.ftr_links{
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
.ftr_link{
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-right: 1px solid #fff;
  padding: 0 16px;
}
.ftr_link:first-child{
  padding-left: 0;
}
.ftr_link:last-child{
  padding-right: 0;
  border-right: none;
}
.ftr_link p{
  letter-spacing: 0.1em;
}


.ftr_home_wrap{
  background: #95d1ee;
  padding: 50px 0;
  margin-top: 50px;
}
.home_contact_title{
  text-align: center;
  ;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0.5px 0.866px 4.95px rgba(24, 24, 24, 0.8);
}
.home_contact_desc{
  color: #fff;
  text-align: justify;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.888em;
  text-shadow: 0.5px 0.866px 4.95px rgba(24, 24, 24, 0.8);
  margin-top: 14px;
}
.home_contact_mes{
  background: #fff;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  padding: 16px;
  margin-top: 24px;
}
.home_contact_sub_title{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  /*  text-shadow    :
      3px  3px 0px #ffffff,
      -3px  3px 0px #ffffff,
      3px -3px 0px #ffffff,
      -3px -3px 0px #ffffff,
      3px  0px 0px #ffffff,
      0px  3px 0px #ffffff,
      -3px  0px 0px #ffffff,
      0px -3px 0px #ffffff;*/
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff;  
  margin-top: 6px;
}
.home_contact_sub_title strong{
  font-size: 36px;
  font-weight: 600;
  color: #df600f;
  font-family: "Outfit", sans-serif;
}
.home_contact_sub_title em{
  font-style: normal;
  color: #df600f;
}
.home_contact_sub_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.home_contact_sub_item{

}
.home_contact_sub_item_inner{
  background: #93c121;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 23px;
  padding: 10px 0;
}

/*contuctus*/
.ftr_contact_box{
  background: #df600f;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 10px;
  margin-top: 40px;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1_en{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
.ftr_contact_btn{
  background: #fff;
  display: flex;
  align-items: center;
  color: #181818;
  padding: 11px 20px;
  margin-top: 14px;
  position: relative;
}
.ftr_contact_btn:hover{
  background: #b8e0f3;
  color: #181818;
}
.ftr_contact_btn:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width:22px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 21px;
  ;
  transform: translateY(-50%);
}
.ftr_contact_btn_left{
  display: flex;
  align-items: center;
}
.ftr_contact_btn_left_icon{

}
.ftr_contact_btn_left_txt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  ;
  margin-left: 13px;
}
.ftr_contact_btn_right{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  ;
  margin-left: 16px;
}
.ftr_contact_box2{
  width: 100%;
}
.ftr_contact_box2_txt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  ;
  text-align:center;
}
.ftr_contact_box2_num{
  margin-top: 30px;
  display: block;
  text-align: center;
}
.ftr_contact_box2_num:hover{
  color: #b8e0f3;
}
.ftr_contact_box2_num1{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
}

.ftr_contact_box2_num2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.ftr_contact_box2_num1 em{
  display: inline-block;
  font-style: normal;
}
.ftr_contact_box2_num1 em:first-letter{
  font-size: 1.266em;
}

/*どんな会社?*/
.home_recruit_wrap{
  padding: 36px 0;
}
.home_recruit_items{

}
.home_recruit_items{
  display: flex;
  flex-wrap:wrap;
}
.home_recruit_item1{
  width: 100%;
  order: 1;
}
.home_recruit_item1_img:before{
  padding-top: 73.93%;
}
.home_recruit_item2{
  width: 100%;
  order: 2;
}
.home_recruit_item2_title{
  display: flex;
  align-items: center;
}
.home_recruit_item2_icon{

}
.home_recruit_item2_title_txt{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 1.29em;

}
.home_recruit_item2_content{
  margin-top: 30px;
}
.home_recruit_item2_content_txt{
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  background: #df600f;
  color: #fff;
  border-radius: 25px;
  padding: 6px;
}
.home_recruit_item2_content_lists{
  padding-left: 10px;
  margin-top: 23px;
}
.home_recruit_item2_content_lists div:nth-child(n+2){
  margin-top: 16px;
}
.home_recruit_item2_content_list{
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.075em;
  background: linear-gradient(transparent 73%, #fff100 58%);
  line-height: 1.8;
}
.home_recruit_item2_content_list:nth-child(n+2){
  margin-top: 16px;
}
.home_recruit_item2_content_list:before{
  content: "■";
  color: #93c121;
  margin-right: 5px;
}
.home_recruit_item3{
  width: 100%;
  order: 4;
}
.home_recruit_item3_desc{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  text-align: justify;
}
.home_recruit_item3 .link_1{
  max-width: 280px;
}
.home_recruit_item4{
  width: 100%;
  order: 3;
}
.home_recruit_item4_img:before{
  padding-top: 136%;
}

@media (min-width:375px){

}

@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_home_wrap{
    padding: 70px 0;
    margin-top: 50px;
  }
  .home_contact_title{
    font-size: 28px;
  }
  .home_contact_desc{
    font-size: 18px;
  }
  .home_contact_mes{

  }
  .home_contact_sub_title{
    font-size: 24px;
  }
  .home_contact_sub_title strong{
    font-size: 40px;
  }
  .home_contact_sub_title em{

  }
  .home_contact_sub_items{

  }
  .home_contact_sub_item{

  }
  .home_contact_sub_item_inner{

  }

  /*contuctus*/
  .ftr_contact_box{
    padding: 16px 80px;
    margin-top: 40px;
  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_en{
    font-size: 60px;
  }
  .ftr_contact_btn{

  }
  .ftr_contact_btn_left{

  }
  .ftr_contact_btn_left_icon{

  }
  .ftr_contact_btn_left_txt{
    font-size: 21px;
  }
  .ftr_contact_btn_right{

  }
  .ftr_contact_box2{

  }
  .ftr_contact_box2_txt{
    font-size: 21px;
  }
  .ftr_contact_box2_num{

  }
  .ftr_contact_box2_num1{
    font-size: 38px;
  }
  .ftr_contact_box2_num1 em{
    font-size: 30px;
  }
  .ftr_contact_box2_num2{

  }

  /*どんな会社?*/
  .home_recruit_wrap{
    padding: 47px 0;
  }
  .home_recruit_items{
    margin-top: -16px;
  }
  .home_recruit_items{

  }
  .home_recruit_item1{

  }
  .home_recruit_item1_img:before{

  }
  .home_recruit_item2{
    margin-top: 30px;
  }
  .home_recruit_item2_title{

  }
  .home_recruit_item2_icon{

  }
  .home_recruit_item2_title_txt{
    font-size: 24px;
  }
  .home_recruit_item2_content{
    margin-top: 35px;
  }
  .home_recruit_item2_content_txt{
    font-size: 21px;
  }
  .home_recruit_item2_content_lists{

  }
  .home_recruit_item2_content_list{

  }
  .home_recruit_item2_content_lists div:nth-child(n+2){
    margin-top: 18px;
  }
  .home_recruit_item3{
    margin-top: 30px;
  }
  .home_recruit_item3_desc{

  }
  .home_recruit_item3 .link_1{

  }
  .home_recruit_item4{
    margin-top: 30px;
  }
  .home_recruit_item4_img{
    width: 50%;
    margin: 0 auto;
  }
  .home_recruit_item4_img:before{

  }

  .ftr_1{
    padding-bottom: 54px;
  }
  .fitr_logo{

  }
  .fitr_logo_txt{

  }
  .fitr_logo_txt1{
    font-size: 18px;
  }
  .fitr_logo_txt2{
    font-size: 20px;
  }
  .fitr_logo_txt3{
    font-size: 26px;
  }
  .fitr_add{

  }

  .ftr_links{
    justify-content: center;
    padding: 12px 0;
  }
  .ftr_link{
    font-size: 13px;
    text-align: center;
    width: 20%;
    padding: 0;
  }
  .ftr_link:nth-child(n+6){
    margin-top: 16px;
  }
  .ftr_copy{
    padding: 20px 0;
  }

  .ftr_links:hover .ftr_link {
    opacity: 0.5;
  }
  .ftr_links .ftr_link:hover {
    opacity: 1;
    color: #fff;
  }

  .ftr_contact_btn{
    max-width: 438px;
    width: 100%;
    margin:14px auto 0;
  }

  .ftr_link:nth-child(5){
    border-right: none; 
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 150px;
  }

  .ftr_home_wrap{
    padding: 70px 0 80px;
    margin-top: 100px;
  }
  .home_contact_title{
    font-size: 34px;
  }
  .home_contact_desc{
    text-align: center;
  }
  .home_contact_mes{
    text-align: center;
    ;
  }
  .home_contact_sub_title{
    font-size: 32.76px;
  }
  .home_contact_sub_title strong{
    font-size: 49.85px;
  }
  .home_contact_sub_title em{

  }
  .home_contact_sub_items{

  }
  .home_contact_sub_item{

  }
  .home_contact_sub_item_inner{
    font-size: 15px;
  }
  .home_contact_sub_item_inner p{
    letter-spacing: 0;
  }

  /*contuctus*/
  .ftr_contact_box{
    padding: 16px 20px 16px 20px;
    margin-top: 48px;
  }
  .ftr_contact_box1{
    width: 49.24%;
  }
  .ftr_contact_box1_en{
    text-align: left;
    font-size: 50px;
    margin-right: -19px;
  }
  .ftr_contact_btn{

  }
  .ftr_contact_btn_left{

  }
  .ftr_contact_btn_left_icon{

  }
  .ftr_contact_btn_left_txt{

  }
  .ftr_contact_btn_right{

  }
  .ftr_contact_box2{
    width: 41.5%;
    padding-top: 14px;
  }
  .ftr_contact_box2_txt{

  }
  .ftr_contact_box2_num{

  }
  .ftr_contact_box2_num1{
    text-align: left;
  }
  .ftr_contact_box2_num2{
    padding-right: 30px;
  }
  .ftr_contact_box2_num {
    margin-top: 10px;
  }

  /*どんな会社?*/
  .home_recruit_wrap{
    padding: 47px 0;
  }
  .home_recruit_items{
    margin-top: -34px;
  }
  .home_recruit_items{

  }
  .home_recruit_item1{
    width: 37.64%;
    order: 1;
  }
  .home_recruit_item1_img:before{

  }
  .home_recruit_item2{
    width: 61.35%;
    order: 2;
    margin-top: 0;
  }
  .home_recruit_item2_title{
    padding-left: 16px;
  }
  .home_recruit_item2_icon{
    min-width: 120px;
  }
  .home_recruit_item2_title_txt{
    font-size: 31px;
  }
  .home_recruit_item2_content{
    padding-left: 30px;
  }
  .home_recruit_item2_content_txt{

  }
  .home_recruit_item2_content_lists{

  }
  .home_recruit_item2_content_list{

  }
  .home_recruit_item3{
    width: 65.76%;
    padding-right: 27px;
    order: 3;
    margin-top: 50px;
  }

  .home_recruit_item4{
    width: 34.23%;
    margin-top: 60px;
  }
  .home_recruit_item3_desc{

  }
  .home_recruit_item3 .link_1{
    margin-left: 0;
    margin-top: 27px;
  }
  .home_recruit_item4{
    padding-left: 29px;
    order: 4;
  }
  .home_recruit_item4_img{
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .home_recruit_item4_img:before{

  }

  .ftr_1{

  }
  .fitr_logo{

  }
  .fitr_logo_txt{

  }
  .fitr_logo_txt1{

  }
  .fitr_logo_txt2{

  }
  .fitr_logo_txt3{

  }
  .fitr_add{

  }

  .ftr_links{
    justify-content: center;
  }
  .ftr_link{
    font-size: 14px;
    text-align: left;
    width: auto;
    padding: 0 17px;
  }
  .ftr_link:nth-child(n+6){
    margin-top: 0;
  }

  .ftr_contact_btn{
    margin-top: 14px;
    margin-left: 0;
    margin-right: 0;
  }
  .ftr_link:nth-child(5){
    border-right: 1px solid #fff;
  }
}
@media (min-width:1200px){
  .ftr_contact_box{
    padding: 16px 73px 16px 38px;
  }

  .home_contact_sub_item_inner{
    font-size: 16px;
  }
  .home_contact_sub_item_inner p{
    letter-spacing: 0.075em;
  }
  .ftr_contact_box1_en{
    font-size: 68px;
  }
  .ftr_contact_box1{
    width: 47.24%;
  }
  .ftr_contact_box2{
    width: 38.5%;
  }
  .ftr_contact_box2_num {
    margin-top: 30px;
  }

  .home_recruit_item1{
    width: 48.64%;
  }
  .home_recruit_item2{
    width: 51.35%;
  }

  .ftr_link{
    padding: 0 28px;
  }
}
@media (max-width:767px){
  .ftr_addr em{
    display: block;
  }
  .ftr_contact_box{
    padding: 30px 20px;
  }
  .ftr_contact_btn{
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 45px 6px 30px;
  }
  .ftr_contact_box1_en{
    font-size: 40px;
  }
  .ftr_contact_box2_num{
    margin-top: 16px;
  }
  .ftr_contact_box2_num1{
    font-size: 30px;
  }
  .home_contact_sub_item:nth-child(n+2){
    margin-top: 16px;
  }

  .home_recruit_items{
    margin-top: -8px;
  }
  .home_recruit_item2,
  .home_recruit_item3,
  .home_recruit_item4{
    margin-top: 20px;
  }
  .fitr_logo_txt1{
    font-size: 15px;
  }
  .fitr_logo_txt2{
    font-size: 16px;
  }
  .fitr_logo_txt3{
    font-size: 20px;
  }
  .ftr_links{
    display: none;
  }

}



/*******************************
*　
********************************/

/* Flexテーブルレイアウト */
.fl_tbl_items{
  border: 1px solid #cab386;
  margin-bottom:80px;
}
.fl_tbl_items_item{
  display: flex;
  letter-spacing: 0.05em;
}
.fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #cab386;
}

.fl_tbl_items_item_box1,
.fl_tbl_items_item_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 70px;
}
.fl_tbl_items_item_box1{
  width:31.53%;
  background: #eeeeee;
  padding: 10px 5px;
  border-right: 1px solid #cab386;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fl_tbl_items_item_box2{
  width:68.47%;
  background: #fff;
}
.fl_tbl_items_item_txt{
  width: 100%;
  padding: 10px 10px;
}
.fl_tbl_items_item_txt + .fl_tbl_items_item_txt{
  border-top: 1px solid #cab386;
}

/* 青 */
.fl_tbl_items.blue{
  border: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item_box1{
  background: #eff8fc;
  border-right: 1px solid #7ecef4;
}

@media (min-width:375px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px;
  }
}
@media (min-width:768px){
}
@media (min-width:1024px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px 10px 60px;
  }
  .fl_tbl_items_item_txt{
    padding: 10px 10px 10px 25px;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .footer_fix{
    display: flex;
  }

  body{
    padding-bottom: 56px;
  }
}


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

.anchor{
  position: relative;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

}
@media (min-width:1200px){


}

/*******************************
*　共通
********************************/
/*タイトル*/
.sec_title{
  text-align: center;
}
.sec_title_en{
  font-size: 32px;
  font-weight: 600;
  color: #eb6100;
  line-height: 1;
}
.sec_title_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}


/*ボタン*/
.link_1{
  width: 100%;
  max-width: 240px;
  ;
  font-size: 15px;
  font-weight: 400;
  margin: 42px auto 0;
  padding: 10px;
  display: block;
  background: #fff;
  color: #181818;
  text-align: center;
  position: relative;
  border-radius: 0;
  letter-spacing: 0.075em;
  border-radius: 25.5px;
  border: 2px solid #eb6100;
}
.link_1:after{
  content: "\f138";
  font-family: 'FontAwesome';
  font-weight: 400;
  color: #eb6100;
  margin-right: 5px;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all .3s;
}
.link_1:hover,
.detail .link_1:hover{
  color: #fff;
  background: #eb6100;
}
.link_1:hover:after,
.detail .link_1:hover:after{
  color: #fff;
}
/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  /*タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 32px;
  }
  .sec_title_ja{

  }
}
@media (min-width:1024px){

  /*タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 46px;
  }
  .sec_title_ja{

  }
}
@media (min-width:1200px){


}


/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  margin-top: 70px;
}
.pg_home .section.sec2{
  margin-top: 80px;
}
.pg_home .section.sec3{
  margin-top: 30px;
}
.pg_home .section.sec4{
  background: #f0f9fd;
  padding: 50px 0;
  margin-top: 60px;
}
.pg_home .section.sec5{
  padding-top: 60px;
  padding-bottom: 80px;
}
.pg_home .section.sec6{
  background-image: url(/system_panel/uploads/images/sec5_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:50px 0;
}
.pg_home .section.sec7{
  padding: 60px 0;
}

/*お知らせ*/
.home_news_box{
  margin-top: 30px;
}
.home_news_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.home_news_box .webgene-item{

}
.home_news_box .webgene-item a{
  position: relative;
}
.home_news_box .webgene-item .img_fit,
.news_box .webgene-item .img_fit,
.home_case_box .webgene-item .img_fit{
  overflow: hidden;
  background-image: url(/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_news_box .webgene-item .img_fit img,
.news_box .webgene-item .img_fit img,
.home_case_box .webgene-item .img_fit img{
  transition: all .3s;
}
.home_news_box .webgene-item a:hover .img_fit img,
.news_box .webgene-item a:hover .img_fit img,
.home_case_box .webgene-item a:hover .img_fit img{
  transform: scale(1.1);
}
.home_news_box .webgene-item a:hover,
.pg_news .news_box .webgene-item a:hover,
.home_case_box .webgene-item a:hover{
  color: #181818;
}
.home_news_box .webgene-item .img_fit:before{
  padding-top: 82.35%;
}
.home_news_box .webgene-item .content{

}
.home_news_box .webgene-item .date{
  background: #95d1ee;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 0px 0px 10px 0px;
  min-width: 65px;
  padding: 5px;
}
.home_news_box .webgene-item .date .str1,
.home_news_box .webgene-item .date .str2{
  display: block;
  text-align: center;
  font-family: "Outfit", system-ui;
  line-height: 1;
}
.home_news_box .webgene-item .date .str1{
  font-size: 12px;
  letter-spacing: 0.075em;
  padding-bottom: 3px;
}
.home_news_box .webgene-item .date .str2{
  font-size: 15px;
  letter-spacing: 0.12em;
  border-top: 1px solid #181818;
  padding-top: 2px;
}
.home_news_box .webgene-item .category{
  background: #95d1ee;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  padding: 4px 10px;
}
.home_news_box .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.75em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*地域密着*/
.home_chiki_img_items{
  display: flex;
  flex-wrap: wrap;
}

.home_chiki_img_item{
  width: 100%;
}
.home_chiki_img_item.left .home_chiki_img_item_img:before{
  padding-top: 122.80%;
}
.home_chiki_img_item_icon{
  text-align: center;
}
.home_chiki_img_item_title{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.home_chiki_img_item_mes{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.34em;
  text-align: center;
  position: relative;
  margin-top: 13px;
}
.home_chiki_img_item_mes:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/nami.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 436px;
  height: 86px;
  ;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform:translateX(-50%);
}
.home_chiki_img_item_mes strong{
  color: #df600f;
  font-weight: 900;
}
.home_chiki_img_item.right .home_chiki_img_item_img:before{
  padding-top: 133.33%;
}
.home_chiki_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}
.home_chiki_desc strong{
  font-size: 20px;
  font-weight: 700;
  color: #df600f;
  line-height: 1.75em;
}

/*エコキューっと*/
.home_ecocute_txt{
  color: #f3f6ea;
  text-align: center;
  font-size:clamp(2.5rem, -1.551rem + 20.25vw, 12.5rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
}
.home_ecocute_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_ecocute_box1{
  width: 100%;
}
.home_ecocute_box1_title{

}
.home_ecocute_box1_title_txt{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.home_ecocute_box1_desc{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  margin-top: 18px;
}
.home_ecocute_box1_desc p{
  letter-spacing: 0.065em;
}
.home_ecocute_box2{
  width: 100%;
}
.home_ecocute_box2_img:before{
  padding-top: 81.29%;
}

/*症状*/
.home_help_title{
  text-align: center;
  background: #93c121;
  border-radius:26px;
  max-width:600px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}
.home_help_title_txt{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.075em;
  color: #fff;
}
.home_help_items{
  display: flex;
  flex-wrap: wrap;
  margin: 60px -15px 0;
}
.home_help_item{

}
.home_help_item_inner{
  position: relative;
  background: #fff;
  padding: 65px 0 20px;
  height: 100%;
}
.home_help_item_check_img{
  position: absolute;
  top: -43px;
  left: 50%;
  transform:translateX(-50%);
  width: 125px;
  height: 80px;
}
.home_help_item_img{
  text-align: center;
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 127px;
}
.home_help_item_txt{
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  margin-top: 20px;
}
.home_help_item_txt strong{
  color: #e80101;
  font-weight: 900;
}
.home_help_wrap .link_1{
  max-width: 280px;
  width: 100%;
}

/*お約束*/

.home_promiss_title_txt{
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-top: 2px;
  position: relative;
}
.home_promiss_wrap .home_promiss_title_txt:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/heaer.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width:91px;
  height:112px;
  position: absolute;
  bottom: 0;
  left: 13.333%;
}
.home_case_wrap .home_promiss_title_txt .home_promiss_title_tt:before{
  display: none;
}
.home_case_wrap .home_promiss_title_txt h2:after{
  display: none;
}
.home_promiss_title_txt h2{
  font-size: 20px;
  font-weight: 900;
  display: inline-block;
  position: relative;
}
.home_promiss_title_txt .home_promiss_title_tt:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/huma.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 268px;
  height: 161px;
  position: absolute;
  right: -32.777%;
  bottom: 0;
}
.home_promiss_title_txt :after{
  content: "";
  display: block;
  border-bottom: 1px solid #93c121;
  width: 100%;
  height: 1px;
  position:absolute;
  bottom: 0;
  left: 0;
}
.home_promiss_title_txt strong{
  color: #df600f;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.075em;
  font-family: "Outfit", sans-serif;
}
.home_promiss_title_tt strong{
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
}
.home_promiss_title_txt em{
  font-style: normal;
  color: #df600f;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.home_promiss_items{
  display: flex;
  flex-wrap: wrap;
  margin: 36px -15px 0;
}
.home_promiss_item{

}
.home_promiss_item_inner{
  padding: 10px;
  border: 1px solid #93c121;
}
.home_promiss_item_img:before{
  padding-top: 74.84%;
}
.home_promiss_item_title{
  text-align: center;
  background: #93c121;
  color: #fff;
  border-radius: 19px;
  padding: 7px 0;
  margin-top: 6px;
}
.home_promiss_item_title_txt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;

}
.home_promiss_title_txt:after{

}
.home_promiss_item_desc{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  padding: 0 10px;
  margin-top: 15px;
}

.home_promiss_bf_txt{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #df600f;
  margin-top: 20px;
}
.home_promiss_wrap .link_1{
  max-width: 280px;
  margin-top: 20px;
}

/*理由*/
.home_reason_wrap .home_promiss_title_txt strong{
  font-family: "Noto Sans JP", sans-serif;
}
.home_reason_wrap .home_promiss_title{
  margin-bottom: 40px;
}
.home_reason_wrap .home_promiss_title_txt:before{
  display: none;
}
.home_reason_wrap .home_promiss_title_tt:before{
  display: none;
}
.home_reason_wrap .home_promiss_title_txt h2:after{
  display: none;
}
.home_reason_wrap .home_promiss_title_txt :after{
  display: none;
}
.home_reason_wrap .home_promiss_title_txt{
  margin-top: 13px;
}
.home_reason_wrap .home_promiss_title_txt strong{
  font-weight: 900!important;
}
.home_reason_wrap .home_chiki_img_item_title{
  position: relative;
}
.home_reason_wrap .home_promiss_title_txt p:after{
  display: none;
}
.home_reason_wrap .home_chiki_img_item_title:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/home_left1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 63px;
  height: 71px;
  position: absolute;
  bottom: 0;
  left:17.11%;
}
.home_reason_wrap .home_chiki_img_item_title:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/home_right2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 120px;
  height: 80px;
  position: absolute;
  bottom: 0;
  right: 15.49%;
}

.home_reason_items{
  margin: 0 auto;
}
.home_reason_item{

}
.home_reason_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0.5px 0.866px 4.95px 0.05px rgba(24, 24, 24, 0.2);
}
.home_reason_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_reason_item_title{
  display: flex;
  align-items: center;
}
.home_reason_item_title_num{
  font-size: 36px;
  font-weight: 600;
  letter-spacing:0.05em;
  color: #df600f;
  margin-right: 12px;
}
.home_reason_item_title_txt{
  font-size: 18px;
  font-weight: 600;
  letter-spacing:0.05em;
  background: #95d1ee;
  text-align: center;
  border-radius: 20px;
  max-width: 200px;
  width: 100%;
  padding: 2px 0;
}
.home_reason_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing:0.05em;
  line-height: 1.46em;
}
.home_reason_item_desc{
  font-size: 16px;
  font-weight: 400;
  letter-spacing:0.05em;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}
.home_reason_box2{
  width: 100%;
  order: 1;
}
.home_reason_box2_img{

}
.home_reason_box2_img:before{
  padding-top: 79.01%;
}

/*slick*/
.home_reason_items .slick-list {
  overflow: inherit;
}
.home_reason_items .slick-arrow {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66.666%;
  background: #df600f;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0 8px;
  border-radius: 5px;
}
.home_reason_items .slide-prev{
  left: -13px;
  z-index: 1;
}
.home_reason_items .slide-next {
  right: -13px;
  z-index: 1;
}

/*施工事例*/
.home_case_wrap{

}
.home_case_wrap .home_promiss_title_txt{

}
.home_case_wrap .home_promiss_title_txt:before,
.home_case_wrap .home_promiss_title_txt p:before,
.home_case_wrap .home_promiss_title_txt p:after{
  display: none;
}
.home_case_wrap .home_chiki_img_item_title{
  position: relative;
}
.home_case_wrap .home_chiki_img_item_title p{
  display: inline-block;
  position: relative;
}
.home_case_wrap .home_chiki_img_item_title p:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/doril.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 66px;
  height: 64px;
  position: absolute;
  bottom: 0;
  left: -38.75%;
}
.home_case_wrap .home_chiki_img_item_title p:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/yahoo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 45px;
  height: 70px;
  position: absolute;
  bottom: 0;
  right: -28.41%;
}

/*施工事例*/
.home_case_box{
  margin-top: 36px;
}
.home_case_box .webgene-blog{
  display: flex;
  margin: 0 -15px;
}
.home_case_box .webgene-blog .inner{
  border: 1px solid #93c121;
  display: block;
  padding: 10px 10px 20px;
  ;
}
.home_case_box .webgene-item .img_fit{
  background-image: url(/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_case_box .webgene-item .img_fit:before{
  padding-top: 74.84%;
}
.home_case_box .webgene-item .meta{
  margin-top: 5px;
}
.home_case_box .webgene-item .category{
  background: #93c121;
  color: #fff;
  text-align: center;
  max-width: 110px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  padding: 5px;
}
.home_case_box .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 6px;
}
.home_case_box .slick-arrow{
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72.91%;
  background: #df600f;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0 8px;
  border-radius: 5px;
}
.home_case_box .slide-prev{
  left: -28px;
  z-index: 1;
}
.home_case_box .slide-next {
  right: -28px;
  z-index: 1;
}
.home_case_wrap .link_1{
  max-width: 280px;
  width: 100%;
}
.home_promiss_title_tt{
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
}

/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .pg_home .section.sec2{
    padding-top: 0;
  }
  /*お知らせ*/
  .home_news_box .webgene-blog{
    margin: 0 -10px;
  }
  .home_news_box .webgene-item{
    padding: 0 10px;
  }
  .home_news_box .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }

  .home_promiss_title_txt .home_promiss_title_tt:before{
    width: 100px;
    height: 64px;
    right: -22.777%;
  }

  /*地域密着*/
  .home_ecocute_wrap .home_ecocute_txt{
    font-size: 60px;
  }
  .home_ecocute_wrap .home_ecocute_items{
    margin-top: -20px;
  }
  .home_ecocute_wrap .home_ecocute_box1_title_txt{
    text-align: center;
  }
  .home_chiki_img_item_mes{
    font-size: 28px; 
  }
  .home_chiki_img_item.right{
    order: 1;
  }
  .home_chiki_img_item.center{
    order: 2;
    margin-top: 20px;
  }
  .home_chiki_desc{
    margin-top: 60px;
  }
  .home_chiki_img_item_mes:after{
    width: 250px;
    height: 49px;
    position: absolute;
    bottom: -55px;
  }
  .home_chiki_img_item.left{
    margin-top: 20px;
  }
  .home_news_box .webgene-item .category{
    font-size: 14px;
    letter-spacing: 0;
    padding: 7px 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .home_news_box .webgene-item .content{
    margin-top: 5px;
  }

  .ecocute_subsidy_wrap .home_promiss_title_tt:before{
    left: -72px!important;
  }
  .ecocute_subsidy_wrap .home_promiss_title_tt:after{
    right: -72px!important;
  }
  /*エコキュート*/
  .home_ecocute_items{
    margin-top: 16px;
  }
  .home_ecocute_box2{
    margin-top: 50px;
  }

  .home_help_items{
    margin: 60px -10px 0;
  }
  .home_help_item{
    padding: 0 10px;
  }
  .home_help_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_help_item_check_img{
    width: 100px;
    top: -33px;
  }

  .home_promiss_items{
    margin: 36px -10px 0;
  }
  .home_promiss_item{
    padding: 0 10px;
  }
  .home_promiss_item:nth-child(n+2){
    margin-top: 40px;
  }
  .ecocute_feature_wrap .home_promiss_title_tt:before{
    left: -88px!important;
  }
  .ecocute_feature_wrap .home_promiss_title_tt:after{
    right: -85px!important;
  }

  /*約束*/
  .home_promiss_wrap .home_promiss_title_txt:before{
    width: 50px;
    height: 60px;
    left: -2.667%;
  }
  .home_promiss_wrap .home_promiss_title_txt p:before{
    width: 150px;
    height: 92px;
    right: -28.777%;
  }

  /*理由*/
  .home_reason_items{
    width: 88%;
  }
  .home_reason_item_inner{
    padding: 10px 10px 20px;
  }
  .home_reason_item_tt{
    font-size: 17px;
  }
  .home_reason_box1{
    margin-top: 10px;
  }
  .home_reason_wrap .home_promiss_title_txt strong{
    font-size: 26px;
  }
  .home_reason_wrap .home_chiki_img_item_title:before{
    bottom: 65px;
    left: 0;
  }
  .home_reason_wrap .home_chiki_img_item_title:after{
    width: 100px;
    height: 66px;
    position: absolute;
    bottom: 60px;
    right: 0;
  }
  .home_reason_item_title_txt{
    font-size: 17px;
    max-width: 150px;
  }
  /*slick*/
  .home_reason_items .home_reason_item {
    margin: 0 20px;
  }
  .home_reason_items .slick-arrow{
    height: 15.666%;
    padding: 0 2px;
  }
  .home_reason_items .slide-next{
    right: -10px;
  }
  .home_reason_items .slide-prev{
    left: -10px;
  }
  /*施工事例*/
  .home_case_box .webgene-item .category{
    display: inline-block;
    max-width: inherit;
    min-width: 120px;
  }
  .home_case_wrap .home_chiki_img_item_title p{
    display: block;
  }
  .home_case_wrap .home_chiki_img_item_title p:before{
    left: 0;
    bottom: -65px;
  }
  .home_case_wrap .home_chiki_img_item_title p:after{
    right:0;
    bottom: -65px;
  }
  .home_promiss_title_txt{
    line-height: 1.5em;
  }
  .home_case_box .webgene-blog{
    width: 80%;
    margin: 0 auto;
  }
  .home_case_box .slick-arrow{
    height: 20.91%;
    padding: 0 5px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    margin-top: 80px;
  }
  .pg_home .section.sec2{
    margin-top: 100px;
  }
  .pg_home .section.sec3{
    margin-top: 10px;
  }
  .pg_home .section.sec4{
    padding: 60px 0;
    margin-top: 80px;
  }
  .pg_home .section.sec5{
    padding-top: 81px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding: 70px 0;
  }
  .pg_home .section.sec7{
    padding: 80px 0;
  }

  .home_promiss_title_txt h2{
    font-size: 36px;
  }
  /*お知らせ*/
  .home_news_box{
    margin-top: 45px;
  }
  .home_news_box .webgene-blog{

  }
  .home_news_box .webgene-item{

  }
  .home_chiki_img_item.left,
  .home_chiki_img_item.right{
    width: 25.67%;
  }
  .home_chiki_img_item.center{
    width: calc(100% - 25.67% - 25.67%);
  }
  .home_news_box .webgene-item a{

  }
  .home_news_box .webgene-item .img_fit{

  }
  .home_news_box .webgene-item .img_fit:before{

  }
  .home_news_box .webgene-item .content{

  }
  .home_news_box .webgene-item .category{

  }
  .home_news_box .webgene-item .title{

  }

  /*地域密着*/
  .home_chiki_img_items{

  }
  .home_chiki_img_item{

  }
  .home_chiki_img_item.left .home_chiki_img_item_img:before{

  }
  .home_chiki_img_item_icon{

  }
  .home_chiki_img_item_title{

  }
  .home_chiki_img_item_mes{
    font-size: 32px;
  }
  .home_chiki_img_item_mes:after{
    width: 300px;
    height: 60px;
    bottom: -56px;
    left: 50%;
    transform:translateX(-50%);
  }
  .home_chiki_img_item_mes strong{

  }
  .home_chiki_img_item.right{
    margin-top: -30px;
  }
  .home_chiki_img_item.right .home_chiki_img_item_img:before{

  }

  .home_chiki_desc{
    margin-top: 70px;
  }
  .home_chiki_desc strong{
    font-size: 24px;
  }

  /*エコキューっと*/
  .home_ecocute_txt{

  }
  .home_ecocute_items{
    margin-top: -36px;
  }
  .home_ecocute_box1{
    width: 48.64%;
  }
  .home_ecocute_box1_title{

  }
  .home_ecocute_box1_title_txt{
    font-size: 28px;
  }
  .home_ecocute_box1_desc{
    padding-left: 8px;
  }
  .home_ecocute_box2{
    width: 48.64%;
    padding-top: 14px;
  }
  .home_ecocute_box2_img:before{

  }
  .home_ecocute_items .link_1{
    margin-left: 0;
  }

  /*症状*/
  .home_help_title{

  }
  .home_help_title_txt{
    font-size: 20px;
  }
  .home_help_items{
    margin-top: 80px;
  }
  .home_help_item{

  }
  .home_help_item:nth-child(n+5){
    margin-top: 60px;
  }
  .home_help_item_inner{

  }
  .home_help_item_check_img{

  }
  .home_help_item_img{

  }
  .home_help_item_txt{
    font-size: 15px;
    padding-left: 3px;
  }
  .home_help_wrap .link_1{
    margin-top: 60px;
  }

  /*お約束*/
  .home_promiss_title_txt{
    font-size: 36px;
  }
  .home_promiss_wrap .home_promiss_title_txt:before{
    width:91px;
    height:112px;
    position: absolute;
    bottom: 0;
    left: 5%;
  }
  .home_promiss_title_txt p:before{
    width: 268px;
    height: 161px;
    position: absolute;
    right: -32.777%;
    bottom: 4px;
  }
  .home_promiss_title_txt strong{
    font-size: 60px;
  }
  .home_promiss_title_txt em{
    font-size: 36px;
  }
  .home_promiss_items{
    margin-top: 40px;
  }
  .home_promiss_item{

  }
  .home_promiss_item_inner{
    height: 100%;
  }
  .home_promiss_item_img:before{

  }
  .home_promiss_item_title{

  }
  .home_promiss_item_title_txt{

  }
  .home_promiss_item_desc{

  }
  .home_promiss_bf_txt{
    font-size: 18px;
    margin-top: 28px;
  }

  /*理由*/
  .home_reason_wrap .home_promiss_title{
    margin-bottom: 50px;
  }
  .home_reason_wrap .home_promiss_title_txt strong{
    font-size: 42px;
  }
  .home_reason_wrap .home_chiki_img_item_title:before{
    width: 63px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left:0;
  }
  .home_reason_wrap .home_chiki_img_item_title:after{
    width: 120px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right:-30px;
  }
  .home_reason_items{
    width: 80%;
  }
  .home_reason_item{

  }
  .home_reason_item_inner{
    padding: 13px 35px;
  }
  .home_reason_box1{
    margin-top: 10px;
  }
  .home_reason_item_title{

  }
  .home_reason_item_title_num{
    font-size: 42px;
  }
  .home_reason_item_title_txt{
    font-size: 19px;
  }
  .home_reason_item_tt{
    font-size: 22px;
  }
  .home_reason_item_desc{

  }
  .home_reason_box2{

  }
  .home_reason_box2_img{

  }
  .home_reason_box2_img:before{

  }
  /*slick*/
  .home_reason_items .home_reason_item {
    margin: 0 47.5px;
  }

  /*施工事例*/
  .home_case_box{
    margin-top: 40px;
  }
  .home_case_box .webgene-blog{

  }
  .home_case_box .webgene-blog .inner{
    padding: 10px 10px 26px;
  }
  .home_case_box .webgene-item .img_fit{

  }
  .home_case_box .webgene-item .meta{

  }
  .home_case_box .webgene-item .category{

  }
  .home_case_box .webgene-item .title{

  }
  .home_case_wrap .link_1{
    margin-top: 60px;
  }
  .home_case_box .slick-arrow{
    padding: 0 5px;
  }
  .home_case_box .slide-prev{
    left: -16px;
    z-index: 1;
  }
  .home_case_box .slide-next {
    right: -16px;
    top: 49%;
    z-index: 1;
  }

  .home_promiss_title_tt{
    font-size: 36px; 
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    margin-top: 92px;
  }
  .pg_home .section.sec2{
    margin-top: 135px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding: 80px 0;
    margin-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 81px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding: 80px 0 100px;
  }
  .pg_home .section.sec7{
    padding: 100px 0;
  }

  .home_promiss_title_txt h2{
    font-size: 46px;
  }
  /*お知らせ*/
  .home_news_box{

  }
  .home_news_box .webgene-blog{

  }
  .home_news_box .webgene-item{

  }
  .home_news_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .home_news_box .webgene-item a{

  }
  .home_news_box .webgene-item .img_fit{

  }
  .home_news_box .webgene-item .img_fit:before{

  }
  .home_news_box .webgene-item .content{

  }
  .home_news_box .webgene-item .category{

  }
  .home_news_box .webgene-item .title{

  }

  /*地域密着*/
  .home_chiki_img_items{

  }
  .home_chiki_img_item{

  }
  .home_chiki_img_item.left .home_chiki_img_item_img:before{

  }
  .home_chiki_img_item_icon{

  }
  .home_chiki_img_item_title{

  }
  .home_chiki_img_item_mes{
    font-size: 46px;
  }
  .home_chiki_img_item_mes:after{
    width: 436px;
    height: 86px;
    ;
    bottom: -80px;
    left: 50%;
    transform:translateX(-50%);
  }
  .home_chiki_img_item_mes strong{

  }
  .home_chiki_img_item.right{
    margin-top: -55px;
  }
  .home_chiki_img_item.right .home_chiki_img_item_img:before{

  }

  .home_chiki_desc{
    text-align: center;
    margin-top: 30px;
  }
  .home_chiki_desc strong{

  }

  /*エコキューっと*/
  .home_ecocute_txt{
    font-size: 170px;
  }
  .home_ecocute_items{
    margin-top: -56px;
  }
  .home_ecocute_box1{

  }
  .home_ecocute_box1_title{

  }
  .home_ecocute_box1_title_txt{
    font-size: 36px;
  }
  .home_ecocute_box2{

  }
  .home_ecocute_box2_img:before{

  }

  /*症状*/
  .home_help_title{

  }
  .home_help_title_txt{

  }
  .home_help_items{
    margin-top: 92px;
  }
  .home_help_item{

  }
  .home_help_item_inner{

  }
  .home_help_item_check_img{

  }
  .home_help_item_img{

  }
  .home_help_item_txt{
    font-size: 18px;
  }

  /*お約束*/
  .home_promiss_title_txt{
    font-size: 46px;
  }
  .home_promiss_wrap .home_promiss_title_txt:before{
    width:91px;
    height:112px;
    position: absolute;
    bottom: 0;
    left: 5%;
  }
  .home_promiss_wrap .home_promiss_title_txt h2:before{
    width: 268px;
    height: 161px;
    position: absolute;
    right: -32.777%;
    bottom: 0;
  }
  .home_promiss_title_txt strong{
    font-size: 70px;
  }
  .home_promiss_title_txt em{
    font-size: 46px;
  }
  .home_promiss_items{
    margin-top: 58px;
  }
  .home_promiss_item{

  }
  .home_promiss_item_inner{

  }
  .home_promiss_item_img:before{

  }
  .home_promiss_item_title{

  }
  .home_promiss_item_title_txt{

  }
  .home_promiss_item_desc{

  }

  /*理由*/
  .home_reason_wrap .home_promiss_title{
    margin-bottom: 60px;
  }
  .home_reason_wrap .home_promiss_title_txt strong{
    font-size: 58px;
  }
  .home_reason_wrap .home_chiki_img_item_title:before{
    width: 63px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left: 12.11%;
  }
  .home_reason_wrap .home_chiki_img_item_title:after{
    width: 120px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 7.49%;
  }
  .home_reason_items{
    width: 80%;
  }
  .home_reason_item{

  }
  .home_reason_item_inner{
    padding: 14px 44px 56px 40px;
  }
  .home_reason_box1{
    width: 48.57%;
    order: 1;
    margin-top: 0;
  }
  .home_reason_item_title{

  }
  .home_reason_item_title_num{
    font-size: 50px;
  }
  .home_reason_item_title_txt{

  }
  .home_reason_item_tt{
    font-size: 22px;
  }
  .home_reason_item_desc{

  }
  .home_reason_box2{
    width: 48.57%;
    padding-top: 25px;
    order: 2;

  }
  .home_reason_box2_img{

  }
  .home_reason_box2_img:before{

  }

  /*施工事例*/
  .home_case_box{
    margin-top: 56px;
  }
  .home_case_box .webgene-blog{

  }
  .home_case_box .webgene-blog .inner{

  }
  .home_case_box .webgene-item .img_fit{

  }
  .home_case_box .webgene-item .meta{

  }
  .home_case_box .webgene-item .category{

  }
  .home_case_box .webgene-item .title{

  }
  .home_case_box .slick-arrow{
    padding: 0 8px;
  }
  .home_case_box .slide-prev{
    left: -23px;
    z-index: 1;
  }
  .home_case_box .slide-next {
    right: -23px;
    z-index: 1;
  }

  .home_promiss_title_tt{
    font-size: 46px; 
  }
}
@media (min-width:1200px){
  /*お約束*/
  .home_promiss_wrap .home_promiss_title_txt:before{
    width:91px;
    height:112px;
    position: absolute;
    bottom: 0;
    left: 13.333%;
  }
  /*理由*/
  .home_reason_items{
    width: 75%;
  }
  .home_reason_item_tt{
    font-size: 26px;
  }
  .home_reason_wrap .home_chiki_img_item_title:before{
    width: 63px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left:17.11%;
  }
  .home_reason_wrap .home_chiki_img_item_title:after{
    width: 120px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 15.49%;
  }

  .home_case_box .slide-prev{
    left: -28px;
    z-index: 1;
  }
  .home_case_box .slide-next {
    right: -28px;
    z-index: 1;
  }
  .home_ecocute_txt{
    font-size: clamp(2.5rem, -1.551rem + 20.25vw, 12.5rem);
  }

}

@media (min-width:1280px){
  /*理由*/
  .home_reason_items{
    width: 92%;
  }
}



/*******************************
*　エコキュートとは
********************************/
.pg_ecocute{

}
.pg_ecocute .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_ecocute .section.sec2{
  padding-top: 90px;
}
.pg_ecocute .section.sec3{
  padding-top: 70px;
}
.pg_ecocute .section.sec4{
  padding-top: 70px;
}
.pg_ecocute .section.sec5{
  padding-top: 70px;
}

.ecocute_fit_wrap .home_promiss_title_txt p:before,
.ecocute_fit_wrap .home_promiss_title_txt p:after{
  display: none;
}
/*見出し*/
.ecocute_about_title{
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.444em;
  margin-top: -30px;
}
.ecocute_about_desc{
  font-size: 16px;
  font-weight:400;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  margin-top: 16px;
}
.ecocute_about_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 36px;
}
.ecocute_about_items:before{
  content: "";
  display: block;
  background: #f0f9fd;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 20%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.ecocute_about_box1{
  width: 57.20%;
}
.ecocute_about_box1_img:before{
  padding-top: 62.99%;
}
.ecocute_about_box2{
  width: 40.09%;
}
.ecocute_about_box2_img:before{
  padding-top: 89.88%;
}

/*特徴*/
.ecocute_feature_wrap .home_promiss_title_txt p:before,
.ecocute_feature_wrap .home_promiss_title_txt p:after,
.home_promiss_title_txt:before{
  display: none;
}
.ecocute_feature_wrap .home_promiss_title_tt:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/check2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 62px;
  height: 71px;
  position: absolute;
  bottom: 0;
  left: -108px;
}
.ecocute_feature_wrap .home_promiss_title_tt:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/misin.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 68px;
  height: 71px;
  position: absolute;
  bottom: 0;
  left: auto;
  right: -113px;
  border-bottom: none;
}
.ecocute_feature_wrap .home_promiss_title_txt strong,
.ecocute_fit_wrap .home_promiss_title_txt strong{
  font-size: 20px;
  font-weight:800;
  font-family: "Noto Sans JP", sans-serif;
}
.ecocute_feature_items{
  display: flex;
  flex-wrap: wrap;
  margin: 36px -15px 0;
}
.ecocute_feature_item{

}
.ecocute_feature_item_inner{

}
.ecocute_feature_item_title{
  font-size: 18px;
  text-align: center;
  border-radius: 25px;
  background: #93c121;
  color: #fff;
  padding: 10px;
  display:flex;
  align-items: center;
  justify-content: center;
}
.ecocute_feature_item_title h3{
  font-size: 17px;
  font-weight: 700;
}
.ecocute_feature_item_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  margin-top: 16px;
}

/*ピッタリ*/
/*.ecocute_fit_wrap .home_promiss_title_txt p:before,
.ecocute_fit_wrap .home_promiss_title_txt p:after{
  display: none;
}*/
.ecocute_fit_wrap .home_promiss_title_txt{
  line-height: 1.34em;
  margin-top: 12px;
}
.ecocute_about_desc{
  margin-top: 20px;
}
.ecocute_fit_wrap .home_promiss_title_tt{
  line-height: 1.38em;
}
.ecocute_fit_wrap .home_promiss_title_txt p:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/check3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 64px;
  height: 71px;
  position: absolute;
  bottom: 12px;
  left: -108px;
}
.ecocute_fit_wrap .home_promiss_title_tt:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/bath.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 86px;
  height: 90px;
  position: absolute;
  bottom: 8px;
  left: auto;
  right: -134px;
  border-bottom: none;
}
.ecocute_fit_wrap .home_promiss_title_txt :after{
  border-bottom: none;
}
.ecocute_fit_wrap .home_promiss_title_tt:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/check3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 64px;
  height: 71px;
  position: absolute;
  bottom: 12px;
  left: -108px;
}
.ecocute_fit_cat_items{
  display: flex;
  flex-wrap: wrap;
  margin: 36px -15px 0;
}
.ecocute_fit_cat_item{

}
.ecocute_fit_cat_item_inner{
  display: block;
  border:2px solid #eb6100;
  border-radius: 25.5px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 0;
}
.ecocute_fit_cat_item_inner:hover{
  background: #eb6100;
  color: #fff;
}
.ecocute_fit_cat_item_inner:after{
  content: "\f13a";
  font-family: 'FontAwesome';
  font-weight: 400;
  color: #eb6100;
  margin-right: 5px;
  position: absolute;
  top: 50%;
  right: 32px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all .3s;
}
.ecocute_fit_cat_item_inner:hover:after{
  color: #fff;
}
.ecocute_feature_wrap .home_promiss_title_txt :after{
  border-bottom: none;
}
/*.ecocute_feature_wrap .home_promiss_title_tt:before,
.ecocute_feature_wrap .home_promiss_title_txt :after{
  display: none;
}*/
/*選ぶ*/
.ecocute_choice_wrap{
  margin-top: 40px;
}
.ecocute_choice_title{
  font-weight: 900;
  text-align: center;

}
.ecocute_choice_tt{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.ecocute_choice_title:after{
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background: #df600f;
  margin: 12px auto 0;
}
.ecocute_choice_title strong{
  color: #df600f;
}
.ecocute_choice_desc{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  margin-top: 26px;
}


/*タンク選び*/
.ecocute_meyasu_title{
  text-align: center;
  background: #93c121;
  color: #fff;
  border-radius: 25.5px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.075em;
  padding: 6px;
  position: relative;
  top: -23px;
}
.ecocute_meyasu_wrap{
  background: #f0f9fd;
  padding: 0 16px 40px;
  margin-top: 60px;
}
.ecocute_meyasu_tbl{
  margin-top: 27px;
}
.meyasu_tbl{

}
.meyasu_tbl .table_rows_th,
.meyasu_tbl .table_rows_td{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #dce9ef;
  vertical-align: middle;
  padding: 12px 15px;
}
.meyasu_tbl .table_rows_th p,
.meyasu_tbl .table_rows_td p{
  letter-spacing: 0.2em;
}
.meyasu_tbl .table_rows_th{
  width: 220px;
  background: #fff;
}
.meyasu_tbl .table_rows_td{
background:#fff;
}
.meyasu_tbl .table_rows_td.s{
  width: 255px;

}
.meyasu_tbl .table_rows_td.l{
  width: 505px;
}
.meyasu_tbl .table_rows_tr:first-child .table_rows_th,
.meyasu_tbl .table_rows_tr:first-child .table_rows_td{
  font-weight: 700;
  background: #95d1ee;
  border: 1px solid #f0f9fd;
  padding: 11px 15px;
}
.meyasu_tbl .table_rows_tr:first-child{
  font-weight: 700;
}
.meyasu_items{
  display: flex;
  justify-content: space-between;
  padding: 8px 18px 10px 11px;
}
.meyasu_item{
  position: relative;
}
.meyasu_item:after{
  content: "+";
  display: block;
  font-size: 18px;
  position: absolute;
  top: 62%;
  right: -26px;
  transform: translateY(-50%);
}
.meyasu_item:last-child:after{
  display: none;
}
.meyasu_item_inner{

}
.meyasu_item_icon{
  margin-top: 12px;
}
.meyasu_item_title{
  background: #fef1e0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 0 5px;
}

/*タイプ*/
/*タイプ*/
.ecocute_type_wrap{
  margin-top: 40px;
}
.ecocute_type_tbl{
  margin-top: 40px;
}
.type_tbl{

}
.type_tbl .table_rows_th,
.type_tbl .table_rows_td{
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 5px;
}

.type_tbl .table_rows_th{
  width: 190px;
  background: #fff;
  border-right: 1px solid #dcdcdc;
}
.type_tbl .table_rows_td{
  width: 185px;
  line-height: 1.333em;
  background: #fff;

}
.type_tbl .table_rows_tr:first-child .table_rows_th,
.type_tbl .table_rows_tr:first-child .table_rows_td{
  background: #eeeeee;
  padding: 12px 0;
}

/*タイプ別解説*/
.ecocute_type_items{
  margin-top: 40px;
}
.ecocute_type_item{

}
.ecocute_type_item:nth-child(n+2){
  margin-top: 36px;
}
.ecocute_type_item_title{
  color: #fff;
  background: #df600f;
  text-align: center;
  border-radius: 25px;
  padding: 6px;
}
.ecocute_type_item_title h4{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.ecocute_type_item_desc{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  margin-top: 21px;
}

/*設置場所*/
.ecocute_position_wrap{
  margin-top:36px;
}
.ecocute_position_items{
  display: flex;
  flex-wrap: wrap;
  margin: 36px -15px 0;
}
.ecocute_position_item{

}
.ecocute_position_item_inner{
  border: 1px solid #93c121;
  padding: 10px;
}
.ecocute_position_item_img:before{
  padding-top: 60%;
}
.ecocute_position_item_title{
  text-align: center;
  background: #93c121;
  color: #fff;
  border-radius: 19px;
  padding: 7px 0;
  margin-top: 20px;
}
.ecocute_position_item_title_txt{
  font-size: 16px;
  font-weight: 700;
}
.ecocute_position_item_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  margin-top: 16px;
  padding: 0 9px;
}
/*補助金制度*/
.ecocute_subsidy_wrap .home_promiss_title_txt strong{
  font-size: 20px;
}
.ecocute_subsidy_wrap .home_promiss_title_txt p{
  position: relative;
}

.ecocute_subsidy_wrap .home_promiss_title_txt p:before,
.ecocute_subsidy_wrap .home_promiss_title_txt p:after{
  display: none;
}
.ecocute_subsidy_wrap .home_promiss_title_tt:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 53px;
  height: 54px;
  position: absolute;
  bottom: 0;
  left: -104px;
}
.ecocute_subsidy_wrap .home_promiss_title_tt:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 53px;
  height: 54px;
  position: absolute;
  bottom: 0;
  left: auto;
  right: -93px;

}
.ecocute_subsidy_wrap .home_promiss_title_txt :after{
  border-bottom: none;
}
.ecocute_subsidy_mes{
  padding: 5px;
  background: #FEF1E0;
  margin-top: 50px;
}
.ecocute_subsidy_mes_inner{
  border: 1px solid #DF600F;
  padding: 16px 10px;
}
.ecocute_subsidy_mes_title{
  text-align: center;

}
.ecocute_subsidy_mes_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}
.ecocute_subsidy_mes_desc{
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin-top: 14px;
}

.archive_tbl{

}
.archive_tbl .table_rows_th,
.archive_tbl .table_rows_td{
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  border-bottom: none;
}
.archive_tbl .table_rows_tr:last-child .table_rows_th,
.archive_tbl .table_rows_tr:last-child .table_rows_td{
  border-bottom: 1px solid #dcdcdc;
}
.archive_tbl .table_rows_tr:first-child .table_rows_th,
.archive_tbl .table_rows_tr:first-child .table_rows_td{
  min-width: 554px;
}
.archive_tbl .table_rows_tr:first-child .table_rows_td{
  background: #fff;
}
.archive_tbl .table_rows_tr:first-child .table_rows_th{
  background: #EEEEEE;
  border-right: 1px solid #dcdcdc;
}

.archive_tbl .table_rows_th.s{
  min-width: 255px;
  background: #fff;
}
.archive_tbl .table_rows_tr{
  display: block;
}
.archive_tbl .table_rows_tr:nth-child(2) .table_rows_th,
.archive_tbl .table_rows_tr:nth-child(3) .table_rows_th{
  position: relative;
}
.archive_tbl .table_rows_tr:nth-child(2) .table_rows_th:after,
.archive_tbl .table_rows_tr:nth-child(3) .table_rows_th:after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.archive_tbl .table_rows_tr:nth-child(n+2) .table_rows_th{
  min-width: 254px;
}
.archive_tbl .table_rows_td.m{
  min-width: 300px;
  border-left: 1px solid #dcdcdc;
  background: #fff;
}
.archive_tbl .table_rows_td.l{
  min-width: 555px;
  background: #fff;
}
.ecocute_subsidy_archive_wrap{
  margin-top: 40px;
}
.ecocute_subsidy_archive_tbl{
  margin-top: 30px;
}
.ecocute_subsidy_archive_tbl_desc{
  font-size: 15px;
  font-weight: 400;
  line-height: 2.133em;
  text-align: justify;
  margin-top: 20px;
}

/*撤去加算*/
.ecocute_kasan_wrap{
  margin-top: 40px;
}
.kasan_tbl{

}
.ecocute_kasan_tbl{
  margin-top: 30px;
}
.kasan_tbl .table_rows_th,
.kasan_tbl .table_rows_td{

}
.kasan_tbl .table_rows_tr:first-child .table_rows_th,
.kasan_tbl .table_rows_tr:first-child .table_rows_td{

}
.kasan_tbl .table_rows_th{
  background:#EEEEEE;
  border-right: 1px solid #dcdcdc;
  width: 50%;
}
.kasan_tbl .table_rows_td{
  width: 50%;
  background: #fff;
}



/*期間*/
.ecocute_kikan_wrap{
  margin-top: 36px;
}

/*使い方*/
.ecocute_use_wrap .home_promiss_title_txt{

}
.ecocute_use_wrap .home_promiss_title_txt p{

}
.ecocute_use_wrap .home_promiss_title_txt strong{
  font-size: 20px;
}
.ecocute_use_wrap .home_promiss_title_tt:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/illust_left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 71px;
  height: 63px;
  position: absolute;
  bottom: 0;
  left: -118px;
}
.ecocute_use_wrap .home_promiss_title_tt:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/illust_right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 63px;
  height: 63px;
  position: absolute;
  bottom: 0;
  left: auto;
  right: -106px;
  border-bottom: none;
}
.ecocute_use_wrap .home_promiss_title_txt :after{
  border-bottom: none;
}
/*使い方*/
.ecocute_use_items{
  margin-top: 40px;
}
.ecocute_use_item{
  border-bottom: 1px solid #95d1ee;
  padding-bottom: 36px;
}
.ecocute_use_item:last-child{
  border-bottom: none;
}
.ecocute_use_item:nth-child(n+2){
  padding-top: 36px;
}
.ecocute_use_item_title{

}
.ecocute_use_item_title_en{
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #df600f;
}
.ecocute_use_item_title_ja{
  font-size: 18px;
  font-weight: 600;
  margin-top: 18px;
}
.ecocute_use_item_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}

.link_1.wide{
  max-width: 280px;
  margin-bottom: 50px;
}
/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  /*見出し*/
  .ecocute_about_title{
    margin-top: -16px;
  }
  /*特徴*/
  .ecocute_feature_item:nth-child(n+2){
    margin-top: 30px;
  }
  .ecocute_feature_wrap .home_promiss_title_txt p:before{
    left: -87px;
  }
  .ecocute_feature_wrap .home_promiss_title_txt p:after{
    right: -86px;
  }
  /*ピッタリ*/
  .ecocute_fit_cat_item:nth-child(n+2){
    margin-top: 16px;
  }
  .ecocute_fit_wrap .home_promiss_title_tt:before{
    left: -70px;
  }
  .ecocute_fit_wrap .home_promiss_title_tt:after{
    width: 55px;
    height: 58px;
    left: auto;
    right: -66px;
  }

  /*スクロールヒント*/
  .meyasu_tbl .table_rows_tr,
  .type_tbl .table_rows_tr{
    display: block;
  }
  .js-scrollable .table_rows {
    min-width: 900px;
  }

  .ecocute_use_wrap .home_promiss_title_tt:before{
    width: 54px!important;
    height: 48px!important;
    bottom: 32px!important;
    left: -45px!important;
  }
  .ecocute_use_wrap .home_promiss_title_tt:after{
    width: 51px!important;
    height: 52px!important;
    bottom: 27px!important;
    left: auto!important;
    right: -43px!important;
  }
  /*補助金*/
  .ecocute_subsidy_wrap .home_promiss_title_txt p:before{
    left: -74px;
  }
  .ecocute_subsidy_wrap .home_promiss_title_txt p:after{
    right: -70px;
  }

  /*設置場所*/
  .ecocute_position_item:nth-child(n+2){
    margin-top: 30px;
  }

  /*加算*/
  .kasan_tbl .table_rows_th,
  .kasan_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #c9c9c9;
    border-bottom: none;
  }
  .pg_ecocute .section.sec4 .kasan_tbl .table_rows_th{
    border-top: 1px solid #c9c9c9;
    border-left: 1px solid #c9c9c9;
  }
  .pg_ecocute .section.sec4 .kasan_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #c9c9c9;
  }
  .pg_ecocute .section.sec4 .kasan_tbl .table_rows_td{
    border-top: none;
  }
  .table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
  .table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
    border-right: 1px solid #c9c9c9;
  }
  .pg_ecocute .anchor{
    top: -30px
  }

  .ecocute_use_wrap .home_promiss_title_txt p:before{
    width: 50px;
    height: 44px;
    bottom: 40px;
    left: -43px;
  }
  .ecocute_use_wrap .home_promiss_title_txt p:after{
    width: 50px;
    height: 50px;
    bottom: 38px;
    left: auto;
    right: -45px;
  }

  .ecocute_fit_wrap .home_promiss_title_tt:before{
    left: -68px;
  }
}
@media (min-width:768px){
  .pg_ecocute{

  }
  .pg_ecocute .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_ecocute .section.sec2{
    padding-top: 120px;
  }
  .pg_ecocute .section.sec3{
    padding-top: 80px;
  }
  .pg_ecocute .section.sec4{
    padding-top: 100px;
  }
  .pg_ecocute .section.sec5{
    padding-top: 100px;
  }

  /*見出し*/
  .ecocute_about_title{
    font-size: 32px;
    margin-top: -36px;
  }
  .ecocute_about_desc{

  }
  .ecocute_about_items{
    margin-top: 50px;
  }
  .ecocute_about_box1{

  }
  .ecocute_about_box1_img:before{

  }
  .ecocute_about_box2{

  }
  .ecocute_about_box2_img:before{

  }

  /*特徴*/
  .ecocute_feature_wrap .home_promiss_title_txt strong,
  .ecocute_fit_wrap .home_promiss_title_txt strong{
    font-size: 36px;
  }

  .ecocute_feature_wrap .home_promiss_title_tt:before,
  .ecocute_fit_wrap .home_promiss_title_txt p:before{
    width: 62px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left: -108px;
  }
  .ecocute_feature_wrap .home_promiss_title_tt:before{
    left: -140px;
  }
  .ecocute_feature_wrap .home_promiss_title_tt:after{
    width: 68px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left: auto;
    right: -113px;
  }
  .ecocute_feature_items{
    margin-top: 40px;
  }
  .ecocute_feature_item{

  }
  .ecocute_feature_item:nth-child(n+3){
    margin-top: 50px;
  }
  .ecocute_feature_item_inner{

  }
  .ecocute_feature_item_title h3{
    font-size: 18px;
  }
  .ecocute_feature_item_desc{

  }

  /*ピッタリ*/
  .ecocute_about_desc{
    margin-top: 28px;
  }
  .ecocute_fit_cat_items{
    margin-top: 42px;
  }
  .ecocute_fit_cat_item{

  }
  .ecocute_fit_cat_item_inner{
    font-size: 14px;
  }
  .ecocute_fit_cat_item_inner:after{
    right: 18px;
  }

  /*選ぶ*/
  .ecocute_choice_wrap{
    margin-top: 50px;
  }
  .ecocute_choice_tt{
    font-size: 32px;
  }
  .ecocute_choice_desc{

  }
  .ecocute_meyasu_wrap{
    padding: 0 65px 50px;
  }
  .ecocute_meyasu_title{
    font-size: 20px;
  }

  /*タンク選び*/
  .ecocute_meyasu_wrap{
    margin-top: 70px;
  }
  .meyasu_tbl .table_rows,
  .type_tbl .table_rows,
  .archive_tbl .table_rows{
    width: 100%;
  }
  .meyasu_item:after{
    top: 62%;
    right: -26px;
    transform: translateY(-50%);
  }

  /*タイプ*/
  .ecocute_type_wrap{
    margin-top: 50px;
  }
  .ecocute_type_tbl{
    margin-top: 50px;
  }

  /*タイプ別解説*/
  .ecocute_type_items{
    margin-top: 60px;
  }
  .ecocute_type_item{

  }
  .ecocute_type_item:nth-child(n+2){
    margin-top: 53px;
  }
  .ecocute_type_item_title{
    font-size: 20px;
  }
  .ecocute_type_item_title h4{
    font-size: 20px;
  }
  .ecocute_type_item_desc{

  }

  /*設置場所*/
  .ecocute_position_wrap{
    margin-top: 42px;
  }
  .ecocute_position_items{
    margin-top: 42px;
  }
  .ecocute_position_item{

  }
  .ecocute_position_item:nth-child(n+3){
    margin-top: 36px;
  }
  .ecocute_position_item_inner{
    padding: 19px;
    height: 100%;
  }
  .ecocute_position_item_img:before{

  }
  .ecocute_position_item_title{
    margin-top: 25px;
  }
  .ecocute_position_item_title_txt{

  }
  .ecocute_position_item_desc{

  }

  /*補助金制度*/
  .ecocute_subsidy_wrap .home_promiss_title_txt strong,
  .ecocute_use_wrap .home_promiss_title_txt strong{
    font-size: 36px;
  }
  .ecocute_subsidy_mes{
    margin-top: 60px;
  }
  .ecocute_subsidy_mes_inner{
    padding: 32px 16px 40px;
  }
  .ecocute_subsidy_mes_title{
    font-size:28px;
  }
  .ecocute_subsidy_mes_tt{
    font-size:28px;
  }
  .ecocute_subsidy_mes_desc{

  }
  .ecocute_subsidy_archive_tbl{
    margin-top: 40px;
  }

  .ecocute_subsidy_archive_wrap{
    margin-top: 50px;
  }

  /*加算*/
  .ecocute_kasan_wrap{
    margin-top: 53px;
  }
  .ecocute_kasan_tbl{
    margin-top: 45px;
  }

  /*期間*/
  .ecocute_kikan_wrap{
    margin-top: 47px;
  }

  /*使い方*/
  .ecocute_use_items{
    margin-top: 50px;
  }
  .ecocute_use_item{
    padding-bottom: 40px;
  }
  .ecocute_use_item:nth-child(n+2){
    padding-top: 45px;
  }
  .ecocute_use_item_title{

  }
  .ecocute_use_item_title_en{
    font-size: 42px;
  }
  .ecocute_use_item_title_ja{
    font-size: 22px;
  }

  .pg_ecocute .anchor{
    top: -150px
  }

  .link_1.wide{
    max-width: 280px;
    margin-bottom: 80px;
  }
}
@media (min-width:1024px){
  .pg_ecocute{

  }
  .pg_ecocute .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_ecocute .section.sec2{
    padding-top: 182px;
  }
  .pg_ecocute .section.sec3{
    padding-top: 112px;
  }
  .pg_ecocute .section.sec4{
    padding-top: 120px;
  }
  .pg_ecocute .section.sec5{
    padding-top: 120px;
  }

  /*見出し*/
  .ecocute_about_title{
    font-size: 36px;
    margin-top: -50px;
  }
  .ecocute_about_desc{
    text-align: center;
  }
  .ecocute_about_items{

  }
  .ecocute_about_box1{

  }
  .ecocute_about_box1_img:before{

  }
  .ecocute_about_box2{

  }
  .ecocute_about_box2_img:before{

  }

  /*特徴*/
  .ecocute_feature_wrap .home_promiss_title_tt:before,
  .ecocute_fit_wrap home_promiss_title_tt:before{
    width: 62px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left: -108px;
  }
  .ecocute_feature_wrap .home_promiss_title_tt:after{
    width: 68px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left: auto;
    right: -113px;
  }
  .ecocute_feature_wrap .home_promiss_title_txt strong,
  .ecocute_fit_wrap .home_promiss_title_txt strong{
    font-size: 46px;
  }
  .ecocute_feature_wrap .home_promiss_title_txt{
    margin-top: 20px;
  }
  .ecocute_feature_items{
    margin-top: 58px;
  }
  .ecocute_feature_item{

  }
  .ecocute_feature_item_inner{

  }
  .ecocute_feature_item_title{

  }
  .ecocute_feature_item_desc{

  }

  /*ピッタリ*/
  .ecocute_fit_wrap .home_promiss_title_txt{
    margin-top: 12px;
  }
  .ecocute_fit_wrap .ecocute_about_desc{
    margin-top: 30px;
  }
  .ecocute_fit_cat_items{
    margin-top: 52px;
  }
  .ecocute_fit_cat_item{

  }
  .ecocute_fit_cat_item_inner{
    font-size: 15px;
  }
  .ecocute_fit_cat_item_inner:after{
    right: 32px;
  }

  /*選ぶ*/
  .ecocute_choice_wrap{
    margin-top: 64px;
  }
  .ecocute_choice_tt{
    font-size: 36px;
  }
  .ecocute_choice_desc{
    text-align: center;
  }

  /*タンク選び*/

  .ecocute_meyasu_wrap{
    margin-top:76px;
  }

  /*タイプ*/
  .ecocute_type_wrap{
    margin-top: 60px;
  }
  .ecocute_type_tbl{
    margin-top: 50px;
  }

  /*タイプ別解説*/
  .ecocute_type_items{
    margin-top: 80px;
  }
  .ecocute_type_item{

  }
  .ecocute_type_item_title{

  }
  .ecocute_type_item_desc{
    text-align: center;
  }

  /*設置場所*/
  .ecocute_position_wrap{
    margin-top: 54px;
  }
  .ecocute_position_items{
    margin-top: 53px;
  }
  .ecocute_position_item{

  }
  .ecocute_position_item_inner{

  }
  .ecocute_position_item_img:before{

  }
  .ecocute_position_item_title{

  }
  .ecocute_position_item_title_txt{

  }
  .ecocute_position_item_desc{

  }

  /*補助金制度*/
  .ecocute_subsidy_wrap .home_promiss_title_txt{
    margin-top: 18px;
  }
  .ecocute_subsidy_wrap .ecocute_about_desc{
    margin-top: 40px;
  }
  .ecocute_subsidy_wrap .home_promiss_title_txt strong,
  .ecocute_use_wrap .home_promiss_title_txt strong{
    font-size: 46px;
  }
  .ecocute_subsidy_mes{
    margin-top: 72px;
  }
  .ecocute_subsidy_mes_inner{

  }
  .ecocute_subsidy_mes_tt{
    font-size:36px;
  }
  .ecocute_subsidy_mes_desc{
    text-align: justify;
  }

  .ecocute_subsidy_archive_wrap{
    margin-top: 60px;
  }

  .ecocute_use_wrap .home_promiss_title_txt{
    margin-top: 22px;
  }
  .ecocute_use_wrap .ecocute_about_desc{
    margin-top: 38px;
  }

  /*使い方*/
  .ecocute_use_items{
    margin-top: 62px;
  }
  .ecocute_use_item{

  }
  .ecocute_use_item_title{

  }
  .ecocute_use_item_title_en{
    font-size: 50px;
  }
  .ecocute_use_item_title_ja{
    font-size: 26px;
  }

  .archive_tbl .table_rows_tr:first-child .table_rows_th,
  .archive_tbl .table_rows_tr:first-child .table_rows_td{
    /*    min-width: inherit;
        width: auto;*/
  }
  .archive_tbl .table_rows_tr:first-child .table_rows_td{
    min-width: calc(100% - 554px);
    width: 100%;
  }
  .archive_tbl .table_rows_td.l{
    min-width: calc(100% - 300px - 254px);
    width: 100%;
  }

  .link_1.wide{
    max-width: 280px;
    margin-bottom: 120px;
  }
}
@media (min-width:1200px){
  /*タンク選び*/
  .meyasu_tbl .table_rows,
  .type_tbl .table_rows{
    width: auto;
    ;
  }
  /*補助金制度*/
  .ecocute_subsidy_mes_desc{
    text-align: center;
  }
  .archive_tbl .table_rows_td.l{
    min-width: 555px;
  }
  /*  .archive_tbl .table_rows_tr:first-child .table_rows_th,
    .archive_tbl .table_rows_tr:first-child .table_rows_td{
      min-width: 555px;
      width: auto;
    }*/
}

/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #0069ba;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 50px;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 55px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


}
@media (min-width:1024px){

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
  font-family: "Noto Serif JP", serif;
}
.contact_info_tt{
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  letter-spacing: 0.18em;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}
button.button.formBtn.formSend {
    width: 100%;
    max-width: 240px;
    font-size: 15px;
    font-weight: 400;
    margin: 42px auto 0;
    padding: 10px;
    display: block;
    background: #fff;
    color: #181818;
    text-align: center;
    position: relative;
    border-radius: 0;
    letter-spacing: 0.075em;
    border-radius: 25.5px;
    border: 2px solid #eb6100;
}
    button.button.formBtn.formSend:after {
    content: "\f138";
    font-family: 'FontAwesome';
    font-weight: 400;
    color: #eb6100;
    margin-right: 5px;
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all .3s;
}
@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 180px;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}

.anchor#cate_start{
  top: -30px;
}
.pg_trouble .home_promiss_title_txt :after,
.pg_beginner .home_promiss_title_txt :after{
  border-bottom: none;
}

.pg_trouble .ecocute_choice_title{
  font-size: 20px;
  font-weight: 900;
}

.pg_works .works_list .webgene-blog article a:hover{
  color: #181818;
}
.pg_works .works_list .webgene-item .img_fit{
  overflow: hidden;
}
.pg_works .works_list .webgene-item .img_fit img{
  transition: all .3s;
}
.pg_works .works_list .webgene-item a:hover img{
  transform: scale(1.1);
}

.company_tbl .table_rows_td{
  background: #fff;
}

.pg_news .posts_cat_item a{
  line-height: 1.6em;
}
.gmap{
  margin-top:40px;
}
.access_map iframe{
  border: none;
  width: 100%;
  height: 200px;;
}
/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .body_newsDetail .posts_detail{
    padding-bottom: 30px;
  }
  .body_newsDetail .detail .link_1{
    margin-top: 50px;
  }
  .body_newsDetail .posts_detail .meta .category{
    display: block;
    margin-left: 10px;;
    padding: 8px 14px;
  }

  .ecocute_use_item:last-child{
    padding-bottom: 0;
  }
  .ftr_home_wrap{
    margin-top: 70px;
  }

  .pg_works .works_list{
    margin-top: 40px;
  }
  .pg_works .webgene-blog{
    margin: 0 -10px;
  }
  .pg_works .webgene-item{
    padding: 0 10px;
  }
  .pg_works .works_list .webgene-blog article a .category span{
    display: block;
    letter-spacing: 0;
    font-size: 13px;
    text-align: center;
  }
  .pg_works .works_list .webgene-pagination{
    margin-top: 60px;
  }

  .trouble_box4_inner .ecocute_choice_title{
    font-size: 24px;
  }
  .beginner_flow_ja{
    text-align: center;
  }
  .pg_works .works_detail .webgene-blog{
    padding: 20px 10px;
  }

  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .company_tbl .table_rows_th{
    border-right: none;;;
    border-left:none;;;
  }
  .company_tbl .table_rows_td{
    border-left: 1px solid #dcdcdc;;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dcdcdc;;
  }
  .pg_company iframe{
    height: 250px;  
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  .anchor#cate_start{
    top: -150px;
  }
  .body_newsDetail .posts_detail{
    padding-bottom: 40px; 
  }

  .pg_contact .formTbl .formTh{
    flex: 0 0 35%;
    max-width: 35%;
  }
  .pg_contact .formTbl .formTd{
    flex: 0 0 65%;
  }
  .ecocute_use_item:last-child{
    padding-bottom: 0;
  }

  .pg_works .work_category .webgene-blog .webgene-item{
    width: 50%;
  }
  .pg_works .work_category .webgene-blog .webgene-item:nth-child(n+3){
    margin-top: 16px;
  }
  .pg_trouble .ecocute_choice_title{
    font-size: 32px;
    font-weight: 900;
  }

  .gmap{
    margin-top: 65px;
  }
  .access_map iframe{
    width: 100%;
    height: 415px;
  }
}
@media (min-width:1024px){
  .pg_works .work_category .webgene-blog .webgene-item:nth-child(n+3){
    margin-top: 0;;
  }
  .pg_works .work_category .webgene-blog .webgene-item{
    width: 25%;
  }
  .pg_trouble .ecocute_choice_title{
    font-size: 36px;
  }

}
@media (min-width:1200px){


}

.d-inline-block.requiredText.optionalText {
  background-color:#56a61a;
}