@charset "UTF-8";

:root {
  --main-color: #448aca;
  --sub-color: #e7161a;
}
#root{
  overflow: hidden;
}
/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(/system_panel/uploads/images/bg.jpg);
  background-repeat: repeat-y;
  background-size: cover;
  /* 画面端までの余白 */
  --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);
  }
}*/


/* 管理画面の余白調整 */
.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: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

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

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  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:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@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: #FFF;
}

/* ロゴ */
.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: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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


.hdr_contact_btn{
  width: 210px;
  display: block;
  text-align: center;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  letter-spacing: 0.075em;
  padding: 14px 0 13px;
  border-radius: 26px;;
  background: var(--main-color);
  color: #ffffff;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  border: 1px solid transparent;
  margin-left: 5px;
}
.hdr_contact_btn p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}
.hdr_contact_btn p:before{
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background-image: url(/system_panel/uploads/images/wh_mail.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-right: 6px;
}
.hdr_contact_btn:hover{
  background: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.hdr_contact_btn:hover p:before{
  background-image: url(/system_panel/uploads/images/br_mail.svg);
}
@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contact_btn{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: 0.2s all;
  }

  .gnav_outer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #FCFCFC;
    background: #EFEFEF;
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


}
@media (min-width:1024px){
  .header{
    padding: 20px;
  }


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

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

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

}
@media (min-width:1200px){
  .header{
    padding: 20px;
  }

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 160px;;
  }

  .hdr_contact_btn{
    width: 190px;
  }

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

  }

}
@media (min-width:1280px){
  .header{
    padding: 20px 50px 20px 50px;
  }

  .hdr_contact_btn{
    width: 210px;
  }

  .hdr_logo img{
    width: 140px;
  }
}

@media (min-width:1520px){
  .hdr_logo img{
    width: auto;
  }
  
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img img{
  border-radius: 30px;
}
.mv_img.img_fit:before{
  padding-top: 50vh;
}
.mv_inner{
  position: relative;
}

/* MVテキスト */
.mv_text{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  text-shadow: 0px 1px 2px rgba(24, 24, 24, 1);
  padding: 8px 0 8px 10px;
}
.mv_text1{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5em;
}
.mv_text2{
  font-size: 30px;
  /*font-size: clamp(2rem, 0.137rem + 9.32vw, 10rem);*/
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

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

  }

  /* MVテキスト */
  .mv_text{
    padding: 8px 0 8px 40px;
  }
  .mv_text1{
    font-size: 30px;
  }
  .mv_text2{
    white-space: nowrap;
    font-size: 56px;
  }

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


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

  }

  /* MVテキスト */
  .mv_text{

  }
  .mv_text1{
    font-size: 38px;
  }
  .mv_text2{
    font-size: 80px;
  }

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

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

  .mv_inner{

  }

  /* MVテキスト */
  .mv_text{
    padding: 8px 0 8px 60px;
  }
  .mv_text1{

  }
  .mv_text2{

  }

}
@media (min-width:1450px){
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 93px);
  }
  .mv_text2{
    font-size: clamp(2rem, 0.4rem + 8vw, 10rem)
  }
}
@media (min-width:1700px){
  .mv_text2{
    font-size: clamp(2rem, 0.4rem + 8vw, 10rem)
  }

}

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

/* サイドバー */
.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;
  padding-inline:15px; 
}
.pg_header:before{
  content: "";
  display: block;
  width:45.05%;
  aspect-ratio:865 / 604;
  background-image: url(/system_panel/uploads/images/header_before.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -85px;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_img:before{
  padding-top: 150px;
}
.pg_header_img img{
  border-radius: 30px;
}

.pg_header_tt{
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  text-align: center;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 120px;
    padding-inline:50px;
  }
  .pg_header:before{
    bottom: -200px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_img:before{
    padding-top: 250px;
  }

  .pg_header_tt{
    font-size: 40px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 240px;
  }
  .pg_header:before{
    bottom: -300px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_img:before{
    padding-top: 350px;
  }

  .pg_header_tt{
    font-size: 50px;
  }
}
@media (min-width:1200px){
  .pg_header{
    margin-bottom: 200px;
  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header:before{
    bottom: -300px;
  }

}
@media (min-width:1366px){
  .pg_header{
    margin-bottom: 240px;
  }
  .pg_header:before{
    bottom: -450px;
  }
}
@media (min-width:1450px){
  .pg_header:before{
    bottom: -300px;
  }

}

@media (min-width:1700px){
  .pg_header:before{
    bottom: -133.5%;
  }
}

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

.footer{
  position: relative;
  margin-top: 50px;
  padding-bottom: 20px;
}
.footer.home:before{
  content: "";
  display: block;
  width:1368px;
  aspect-ratio:1368 / 896;
  background-image: url(/system_panel/uploads/images/ftr_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: -690px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 5px;
  margin-top: 50px;
}


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

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  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;
}


.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.ftr_contact_wrap.home .ftr_contact_inner{
  top: 81%;
}
.ftr_contact_wrap.home .ftr_contact_img{
  top: -30px;
}
.ftr_contact_wrap.home .ftr_contact_img:before{
  padding-top: 750px;
} 
.ftr_contact_img:before{
  padding-top: 700px;
} 
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
} 
.ftr_contact_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.ftr_contact_layout_box1{
  width: 100%;
}
.ftr_contact_title{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  color: #fff;
}
.ftr_contact_title_en{
  font-size: 50px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_title_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 33px;
}
.ftr_contact_layout .content_desc{
  color: #fff;
  font-weight: 700;
  margin-top: 35px;
}
.ftr_contact_layout_box2{
  width: 100%;
}
.ftr_contact_layout_box2 .circle_btn{

}

/*homeのみ表示*/
.ftr_sub_wrap{
  position: relative;
  z-index: 2;

}
.ftr_sub_contents{
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  justify-content: space-between;
  border: 1px solid #a6a6a6;
  border-radius: 20px;
  padding: 34px 39px 75px;
}
.ftr_sub_contents_item{
  width: 100%;
  border-radius: 20px;
}
.ftr_sub_contents_item:nth-child(n+2){
  margin-top: 95px;
}
.ftr_sub_contents_item_inner{
  border-radius: 20px;
  position: relative;
  height: 100%;
  display: block;
}
.ftr_sub_contents_item_title{
  position: relative;
}
.ftr_sub_contents_item_title:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #a6a6a6;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: 0;
}
.ftr_sub_contents_item_title_ja{
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #fff;
  position: relative;
  z-index: 1;
  padding-right: 27px;
}
.ftr_sub_contents_item_hosok{
  font-size: 20px;
  font-weight: 900;
  margin-top: 13px;
}
.ftr_sub_contents_item .content_desc{
  margin-top: 20px;
}
.ftr_contact_en{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-size: 63px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}

.ftr_1{
  text-align: center; 
  padding-top: 80px;

}
.footer.home .ftr_1{
  padding-top: 80px;
}
.ftr_logo_txt1{
  margin-top: 16px;
}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 31px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer.home:before{
    width: 800px;
    top: 700px;
  }
  .footer_fix{
    display: flex;
  }


  .ftr_sub_contents{
    padding: 34px 16px 100px;
  }
  .ftr_contact_title_ja{
    margin-left: 0;
    margin-top: 10px;
  }
  .ftr_contact_layout .content_desc{
    margin-top: 20px;
  }
  .ftr_sub_contents_item{
    position: relative;
  }
  .ftr_sub_contents_item_inner{
    position: inherit;
  }
  .ftr_contact_en{
    font-size: 40px;
    bottom: -60px;
  }

  .ftr_add p{
    letter-spacing: 0; 
  }
  .ftr_links{
    display: none; 
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-bottom: 50px;
  }
  .footer.home:before{
    width:800px;
    top: 400px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_wrap.home .ftr_contact_inner{
    top: 75%;
  }
  .ftr_contact_img:before{

  } 
  .ftr_contact_wrap.home .ftr_contact_img{
    top: -50px;
  }
  .ftr_contact_wrap.home .ftr_contact_img:before{
    padding-top: 750px;
  } 
  .ftr_contact_img:after{

  } 
  .ftr_contact_layout{

  }
  .ftr_contact_layout_box1{

  }
  .ftr_contact_title{

  }
  .ftr_contact_title_en{
    font-size: 80px;
  }
  .ftr_contact_title_ja{
    font-size: 20px;
  }
  .ftr_contact_layout .content_desc{

  }
  .ftr_contact_layout_box2{

  }
  .ftr_contact_layout_box2 .circle_btn{

  }

  /*homeのみ表示*/
  .ftr_sub_wrap{

  }
  .ftr_sub_contents{
    padding: 34px 39px 100px;
  }
  .ftr_sub_contents_item{

  }
  .ftr_sub_contents_item:nth-child(n+2){
    margin-top: 95px;
  }
  .ftr_sub_contents_item_inner{

  }
  .ftr_sub_contents_item_title{

  }
  .ftr_sub_contents_item_title_ja{

  }
  .ftr_sub_contents_item_hosok{
    font-size: 20px;
  }
  .ftr_sub_contents_item .content_desc{

  }
  .ftr_contact_en{
    bottom: -80px;
  }

  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 70px;
  }
  .ftr_link{
    font-size: 15px;
    font-weight: 500;
    padding: 0 16px;
  }
  
  


  .ftr_1{
    padding-top: 150px;
  }
  .footer.home .ftr_1{
    padding-top: 100px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .footer.home:before{
    width:1000px;
    top: -200px;
  }

  .ftr_contact_wrap.home{
    padding-top: 300px;
  }
  .ftr_contact_wrap.home .ftr_contact_inner{
    top: 75%;
  }
  .ftr_contact_img:before{
    padding-top: 750px;
  } 
  .ftr_contact_wrap.home .ftr_contact_img:before{
    padding-top: 900px;
  } 
  .ftr_contact_img:after{

  } 
  .ftr_contact_layout{

  }
  .ftr_contact_layout_box1{
    width: 61.51%;
  }
  .ftr_contact_title{

  }
  .ftr_contact_title_en{
    font-size: 110px;
  }
  .ftr_contact_title_ja{
    font-size: 24px;
    margin-left: 0;
  }
  .ftr_contact_layout .content_desc{

  }
  .ftr_contact_layout_box2{
    width: 13.48%;
  }
  .ftr_contact_layout_box2 .circle_btn{
    justify-content: flex-end;
  }
  
  .ftr_links{
  justify-content:center;
  }
    

  /*homeのみ表示*/
  .ftr_sub_wrap{
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .ftr_sub_contents{
    position: relative;
    padding: 34px 39px 75px;
  }
  .ftr_sub_contents:before{
    content: "";
    display: block;
    width: 1px;
    height: 340px;;
    background: #a6a6a6;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_sub_contents_item{
    width: 50%;
  }
  .ftr_sub_contents_item:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_sub_contents_item:first-child .ftr_sub_contents_item_inner{
    padding-right: 45px;
  }
  .ftr_sub_contents_item:last-child .ftr_sub_contents_item_inner{
    padding-left: 39px;
  }
  .ftr_sub_contents_item_inner{

  }
  .ftr_sub_contents_item_title{

  }
  .ftr_sub_contents_item_title_ja{

  }
  .ftr_sub_contents_item_hosok{
    font-size: 28px;
  }
  .ftr_sub_contents_item .content_desc{

  }

  .ftr_contact_en{
    bottom: -105px;
  }
  .ftr_sub_contents_item:first-child .ftr_contact_en{
    right: 26px;
  }
  .ftr_sub_contents_item:last-child .ftr_contact_en{
    right: -20px;
  }

  .ftr_link{
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
  }
  
  .ftr_link_item{
    position: relative;
    z-index: 1;
  }
  .ftr_link_item a{
    display: inline-block;
  }

  .ftr_link_subs{
    display: flex;
    position: absolute;
    z-index: 1;
    top: calc(100% + 10px);
    left: 50%;
    white-space: nowrap;
  }
  .ftr_link_subs:before{
    content: "Ｌ";
    position: relative;
    z-index: 1;
    top: -6px;
  }
  .ftr_link_subs a{
    font-size: 15px;
    font-weight: 500;
  }
  .ftr_link_subs .spacing{
    margin: 0 20px;
  }
}
@media (min-width:1200px){
  .footer.home:before{
    width:1000px;
    top: -200px;
  }


  .ftr_contact_wrap.home{
    padding-top: 205px;
  }
  .ftr_contact_wrap.home .ftr_contact_inner{
    top: 78%;
  }
  .ftr_contact_wrap.home .ftr_contact_img:before{
    padding-top: 900px;
  } 

  .ftr_link{
    font-size: 15px;
    font-weight: 500;
    padding: 0 16px;
  }
}
@media (min-width:1366px){
  .footer.home:before{
    width:1000px;
    top: -400px;
  }
}
@media (min-width:1450px){
  .footer.home:before{
    width:1000px;
    top: -400px;
  }

  .ftr_contact_wrap.home{
    padding-top: 205px;
  }
  .ftr_contact_wrap.home .ftr_contact_inner{
    top: 75%;
  }
  .ftr_contact_wrap.home .ftr_contact_img:before{
    padding-top: 800px;
  } 

}
@media (min-width:1700px){
  .footer.home:before{
    width:1368px;
    top: -690px;
  }

  .ftr_contact_wrap.home{
    padding-top: 254px;
  }
  .ftr_contact_wrap.home .ftr_contact_inner{
    top: 78%;
  }
  .ftr_contact_wrap.home .ftr_contact_img:before{
    padding-top: 750px;
  } 
  .ftr_contact_title_ja{
    margin-left: 33px;
  }
}

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


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

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

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


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

/* アンカー */
.anchor{
  position: relative;
  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: 260px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background:#fff;
  border-radius: 26px;
  border: 0;
  color: #181818;;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  box-shadow: 0px 1px 3px 0px rgba(24, 24, 24, 0.5);
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--main-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.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{

}

/*回るボタン*/
.circle_btn{
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.circle_btn a{
  position: relative;
}
.circle_btn_img{
  display: inline-block;

  animation: rotation-r 10s linear infinite;
}
.circle_btn a:before{
  content: "➡";
  display: block;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(-46deg);
  color: var(--main-color);
  transition: 0.2s all;
}
.circle_btn.wh a:before{
  color:#fff;
  
}
.circle_btn a:hover:before{
  font-size: 30px;
}

@keyframes rotation-r {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@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: 260px;
    font-size: 14px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "→";
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .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: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

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

  .circle_btn.left{
    justify-content: flex-start;
  }
}
@media (min-width:1200px){


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

  /* コンテナ */
  /*.container.mid{
    max-width: calc(1320px + 160px);
    padding-left: 80px;
    padding-right: 80px;
  }*/
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1250px + 70px);
    padding-left: 35px;
    padding-right: 35px;
  }
  /*.container.full{
    max-width: 1920px;
    padding-left: 60px;
    padding-right: 60px;
  }*/


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

  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1470px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

}

@media (min-width:1700px){
  .container.wide{
    max-width: calc(1520px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
}


/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
}
.pg_home:before{
  content: "";
  display: block;
  width: 45.05%;
  aspect-ratio: 865 / 604;
  background-image: url(/system_panel/uploads/images/header_before.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -30px;
}
.pg_home .section.sec1{
  padding-top: 100px;
  position: relative;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 22.23%;
  aspect-ratio: 427 / 1469;
  background-image: url(/system_panel/uploads/images/home_right_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 22%;
}
.pg_home .section.sec2{
  padding-bottom: 80px;
  padding-top:30px;
  position: relative;
}
.pg_home .section.sec2:after{
  content: "";
  display: block;
  width: 90.83%;
  aspect-ratio: 1744 / 1334;
  background-image: url(/system_panel/uploads/images/home_btm_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: -150px;
}
.pg_home .section.sec3{
  position: relative;
  background: #448aca;
  padding-bottom: 100px;
}
.pg_home .section.sec4{
  padding-top: 100px;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

}
@media (min-width:768px){
  .pg_home:before{
    top: -50px;
  }
  .pg_home .section.sec1{
    padding-top: 204px;
  }
  .pg_home .section.sec2{
    padding-top:120px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec2:after{
    bottom: -300px;
  }
  .pg_home .section.sec3{
    padding-bottom: 147px;
  }
  .pg_home .section.sec4{
    padding-top: 200px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home:before{
    top: -100px;
  }
  .pg_home .section.sec1{
    padding-top: 200px;
  }
  .pg_home .section.sec2{
    padding-top:175px;
    padding-bottom: 210px;
  }
  .pg_home .section.sec2:after{
    bottom: -400px;
  }
  .pg_home .section.sec3{
    padding-bottom: 147px;
  }
  .pg_home .section.sec4{
    padding-top: 300px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1200px){
  .pg_home:before{
    top: -150px;
  }
  .pg_home .section.sec2:after{
    bottom: -500px;
  }
  .pg_home .section.sec4{
    padding-top: 400px;
  }

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

  .pg_home:before{
    top: -150px;
  }
  .pg_home .section.sec1{
    padding-top: 300px;
  }
  .pg_home .section.sec2:after{
    bottom: -758px;
  }
}
@media (min-width:1450px){

}
@media (min-width:1700px){
  .pg_home .section.sec1{
    padding-top: 204px;
  }
}

/*about*/
.home_about_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 100px;
  z-index: 2;
}
.home_about_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_about_box1 .content_desc{

}
.home_about_box2{
  width: 100%;
  order: 1;
}
.home_about_box2_img:before{
  padding-top: 60.8%;
} 
.home_about_box2_img img{
  border-radius: 20px;
}
.home_about_wrap .big_int{
  right: 0;
  bottom: 0;
}

/*サービス*/
.multi_tt{
  text-align: center;
  position: relative;
}
.multi_tt .sec_title_lg{
  position: relative;
  z-index: 2;
}
.multi_tt .big_int{
  left: 50%;
  transform:translateX(-50%);
  top: 20px;
}
.home_service_items{
  margin-top: 80px;
}
.home_service_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
  padding: 30px 0;
}
.home_service_item:nth-child(n+2){
  padding-top: 60px;
}
.home_service_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_service_box1_title{
  display: flex;
  align-items: baseline;
}
.home_service_box1 .mainte_contents2_box1_num{
  position: relative;
  top: auto;
  left: auto;
}
.home_service_box1_tt{
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
}
.home_service_box1_sub{
  font-size: 20px;
  font-weight: 900;
  margin-top: 21px;
}
.home_service_box1 .content_desc{

}
.home_service_box1 .content_desc p{
  letter-spacing: 0;
}
.home_service_box2{
  width: 100%;
  order: 1;
}
.home_service_box2_img img{
  border-radius: 20px;
}
.home_service_box2_img:before{
  padding-top: 64.61%;
}
.home_service_box3{
  width: 100%;
  position: relative;
  margin-top: 40px;
  order: 3;
}
.home_service_box3_img img{
  border-radius: 20px;
}
.home_service_box3_img:before{
  padding-top: 600px;
}
.home_service_box3_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:rgba(50,100,147,0.55);
  pointer-events: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.home_service_box3_content{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  padding: 16px;
}
.home_service_box3_txt1{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.home_service_box3_txt2{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.home_service_box3_txt3{
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: #fff;
  color: var(--main-color);
  padding: 0px 16px;
  margin-top: 10px;
}
.home_service_box3_content .content_desc{
  color: #fff;
  font-size: 15px;
  line-height: 2;
  margin-top: 10px;
}
.home_service_box3_content .content_desc p{
  letter-spacing: 0.2em;
}
.home_service_box3 .circle_btn{
  position: absolute;
  top: 85%;
  right: 50%;
  transform: translateY(-50%) translateX(50%);
  z-index: 1;
  margin-top: 0;
}

/*事例*/

.pg_home .section.sec3 .content_desc{
  color: #fff;
}
.hoime_cases_box{
  position: relative;
}
.works_list.home{
  margin-top: 51px;
}
.works_list.home .webgene-blog{
  padding: 0 15px;
}
.works_list.home .webgene-item{

}
.works_sub_box .container{
  position: relative;
}
.works_sub_box .big_int{
  top: 73px;
  right: 0;
}

/*お知らせ*/
.title_over_box{
  position: relative;
}
.title_over_box .big_int{
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.title_over_box .sec_title{
  letter-spacing: 0;
  text-align: left;
  color: #181818;
  position: relative;
  z-index: 2;
}
.title_over_box .circle_btn{
  position: absolute;
  z-index: 2;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.home_news_box.news_list{
  margin-top: 60px;
}
.home_news_box.news_list .webgene-item a{
  flex-wrap: wrap;
}
.home_news_box.news_list .webgene-item .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-left: 0;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding-right: 30px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_home .section.sec1:after{
    top: 77%;
  }

  /*お知らせ*/
  .title_over_box .sec_title{
    text-align: center;
  }
  .title_over_box .big_int{
    width: 100%;
    text-align: center;
  }
}
@media (min-width:768px){

  /*about*/
  .home_about_wrap{
    padding-bottom: 140px;
  }
  .home_about_box1{
    margin-top: 30px;
  }
  .home_about_box1 .content_desc{

  }
  .home_about_box1 .circle_btn{
    margin-top: 44px;
  }
  .home_about_box2{

  }
  .home_about_box2_img:before{

  } 
  .home_about_box2_img img{

  }

  /*サービス*/
  .multi_tt .big_int{
    left: 50%;
    transform:translateX(-50%);
    top: 20px;
  }
  .home_service_items{
    margin-top: 160px;
  }
  .home_service_item{
    padding: 60px 0 71px;
  }
  .home_service_box1{
    margin-top: 30px;
  }
  .home_service_box1_title{

  }
  .home_service_box1 .mainte_contents2_box1_num{

  }
  .home_service_box1_tt{

  }
  .home_service_box1_sub{
    font-size: 28px;
  }
  .home_service_box1 .content_desc{
    margin-top: 34px;
  }
  .home_service_box2{

  }
  .home_service_box2_img img{

  }
  .home_service_box2_img:before{

  }
  .home_service_box3{
    margin-top: 63px;
  }
  .home_service_box3_img{

  }
  .home_service_box3_img:before{
    padding-top: 700px;
  }
  .home_service_box3_img:after{

  }
  .home_service_box3_content{
    top: 50%;
  }
  .home_service_box3_txt1{
    font-size: 24px;
  }
  .home_service_box3_txt2{
    font-size: 40px;
  }
  .home_service_box3_txt3{
    font-size: 28px;
    padding: 0px 85px;
  }
  .home_service_box3_content .content_desc{

  }

  /*事例*/
  .pg_home .section.sec3 .content_desc{
    color: #fff;
  }
  .works_list.home{
    margin-top: 51px;
  }
  .works_list.home .webgene-blog{
    padding: 0 30px;
  }
  .works_list.home .webgene-item{
    width: 33.333%;
  }
  .works_sub_box .big_int{
    top: 80px;
    right: 54px;
  }

  /*お知らせ*/
  .title_over_box{

  }
  .title_over_box .big_int{

  }
  .title_over_box .sec_title{
    font-size: 30px;
  }
  .title_over_box .circle_btn{
    margin-top: 0;
  }
  .home_news_box.news_list{
    margin-top: 165px;
  }
}
@media (min-width:1024px){
  /*about*/
  .home_about_wrap{
    padding-bottom: 0;
  }
  .home_about_box1{
    width: 40.46%;
    order: 1;
    margin-top: 0;
  }
  .home_about_box1 .content_desc{

  }
  .home_about_box2{
    width: 49.01%;
    padding-top: 75px;
    order: 2;
  }
  .home_about_box2_img:before{

  } 
  .home_about_box2_img img{

  }
  .home_about_wrap .big_int{
    right: 0;
    bottom: 0;
  }

  /*サービス*/
  .home_service_items{
    margin-top: 223px;
  }
  .home_service_item{

  }
  .home_service_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_service_box1_title{

  }
  .home_service_box1 .mainte_contents2_box1_num{
    font-size: 120px;
  }
  .home_service_box1_tt{
    font-size: 21px;
  }
  .home_service_box1_sub{
    font-size: 34px;
  }
  .home_service_box1 .content_desc{

  }
  .home_service_box2{
    width: 42.76%;
    order: 2;
    padding-top: 20px;
  }
  .home_service_box2_img img{

  }
  .home_service_box2_img:before{

  }
  .home_service_box3{

  }
  .home_service_box3_img{

  }
  .home_service_box3_img:before{
    padding-top: 340px;
  }
  .home_service_box3_img:after{

  }
  .home_service_box3_content{
    padding: 0;
  }
  .home_service_box3_txt1{
    font-size: 30px;
  }
  .home_service_box3_txt2{
    font-size: 48px;
  }
  .home_service_box3_txt3{
    font-size: 38px;
  }
  .home_service_box3_content .content_desc{
    text-align: center;
  }
  .home_service_box3 .circle_btn{
    position: absolute;
    top: 50%;
    right: 4.5%;
    transform: translateY(-50%) translateX(0);
    z-index: 1;
    margin-top: 0;
  }
  .multi_tt .big_int {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }

  /*事例*/
  .pg_home .section.sec3 .content_desc{
    color: #fff;
  }
  .works_list.home{
    margin-top: 51px;
  }
  .works_list.home .webgene-item{
    width: 20%;
  } 
  .works_list.home .webgene-item:nth-child(n+4){
    margin-top: 0; 
  }
  .hoime_cases_box{
    padding-right: 250px;
  }
  .hoime_cases_box .circle_btn{
    position: absolute;
    top: 53%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .works_sub_box .big_int{
    top: 60px;
    right: 54px;
  }

  /*お知らせ*/
  .title_over_box{

  }
  .title_over_box .big_int{

  }
  .title_over_box .sec_title{
    font-size: 50px;
    padding-top: 15px;
  }
  .title_over_box .circle_btn{

    top: 65%;
  }
  .home_news_box.news_list{
    margin-top: 165px;
  }
  .home_news_box.news_list .webgene-item a{
    padding: 25px 2px 23px;
  }
}
@media (min-width:1200px){
  .multi_tt .big_int {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }

  /*事例*/
  .works_sub_box .big_int{
    top: 20px;
    right: 54px;
  }

  /*お知らせ*/
  .title_over_box .sec_title{
    font-size: 50px;
  }

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

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

}
@media (min-width:1700px){
  .multi_tt .big_int {
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
  }
}



/*******************************
*　about
********************************/

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  padding-top: 80px;
  position: relative;
}
.pg_about .section.sec3{
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
}
.pg_about .section.sec3:before{
  content: "";
  display: block;
  width: 250px;
  aspect-ratio: 879 / 661;
  background-image: url(/system_panel/uploads/images/about_lefty_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -110px;
  z-index: -1;
}
.pg_about .section.sec4{
  padding-bottom: 80px;
  position: relative;
}


/*背景*/
.pg_about .right_bg:before{
  background-image: url(/system_panel/uploads/images/about_side_bg.png);
  width: 22.5%;;
  aspect-ratio:432 / 1429;
  top: -90px;
}
@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{
    padding-top: 285px;
  }
  .pg_about .section.sec3{
    padding-top: 160px;
    padding-bottom: 180px;
  }
  .pg_about .section.sec3:before{
    width: 45.78%;
    bottom: -3%;;
  }
  .pg_about .section.sec4{
    padding-bottom: 100px;
  }

  /*背景*/
  .pg_about .right_bg:before{
    width: 22.5%;;
    aspect-ratio:432 / 1429;
    top: -100px;
  }
}
@media (min-width:1024px){
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 285px;
  }
  .pg_about .section.sec3{
    padding-top: 230px;
    padding-bottom: 180px;
  }
  .pg_about .section.sec3:before{
    bottom: -5%;;
  }
  .pg_about .section.sec4{
    padding-bottom: 150px;
  }

  /*背景*/
  .pg_about .right_bg:before{
    width: 22.5%;;
    aspect-ratio:432 / 1429;
    top: -300px;
  }
}
@media (min-width:1200px){
  .pg_about .section.sec3:before{
    bottom: -7%;;
  }

}
@media (min-width:1366px){
  .pg_about .section.sec3:before{
    bottom: -10%;;
  }
}
@media (min-width:1450px){
  /*背景*/
  .pg_about .right_bg:before{
    width: 22.5%;;
    aspect-ratio:432 / 1429;
    top: -510px;
  }

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


}

/* メイン部分 */
.page_hdr_wrap.about{

}
.page_hdr_wrap.about .page_hdr_box1{

}
.page_hdr_wrap.about .page_hdr_box2{

}
.page_hdr_wrap.about .page_hdr_box1_top{
  width: 65.16%;
}
.page_hdr_wrap.about .page_hdr_box1_top .img_fit:before{
  padding-top: 59.04%;
}
.page_hdr_wrap.about .page_hdr_box1_btm{
  width: 45.16%;
}
.page_hdr_wrap.about .page_hdr_box1_btm .img_fit:before{
  padding-top: 62.85%;
}
.page_hdr_wrap.about .page_hdr_box1 .big_int{
  left: auto;
  right: 0;
}

/*サービス*/
.about_servicer_items{
  position: relative;
  margin-top: 100px;
}
.about_servicer_items:before{
  content: "";
  display: block;
  width: 100vw;
  height: 752px;
  background: var(--main-color);
  position: absolute;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
  top: 175px;
}
.about_servicer_item{

}
.about_servicer_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  border-radius: 30px;
}
.about_servicer_item_left{
  width: 100%;
  order: 2;
  margin-top: 30px;;
}
.about_servicer_item_left_tt{
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
}
.about_servicer_item .content_desc{
  margin-top: 14px;
}
.about_servicer_item .content_desc p{
  letter-spacing: 0;
}
.about_servicer_item_right{
  width: 100%;;
  order: 1;
}
.about_servicer_item_img{
  width: auto;
}

/*reason*/
.cleaning_contents2_items.about{
  margin-top: 50px;
}
.cleaning_contents2_items.about .cleaning_contents2_item{
  margin-top: 0;
  border-bottom: 1px solid #bfbfbf;
  padding: 50px 0;
}
.cleaning_contents2_items.about .cleaning_contents2_item:last-child{
  border-bottom: 0;
}
.cleaning_contents2_items.about .cleaning_contents2_box2_title{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 0;
}
.about_reason_num{
  width: 60px;
}
.about_reason_tt{
  font-size:18px;
  font-weight: 900;
  color: #181818;
  padding-left: 10px;
}
.cleaning_contents2_items.about .cleaning_contents2_box1_img:before{
  padding-top: 70.58%;
}
.cleaning_contents2_items.about .content_desc{
  margin-top: 3px;
}
.cleaning_contents2_items.about .content_desc p{
  letter-spacing: 0;
}

/*チーム*/
.about_team_items{
  margin-top: 50px;
}
.about_team_item{

}
.about_team_item_inner{

}
.about_team_item_img img{
  border-radius: 20px 20px 0 0;
}
.about_team_item_img:before{
  padding-top: 66.66%;
}
.about_team_item_content{
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 16px;
}
.about_team_item_meta{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 5px 21px;
}
.about_team_item_title{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.66em;
  letter-spacing: 0;
  color: var(--main-color);
  margin-top: 11px;
}
.about_team_item_title p{
  letter-spacing: 0;
}
.about_team_item .content_desc{
  margin-top: 10px;
}

.pg_about .section.sec4 .big_int{
  width: 100%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: -105px;
}
@media (max-width:767px){
  .multi_tt.service .big_int{
    top: 55px;
  }  

  .about_servicer_item_right{
    text-align: center;
  }
  .about_servicer_item_inner{
    padding: 30px 36px;
  }

  .cleaning_contents_wrap .swiper{
    overflow: visible;
    position: relative;
  }
  .about_servicer_items:before{
    display: none;
  }
  .cleaning_contents_wrap{
    position: relative;
    padding-bottom: 30px;
  }
  .cleaning_contents_wrap:before{
    content: "";
    display: block;
    width: 100vw;
    height: 50%;
    background: var(--main-color);
    position: absolute;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
    bottom: 0;
  }
  .about_servicer_items{
    margin-top: 80px;
  }

}
@media (min-width:768px){
  /* メイン部分 */
  .page_hdr_wrap.about{

  }
  .page_hdr_wrap.about .page_hdr_box1{

  }
  .page_hdr_wrap.about .page_hdr_box2{

  }

  /*サービス*/
  .about_servicer_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-15px;
    margin-top: 160px;
  }
  .about_servicer_items:before{
    height: 1200px;
    top: 320px;
  }
  .about_servicer_item{
    width: 50%;
    padding-inline:15px;
  }
  .about_servicer_item:nth-child(n+3){
    margin-top: 50px;
  }
  .about_servicer_item_inner{
    height: 100%;
    padding: 43px 40px 43px 47px;
  }
  .about_servicer_item_left{
    width: 100%;
    order: 2;
    margin-top: 30px;;
  }
  .about_servicer_item_left_tt{
    font-size: 20px;
  }
  .about_servicer_item .content_desc{

  }
  .about_servicer_item_right{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;;
    order: 1;
  }
  .about_servicer_item_img{

  }
  .about_servicer_item .read_more{
    margin-top: 31px;
  }
  .about_servicer_item .read_more.bl a{
    width: 260px;
  }
  .about_servicer_item .read_more a{
    margin-bottom: 10px;
  }

  /*reason*/
  .multi_tt.service .big_int {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
  }
  .cleaning_contents2_items.about{
    margin-top: 100px;
  }
  .cleaning_contents2_items.about .cleaning_contents2_item{
    margin-top: 0;
    padding: 76px 0 70px;
  }
  .cleaning_contents2_items.about .cleaning_contents2_box2_title{
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  .about_reason_num{
    width: auto;
  }
  .about_reason_tt{
    font-size: 24px;
    padding-left: 16px;
  }

  /*チーム*/
  .about_team_items{
    display: flex;
    flex-wrap:wrap;
    margin-inline:-15px;
    margin-top: 70px;
  }
  .about_team_item{
    width: 50%;
    padding-inline:15px;
  }
  .about_team_item:nth-child(n+3){
    margin-top: 30px;
  }
  .about_team_item_inner{

  }
  .about_team_item_content{
    padding: 29px 16px 42px 16px;
  }
  .about_team_item_img img{

  }
  .about_team_item_img:before{

  }
  .about_team_item_meta{
    font-size: 18px;
    padding: 5px 21px;
  }
  .about_team_item_title{
    font-size: 20px;
  }
  .about_team_item .content_desc{

  }
  .pg_about .section.sec4 .big_int{
    bottom: -150px;
  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .page_hdr_wrap.about{

  }
  .page_hdr_wrap.about .page_hdr_box1{
    order: 2;
  }
  .page_hdr_wrap.about .page_hdr_box2{
    order: 1;
  }

  /*サービス*/
  .about_servicer_items{
    margin-top: 223px;
  }
  .about_servicer_items:before{
    height: 1100px;
    top: 320px;
  }
  .about_servicer_item{

  }
  .about_servicer_item_inner{
    padding: 43px 40px 43px 47px;
  }
  .about_servicer_item_left{

  }
  .about_servicer_item_left_tt{
    font-size: 24px;
  }
  .about_servicer_item .content_desc{

  }
  .about_servicer_item_right{

  }
  .about_servicer_item_img{

  }

  /*reason*/
  .multi_tt.service .big_int {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }
  .cleaning_contents2_items.about{
    margin-top: 145px;
  }
  .cleaning_contents2_items.about .cleaning_contents2_item{
    margin-top: 0;
  }
  .cleaning_contents2_items.about .cleaning_contents2_box1{
    width: 44.73%;
  }
  .cleaning_contents2_items.about .cleaning_contents2_box2{
    width: 49.01%;
    padding-top: 42px;
  }
  .about_reason_num{
    width: 70px;;
  }
  .about_reason_tt{
    font-size: 23px;
  }

  /*チーム*/
  .about_team_items{
    margin-top: 85px;
  }
  .about_team_item{
    width: 33.333%;
  }
  .about_team_item:nth-child(n+3){
    margin-top: 0;
  }
  .about_team_item:nth-child(n+4){
    margin-top: 30px;;
  }
  .about_team_item_inner{

  }
  .about_team_item_content{
    padding: 29px 16px 42px 16px;
  }
  .about_team_item_img img{

  }
  .about_team_item_img:before{

  }
  .about_team_item_meta{
    font-size: 17px;
  }
  .about_team_item_title{
    font-size: 20px;
    margin-right: -16px;
  }
  .about_team_item .content_desc{

  }
  .pg_about .section.sec4 .big_int{
    bottom: -240px;
  }
}
@media (min-width:1200px){
  .about_servicer_items:before{
    height: 980px;
    top: 270px;
  }
  .about_servicer_item_left {
    width: 40%;
    order: 1;
    margin-top: 0;
  }
  .about_servicer_item_right{
    width: auto;
    order: 2;
    justify-content: center;
  }

  /*チーム*/
  .about_team_items{
    margin-inline:-15px;
  }
  .about_team_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .about_team_item_title{
    font-size: 24px;
  }
  .about_team_item_meta{
    font-size: 18px;
  }
  .about_team_item_content{
    padding: 29px 42px 42px 32px;
  }
}
@media (min-width:1366px){
  /*サービス*/
  .about_servicer_items{
    margin-inline:-40px;
  }
  .about_servicer_items:before{
    height: 880px;
    top: 220px;
  }
  .about_servicer_item{
    padding-inline:40px;
  }
  .about_servicer_item_inner{

  }
  .about_servicer_item_left{

  }
  .about_servicer_item_left_tt{

  }
  .about_servicer_item .content_desc{

  }
  .about_servicer_item_right{

  }
  .about_servicer_item_img{

  }

  /*reason*/
  .about_team_items{
    margin-inline:-42.5px;
  }
  .about_team_item{
    width: 33.333%;
    padding-inline:42.5px;
  }
  .about_reason_tt{
    font-size: 34px;
  }
  .about_reason_num{
    width: auto;
  }
}
@media (min-width:1450px){
  .about_servicer_item_left {
    width: 45%;
  }
}

@media (min-width:1515px){
  .about_servicer_item_left {
    width: 55.27%;
  }
  .about_servicer_items:before{
    content: "";
    display: block;
    width: 100vw;
    height: 752px;
    background: var(--main-color);
    position: absolute;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
    top: 175px;
  }
}
@media (min-width:1700px){
  .page_hdr_wrap.about .content_desc{
    padding-right: 110px;
  }

}



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

/* セクション設定 */
.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){


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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

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

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


}






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

/* セクション設定 */
.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){


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


}
