@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}

/* 基本フォント: ゴシック */
body{
  font-family:  "Zen Kaku Gothic New","Oswald","Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/

#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;
}

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: #f5eb0a;
}
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;
  z-index: 1;
  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!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}

/* 指定デバイスで改行を消す */
@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;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: transparent;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.hdr_contact a{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: #f5eb0a;
  width: 115px;
  padding: 32px 0px 13px;
  text-align: center;
  transition: 0.2s all;
  border: 1px solid #f5eb0a;
}
.hdr_contact a p{
  margin-top: 17px;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  color: #fff;
  background: #000;
}
.hdr_contact a:hover img{
  filter: invert(100%);
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 0 0px 0 13px;
  }

  /* ロゴ */
  .hdr_logo img{
    width: 180px;
  }

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }
  .header.slim .gnav .gnav_item{
    color: #000;
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  /* お問い合わせボタン */
  .hdr_contact{
    margin-left: 10px;
  }


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

  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

  /* ヘッダースリム */
  .header.slim{

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }
  /* お問い合わせボタン */
  .hdr_contact{
    margin-left: 50px;
  }

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .gnav .gnav_item + .gnav_item{
    border-color: #000;
  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 50vh;
}
.mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(26, 26, 26);
  opacity: 0.278;
  pointer-events: none;
}
.mv_img.img_fit img{
  object-position: left;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
}
.mv_txt_p1{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.5;
}
.mv_txt_p2{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0;
  line-height: 1.24;
}
.mv_txt_p2 strong{
  font-weight: 700;
  color: #f5eb0a;
}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

/* MVボタン */
.mv_btn{
  position: absolute;
  z-index: 1;
  right: 2.5%;
  bottom: 5.5%;
  width: 20%;
}
.mv_btn_inner{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mv_btn_inner:before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background: url(/system_panel/uploads/images/20250729153945517358.png)no-repeat center center/contain;
}
.mv_btn_img{
  display: inline-block;
  animation: rotation-r 10s linear infinite;
}

@keyframes rotation-r {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}


@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
  }
  .mv_txt_p1{
    font-size: 20px;
  }
  .mv_txt_p2{
    font-size: 63px;
  }

  /* MVボタン */
  .mv_btn{
    right: 2.5%;
    bottom: 5.5%;
    width: 13%;
  }
  .mv_btn_inner:before{
    width: 17px;
    height: 17px;
  }

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


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
  }
  .mv_txt_p1{
    font-size: 22px;
  }
  .mv_txt_p2{
    font-size: 70px;
  }

  /* MVボタン */
  .mv_btn{
    right: 2.5%;
    bottom: 5.5%;
    width: 13%;
  }
  .mv_btn_inner:before{
    width: 25px;
    height: 25px;
  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 900px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 50%;
    left: 10.5%;
  }
  .mv_txt_p1{
    font-size: 22px;
  }
  .mv_txt_p2{
    font-size: 70px;
    margin-left: -7px;
    letter-spacing: 0.035em;
  }

  /* MVボタン */
  .mv_btn{
    right: 2.5%;
    bottom: 5.5%;
    width: 15%;
  }
  .mv_btn_inner:before{
    width: 30px;
    height: 30px;
  }

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

  /* MVテキスト */
  .mv_txt{
    top: 50%;
    left: 10.5%;
  }
  .mv_txt_p1{
    font-size: 36px;
  }
  .mv_txt_p2{
    font-size: 108px;
    margin-left: -7px;
    letter-spacing: 0.035em;
  }

  /* MVボタン */
  .mv_btn{
    right: 3%;
    bottom: 5.5%;
    width: auto;
  }
  .mv_btn_inner:before{
    width: 46px;
    height: 48px;
  }


}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


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

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 200px;
}
.pg_header_mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
  pointer-events: none;
}
.pg_header_txt{
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 5%;
}
.pg_header_title{

}
.pg_header_title_ja{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.pg_header_title_en{
  margin-top: 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.027em;
  color: #fff;
}
.pg_header_title_en strong{
  font-weight: 700;
  color: #f5eb0a;
}


@media (min-width:768px){
  .pg_header{
    margin-bottom: 130px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_txt{
    top: 50%;
    left: 5%;
  }
  .pg_header_title{

  }
  .pg_header_title_ja{
    font-size: 25px;
  }
  .pg_header_title_en{
    margin-top: 10px;
    font-size: 70px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 160px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 520px;
  }
  .pg_header_txt{
    top: 43%;
    left: 10%;
  }
  .pg_header_title{

  }
  .pg_header_title_ja{
    font-size: 24px;
  }
  .pg_header_title_en{
    margin-top: 10px;
    font-size: 70px;
  }

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


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

  .pg_header_title_ja{
    font-size: 36px;
  }
  .pg_header_title_en{
    margin-top: 10px;
    font-size: 108px;
  }

}



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

.footer{
  margin-top: 50px;
}

/*電気のこと、なんでもご相談ください。*/
.ftr1{
  position: relative;
  z-index: 1;
  color: #fff;
}
.ftr1_img.img_fit{

}
.ftr1_img.img_fit:before{
  padding-top: 600px;
}
.ftr1_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.502;
  pointer-events: none;
}
.ftr1_txt{
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 0;
  width: 100%;
  padding: 0 15px;
}
.ftr1_txt_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.ftr1_txt_en p{
  letter-spacing: 0;
}
.ftr1_txt_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.5;
}
.ftr1_txt_text{
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.ftr1_btn{
  position: absolute;
  z-index: 1;
  top: 55%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.ftr1_btn a{
  width: 50%;
}
.ftr1_btn a:hover .ftr1_btn_inner:before{
  top: 47%;
  left: 53%;
}
.ftr1_btn_inner{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ftr1_btn_inner:before{
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  background: url(/system_panel/uploads/images/20250730111954352208.png) no-repeat center center / contain;
}
.ftr1_btn_img{
  display: inline-block;
  animation: rotation-r 10s linear infinite;
}

/*ケイ電工株式会社*/
.ftr2{
  padding: 20px 0px;
  background: #f5eb0a;
}
.ftr2_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr2_box1,
.ftr2_box2{
  width: 100%;
}
.ftr2_box1{

}
.ftr2_box2{
  display: none;
}
.ftr2_logo{
  margin-top: 8px;
  text-align: center;
}
.ftr2_addr{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}
.ftr2_addr a:hover,
.ftr2_link a:hover{
  color: #fff;
}
.ftr2_links{
  display: flex;
  flex-wrap: wrap;
}
.ftr2_link{

}
.ftr2_link a{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7647;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  display: flex;
  align-items: center;
}
.ftr2_link a:before{
  content: "□";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ftr_copy{
  margin-top: 50px;
  padding: 7px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  background: #fff;
}

/* 追尾スマホメニュー */
.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: #000;
  text-decoration: none;
  line-height: 1.2;
  color: #f5eb0a;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #f5eb0a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #000;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
  color: #f5eb0a;
}
.footer_fix > a p{
  color: #f5eb0a;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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




@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

  /*電気のこと、なんでもご相談ください。*/
  .ftr1{

  }
  .ftr1_img.img_fit{

  }
  .ftr1_img.img_fit:before{
    padding-top: 500px;
  }
  .ftr1_txt{
    padding: 0;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 59%;
  }
  .ftr1_txt_en{
    font-size: 70px;
  }
  .ftr1_txt_ja{
    font-size: 23px;
  }
  .ftr1_txt_text{
    line-height: 2.125;
  }
  .ftr1_txt_text p{
    letter-spacing: 0;
  }
  .ftr1_btn{
    width: 25%;
    top: 37.5%;
    right: 4.2%;
  }
  .ftr1_btn a{
    width: 70%;
  }
  .ftr1_btn_inner{

  }
  .ftr1_btn_inner:before{
    width: 20px;
    height: 20px;
  }
  .ftr1_btn_img{

  }

  /*ケイ電工株式会社*/
  .ftr2{
    padding: 52px 0 45px;
  }
  .ftr2_box{

  }
  .ftr2_box1{
    width: 40.53%;
  }
  .ftr2_box2{
    display: block;
    width: 25.64%;
  }
  .ftr2_logo{
    margin-top: 8px;
    text-align: justify;
  }
  .ftr2_addr{
    margin-top: 40px;
    font-size: 17px;
    line-height: 2;
    text-align: justify;
  }
  .ftr2_links{

  }
  .ftr2_link{
    
  }
  .ftr2_link a + .ftr2_link a{
    margin-top: 15px;
  }
  .ftr2_link a{
    font-size: 17px;
    padding-left: 25px;
  }
  .ftr2_link a:before{

  }
  .ftr_copy{
    margin-top: 90px;
    padding: 7px 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }

  /*電気のこと、なんでもご相談ください。*/
  .ftr1{

  }
  .ftr1_img.img_fit{

  }
  .ftr1_img.img_fit:before{
    padding-top: 720px;
  }
  .ftr1_txt{
    top: 49.5%;
    left: 10%;
    width: 50%;
  }
  .ftr1_txt_en{
    font-size: 80px;
  }
  .ftr1_txt_ja{
    margin-top: 21px;
    font-size: 26px;
  }
  .ftr1_txt_text{
    margin-top: 40px;
    font-size: 16px;
  }
  .ftr1_btn{
    width: auto;
    top: 32.5%;
    right: 10.2%;
  }
  .ftr1_btn a{
    width: 70%;
  }
  .ftr1_btn_inner{

  }
  .ftr1_btn_inner:before{
    width: 25px;
    height: 25px;
  }
  .ftr1_btn_img{

  }

  /*ケイ電工株式会社*/
  .ftr2{
    padding: 52px 0 45px;
  }
  .ftr2_box{

  }
  .ftr2_box1{
    width: 31.53%;
  }
  .ftr2_box2{
    display: block;
    width: 55.64%;
  }
  .ftr2_logo{
    margin-top: 8px;
  }
  .ftr2_addr{
    margin-top: 40px;
    font-size: 17px;
  }
  .ftr2_links{
    margin-right: -5%;
  }
  .ftr2_link{
    width: 33.33%;
  }
  .ftr2_link a + a{
    margin-top: 15px;
  }
  .ftr2_link a{
    font-size: 17px;
    padding-left: 25px;
  }
  .ftr2_link a:before{

  }
  .ftr_copy{
    margin-top: 125px;
    padding: 7px 0;
  }
}
@media (min-width:1200px){

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

  /*電気のこと、なんでもご相談ください。*/
  .ftr1_txt_en{
    font-size: 110px;
  }
  .ftr1_txt_ja{
    margin-top: 21px;
    font-size: 36px;
  }
  .ftr1_btn a{
    width: 100%;
  }
  .ftr1_btn_inner:before{
    width: 37px;
    height: 37px;
  }

  /*ケイ電工株式会社*/
  .ftr2_box2{
    display: block;
    width: 48.64%;
  }

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

  /*電気のこと、なんでもご相談ください。*/
  .ftr1_txt_en{
    font-size: 120px;
  }
  .ftr1_txt_ja{
    margin-top: 21px;
    font-size: 40px;
  }

}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.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 15px;
  margin: 0 4px;
  border: 1px solid #f5eb0a;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #f5eb0a;
}
.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;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #f5eb0a;
  /*border-radius: 27px;*/
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 12px;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0 100%);
  background: #000;
  bottom: 2px;
  right: 2px;
  transition: 0.2s all;
}
.read_more a:hover{
  color: #f5eb0a;
  background: #000;
}
.read_more a:hover:after{
  background: #f5eb0a;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}


@media (max-width:374px){

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

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

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 300px;
    padding: 19px 0px 19px;
    margin: 5px 5px;
  }
  .read_more a:after{

  }
  .read_more a:hover:after{

  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


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

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

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

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


}

@media (min-width:1720px){

  /* コンテナ */
  .container.wide{
    max-width: 1720px;
    padding-right: 100px;
    padding-left: 100px;
  }

}



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

}
.pg_home .section.sec1,
.pg_home .section.sec1 > *,
.pg_home .section.sec5,
.pg_home .section.sec5 > *,
.pg_home .section.sec6,
.pg_home .section.sec6 > *{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec1{
  padding-top: 70px;
}
.pg_home .section.sec1:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f5eb0a;
}
.pg_home .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec4{
  padding-bottom: 200px;
  background-color: rgb(245, 245, 245);
}
.pg_home .section.sec5{
  margin-top: -150px;
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_home .section.sec5:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 150px;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 85%;
  background: #f5eb0a;
}
.pg_home .section.sec6{
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_home .section.sec6:before{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 72%;
  background: #f5f5f5;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

/*暮らしのそばで、ていねいに。*/
.home_about{

}
.home_about_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1,
.home_about_box2{
  width: 100%;
}
.home_about_box1{

}
.home_about_box2{

}
.home_about_title{

}
.home_about_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.home_about_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.home_about_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}
.home_about .read_more{

}
.home_about .read_more a{
  color: #fff;
  background: #1a1a1a;
}
.home_about .read_more a:after{
  background: #fff;
}
.home_about .read_more a:hover{
  color: #1a1a1a;
  background: #fff;
}
.home_about .read_more a:hover:after{
  background: #1a1a1a;
}
.home_about_img_outer{

}
.home_about_img.img_fit{
  margin-top: 30px;
}
.home_about_img.img_fit:before{
  padding-top: 82.35%;
}

/*個人のお客様*/
.home_Individual{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home_Individual_img.img_fit{

}
.home_Individual_img.img_fit:before{
  padding-top: 750px;
}
.home_Individual_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.502;
  pointer-events: none;
}
.home_Individual_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 15px;
}
.home_Individual_txt_title1{
  padding-left: 18px;
  position: relative;
  z-index: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #f5eb0a;
}
.home_Individual_txt_title1:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: #f5eb0a;
}
.home_Individual_txt_title2{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.625;
  color: #fff;
}
.home_Individual_txt_title2 p{
  letter-spacing: 0;
}
.home_Individual_txt_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  color: #fff;
}
.home_Individual_en{
  position: absolute;
  z-index: 1;
  width: 100vw;
  left: 48%;
  bottom: -2%;
  transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 63px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.141);
  pointer-events: none;
}
.home_Individual_en p{
  letter-spacing: 0.027em;
}

/*企業のお客様*/
.home_corporate{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home_corporate_img.img_fit{

}
.home_corporate_img.img_fit:before{
  padding-top: 750px;
}
.home_corporate_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.502;
  pointer-events: none;
}
.home_corporate_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 15px;
}
.home_corporate_txt_title1{
  padding-left: 18px;
  position: relative;
  z-index: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #f5eb0a;
}
.home_corporate_txt_title1:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: #f5eb0a;
}
.home_corporate_txt_title2{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.625;
  color: #fff;
}
.home_corporate_txt_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  color: #fff;
}
.home_corporate_en{
  position: absolute;
  z-index: 1;
  width: 100vw;
  left: 48%;
  bottom: -1%;
  transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.141);
  pointer-events: none;
}
.home_corporate_en p{
  letter-spacing: 0.027em;
}

/*コンセント1つから、電気の未来まで。*/
.home_our_title{
  text-align: center
}
.home_our_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.home_our_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.home_our_title_ja strong{
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
.home_our_content{
  margin: 30px -5px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_our_box{
  width: 50%;
  padding: 0 5px;
}
.home_our_box:nth-child(n+3){
  margin-top: 30px;
}
.home_our_inner{
  padding: 25px 0 45px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.home_our_inner:before,
.home_our_inner:after{
  content: "";
  background-color: rgb(245, 235, 10);
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 26px;
}
.home_our_inner:before{
  top: 7px;
  left: 7px;
  clip-path: polygon(50% 0, 100% 0%, 0% 100%, 0 0%);
}
.home_our_inner:after{
  right: 7px;
  bottom: 7px;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0 100%);
}
.home_our_name{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.home_our_img{
  margin-top: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*あなたの手で、街に灯りを。*/
.home_recruit{

}
.home_recruit_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_recruit_box1,
.home_recruit_box2{
  width: 100%;
}
.home_recruit_box1{

}
.home_recruit_box2{

}
.home_recruit_img_outer{

}
.home_recruit_img.img_fit{

}
.home_recruit_img.img_fit:before{
  padding-top: 82.35%;
}
.home_recruit_title{

}
.home_recruit_title_en{
  margin-top: 25px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.home_recruit_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.home_recruit_text{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}
.home_recruit .read_more{

}
.home_recruit .read_more a{
  color: #fff;
  background: #1a1a1a;
}
.home_recruit .read_more a:after{
  background: #fff;
}
.home_recruit .read_more a:hover{
  color: #1a1a1a;
  background: #fff;
}
.home_recruit .read_more a:hover:after{
  background: #1a1a1a;
}

/*暮らしのそばで、今日も活動中。*/
.hone_news{

}
.hone_news_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.hone_news_box1,
.hone_news_box2{
  width: 100%;
}
.hone_news_box1{
  order: 1;
}
.hone_news_box2{
  margin-top: 50px;
  order: 3;
}
.hone_news_title{

}
.hone_news_title_en{
  margin-top: 0px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.hone_news_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.hone_news_btn{
  display: flex;
  justify-content: center;
  text-align: center;
}
.hone_news_btn a{
  width: 50%;
}
.hone_news_btn a:hover .hone_news_btn_inner:before{
  top: 47%;
  left: 53%;
}
.hone_news_btn_inner{
  position: relative;
  z-index: 1;
}
.hone_news_btn_inner:before{
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  background: url(/system_panel/uploads/images/20250730111954352208.png) no-repeat center center / contain;
}
.hone_news_btn_img{
  display: inline-block;
  animation: rotation-r 10s linear infinite;
}
.hone_news_list{
  margin-top: 30px;
  width: 100%;
  order: 2;
}
.hone_news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.hone_news_list .webgene-item{
  padding: 0 10px;
  width: 50%;
}
.hone_news_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.hone_news_list .webgene-item .img.img_fit{
  overflow: hidden;
}
.hone_news_list .webgene-item .img.img_fit:before{
  padding-top: 72.22%;
}
.hone_news_list .webgene-item .meta{
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.hone_news_list .webgene-item .date{
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.075em;
}
.hone_news_list .webgene-item .category{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.075em;
  text-align: center;
  margin: 0px 5px;
  padding: 5px 0;
  width: 90px;
  background: #f5eb0a;
}
.hone_news_list .webgene-item a:hover{
  color: #1a1a1a;
}
.hone_news_list .webgene-item .title{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.075em;
}


@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec1:before{
    aspect-ratio: 1230 / 740;
    width: 64.06%;
    height: auto;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec5{
    margin-top: 0;
    padding-top: 0;
  }
  .pg_home .section.sec5:before{
    top: -6.5%;
    bottom: -6.5%;
    width: 78.95%;
    height: auto;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6:before{
    aspect-ratio: 1920 / 360;
    height: 37%;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*暮らしのそばで、ていねいに。*/
  .home_about{

  }
  .home_about_box{

  }
  .home_about_box1{
    width: 51.98%;
  }
  .home_about_box2{
    width: 42.3%;
  }
  .home_about_title{

  }
  .home_about_title_en{
    font-size: 70px;
  }
  .home_about_title_ja{
    margin-top: 15px;
    font-size: 23px;
  }
  .home_about_text{
    margin-top: 15px;
    font-size: 18px;
  }
  .home_about .read_more{

  }
  .home_about .read_more a{
    color: #000;
    background: #f5eb0a;
  }
  .home_about .read_more a:after{
    background: #000;
  }
  .home_about .read_more a:hover{
    color: #f5eb0a;
    background: #000;
  }
  .home_about .read_more a:hover:after{
    background: #f5eb0a;
  }
  .home_about_img_outer{

  }
  .home_about_img.img_fit{
    margin-top: 0px;
    margin-right: calc(345px - 50vw);
  }

  /*個人のお客様*/
  .home_Individual{

  }
  .home_Individual_img.img_fit{

  }
  .home_Individual_img.img_fit:before{
    padding-top: 900px;
  }
  .home_Individual_txt{
    padding: 0;
    right: 5%;
    width: 50.78%;
  }
  .home_Individual_txt_title1{
    padding-left: 18px;
    font-size: 18px;
  }
  .home_Individual_txt_title1:before{

  }
  .home_Individual_txt_title2{
    margin-top: 8px;
    font-size: 20px;
  }
  .home_Individual_txt_title2 p{
    letter-spacing: 0.075em;
  }
  .home_Individual_txt_text{
    margin-top: 15px;
    font-size: 18px;
  }
  .home_Individual_en{
    font-size: 125px;
    left: 48%;
    bottom: -3%;
  }

  /*企業のお客様*/
  .home_corporate{

  }
  .home_corporate_img.img_fit{

  }
  .home_corporate_img.img_fit:before{
    padding-top: 900px;
  }
  .home_corporate_txt{
    padding: 0;
    left: 5%;
    width: 50%;
  }
  .home_corporate_txt_title1{
    padding-left: 18px;
    font-size: 18px;
  }
  .home_corporate_txt_title1:before{

  }
  .home_corporate_txt_title2{
    margin-top: 8px;
    font-size: 20px;
  }
  .home_corporate_txt_text{
    margin-top: 19px;
    font-size: 18px;
  }
  .home_corporate_en{
    font-size: 100px;
    left: 48%;
    bottom: -2%;
  }

  /*コンセント1つから、電気の未来まで。*/
  .home_our_title{

  }
  .home_our_title_en{
    font-size: 100px;
  }
  .home_our_title_ja{
    margin-top: 23px;
    font-size: 30px;
  }
  .home_our_content{
    margin: 30px -8px 0;
  }
  .home_our_box{
    width: 25%;
    padding: 0 8px;
  }
  .home_our_box:nth-child(n+3){
    margin-top: 0px;
  }
  .home_our_box:nth-child(n+5){
    margin-top: 30px;
  }
  .home_our_inner{
    padding: 45px 0 45px;
  }
  .home_our_name{

  }
  .home_our_img{
    margin-top: 23px;
  }

  /*あなたの手で、街に灯りを。*/
  .home_recruit{

  }
  .home_recruit_box{

  }
  .home_recruit_box1{
    width: 42.76%;
  }
  .home_recruit_box2{
    width: 50.98%;
  }
  .home_recruit_img_outer{

  }
  .home_recruit_img.img_fit{
    margin-left: calc(345px - 50vw);
  }
  .home_recruit_title{

  }
  .home_recruit_title_en{
    margin-top: 25px;
    font-size: 100px;
  }
  .home_recruit_title_ja{
    margin-top: 15px;
    font-size: 24px;
  }
  .home_recruit_text{
    margin-top: 20px;
    font-size: 18px;
  }
  .home_recruit .read_more{

  }

  /*暮らしのそばで、今日も活動中。*/
  .hone_news{

  }
  .hone_news_box{

  }
  .hone_news_box1{
    order: 1;
    width: 75%;
  }
  .hone_news_box2{
    margin-top: 0;
    order: 2;
    width: 25%;
  }
  .hone_news_title{

  }
  .hone_news_title_en{
    margin-top: 62px;
    font-size: 100px;
  }
  .hone_news_title_ja{
    margin-top: 15px;
    font-size: 24px;
  }
  .hone_news_btn{

  }
  .hone_news_btn a{
    width: 70%;
  }
  .hone_news_btn_inner{

  }
  .hone_news_btn_inner:before{
    width: 20px;
    height: 20px;
  }
  .hone_news_btn_img{

  }
  .hone_news_list{
    margin-top: 70px;
    order: 3;
  }
  .hone_news_list .webgene-blog{
    margin: 0 -10px;
  }
  .hone_news_list .webgene-item{
    padding: 0 10px;
    width: 25%;
  }
  .hone_news_list .webgene-item:nth-child(n+3){
    margin-top: 0px;
  }
  .hone_news_list .webgene-item .img.img_fit{

  }
  .hone_news_list .webgene-item .meta{
    margin-top: 19px;
  }
  .hone_news_list .webgene-item .date{

  }
  .hone_news_list .webgene-item .category{
    margin: 0px 10px;
    padding: 6px 0;
    width: 100px;
  }
  .hone_news_list .webgene-item .title{
    margin-top: 10px;
  }

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

  /*暮らしのそばで、ていねいに。*/
  .home_about_img.img_fit{
    margin-top: -11px;
    margin-right: calc(465px - 50vw);
  }

  /*あなたの手で、街に灯りを。*/
  .home_recruit_img.img_fit{
    margin-left: calc(465px - 50vw);
  }

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

  .pg_home .section.sec1{
    padding-top: 210px;
  }
  .pg_home .section.sec2{
    padding-top: 203px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding-top: 182px;
    padding-bottom: 320px;
  }
  .pg_home .section.sec5{
    padding-top: 0;
  }
  .pg_home .section.sec6{
    padding-top: 265px;
    padding-bottom: 117px;
  }
  .pg_home .section.sec6:before{
    height: 30%;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*暮らしのそばで、ていねいに。*/
  .home_about{

  }
  .home_about_box{

  }
  .home_about_box1{

  }
  .home_about_box2{

  }
  .home_about_title{

  }
  .home_about_title_en{
    font-size: 100px;
    margin-left: 7px;
  }
  .home_about_title_ja{
    font-size: 30px;
    margin-top: 18px;
    padding-left: 7px;
  }
  .home_about_text{
    font-size: 18px;
    margin-top: 41px;
    padding-left: 8px;
  }
  .home_about .read_more.left{
    padding-left: 7px;
    margin-top: 87px;
  }
  .home_about_img_outer{

  }

  /*個人のお客様*/
  .home_Individual{

  }
  .home_Individual_img.img_fit{

  }
  .home_Individual_img.img_fit:before{
    padding-top: 1000px;
  }
  .home_Individual_txt{
    right: 9.3%;
    width: 50%;
  }
  .home_Individual_txt_title1{
    padding-left: 18px;
    font-size: 20px;
  }
  .home_Individual_txt_title1:before{

  }
  .home_Individual_txt_title2{
    margin-top: 8px;
    font-size: 28px;
    text-indent: 27px;
    margin-left: -23px;
  }
  .home_Individual_txt_text{
    margin-top: 39px;
    font-size: 18px;
  }
  .home_Individual_en{
    font-size: 180px;
    left: 48%;
  }
  .home_Individual .read_more{
    margin-top: 85px;
  }
  .home_Individual .read_more a{
    width: 320px;
    padding: 21px 0px 20px;
  }

  /*企業のお客様*/
  .home_corporate{

  }
  .home_corporate_img.img_fit{

  }
  .home_corporate_img.img_fit:before{
    padding-top: 1000px;
  }
  .home_corporate_txt{
    left: 10.25%;
    width: 50%;
  }
  .home_corporate_txt_title1{
    padding-left: 18px;
    font-size: 20px;
  }
  .home_corporate_txt_title1:before{

  }
  .home_corporate_txt_title2{
    margin-top: 8px;
    font-size: 28px;
  }
  .home_corporate_txt_text{
    margin-top: 39px;
    font-size: 18px;
  }
  .home_corporate_en{
    font-size: 143px;
    left: 48%;
  }
  .home_corporate .read_more{
    margin-top: 85px;
  }
  .home_corporate .read_more a{
    width: 320px;
    padding: 21px 0px 20px;
  }

  /*コンセント1つから、電気の未来まで。*/
  .home_our_title{

  }
  .home_our_title_en{
    font-size: 120px;
  }
  .home_our_title_ja{
    margin-top: 23px;
    font-size: 40px;
  }
  .home_our_content{
    margin: 67px -8px 0;
  }
  .home_our_box{

  }
  .home_our_box:nth-child(n+5){
    margin-top: 27px;
  }
  .home_our_inner{
    padding: 25px 0 45px;
  }
  .home_our_name{

  }
  .home_our_img{
    margin-top: 23px;
  }

  /*あなたの手で、街に灯りを。*/
  .home_recruit{

  }
  .home_recruit_box{

  }
  .home_recruit_box1{

  }
  .home_recruit_box2{

  }
  .home_recruit_img_outer{

  }
  .home_recruit_img.img_fit{

  }
  .home_recruit_title{

  }
  .home_recruit_title_en{
    margin-top: 25px;
    font-size: 96px;
    margin-left: -5px;
  }
  .home_recruit_title_ja{
    margin-top: 21px;
    font-size: 32px;
  }
  .home_recruit_text{
    margin-top: 42px;
  }
  .home_recruit .read_more{
    margin-top: 87px;
  }

  /*暮らしのそばで、今日も活動中。*/
  .hone_news{

  }
  .hone_news_box{

  }
  .hone_news_box1{

  }
  .hone_news_box2{

  }
  .hone_news_title{

  }
  .hone_news_title_en{
    margin-top: 62px;
    font-size: 120px;
  }
  .hone_news_title_ja{
    margin-top: 23px;
    font-size: 40px;
    padding-left: 7px;
  }
  .hone_news_btn{
    width: 100%;
  }
  .hone_news_btn a{
    width: 70%;
  }
  .hone_news_btn_inner{

  }
  .hone_news_btn_inner:before{
    width: 30px;
    height: 30px;
  }
  .hone_news_btn_img{

  }
  .hone_news_list{
    margin-top: 70px;
  }
  .hone_news_list .webgene-blog{
    margin: 0 -13px;
  }
  .hone_news_list .webgene-item{
    padding: 0 13px;
  }
  .hone_news_list .webgene-item .img.img_fit{

  }
  .hone_news_list .webgene-item .meta{
    margin-top: 19px;
  }
  .hone_news_list .webgene-item .date{

  }
  .hone_news_list .webgene-item .category{
    margin: -5px 32px 0;
    padding: 6px 0 7px;
    width: 120px;
  }
  .hone_news_list .webgene-item .title{
    margin-top: 17px;
  }


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

  /*暮らしのそばで、ていねいに。*/
  .home_about_title_en{
    font-size: 120px;
    margin-left: 7px;
  }
  .home_about_title_ja{
    font-size: 36px;
    margin-top: 18px;
    padding-left: 7px;
  }
  .home_about_text{
    font-size: 18px;
    margin-top: 41px;
    padding-left: 8px;
  }
  .home_about_img.img_fit {
    margin-right: calc(555px - 50vw);
  }

  /*あなたの手で、街に灯りを。*/
  .home_recruit_img.img_fit{
    margin-left: calc(555px - 50vw);
  }
  .home_recruit_title_en{
    margin-top: 25px;
    font-size: 120px;
    margin-left: -5px;
  }
  .home_recruit_title_ja{
    margin-top: 21px;
    font-size: 40px;
  }

  /*個人のお客様*/
  .home_Individual_en{
    font-size: 190px;
    left: 49%;
    bottom: -3%;
  }

  /*企業のお客様*/
  .home_corporate_en{
    font-size: 153px;
    left: 49%;
    bottom: -2%;
  }

}
@media (min-width:1400px){
  .pg_home .section.sec6:before{
    height: 32%;
  }

  /*個人のお客様*/
  .home_Individual_img.img_fit:before{
    padding-top: 835px;
  }
  .home_Individual_txt{
    width: 50%;
  }
  .home_Individual_txt_title1{
    padding-left: 18px;
    font-size: 26px;
  }
  .home_Individual_txt_title2{
    font-size: 40px;
  }
  .home_Individual_en{
    font-size: 220px;
    left: 49%;
    bottom: -7%;
  }

  /*企業のお客様*/
  .home_corporate_img.img_fit:before{
    padding-top: 835px;
  }
  .home_corporate_txt{
    width: 50.7%;
  }
  .home_corporate_txt_title1{
    padding-left: 18px;
    font-size: 26px;
  }
  .home_corporate_txt_title2{
    font-size: 40px;
  }
  .home_corporate_en{
    font-size: 175px;
    left: 49%;
    bottom: -5%;
  }

  /*暮らしのそばで、今日も活動中。*/
  .hone_news_box2{
    width: 16.5%;
  }
  .hone_news_btn{
    width: 100%;
  }
  .hone_news_btn a{
    width: 100%;
  }
  .hone_news_btn_inner:before{
    width: 37px;
    height: 37px;
  }

}
/*@media (min-width:1536px){

  暮らしのそばで、ていねいに。
  .home_about_img.img_fit {
    margin-top: -11px;
    margin-right: calc(755px - 50vw);
  }
  
}*/
@media (min-width:1720px){

  /*暮らしのそばで、ていねいに。*/
  .home_about_title_en{
    font-size: 120px;
    margin-left: 7px;
  }
  .home_about_title_ja{
    font-size: 40px;
    margin-top: 18px;
    padding-left: 7px;
  }
  .home_about_text{
    font-size: 18px;
    margin-top: 41px;
    padding-left: 8px;
  }
  .home_about_img.img_fit {
    margin-top: -11px;
    margin-right: calc(755px - 50vw);
  }

  /*あなたの手で、街に灯りを。*/
  .home_recruit_img.img_fit{
    margin-left: calc(755px - 50vw);
  }

}
@media (min-width:1800px){
  .pg_home .section.sec5:before{
    aspect-ratio: 1516 / 940;
    top: -16%;
    bottom: auto;
  }
  .pg_home .section.sec6:before{
    height: auto;
  }

  /*個人のお客様*/
  .home_Individual_txt{
    width: 41.5%;
  }
  .home_Individual_en{
    font-size: 290px;
    bottom: -9%;
  }

  /*企業のお客様*/
  .home_corporate_txt{
    left: 10.25%;
    width: 36.41%;
  }
  .home_corporate_en{
    font-size: 230px;
    bottom: -6%;
  }

  /*暮らしのそばで、今日も活動中。*/
  .hone_news_box{
    align-items: flex-start;
  }
}



/*******************************
*　私たちについて
********************************/

/* セクション設定 */
.pg_about{

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}

/*お客様ファーストで、まじめに寄り添う電気工事会社です。*/
.about_main{

}
.about_main_title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
}
.about_main_text{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
}
.about_main_img_content{
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.about_main_img_content:before{
  content: "";
  aspect-ratio: 600/480;
  background: #f5eb0a;
  position: absolute;
  z-index: 1;
  top: -8.5%;
  left: 36.5%;
  width: 39.47%;
}
.about_main_img_outer1{
  width: 61.84%;
}
.about_main_img_outer1:before{

}
.about_main_img1.img_fit{

}
.about_main_img1.img_fit:before{
  padding-top: 57.44%;
}
.about_main_img_outer2{
  width: 30.92%;
}
.about_main_img2.img_fit{
  top: -69.5%;
}
.about_main_img2.img_fit:before{
  padding-top: 123.40%;
}

/*この街で育ち、この街と共に。*/
.about_item_contento{

}
.about_item{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about_item_img.img_fit{

}
.about_item_img.img_fit:before{
  padding-top: 200px;
}
.about_item_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
  pointer-events: none;
}
.about_item_img.img_fit img{
  object-position: 60% 0;
}
.about_item_en{
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 23%;
  width: 100vw;
  transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 67px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.2);
}
.about_item_en p{
  letter-spacing: 0.03em;
}
.about_item_txt{
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 15px;
}
.about_item_txt_title{
  margin-top: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  text-align: justify;
}
.about_item_txt_text{
  margin-top: 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}

/*安心と笑顔のために、大切にしている5つのこと*/
.about_features{

}
.about_features_title{

}
.about_features_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.about_features_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.5;
  text-align: center;
}
.about_features_title_ja strong{
  font-weight: 900;
  font-size: 36px;
  color: #f5840a;
}
.about_features_box_content{
  margin-top: 50px;
}
.about_features_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_features_box:nth-child(n+2){
  margin-top: 70px;
}
.about_features_box1,
.about_features_box2{
  width: 100%;
}
.about_features_box1{

}
.about_features_box2{

}
.about_features_box_img.img_fit{

}
.about_features_box_img.img_fit:before{
  padding-top: 73.52%;
}
.about_features_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 0;
  top: -15px;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 100vw;
  background: #f5eb0a;
}
.about_features_box2_inner{
  margin-top: 25px;
  display: flex;
}
.about_features_box_nbr{
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
}
.about_features_box_nbr strong{
  font-weight: 600;
  color: #f5eb0a;
}
.about_features_box_nbr p{
  letter-spacing: 0;
}
.about_features_box_title{
  margin-top: 7px;
  padding-left: 7px;
}
.about_features_box_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}
.about_features_box_title_en p{
  letter-spacing: 0;
}
.about_features_box_title_ja{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 17px;
}
.about_features_box_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}

@media (max-width:374px){

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

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

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

  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }

  /*お客様ファーストで、まじめに寄り添う電気工事会社です。*/
  .about_main{
    width: 65.23%;
  }
  .about_main_title{
    font-size: 24px;
  }
  .about_main_text{
    margin-top: 20px;
    font-size: 18px;
  }
  .about_main_img_content{
    margin-top: 103px;
  }
  .about_main_img_content:before{
    top: -8.5%;
    left: 36.5%;
  }
  .about_main_img_outer1{
    width: 61.84%;
  }
  .about_main_img1.img_fit{

  }
  .about_main_img_outer2{
    width: 30.92%;
  }
  .about_main_img2.img_fit{
    top: -69.5%;
  }

  /*この街で育ち、この街と共に。*/
  .about_item_contento{

  }
  .about_item{

  }
  .about_item_img.img_fit{

  }
  .about_item_img.img_fit:before{
    padding-top: 550px;
  }
  .about_item_en{
    font-size: 137px;
    top: auto;
    bottom: -5%;
  }
  .about_item_txt{
    position: absolute;
    z-index: 1;
    top: 65%;
    left: 5%;
    transform: translateY(-50%);
    padding: 0 0px;
    width: 90%;
  }
  .about_item_txt_title{
    margin-top: 0;
    font-size: 20px;
    color: #fff;
  }
  .about_item_txt_text{
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
  }

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features{

  }
  .about_features_title{

  }
  .about_features_title_en{
    font-size: 80px;
  }
  .about_features_title_ja{
    font-size: 24px;
  }
  .about_features_title_ja strong{
    font-size: 34px;
  }
  .about_features_box_content{
    margin-top: 100px;
  }
  .about_features_box{

  }
  .about_features_box:nth-child(n+2){
    margin-top: 100px;
  }
  .about_features_box:nth-child(odd) .about_features_box1,
  .about_features_box:nth-child(even) .about_features_box2{
    order: 1;
  }
  .about_features_box:nth-child(even) .about_features_box1,
  .about_features_box:nth-child(odd) .about_features_box2{
    order: 2;
  }
  .about_features_box1{
    width: 44.73%;
  }
  .about_features_box2{
    width: 51.3%;
  }
  .about_features_box_img.img_fit{

  }
  .about_features_box_img.img_fit:after{
    width: 99.52%;
    height: 100%;
    left: auto;
    transform: none;
  }
  .about_features_box:nth-child(odd) .about_features_box_img.img_fit:after{
    top: -15%;
    bottom: auto;
    left: calc(345px - 50vw);
  }
  .about_features_box:nth-child(even) .about_features_box_img.img_fit:after{
    top: auto;
    bottom: -15%;
    right: calc(345px - 50vw);
  }
  .about_features_box2_inner{
    margin-top: 15px;
  }
  .about_features_box_nbr{
    font-size: 70px;
  }
  .about_features_box_title{
    margin-top: 19px;
    padding-left: 19px;
  }
  .about_features_box_title_en{
    font-size: 20px;
  }
  .about_features_box_title_ja{
    font-size: 24px;
  }
  .about_features_box_text{
    margin-top: 15px;
    font-size: 18px;
  }

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

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features_box:nth-child(odd) .about_features_box_img.img_fit:after{
    left: calc(465px - 50vw);
  }
  .about_features_box:nth-child(even) .about_features_box_img.img_fit:after{
    right: calc(465px - 50vw);
  }

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

  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-top: 25px;
  }
  .pg_about .section.sec2{
    padding-top: 139px;
  }
  .pg_about .section.sec3{
    padding-top: 135px;
  }

  /*お客様ファーストで、まじめに寄り添う電気工事会社です。*/
  .about_main{

  }
  .about_main_title{
    font-size: 30px;
  }
  .about_main_text{
    margin-top: 36px;
    font-size: 18px;
  }
  .about_main_img_content{
    margin-top: 103px;
  }
  .about_main_img_content:before{
    top: -8.5%;
    left: 36.5%;
  }
  .about_main_img_outer1{

  }
  .about_main_img1.img_fit{

  }
  .about_main_img_outer2{

  }
  .about_main_img2.img_fit{
    top: -69.5%;
  }

  /*この街で育ち、この街と共に。*/
  .about_item_contento{

  }
  .about_item{

  }
  .about_item_img.img_fit{

  }
  .about_item_img.img_fit:before{
    padding-top: 720px;
  }
  .about_item_en{
    font-size: 183px;
    bottom: -6%;
    left: 48%;
  }
  .about_item_txt{
    top: 60%;
    left: 5%;
    width: 50%;
  }
  .about_item_txt_title{
    font-size: 30px;
  }
  .about_item_txt_text{
    margin-top: 42px;
    font-size: 18px;
  }

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features{

  }
  .about_features_title{

  }
  .about_features_title_en{
    font-size: 120px;
  }
  .about_features_title_ja{
    margin-top: -2px;
    font-size: 38px;
  }
  .about_features_title_ja strong{
    font-size: 58px;
  }
  .about_features_box_content{
    margin-top: 153px;
  }
  .about_features_box{

  }
  .about_features_box:nth-child(2),
  .about_features_box:nth-child(4){
    margin-top: 100px;
  }
  .about_features_box:nth-child(3),
  .about_features_box:nth-child(5){
    margin-top: 220px;
  }
  .about_features_box1{

  }
  .about_features_box2{

  }
  .about_features_box2_inner{
    margin-top: 0px;
  }
  .about_features_box_nbr{
    font-size: 90px;
  }
  .about_features_box_title{
    margin-top: 19px;
    padding-left: 19px;
  }
  .about_features_box_title_en{
    font-size: 20px;
  }
  .about_features_box_title_ja{
    font-size: 28px;
  }
  .about_features_box_text{
    margin-top: 43px;
    font-size: 18px;
  }

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

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features_title_ja{
    margin-top: -2px;
    font-size: 40px;
  }
  .about_features_title_ja strong{
    font-size: 60px;
  }
  .about_features_box:nth-child(odd) .about_features_box_img.img_fit:after{
    left: calc(555px - 50vw);
  }
  .about_features_box:nth-child(even) .about_features_box_img.img_fit:after{
    right: calc(555px - 50vw);
  }


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

  /*お客様ファーストで、まじめに寄り添う電気工事会社です。*/
  .about_main{
    width: 66.23%;
  }
  .about_main_title{
    font-size: 40px;
  }

  /*この街で育ち、この街と共に。*/
  .about_item_en{
    font-size: 255px;
    bottom: -9%;
    left: 48%;
  }
  .about_item_txt{
    width: 33.85%;
    left: 10%;
  }
  .about_item_txt_title{
    font-size: 30px;
  }

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features_box_nbr{
    font-size: 100px;
  }
  .about_features_box_title{
    margin-top: 27px;
    padding-left: 19px;
  }
  .about_features_box_title_en{
    font-size: 23px;
  }
  .about_features_box_title_ja{
    font-size: 27px;
  }

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

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features_box:nth-child(odd) .about_features_box_img.img_fit:after{
    left: calc(755px - 50vw);
    top: -12%;
    height: 88%;
  }
  .about_features_box:nth-child(even) .about_features_box_img.img_fit:after{
    right: calc(755px - 50vw);
    bottom: -12%;
    height: 88%;
  }

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

  /*お客様ファーストで、まじめに寄り添う電気工事会社です。*/
  .about_main{
    width: 100%;
  }

  /*この街で育ち、この街と共に。*/
  .about_item_en{
    font-size: 340px;
    bottom: -11%;
    left: 48%;
  }
  .about_item_txt_title{
    font-size: 40px;
  }

  /*安心と笑顔のために、大切にしている5つのこと*/
  .about_features_box{
    align-items: center;
  }
  .about_features_box_nbr{
    font-size: 100px;
  }
  .about_features_box_title{
    margin-top: 19px;
    padding-left: 19px;
  }
  .about_features_box_title_en{
    font-size: 26px;
  }
  .about_features_box_title_ja{
    font-size: 40px;
  }

}


/*******************************
*　個人のお客様
********************************/

/* セクション設定 */
.pg_IndividualCustomer1{

}
.pg_IndividualCustomer1 .section.sec1{

}
.pg_IndividualCustomer1 .section.sec2{

}
.pg_IndividualCustomer1 .section.sec3{
  padding-top: 0;
}
.pg_IndividualCustomer1 .section.sec4{
  background: #f5f5f5;
}

/*個人のお客様*/
.IndividualCustomer1{

}
.IndividualCustomer1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.IndividualCustomer1_box1,
.IndividualCustomer1_box2{
  width: 100%;
}
.IndividualCustomer1_box1{
  order: 2;
}
.IndividualCustomer1_box2{
  order: 1;
}
.IndividualCustomer1_img.img_fit{
  margin-top: 50px;
}
.IndividualCustomer1_img.img_fit:before{
  padding-top: 116.23%;
}
.IndividualCustomer1_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 0;
  top: -5%;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
  width: 100vw;
  background: #f5eb0a;
}
.IndividualCustomer1_title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
}
.IndividualCustomer1_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}

/*それ、小さなことだからって我慢していませんか？*/
.IndividualCustomer1_item{
  position: relative;
  z-index: 1;
}
.IndividualCustomer1_item_img.img_fit{

}
.IndividualCustomer1_item_img.img_fit:before{
  padding-top: 900px;
}
.IndividualCustomer1_item_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.271;
  pointer-events: none;
}
.IndividualCustomer1_item_img.img_fit img{
  object-position: 13% 0%;
}
.IndividualCustomer1_item_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  width: 100%;
  padding: 0 15px;
}
.IndividualCustomer1_item_title{
  margin-top: 0px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.IndividualCustomer1_item_title strong{
  font-weight: 900;
  font-size: 30px;
  color: #f5eb0a;
}
.IndividualCustomer1_item_check_content{
  margin-top: 15px;
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgb(255 255 255 / 80%);
}
.IndividualCustomer1_item_check{
  padding-left: 25px;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  position: relative;
  z-index: 1;
}
.IndividualCustomer1_item_check:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 25%;
  left: 0;
  width: 14px;
  height: 15px;
  transform: translateY(-50%);
  background: url(/system_panel/uploads/images/20250731102621189124.png)no-repeat center center/contain;
}
.IndividualCustomer1_item_check strong{
  font-weight: 700;
  color: #f5840a;
}
.IndividualCustomer1_item_check:nth-child(n+2){
  margin-top: 15px;
}
.IndividualCustomer1_item_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
  color: #fff;
}

/*家のこと、電気のこと、頼れる味方がそばにいます。*/
.IndividualCustomer1_our{

}
.IndividualCustomer1_our_title{

}
.IndividualCustomer1_our_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.IndividualCustomer1_our_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.IndividualCustomer1_our_box_content{
  margin: 30px -5px 0;
  display: flex;
  flex-wrap: wrap;
}
.IndividualCustomer1_our_box{
  width: 50%;
  padding: 0 5px;
}
.IndividualCustomer1_our_box:nth-child(n+3){
  margin-top: 50px;
}
.IndividualCustomer1_our_box_img.img_fit{

}
.IndividualCustomer1_our_box_img.img_fit:before{
  padding-top: 75%;
}
.IndividualCustomer1_our_box_title{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.IndividualCustomer1_our_box .read_more{
  margin-top: 15px;
}
.IndividualCustomer1_our_box .read_more a{
  width: 92%;
  padding: 13px 0px 15px;
  font-size: 14px;
}

/*「またお願いしたい」と言われる理由*/
.IndividualCustomer1_why{

}
.IndividualCustomer1_why_title{

}
.IndividualCustomer1_why_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.IndividualCustomer1_why_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.IndividualCustomer1_why_item_content{
  margin-top: 30px;
}
.IndividualCustomer1_why_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px;
}
.IndividualCustomer1_why_item:nth-child(n+2){
  padding: 50px 0;
}
.IndividualCustomer1_why_item:last-child{
  padding-bottom: 0;
}
.IndividualCustomer1_why_item:nth-child(even),
.IndividualCustomer1_why_item:nth-child(even) > *{
  position: relative;
  z-index: 1;
}
.IndividualCustomer1_why_item:nth-child(even):before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  background: #fff;
}
.IndividualCustomer1_why_item1,
.IndividualCustomer1_why_item2{
  width: 100%;
}
.IndividualCustomer1_why_item1{

}
.IndividualCustomer1_why_item2{

}
.IndividualCustomer1_why_item_img.img_fit{

}
.IndividualCustomer1_why_item_img.img_fit:before{
  padding-top: 77.14%;
}
.IndividualCustomer1_why_item_nbrs{
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
}
.IndividualCustomer1_why_item_nbr1,
.IndividualCustomer1_why_item_nbr3{
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.IndividualCustomer1_why_item_nbr1 p,
.IndividualCustomer1_why_item_nbr3 p{
  letter-spacing: 0;
}
.IndividualCustomer1_why_item_nbr1{
  font-size: 70px;
}
.IndividualCustomer1_why_item_nbr2{
  padding-left: 26px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: #f5eb0a;
  text-align: right;
}
.IndividualCustomer1_why_item_nbr3{
  margin-top: 5px;
  margin-left: 23px;
  padding-left: 27px;
  font-size: 30px;
  position: relative;
  z-index: 1;
}
.IndividualCustomer1_why_item_nbr3:before{
  content: "/";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.IndividualCustomer1_why_item_title{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.IndividualCustomer1_why_item_text{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}

/*あなたの毎日に、もっと安心と快適を。*/
.IndividualCustomer2{

}
.IndividualCustomer2_title{

}
.IndividualCustomer2_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.IndividualCustomer2_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.IndividualCustomer2_item_content{

}
.IndividualCustomer2_item{
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.IndividualCustomer2_item1,
.IndividualCustomer2_item2{
  width: 100%;
}
.IndividualCustomer2_item1{

}
.IndividualCustomer2_item2{

}
.IndividualCustomer2_item_img.img_fit{

}
.IndividualCustomer2_item_img.img_fit:before{
  padding-top: 85.29%;
}
.IndividualCustomer2_item_title{
  margin-top: 15px;
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
}
.IndividualCustomer2_item_title,
.IndividualCustomer2_item_title > *{
  position: relative;
  z-index: 1;
}
.IndividualCustomer2_item_title:before{
  content: '';
  position: absolute;
  z-index: 0;
  bottom: 2px;
  width: 100%;
  height: 13px;
  transform: skewX(-23deg);
  background-color: #f5eb0a;
  display: inline-block;
}
.IndividualCustomer2_item_sub_title{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.571;
  padding-bottom: 15px;
  border-bottom: 1px solid #959595;
}
.IndividualCustomer2_item_sub_title p{
  letter-spacing: 0;
}
.IndividualCustomer2_item_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
}



@media (max-width:374px){

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

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

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

  /* セクション設定 */
  .pg_IndividualCustomer1{

  }
  .pg_IndividualCustomer1 .section.sec1{

  }
  .pg_IndividualCustomer1 .section.sec2{

  }
  .pg_IndividualCustomer1 .section.sec3{
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .pg_IndividualCustomer1 .section.sec4{
    padding-top: 100px;
  }

  /*個人のお客様*/
  .IndividualCustomer1{

  }
  .IndividualCustomer1_box{

  }
  .IndividualCustomer1_box1{
    width: 38.48%;
    order: 1;
  }
  .IndividualCustomer1_box2{
    width: 54.85%;
    order: 2;
  }
  .IndividualCustomer1_img.img_fit{
    margin-top: 0px;
  }
  .IndividualCustomer1_img.img_fit:after{
    width: 100%;
    height: 61.53%;
    top: 55%;
    left: calc(345px - 50vw);
    bottom: auto;
    transform: none;
  }
  .IndividualCustomer1_title{
    margin-top: 30px;
    font-size: 26px;
  }
  .IndividualCustomer1_text{
    margin-top: 15px;
    font-size: 18px;
  }

  /*それ、小さなことだからって我慢していませんか？*/
  .IndividualCustomer1_item{

  }
  .IndividualCustomer1_item_img.img_fit{

  }
  .IndividualCustomer1_item_img.img_fit:before{
    padding-top: 470px;
  }
  .IndividualCustomer1_item_txt{
    padding: 0 25px;
    top: 0;
    transform: translateX(-50%);
  }
  .IndividualCustomer1_item_title{
    margin-top: 50px;
    font-size: 28px;
  }
  .IndividualCustomer1_item_title strong{
    font-size: 40px;
  }
  .IndividualCustomer1_item_check_content{
    margin-top: 30px;
    padding: 20px 20px;
    background: #fff;
  }
  .IndividualCustomer1_item_check{
    padding-left: 20px;
    width: 49%;
    font-size: 13px;
  }
  .IndividualCustomer1_item_check:before{
    top: 50%;
    width: 14px;
    height: 15px;
  }
  .IndividualCustomer1_item_check:nth-child(n+2){
    margin-top: 0px;
  }
  .IndividualCustomer1_item_check:nth-child(n+3){
    margin-top: 10px;
  }
  .IndividualCustomer1_item_text{
    margin-top: 30px;
    font-size: 15px;
    text-align: center;
  }

  /*家のこと、電気のこと、頼れる味方がそばにいます。*/
  .IndividualCustomer1_our{

  }
  .IndividualCustomer1_our_title{

  }
  .IndividualCustomer1_our_title_en{
    font-size: 80px;
  }
  .IndividualCustomer1_our_title_ja{
    margin-top: 15px;
    font-size: 26px;
  }
  .IndividualCustomer1_our_box_content{
    margin: 30px -15px 0;
  }
  .IndividualCustomer1_our_box{
    padding: 0 15px;
    width: 50%;
  }
  .IndividualCustomer1_our_box:nth-child(n+3){
    margin-top: 30px;
  }
  .IndividualCustomer1_our_box_img.img_fit{

  }
  .IndividualCustomer1_our_box_title{
    margin-top: 10px;
    font-size: 16px;
  }
  .IndividualCustomer1_our_box .read_more{
    margin-top: 5px;
  }

  /*「またお願いしたい」と言われる理由*/
  .IndividualCustomer1_why{

  }
  .IndividualCustomer1_why_title{

  }
  .IndividualCustomer1_why_title_en{
    font-size: 90px;
  }
  .IndividualCustomer1_why_title_ja{
    margin-top: 15px;
    font-size: 30px;
  }
  .IndividualCustomer1_why_item_content{
    margin-top: 70px;
  }
  .IndividualCustomer1_why_item{
    padding-bottom: 100px;
  }
  .IndividualCustomer1_why_item:nth-child(n+2){
    padding: 100px 0;
  }
  .IndividualCustomer1_why_item:last-child{
    padding-bottom: 0;
  }
  .IndividualCustomer1_why_item:nth-child(odd) .IndividualCustomer1_why_item1,
  .IndividualCustomer1_why_item:nth-child(even) .IndividualCustomer1_why_item2{
    order: 1;
  }
  .IndividualCustomer1_why_item:nth-child(even) .IndividualCustomer1_why_item1,
  .IndividualCustomer1_why_item:nth-child(odd) .IndividualCustomer1_why_item2{
    order: 2;
  }
  .IndividualCustomer1_why_item1{
    width: 46.05%;
  }
  .IndividualCustomer1_why_item2{
    width: 49.01%;
  }
  .IndividualCustomer1_why_item_img.img_fit{

  }
  .IndividualCustomer1_why_item_nbrs{
    margin-top: 0px;
  }
  .IndividualCustomer1_why_item_nbr1{
    font-size: 100px;
  }
  .IndividualCustomer1_why_item_nbr2{
    padding-left: 13px;
    font-size: 20px;
  }
  .IndividualCustomer1_why_item_nbr3{
    margin-top: 5px;
    margin-left: 23px;
    padding-left: 27px;
    font-size: 30px;
  }
  .IndividualCustomer1_why_item_title{
    margin-top: 20px;
    font-size: 22px;
  }
  .IndividualCustomer1_why_item_text{
    font-size: 18px;
  }

  /*あなたの毎日に、もっと安心と快適を。*/
  .IndividualCustomer2{

  }
  .IndividualCustomer2_title{

  }
  .IndividualCustomer2_title_en{
    font-size: 90px;
  }
  .IndividualCustomer2_title_ja{
    margin-top: 15px;
    font-size: 30px;
  }
  .IndividualCustomer2_item_content{

  }
  .IndividualCustomer2_item{
    padding-top: 120px;
  }
  .IndividualCustomer2_item1{
    width: 44.73%;
  }
  .IndividualCustomer2_item2{
    width: 50.65%;
  }
  .IndividualCustomer2_item_img.img_fit{

  }
  .IndividualCustomer2_item_title{
    margin-top: 0;
    font-size: 25px;
  }
  .IndividualCustomer2_item_title:before{
    bottom: 0px;
    height: 17px;
  }
  .IndividualCustomer2_item_sub_title{
    margin-top: 15px;
    font-size: 17px;
    padding-bottom: 15px;
  }
  .IndividualCustomer2_item_text{
    margin-top: 15px;
    font-size: 16px;
  }

}
@media (min-width:992px){
  .IndividualCustomer1_img.img_fit:after{
    left: calc(465px - 50vw);
  }

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

  /* セクション設定 */
  .pg_IndividualCustomer1{

  }
  .pg_IndividualCustomer1 .section.sec1{

  }
  .pg_IndividualCustomer1 .section.sec2{
    padding-top: 230px;
  }
  .pg_IndividualCustomer1 .section.sec3{
    padding-top: 132px;
    padding-bottom: 195px;
  }
  .pg_IndividualCustomer1 .section.sec4{
    padding-top: 183px;
  }
  .pg_IndividualCustomer2 .section.sec1{
    padding-top: 23px;
  }

  /*個人のお客様*/
  .IndividualCustomer1{

  }
  .IndividualCustomer1_box{

  }
  .IndividualCustomer1_box1{

  }
  .IndividualCustomer1_box2{

  }
  .IndividualCustomer1_img.img_fit{

  }
  .IndividualCustomer1_title{
    margin-top: 69px;
    font-size: 36px;
  }
  .IndividualCustomer1_text{
    margin-top: 42px;
    font-size: 18px;
  }

  /*それ、小さなことだからって我慢していませんか？*/
  .IndividualCustomer1_item{

  }
  .IndividualCustomer1_item_img.img_fit{

  }
  .IndividualCustomer1_item_img.img_fit:before{
    padding-top: 600px;
  }
  .IndividualCustomer1_item_txt{

  }
  .IndividualCustomer1_item_title{
    margin-top: 50px;
    font-size: 38px;
  }
  .IndividualCustomer1_item_title strong{
    font-size: 50px;
  }
  .IndividualCustomer1_item_check_content{
    margin-top: 50px;
    padding: 30px 30px;
  }
  .IndividualCustomer1_item_check{
    padding-left: 25px;
    width: 48%;
    font-size: 17px;
  }
  .IndividualCustomer1_item_check:before{
    width: 15px;
    height: 16px;
  }
  .IndividualCustomer1_item_check:nth-child(n+3){
    margin-top: 14px;
  }
  .IndividualCustomer1_item_text{
    margin-top: 50px;
    font-size: 18px;
    text-align: center;
  }

  /*家のこと、電気のこと、頼れる味方がそばにいます。*/
  .IndividualCustomer1_our{

  }
  .IndividualCustomer1_our_title{

  }
  .IndividualCustomer1_our_title_en{
    font-size: 104px;
  }
  .IndividualCustomer1_our_title_ja{
    margin-top: 23px;
    font-size: 34px;
  }
  .IndividualCustomer1_our_box_content{
    margin: 70px -25px 0;
  }
  .IndividualCustomer1_our_box{
    width: 25%;
    padding: 0 25px;
  }
  .IndividualCustomer1_our_box:nth-child(n+3){
    margin-top: 0px;
  }
  .IndividualCustomer1_our_box:nth-child(n+5){
    margin-top: 54px;
  }
  .IndividualCustomer1_our_box_img.img_fit{

  }
  .IndividualCustomer1_our_box_title{
    margin-top: 24px;
    font-size: 12px;
  }
  .IndividualCustomer1_our_box .read_more{
    margin-top: 17px;
  }

  /*「またお願いしたい」と言われる理由*/
  .IndividualCustomer1_why{

  }
  .IndividualCustomer1_why_title{

  }
  .IndividualCustomer1_why_title_en{
    font-size: 120px;
  }
  .IndividualCustomer1_why_title_ja{
    margin-top: 22px;
    font-size: 40px;
  }
  .IndividualCustomer1_why_item_content{
    margin-top: 70px;
  }
  .IndividualCustomer1_why_item{
    padding-bottom: 100px;
  }
  .IndividualCustomer1_why_item:nth-child(n+2){
    padding: 100px 0;
  }
  .IndividualCustomer1_why_item:last-child{
    padding-bottom: 0;
  }
  .IndividualCustomer1_why_item1{

  }
  .IndividualCustomer1_why_item2{
    margin-top: -10px;
  }
  .IndividualCustomer1_why_item_img.img_fit{

  }
  .IndividualCustomer1_why_item_nbrs{

  }
  .IndividualCustomer1_why_item_nbr1{
    font-size: 100px;
  }
  .IndividualCustomer1_why_item_nbr2{
    padding-left: 20px;
    font-size: 20px;
  }
  .IndividualCustomer1_why_item_nbr3{
    margin-top: 5px;
    margin-left: 23px;
    padding-left: 27px;
    font-size: 26px;
  }
  .IndividualCustomer1_why_item_title{
    margin-top: 18px;
    font-size: 20px;
  }
  .IndividualCustomer1_why_item_text{
    margin-top: 27px;
  }

  /*あなたの毎日に、もっと安心と快適を。*/
  .IndividualCustomer2{

  }
  .IndividualCustomer2_title{

  }
  .IndividualCustomer2_title_en{
    font-size: 120px;
  }
  .IndividualCustomer2_title_ja{
    margin-top: 22px;
    font-size: 40px;
  }
  .IndividualCustomer2_item_content{

  }
  .IndividualCustomer2_item{
    padding-top: 127px;
  }
  .IndividualCustomer2_item:nth-child(n+2){
    padding-top: 153px;
  }
  .IndividualCustomer2_item1{

  }
  .IndividualCustomer2_item2{

  }
  .IndividualCustomer2_item_img.img_fit{

  }
  .IndividualCustomer2_item_title{
    font-size: 30px;
  }
  .IndividualCustomer2_item_sub_title{
    margin-top: 15px;
    font-size: 17px;
    padding-bottom: 15px;
  }
  .IndividualCustomer2_item_sub_title p{
    letter-spacing: 0.075em;
  }
  .IndividualCustomer2_item_text{
    margin-top: 15px;
    font-size: 18px;
  }

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

  /*個人のお客様*/
  .IndividualCustomer1_title{
    margin-top: 69px;
    font-size: 40px;
  }
  .IndividualCustomer1_img.img_fit:after{
    left: calc(555px - 50vw);
  }

  /*それ、小さなことだからって我慢していませんか？*/
  .IndividualCustomer1_item_txt{
    width: 1110px;
    padding: 0;
  }

  /*家のこと、電気のこと、頼れる味方がそばにいます。*/
  .IndividualCustomer1_our_title_en{
    font-size: 120px;
  }
  .IndividualCustomer1_our_title_ja{
    margin-top: 23px;
    font-size: 40px;
  }
  .IndividualCustomer1_our_box_title{
    margin-top: 24px;
    font-size: 16px;
  }

  /*あなたの毎日に、もっと安心と快適を。*/
  .IndividualCustomer2_item_title{
    margin-top: 25px;
    font-size: 40px;
    position: relative;
    z-index: 1;
  }
  .IndividualCustomer2_item_title:before{
    bottom: -4px;
    height: 23px;
  }
  .IndividualCustomer2_item_sub_title{
    margin-top: 20px;
    font-size: 20px;
    padding-bottom: 22px;
  }
  .IndividualCustomer2_item_text{
    margin-top: 30px;
    font-size: 18px;
  }

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

  /*それ、小さなことだからって我慢していませんか？*/
  .IndividualCustomer1_item_img.img_fit:before{
    padding-top: 750px;
  }
  .IndividualCustomer1_item_title{
    margin-top: 79px;
    font-size: 40px;
  }
  .IndividualCustomer1_item_title strong{
    font-size: 60px;
  }
  .IndividualCustomer1_item_check_content{
    margin-top: 65px;
    padding: 55px 0px 53px 50px;
  }
  .IndividualCustomer1_item_check{
    padding-left: 27px;
    width: 48%;
    font-size: 20px;
  }
  .IndividualCustomer1_item_check:before{
    top: 50%;
    width: 18px;
    height: 19px;
  }

  /*「またお願いしたい」と言われる理由*/
  .IndividualCustomer1_why_item_title{
    font-size: 30px;
  }

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

  /*個人のお客様*/
  .IndividualCustomer1_img.img_fit:after{
    left: calc(755px - 50vw);
    width: 600px;
    height: 360px;
    top: 58.5%;
  }

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

  /*「またお願いしたい」と言われる理由*/
  .IndividualCustomer1_why_item{
    align-items: center;
  }
  .IndividualCustomer1_why_item_title{
    margin-top: 18px;
    font-size: 40px;
  }
  .IndividualCustomer1_why_item_nbr1{
    font-size: 120px;
  }
  .IndividualCustomer1_why_item_nbr2{
    padding-left: 26px;
    font-size: 25px;
  }
  .IndividualCustomer1_why_item_nbr3{
    margin-top: 5px;
    margin-left: 23px;
    padding-left: 27px;
    font-size: 40px;
  }
  .IndividualCustomer1_why_item_title{
    margin-top: 18px;
    font-size: 40px;
  }

  /*あなたの毎日に、もっと安心と快適を。*/
  .IndividualCustomer2_item_sub_title{
    margin-top: 20px;
    font-size: 28px;
    padding-bottom: 22px;
  }

}



/*******************************
*　企業のお客様
********************************/

/* セクション設定 */
.pg_corporateCustomers{

}
.pg_corporateCustomers .section.sec1{

}
.pg_corporateCustomers .section.sec2{

}
.pg_corporateCustomers .section.sec2,
.pg_corporateCustomers .section.sec2 > *{
  position: relative;
  z-index: 1;
}
.pg_corporateCustomers .section.sec2:before,
.pg_corporateCustomers .section.sec2:after{
  content: "";
  position: absolute;
  z-index: 0;
  width: 70.83%;
  background: #f5f5f5;
}
.pg_corporateCustomers .section.sec2:before{
  top: 9.5%;
  left: 0;
  height: 23%;
}
.pg_corporateCustomers .section.sec2:after{
  height: 23.5%;
  right: 0;
  bottom: 20.5%;
}
.pg_corporateCustomers .section.sec3{

}
.pg_corporateCustomers .section.sec4{
  padding-top: 0;
}
.pg_corporateCustomers .section.sec5{
  background: #f5f5f5;
  margin-bottom: -50px;
  padding-bottom: 50px;
}

/*企業のお客様*/
.corporateCustomers_main{

}
.corporateCustomers_main_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.corporateCustomers_main_box1,
.corporateCustomers_main_box2{
  width: 100%;
}
.corporateCustomers_main_box1{

}
.corporateCustomers_main_box2{

}
.corporateCustomers_main_box_title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
}
.corporateCustomers_main_box_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}
.corporateCustomers_main_box_img.img_fit{
  margin-top: 50px;
}
.corporateCustomers_main_box_img.img_fit:before{
  padding-top: 116.23%;
}
.corporateCustomers_main_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 0;
  top: -5%;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
  width: 100vw;
  background: #f5eb0a;
}

/*「ちょうどいい距離感」が、選ばれる理由です。*/
.corporateCustomers_our{

}
.corporateCustomers_our_title{

}
.corporateCustomers_our_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.corporateCustomers_our_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.corporateCustomers_our_box_content{
  margin-top: 30px;
}
.corporateCustomers_our_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.corporateCustomers_our_box:nth-child(n+2){
  margin-top: 50px;
}
.corporateCustomers_our_box1,
.corporateCustomers_our_box2{
  width: 100%;
}
.corporateCustomers_our_box1{
  order: 2;
}
.corporateCustomers_our_box1_inner{
  position: relative;
  top: 0;
}
.corporateCustomers_our_box2{
  order: 1;
}
.corporateCustomers_our_box_nbr{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: rgba(245, 235, 10, 0.18);
}
.corporateCustomers_our_box_nbr p{
  letter-spacing: 0;
}
.corporateCustomers_our_box_title{
  margin-top: 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.corporateCustomers_our_box_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}
.corporateCustomers_our_box_img.img_fit{

}
.corporateCustomers_our_box_img.img_fit:before{
  padding-top: 59.09%;
}

/*こんな時、ケイ電工にご相談ください。*/
.corporateCustomers_works{

}
.corporateCustomers_works_title{

}
.corporateCustomers_works_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.corporateCustomers_works_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.corporateCustomers_works_box_content{
  margin-top: 30px;
}
.corporateCustomers_works_box{
  width: 100%;
}
.corporateCustomers_works_box_img.img_fit{

}
.corporateCustomers_works_box_img.img_fit:before{
  padding-top: 75.88%;
}
.corporateCustomers_works_box_title{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.corporateCustomers_works_box_title:after{
  content: "";
  display: block;
  width: 37px;
  height: 1px;
  background: #f5eb0a;
  margin: 11px auto 0;
}
.corporateCustomers_works_box_text{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  text-align: justify;
}
.swiper-button-next, .swiper-button-prev{
  color: #f5eb0a;
}
.corporateCustomers_works .swiper-button-next:after,
.corporateCustomers_works .swiper-button-prev:after{
  top: 35% !important;
}

/*工務店様・設備会社様向けの外注サポートも承ります。*/
.corporateCustomers_support{

}
.corporateCustomers_support_title_ja{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.corporateCustomers_support_box{
  margin-top: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.corporateCustomers_support_box_img.img_fit{

}
.corporateCustomers_support_box_img.img_fit:before{
  padding-top: 200px;
}
.corporateCustomers_support_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
  pointer-events: none;
}
.corporateCustomers_support_box_img.img_fit img{
  object-position: 40% 0;
}
.corporateCustomers_support_title_en{
  position: absolute;
  z-index: 1;
  width: 100vw;
  left: 50%;
  top: 22.5%;
  transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.141);
  pointer-events: none;
}
.corporateCustomers_support_title_en p{
  letter-spacing: 0.03em;
}
.corporateCustomers_support_box_txt{
  position: relative;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 100%;
  padding: 0 15px;
}
.corporateCustomers_support_box_title{
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.625;
  text-align: justify;
}
.corporateCustomers_support_box_text{
  margin-top: 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}
.corporateCustomers_support_box .read_more{

}

/*一緒に組むと、こんなにスムーズ。*/
.corporateCustomers_why{

}
.corporateCustomers_why_title{

}
.corporateCustomers_why_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.corporateCustomers_why_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.corporateCustomers_why_box_content{
  margin-top: 30px;
}
.corporateCustomers_why_box{
  width: 100%;
}
.corporateCustomers_why_box_inner{
  padding: 40px 40px;
  background: #fff;
}
.corporateCustomers_why_box_img{
  display: flex;
  justify-content: center;
}
.corporateCustomers_why_box_img img{
  width: 50%;
}
.corporateCustomers_why_box_title{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.corporateCustomers_why_box_text{
  margin-top: 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}


@media (max-width:374px){

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

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

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

  /* セクション設定 */
  .pg_corporateCustomers{

  }
  .pg_corporateCustomers .section.sec1{

  }
  .pg_corporateCustomers .section.sec2{

  }
  .pg_corporateCustomers .section.sec2:before{
    top: 12%;
    height: 24.7%;
  }
  .pg_corporateCustomers .section.sec2:after{
    bottom: 17.5%;
    height: 22.7%;
  }
  .pg_corporateCustomers .section.sec3{

  }
  .pg_corporateCustomers .section.sec4{
    padding-top: 50px;
    padding-bottom: 0;
  }
  .pg_corporateCustomers .section.sec5{
    padding-top: 100px;
    margin-bottom: -100px;
    padding-bottom: 100px;
  }

  /*企業のお客様*/
  .corporateCustomers_main{

  }
  .corporateCustomers_main_box{

  }
  .corporateCustomers_main_box1{
    width: 54.7%;
  }
  .corporateCustomers_main_box2{
    width: 38.3%;
  }
  .corporateCustomers_main_box_title{
    margin-top: 70px;
    font-size: 28px;
  }
  .corporateCustomers_main_box_text{
    margin-top: 30px;
    font-size: 18px;
  }
  .corporateCustomers_main_box_img.img_fit{
    margin-top: 0;
  }
  .corporateCustomers_main_box_img.img_fit:after{
    width: 100%;
    height: 61.53%;
    top: 55%;
    left: auto;
    right: calc(345px - 50vw);
    bottom: auto;
    transform: none;
  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our{

  }
  .corporateCustomers_our_title{

  }
  .corporateCustomers_our_title_en{
    font-size: 90px;
  }
  .corporateCustomers_our_title_ja{
    margin-top: 15px;
    font-size: 28px;
  }
  .corporateCustomers_our_box_content{
    margin-top: 70px;
  }
  .corporateCustomers_our_box{

  }
  .corporateCustomers_our_box:nth-child(n+2){
    margin-top: 100px;
  }
  .corporateCustomers_our_box:nth-child(odd) .corporateCustomers_our_box1,
  .corporateCustomers_our_box:nth-child(even) .corporateCustomers_our_box2{
    order: 1;
  }
  .corporateCustomers_our_box:nth-child(even) .corporateCustomers_our_box1,
  .corporateCustomers_our_box:nth-child(odd) .corporateCustomers_our_box2{
    order: 2;
  }
  .corporateCustomers_our_box1{
    width: 49.01%;
  }
  .corporateCustomers_our_box2{
    width: 44.73%;
  }
  .corporateCustomers_our_box_nbr{
    font-size: 100px;
    top: 60%;
    right: -7%;
  }
  .corporateCustomers_our_box_title{
    margin-top: 0;
    padding-top: 40px;
    font-size: 20px;
  }
  .corporateCustomers_our_box_text{
    margin-top: 20px;
    font-size: 18px;
  }
  .corporateCustomers_our_box_img.img_fit{

  }
  .corporateCustomers_our_box:nth-child(odd) .corporateCustomers_our_box_img.img_fit{
    margin-right: calc(345px - 50vw);
  }
  .corporateCustomers_our_box:nth-child(even) .corporateCustomers_our_box_img.img_fit{
    margin-left: calc(345px - 50vw);
  }

  /*こんな時、ケイ電工にご相談ください。*/
  .corporateCustomers_works{

  }
  .corporateCustomers_works_title{

  }
  .corporateCustomers_works_title_en{
    font-size: 105px;
  }
  .corporateCustomers_works_title_ja{
    margin-top: 15px;
    font-size: 34px;
  }
  .corporateCustomers_works_box_content{
    margin: 70px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .corporateCustomers_works_box{
    width: 33.33%;
    padding: 0 10px;
  }
  .corporateCustomers_works_box:nth-child(n+4){
    margin-top: 50px;
  }
  .corporateCustomers_works_box_img.img_fit{

  }
  .corporateCustomers_works_box_title{
    margin-top: 15px;
    font-size: 15px;
  }
  .corporateCustomers_works_box_title:after{
    margin: 7px auto 0;
  }
  .corporateCustomers_works_box_text{
    margin-top: 5px;
    font-size: 14px;
  }

  /*工務店様・設備会社様向けの外注サポートも承ります。*/
  .corporateCustomers_support{

  }
  .corporateCustomers_support_title_ja{
    font-size: 24px;
  }
  .corporateCustomers_support_box{
    margin-top: 15px;
  }
  .corporateCustomers_support_box_img.img_fit{

  }
  .corporateCustomers_support_box_img.img_fit:before{
    padding-top: 800px;
  }
  .corporateCustomers_support_title_en{
    top: auto;
    bottom: -3%;
    font-size: 142px;
  }
  .corporateCustomers_support_box_txt{
    position: absolute;
    z-index: 1;
    right: 0;
    width: 65%;
    padding: 0 50px;
  }
  .corporateCustomers_support_box_title{
    margin-top: 80px;
    font-size: 25px;
    color: #fff;
  }
  .corporateCustomers_support_box_text{
    margin-top: 15px;
    font-size: 17px;
    color: #fff;
  }
  .corporateCustomers_support_box .read_more{

  }

  /*一緒に組むと、こんなにスムーズ。*/
  .corporateCustomers_why{

  }
  .corporateCustomers_why_title{

  }
  .corporateCustomers_why_title_en{
    font-size: 80px;
  }
  .corporateCustomers_why_title_ja{
    margin-top: 15px;
    font-size: 30px;
  }
  .corporateCustomers_why_box_content{
    margin: 30px -10px 0;
    display: flex;
    align-items: stretch;
  }
  .corporateCustomers_why_box{
    width: 33.33%;
    padding: 0 10px;
  }
  .corporateCustomers_why_box_inner{
    padding: 30px 15px;
    height: 100%;
  }
  .corporateCustomers_why_box_img{

  }
  .corporateCustomers_why_box_title{
    margin-top: 20px;
    font-size: 20px;
  }
  .corporateCustomers_why_box_text{
    margin-top: 15px;
    font-size: 16px;
  }

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

  /*企業のお客様*/
  .corporateCustomers_main_box_img.img_fit:after{
    right: calc(465px - 50vw);
  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our_box:nth-child(odd) .corporateCustomers_our_box_img.img_fit{
    margin-right: calc(465px - 50vw);
  }
  .corporateCustomers_our_box:nth-child(even) .corporateCustomers_our_box_img.img_fit{
    margin-left: calc(465px - 50vw);
  }

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

  /* セクション設定 */
  .pg_corporateCustomers{

  }
  .pg_corporateCustomers .section.sec1{

  }
  .pg_corporateCustomers .section.sec2{
    padding-top: 217px;
  }
  .pg_corporateCustomers .section.sec2:before{
    top: 20%;
    height: 22.5%;
  }
  .pg_corporateCustomers .section.sec2:after{
    bottom: 15.7%;
    height: 19.7%;
  }
  .pg_corporateCustomers .section.sec3{
    padding-top: 132px;
  }
  .pg_corporateCustomers .section.sec4{
    padding-top: 142px;
  }
  .pg_corporateCustomers .section.sec5{
    padding-top: 183px;
    margin-bottom: -200px;
    padding-bottom: 200px;
  }

  /*企業のお客様*/
  .corporateCustomers_main{

  }
  .corporateCustomers_main_box{

  }
  .corporateCustomers_main_box1{

  }
  .corporateCustomers_main_box2{

  }
  .corporateCustomers_main_box_title{
    margin-top: 70px;
    font-size: 38px;
  }
  .corporateCustomers_main_box_text{
    margin-top: 42px;
    font-size: 18px;
  }
  .corporateCustomers_main_box_img.img_fit{

  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our{

  }
  .corporateCustomers_our_title{

  }
  .corporateCustomers_our_title_en{
    font-size: 120px;
  }
  .corporateCustomers_our_title_ja{
    margin-top: 22px;
    font-size: 38px;
  }
  .corporateCustomers_our_box_content{
    margin-top: 86px;
  }
  .corporateCustomers_our_box{

  }
  .corporateCustomers_our_box:nth-child(n+2){
    margin-top: 116px;
  }
  .corporateCustomers_our_box1{

  }
  .corporateCustomers_our_box2{

  }
  .corporateCustomers_our_box_nbr{
    font-size: 150px;
    right: -10%;
  }
  .corporateCustomers_our_box_title{
    padding-top: 55px;
    font-size: 32px;
  }
  .corporateCustomers_our_box_text{
    margin-top: 27px;
    font-size: 18px;
    margin-right: -1.4%;
  }
  .corporateCustomers_our_box_img.img_fit{

  }

  /*こんな時、ケイ電工にご相談ください。*/
  .corporateCustomers_works{

  }
  .corporateCustomers_works_title{

  }
  .corporateCustomers_works_title_en{
    font-size: 120px;
  }
  .corporateCustomers_works_title_ja{
    margin-top: 23px;
    font-size: 40px;
  }
  .corporateCustomers_works_box_content{

  }
  .corporateCustomers_works_box{
    width: 25%;
    padding: 0 10px;
  }
  .corporateCustomers_works_box:nth-child(n+4){
    margin-top: 0px;
  }
  .corporateCustomers_works_box:nth-child(n+5){
    margin-top: 65px;
  }
  .corporateCustomers_works_box_img.img_fit{

  }
  .corporateCustomers_works_box_title{
    margin-top: 26px;
    font-size: 15px;
  }
  .corporateCustomers_works_box_text{
    font-size: 14px;
  }

  /*工務店様・設備会社様向けの外注サポートも承ります。*/
  .corporateCustomers_support{

  }
  .corporateCustomers_support_title_ja{
    font-size: 35px;
  }
  .corporateCustomers_support_box{
    margin-top: 15px;
  }
  .corporateCustomers_support_box_img.img_fit{

  }
  .corporateCustomers_support_box_img.img_fit:before{
    padding-top: 900px;
  }
  .corporateCustomers_support_title_en{
    bottom: -3%;
    font-size: 132px;
  }
  .corporateCustomers_support_box_txt{

  }
  .corporateCustomers_support_box_title{
    margin-top: 150px;
    font-size: 34px;
  }
  .corporateCustomers_support_box_text{
    margin-top: 35px;
    font-size: 18px;
  }
  .corporateCustomers_support_box .read_more{
    margin-top: 87px;
  }
  .corporateCustomers_support_box .read_more a{
    width: 320px;
  }

  /*一緒に組むと、こんなにスムーズ。*/
  .corporateCustomers_why{

  }
  .corporateCustomers_why_title{

  }
  .corporateCustomers_why_title_en{
    font-size: 120px;
  }
  .corporateCustomers_why_title_ja{
    margin-top: 23px;
    font-size: 40px;
  }
  .corporateCustomers_why_box_content{
    margin: 90px -15px 0;
  }
  .corporateCustomers_why_box{
    padding: 0 15px;
  }
  .corporateCustomers_why_box_inner{
    padding: 30px 20px;
  }
  .corporateCustomers_why_box_img{

  }
  .corporateCustomers_why_box_title{
    margin-top: 42px;
    font-size: 18px;
  }
  .corporateCustomers_why_box_text{
    margin-top: 18px;
    font-size: 16px;
  }

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

  /* セクション設定 */
  .pg_corporateCustomers .section.sec2:before{
    top: 23%;
    height: 20%;
  }
  .pg_corporateCustomers .section.sec2:after{
    bottom: 11.7%;
    height: 22.5%;
  }

  /*企業のお客様*/
  .corporateCustomers_main_box_img.img_fit:after{
    right: calc(555px - 50vw);
  }
  .corporateCustomers_main_box_title{
    margin-top: 70px;
    font-size: 40px;
  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our_box:nth-child(odd) .corporateCustomers_our_box_img.img_fit{
    margin-right: calc(555px - 50vw);
  }
  .corporateCustomers_our_box:nth-child(even) .corporateCustomers_our_box_img.img_fit{
    margin-left: calc(555px - 50vw);
  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our_title_ja{
    margin-top: 22px;
    font-size: 40px;
  }
  .corporateCustomers_our_box_nbr{
    font-size: 200px;
    right: -3%;
  }
  .corporateCustomers_our_box_title{
    padding-top: 83px;
    font-size: 38px;
  }

  /*工務店様・設備会社様向けの外注サポートも承ります。*/
  .corporateCustomers_support_box_img.img_fit:before{
    padding-top: 950px;
  }
  .corporateCustomers_support_title_ja{
    margin-top: 23px;
    font-size: 40px;
  }
  .corporateCustomers_support_box_txt{
    padding: 0;
    width: 33.85%;
    right: 10.41%;
  }
  .corporateCustomers_support_box_title{
    margin-top: 165px;
    font-size: 28px;
  }
  .corporateCustomers_support_title_en{
    bottom: -5%;
    font-size: 166px;
  }

  /*一緒に組むと、こんなにスムーズ。*/
  .corporateCustomers_why_box_title{
    margin-top: 42px;
    font-size: 23px;
  }

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

  /* セクション設定 */
  .pg_corporateCustomers .section.sec2:before{
    top: 23.3%;
    height: 19.5%;
  }
  .pg_corporateCustomers .section.sec2:after{
    bottom: 11.7%;
    height: 22.5%;
  }

  /*工務店様・設備会社様向けの外注サポートも承ります。*/
  .corporateCustomers_support_box_title{
    margin-top: 150px;
    font-size: 30px;
  }
  .corporateCustomers_support_title_en{
    bottom: -5%;
    font-size: 200px;
  }
}
@media (min-width:1720px){

  /* セクション設定 */
  .pg_corporateCustomers .section.sec2:before,
  .pg_corporateCustomers .section.sec2:after{
    aspect-ratio: 1360 / 650;
  }
  .pg_corporateCustomers .section.sec2:before{
    top: 27%;
    height: auto;
  }
  .pg_corporateCustomers .section.sec2:after{
    bottom: 8.8%;
    height: auto;
  }

  .corporateCustomers_main_box_img.img_fit:after{
    right: calc(755px - 50vw);
    width: 603px;
    height: 360px;
    top: 59%;
  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our_box:nth-child(odd) .corporateCustomers_our_box_img.img_fit{
    margin-right: calc(755px - 50vw);
  }
  .corporateCustomers_our_box:nth-child(even) .corporateCustomers_our_box_img.img_fit{
    margin-left: calc(755px - 50vw);
  }

  /*「ちょうどいい距離感」が、選ばれる理由です。*/
  .corporateCustomers_our_box{
    align-items: center;
  }
  .corporateCustomers_our_box_nbr{
    font-size: 250px;
    top: 21%;
    right: -3%;
    transform: translateY(-50%);
  }
  .corporateCustomers_our_box_title{
    padding-top: 0;
    font-size: 40px;
  }

  /*こんな時、ケイ電工にご相談ください。*/
  .corporateCustomers_works_box_content{
    margin: 56px -27px 0;
  }
  .corporateCustomers_works_box{
    padding: 0 27px;
  }
  .corporateCustomers_works_box_title{
    font-size: 18px;
  }
  .corporateCustomers_works_box_title:after{
    margin: 11px auto 0;
  }
  .corporateCustomers_works_box_text{
    margin-top: 9px;
    padding-left: 10px;
    font-size: 15px;
  }

  /*工務店様・設備会社様向けの外注サポートも承ります。*/
  .corporateCustomers_support_box_img.img_fit:before{
    padding-top: 1000px;
  }
  .corporateCustomers_support_box_title{
    margin-top: 185px;
    font-size: 40px;
  }
  .corporateCustomers_support_title_en{
    left: 47.5%;
    bottom: -6.5%;
    font-size: 280px;
  }

  /*一緒に組むと、こんなにスムーズ。*/
  .corporateCustomers_why_box_content{
    margin: 90px -20px 0;
  }
  .corporateCustomers_why_box{
    padding: 0 20px;
  }
  .corporateCustomers_why_box_inner{
    padding: 60px 19px 0 30px;
    height: 570px;
  }
  .corporateCustomers_why_box_img{

  }
  .corporateCustomers_why_box_img img{
    width: auto;
  }

}



/*******************************
*　採用情報
********************************/

/* セクション設定 */
.pg_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}
.pg_recruit .section.sec3{
  background: #f5eb0a;
}
.pg_recruit .section.sec4{
  padding-top: 0;
}
.pg_recruit .section.sec5{

}

/*採用情報*/
.recruit{

}
.recruit_title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.recruit_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}
.recruit_img_content{
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.recruit_img_outer{
  width: 48%;
}
.recruit_img.img_fit{

}
.recruit_img.img_fit:before{
  padding-top: 56.16%;
}
.recruit_img.img_fit.left{
  margin-top: -25px;
}
.recruit_img.img_fit.right{
  margin-top: 25px;
}

/*ボタン*/
.recruit_btn_content{
  margin: 50px -5px 0;
  display: flex;
  flex-wrap: wrap;
}
.recruit_btn{
  width: 50%;
  padding: 0 5px;
}
.recruit_btn:nth-child(n+3){
  margin-top: 10px;
}
.recruit_btn a{
  display: block;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #f5eb0a;
  padding: 11px 20px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.recruit_btn a:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 12px;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0 100%);
  background: #000;
  bottom: 5px;
  right: 4px;
  transition: 0.2s all;
}
.recruit_btn a:hover{
  color: #f5eb0a;
  background: #000;
}
.recruit_btn a:hover:after{
  background: #f5eb0a;
}

/*「人」も「環境」も、ちょうどいい職場です。*/
.recruit_point{

}
.recruit_point_title{

}
.recruit_point_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.recruit_point_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.recruit_point_box_content{
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit_point_box{
  width: 100%;
}
.recruit_point_box:nth-child(n+2){
  margin-top: 50px;
}
.recruit_point_box_img.img_fit{

}
.recruit_point_box_img.img_fit:before{
  padding-top: 53.52%;
}
.recruit_point_box_nbr{
  margin-top: 15px;
  padding-left: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #f5840a;
  position: relative;
  z-index: 1;
}
.recruit_point_box_nbr:before{
  content: "";
  background-color: rgb(245, 132, 10);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
}
.recruit_point_box_title{
  margin-top: 9px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.recruit_point_box_text{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}

/*暮らしも未来も、しっかりサポート。*/
.recruit_benefits{

}
.recruit_benefits_title{

}
.recruit_benefits_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.recruit_benefits_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.recruit_benefits_box_context{
  margin-top: 30px;
}
.recruit_benefits_box{
  width: 100%;
}
.recruit_benefits_box_inner{
  background: #fff;
  padding: 40px 40px;
}
.recruit_benefits_box_img{
  display: flex;
  justify-content: center;
}
.recruit_benefits_box_title{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
.recruit_benefits_box_text{
  margin-top: 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/*「どんな人と働くか」を大切にしています。*/
.recruit_personality{
  position: relative;
  z-index: 1;
}
.recruit_personality_img.img_fit{

}
.recruit_personality_img.img_fit:before{
  padding-top: 630px;
}
.recruit_personality_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
  pointer-events: none;
}
.recruit_personality_txt{
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0px 15px;
}
.recruit_personality_title{

}
.recruit_personality_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}
.recruit_personality_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.recruit_personality_box_content{
  margin-top: 30px;
}
.recruit_personality_box{
  width: 100%;
}
.recruit_personality_box_inner{
  padding: 40px 45px 30px;
  background: #fff;
}
.recruit_personality_box_title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  background: #f5eb0a;
  padding: 15px 0;
}
.recruit_personality_box_text{
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.875;
  text-align: justify;
}

/*ここから始まる、あなたの電気工事キャリア。*/
.recruit_entry{

}
.recruit_entry_title{

}
.recruit_entry_title_en{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.recruit_entry_title_ja{
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.recruit_entry_tbl{
  margin-top: 30px;
}
.recruit_entry_tbl .table_rows_tr{

}
.recruit_entry_tbl .table_rows_th,
.recruit_entry_tbl .table_rows_td{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.882;
  border-color: #dbdbdb;
}
.recruit_entry_tbl .table_rows_th{
  background: #e5e5e5;
}
.recruit_entry_tbl .table_rows_td{
  background: #fff;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .recruit_entry_tbl .table_rows_th,
  .recruit_entry_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #dbdbdb;
    border-bottom: none;
  }
  .recruit_entry_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dbdbdb;
  }

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

  /* セクション設定 */
  .pg_recruit{

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

  /*採用情報*/
  .recruit{

  }
  .recruit_title{
    font-size: 30px;
  }
  .recruit_text{
    margin-top: 15px;
    font-size: 18px;
  }
  .recruit_img_content{
    margin-top: 50px;
  }
  .recruit_img_outer{

  }
  .recruit_img.img_fit{

  }
  .recruit_img.img_fit.left,
  .recruit_img.img_fit.right{
    margin: 0;
  }

  /*ボタン*/
  .recruit_btn_content{
    margin: 70px -10px 0;
  }
  .recruit_btn{
    width: 25%;
    padding: 0 10px;
  }
  .recruit_btn:nth-child(n+3){
    margin-top: 0px;
  }
  .recruit_btn a{

  }
  .recruit_btn a:after{

  }

  /*「人」も「環境」も、ちょうどいい職場です。*/
  .recruit_point{

  }
  .recruit_point_title{

  }
  .recruit_point_title_en{
    font-size: 100px;
  }
  .recruit_point_title_ja{
    margin-top: 21px;
    font-size: 30px;
  }
  .recruit_point_box_content{
    margin: 50px -10px 0;
  }
  .recruit_point_box{
    width: 50%;
    padding: 0 10px;
  }
  .recruit_point_box:nth-child(n+2){
    margin-top: 0px;
  }
  .recruit_point_box:nth-child(n+3){
    margin-top: 50px;
  }
  .recruit_point_box_img{

  }
  .recruit_point_box_nbr{
    margin-top: 15px;
    padding-left: 50px;
    font-size: 20px;
  }
  .recruit_point_box_nbr:before{
    width: 40px;
  }
  .recruit_point_box_title{
    margin-top: 10px;
    font-size: 18px;
  }
  .recruit_point_box_text{
    margin-top: 5px;
    font-size: 17px;
    line-height: 2;
  }

  /*暮らしも未来も、しっかりサポート。*/
  .recruit_benefits{

  }
  .recruit_benefits_title{

  }
  .recruit_benefits_title_en{
    font-size: 100px;
  }
  .recruit_benefits_title_ja{
    margin-top: 21px;
    font-size: 30px;
  }
  .recruit_benefits_box_context{
    margin: 30px -10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .recruit_benefits_box{
    width: 50%;
    padding: 0 10px;
  }
  .recruit_benefits_box:nth-child(n+3){
    margin-top: 30px;
  }
  .recruit_benefits_box_inner{
    padding: 30px 20px;
    height: 100%;
  }
  .recruit_benefits_box_img{

  }
  .recruit_benefits_box_title{
    margin-top: 15px;
    padding-bottom: 15px;
    font-size: 20px;
  }
  .recruit_benefits_box_text{
    margin-top: 15px;
    font-size: 16px;
  }

  /*「どんな人と働くか」を大切にしています。*/
  .recruit_personality{

  }
  .recruit_personality_img.img_fit{

  }
  .recruit_personality_img.img_fit:before{
    padding-top: 1650px;
  }
  .recruit_personality_txt{
    width: 100%;
    top: 100px;
    padding: 0 25px;
  }
  .recruit_personality_title{

  }
  .recruit_personality_title_en{
    font-size: 100px;
  }
  .recruit_personality_title_ja{
    margin-top: 15px;
    font-size: 30px;
  }
  .recruit_personality_box_content{
    margin: 30px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .recruit_personality_box{
    width: 50%;
    padding: 0 10px;
  }
  .recruit_personality_box:nth-child(n+3){
    margin-top: 50px;
  }
  .recruit_personality_box_inner{
    padding: 30px 25px;
    height: 100%;
  }
  .recruit_personality_box_title{
    font-size: 20px;
  }
  .recruit_personality_box_text{
    margin-top: 5px;
    font-size: 16px;
  }

  /*ここから始まる、あなたの電気工事キャリア。*/
  .recruit_entry{

  }
  .recruit_entry_title{

  }
  .recruit_entry_title_en{
    font-size: 100px;
  }
  .recruit_entry_title_ja{
    margin-top: 15px;
    font-size: 30px;
  }
  .recruit_entry_tbl{
    margin-top: 50px;
  }
  .recruit_entry_tbl .table_rows_tr{

  }
  .recruit_entry_tbl .table_rows_th,
  .recruit_entry_tbl .table_rows_td{
    font-size: 17px;
  }
  .recruit_entry_tbl .table_rows_th{
    width: 200px;
  }
  .recruit_entry_tbl .table_rows_td{

  }


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

  /* セクション設定 */
  .pg_recruit{

  }
  .pg_recruit .section.sec1{
    padding-top: 27px;
  }
  .pg_recruit .section.sec2{
    padding-top: 185px;
    padding-bottom: 190px;
  }
  .pg_recruit .section.sec3{
    padding-top: 182px;
    padding-bottom: 200px;
  }
  .pg_recruit .section.sec4{

  }
  .pg_recruit .section.sec5{
    padding-top: 185px;
  }

  /*採用情報*/
  .recruit{

  }
  .recruit_title{
    font-size: 40px;
  }
  .recruit_text{
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
  }
  .recruit_img_content{
    margin-top: 72px;
  }
  .recruit_img_outer{

  }
  .recruit_img.img_fit{

  }

  /*ボタン*/
  .recruit_btn_content{
    margin: 100px -13.5px 0;
  }
  .recruit_btn{
    width: 25%;
    padding: 0 13.5px;
  }
  .recruit_btn a{

  }
  .recruit_btn a:after{

  }

  /*「人」も「環境」も、ちょうどいい職場です。*/
  .recruit_point{

  }
  .recruit_point_title{

  }
  .recruit_point_title_en{
    font-size: 120px;
  }
  .recruit_point_title_ja{
    margin-top: 21px;
    font-size: 40px;
  }
  .recruit_point_box_content{
    margin: 70px -50px 0;
  }
  .recruit_point_box{
    width: 50%;
    padding: 0 50px;
  }
  .recruit_point_box:nth-child(n+3){
    margin-top: 80px;
  }
  .recruit_point_box_img.img_fit{

  }
  .recruit_point_box_nbr{
    margin-top: 28px;
    padding-left: 60px;
    font-size: 18px;
  }
  .recruit_point_box_nbr:before{
    top: 55%;
    width: 40px;
  }
  .recruit_point_box_title{
    margin-top: 9px;
    font-size: 22px;
  }
  .recruit_point_box_text{
    margin-top: 24px;
    line-height: 2;
  }

  /*暮らしも未来も、しっかりサポート。*/
  .recruit_benefits{

  }
  .recruit_benefits_title{

  }
  .recruit_benefits_title_en{
    font-size: 120px;
  }
  .recruit_benefits_title_ja{
    margin-top: 21px;
    font-size: 40px;
  }
  .recruit_benefits_box_context{
    margin: 77px -15px 0;
  }
  .recruit_benefits_box{
    width: 25%;
    padding: 0 15px;
  }
  .recruit_benefits_box:nth-child(n+3){
    margin-top: 0px;
  }
  .recruit_benefits_box_inner{
    padding: 60px 20px 45px;
  }
  .recruit_benefits_box_img{

  }
  .recruit_benefits_box_title{
    margin-top: 18px;
    padding-bottom: 20px;
    font-size: 18px;
  }
  .recruit_benefits_box_text{
    margin-top: 17px;
  }

  /*「どんな人と働くか」を大切にしています。*/
  .recruit_personality{

  }
  .recruit_personality_img.img_fit{

  }
  .recruit_personality_img.img_fit:before{
    padding-top: 1500px;
  }
  .recruit_personality_txt{
    width: 100%;
    top: 100px;
    padding: 0px 35px;
  }
  .recruit_personality_title{

  }
  .recruit_personality_title_en{
    font-size: 120px;
  }
  .recruit_personality_title_ja{
    margin-top: 21px;
    font-size: 40px;
  }
  .recruit_personality_box_content{
    margin: 50px -15px 0;
  }
  .recruit_personality_box{
    width: 33.33%;
    padding: 0 15px;
  }
  .recruit_personality_box:nth-child(n+3){
    margin-top: 0px;
  }
  .recruit_personality_box:nth-child(n+4){
    margin-top: 50px;
  }
  .recruit_personality_box_inner{
    padding: 25px 30px 43px;
  }
  .recruit_personality_box_title{
    font-size: 18px;
  }
  .recruit_personality_box_text{
    margin-top: 26px;
    padding: 0 2px 0 5px;
    font-size: 16px;
  }

  /*ここから始まる、あなたの電気工事キャリア。*/
  .recruit_entry{

  }
  .recruit_entry_title{

  }
  .recruit_entry_title_en{
    font-size: 120px;
  }
  .recruit_entry_title_ja{
    margin-top: 21px;
    font-size: 40px;
  }
  .recruit_entry_tbl{
    margin-top: 70px;
  }
  .recruit_entry_tbl .table_rows_tr{

  }
  .recruit_entry_tbl .table_rows_th,
  .recruit_entry_tbl .table_rows_td{
    padding: 15px 15px 15.7px;
  }
  .recruit_entry_tbl .table_rows_th{
    width: 284px;
  }
  .recruit_entry_tbl .table_rows_td{
    padding-left: 20px;
  }
  .recruit_entry .read_more{
    margin-top: 97px;
  }
  .recruit_entry .read_more a{
    width: 320px;
    padding: 20px 0px 20px;
  }

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

  /*採用情報*/
  .recruit_text{
    font-size: 18px;
  }

  /*暮らしも未来も、しっかりサポート。*/
  .recruit_benefits_box_title{
    margin: 18px 5px 0;
    padding-bottom: 25px;
    font-size: 23px;
  }

  /*「どんな人と働くか」を大切にしています。*/
  .recruit_personality_img.img_fit:before{
    padding-top: 1350px;
  }
  .recruit_personality_box_content{
    margin: 70px -20px 0;
  }
  .recruit_personality_box{
    width: 33.33%;
    padding: 0 20px;
  }
  .recruit_personality_box_title{
    margin: 0 -10px;
    font-size: 17px;
    letter-spacing: 0;
  }

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

  /*「人」も「環境」も、ちょうどいい職場です。*/
  .recruit_point_box_nbr{
    margin-top: 28px;
    padding-left: 60px;
    font-size: 18px;
  }
  .recruit_point_box_title{
    margin-top: 9px;
    font-size: 22px;
  }

  /*「どんな人と働くか」を大切にしています。*/
  .recruit_personality_img.img_fit:before{
    padding-top: 1373px;
  }
  .recruit_personality_box_title{
    margin: 0px;
    font-size: 20px;
  }

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

  /*「人」も「環境」も、ちょうどいい職場です。*/
  .recruit_point_box_nbr{
    margin-top: 28px;
    padding-left: 60px;
    font-size: 25px;
  }
  .recruit_point_box_title{
    margin-top: 9px;
    font-size: 30px;
  }

  /*暮らしも未来も、しっかりサポート。*/
  .recruit_benefits_box_context{
    margin: 77px -20px 0;
  }
  .recruit_benefits_box{
    width: 25%;
    padding: 0 20px;
  }

  /*「どんな人と働くか」を大切にしています。*/
  .recruit_personality_txt{
    width: 1520px;
    top: 185px;
    padding: 0;
  }
  .recruit_personality_box_title{
    letter-spacing: 0.075em;
  }

}




/*******************************
*　会社概要
********************************/

/* セクション設定 */
.pg_company{

}
.pg_company .section.sec1{

}

/*会社概要*/
.company_tbl{

}
.company_tbl .table_rows_tr{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  border-color: #ababab;
}
.company_tbl .table_rows_th{
  background: #e5e5e5;
  font-weight: 400;
}
.company_tbl .table_rows_td{
  background: #fff;
  font-weight: 500;
}

/*地図*/
.company_map{
  margin-top: 30px;
}
.company_map iframe{
  width: 100%;
  height: 200px;
  border: none;
}


@media (max-width:374px){

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

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

  /*会社概要*/
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #ababab;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #ababab;
  }

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

  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }

  /*会社概要*/
  .company_tbl{

  }
  .company_tbl .table_rows_tr{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{

  }

  /*地図*/
  .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 300px;
  }

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

  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }

  /*会社概要*/
  .company_tbl{

  }
  .company_tbl .table_rows_tr{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 18px 15px 21.2px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 20px;
  }

  /*地図*/
  .company_map{
    margin-top: 97px;
  }
  .company_map iframe{
    height: 400px;
  }


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


}




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

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@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{

  }

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


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


}




/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0px;
}
.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: #f5eb0a;
  padding: 11px 10px 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 11px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 31px;
  font-weight: 500;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #f5eb0a;
}

/* 詳細 */
.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;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

/* コピー用 */
@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: 0px;
  }
  .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: 133px;
  }

  /* 詳細 */
  .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: 0px;
  }

}




/*******************************
*　新着情報
********************************/

/* セクション設定 */
.pg_news{

}
.pg_news .section.sec1{

}

/*一覧*/
.news_list{

}
.news_list .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.news_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 50px;
}
.news_list .webgene-item .img.img_fit{
  overflow: hidden;
}
.news_list .webgene-item .img.img_fit:before{
  padding-top: 80%;
}
.news_list .webgene-item .meta{
  margin-top: 17px;
  display: flex;
}
.news_list .webgene-item a:hover{
  color: #181818;
}
.news_list .webgene-item .date,
.news_list .webgene-item .category,
.news_list .webgene-item .title{
  font-weight: 500;
  letter-spacing: 0.075em;
}
.news_list .webgene-item .date{
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  line-height: 1;
}
.news_list .webgene-item .category{
  margin: -5px 5px 0;
  padding: 5px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  width: 120px;
  background: #f5eb0a;
}
.news_list .webgene-item a:hover .category{
  color: #fff;
  color: #181818;
}
.news_list .webgene-item .title{
  margin-top: 7px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

/*詳細*/
.news_detail{

}
.news_detail .webgene-blog{

}
.news_detail .webgene-item{

}
.news_detail .webgene-item .meta{
  display: flex;
  align-items: center;
}
.news_detail .webgene-item .date,
.news_detail .webgene-item .category,
.news_detail .webgene-item .title,
.news_detail .webgene-item .txt{
  font-weight: 500;
  letter-spacing: 0.075em;
}
.news_detail .webgene-item .date{
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 1;
  border-right: 1px solid #1a1a1a;
  padding-right: 15px;
}
.news_detail .webgene-item .category{
  margin-left: 17px;
  padding: 6px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  width: 120px;
  background: #f5eb0a;
}
.news_detail .webgene-item .title{
  margin-top: 15px;
  padding-bottom: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #b9b9b9;
}
.news_detail .webgene-item .post_content{
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #b9b9b9;
}
.news_detail .webgene-item .txt{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.news_detail .webgene-item .post_pdf{

}


@media (max-width:374px){

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

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

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

  /* セクション設定 */
  .pg_news{

  }
  .pg_news .section.sec1{

  }

  /*一覧*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin: 0 -10px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding: 0 10px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 50px;
  }
  .news_list .webgene-item .date{
    font-size: 15px;
  }
  .news_list .webgene-item .category{
    margin: -5px 10px 0;
    padding: 7px 0;
    font-size: 12px;
    width: 120px;
  }
  .news_list .webgene-item .title{
    margin-top: 7px;
    font-size: 16px;
  }

  /*詳細*/
  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{
    font-size: 16px;
    padding-right: 25px;
  }
  .news_detail .webgene-item .category{
    margin-left: 30px;
    padding: 6px 0 5px;
    font-size: 12px;
    width: 120px;
  }
  .news_detail .webgene-item .title{
    margin-top: 15px;
    padding-bottom: 10px;
    font-size: 16px;
  }
  .news_detail .webgene-item .post_content{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .news_detail .webgene-item .txt{
    line-height: 2.428;
  }
  .news_detail .webgene-item .post_pdf{

  }

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

  /* セクション設定 */
  .pg_news{

  }
  .pg_news .section.sec1{

  }

  /*一覧*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin: 0 -15px;
  }
  .news_list .webgene-item{
    width: 33.33%;
    padding: 0 15px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0px;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 54px;
  }
  .news_list .webgene-item .date{
    font-size: 15px;
  }
  .news_list .webgene-item .category{
    margin: -5px 23px 0;
    padding: 7px 0 5px;
    font-size: 12px;
    width: 120px;
  }
  .news_list .webgene-item .title{
    margin-top: 7px;
    font-size: 16px;
  }

  /*詳細*/
  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{
    margin-top: 5px;
  }
  .news_detail .webgene-item .date{
    font-size: 16px;
    padding-right: 29px;
  }
  .news_detail .webgene-item .category{
    margin-top: -3px;
    margin-left: 50px;
    padding: 6px 0 5px;
    font-size: 12px;
    width: 120px;
  }
  .news_detail .webgene-item .title{
    margin-top: 13px;
    padding-bottom: 11px;
    font-size: 16px;
  }
  .news_detail .webgene-item .post_content{
    padding-top: 50px;
    padding-bottom: 69px;
  }
  .news_detail .webgene-item .txt{

  }
  .news_detail .webgene-item .post_pdf{

  }
  .news_detail .read_more{
    margin-top: 95px;
  }
  .news_detail .read_more a{
    width: 320px;
    padding: 20px 0px 20px;
  }

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


}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

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

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


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

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

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

}
@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;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}





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

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  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-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 21px;
  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: 18px 15px 10px 20px;
  background: #eeeeee;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 3px 11px;
  margin-top: 0px;
  float: right;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.un_requiredText{
  background: #ffffff;
  color: #b80000;
  border: 1px solid #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 9.5px 17px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 463px;
  width: 100%;
  height: 39px;
  padding: 5px 12px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.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-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  padding: 7px 12px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 63px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
  margin-left: 7px;
}
.pg_contact .privacyLabel{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #f5840a;
  font-weight: 500;
}
.pg_contact .formBtn.formSend {
  margin: 55px auto 0;
  max-width: 320px;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 18px 0;
  border: 0;
  background: #f5eb0a;
  color: #1a1a1a;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 12px;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0 100%);
  background: #000;
  bottom: 2px;
  right: 2px;
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  color: #f5eb0a;
  background: #000;
}
.pg_contact .formBtn.formSend:hover:after{
  background: #f5eb0a;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 3px 2px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.25;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 7.5px 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;
}

@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: 81px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 46px;
  padding-left: 10px;
}
.privacy_box{
  padding: 2.5% 1.1% 0% 2.3%;
  height: 397px;
  overflow: auto;
  border: 1px solid #181818;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 7px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #f5eb0a;
}
.privacy_txt{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

.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;
}
.fileCaution{
  color: #b80000;
  margin-top: 7px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.16em;
  line-height: 1.933;
}
.fileCaution_text{
  margin-top: 10px;
}
.fileArea + .fileArea{
  margin-top: 13.5px;
}


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


  .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;
  }
  .radioArea .d-inline-block .label {
    margin-left: 5px;
    font-size: 12px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .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: 8.5px 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_title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.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;
    text-align: justify
  }
}
@media (min-width:768px){

  .thanks_title{
    font-size: 25px;
  }

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

  .thanks_title{
    font-size: 30px;
  }
  .thanks_text{
    text-align: center;
  }

}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
