@charset "UTF-8";

:root {
  --main-color: #59bbff;
  --main-color: #ecb622;
  --sub-color: #e7161a;
}

@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 - 50vw);
  }
}
@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}

/* 基本フォント: ゴシック */
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;
}

#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: inherit;*/
  color: var(--main-color);
}
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;
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  /*  padding-top:40px;*/
  height: calc(100vh - 58px - 100px);
}
.mv .container{
  padding-top: 50px;
}
.mv:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #181818;
  position: absolute;
  top: 0;
}
.mv_img{

  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}
.mv_main_img{
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -50px;
  margin-top: 40px; 
}
.mv_main_img .container{
  position: relative;
}
.mv_main_img .img_fit{
  margin-left: calc(50% - 50vw);
}


/* MVテキスト */
.mv_text{
  color: #fff;
  position: relative;
  z-index: 2;
  position: relative;
  padding-left: 20px;
}
.mv_text:before{
  content: "";
  display: block;
  width: 5px;
  height: 200px;
  background: var(--main-color);
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
}
.mv_text1{
  font-size: 24px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2em;

}
.mv_text1 strong{
  font-weight: 500;
  color: var(--main-color);
}
.mv_text2{
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}
.mv_main_img{

}
.mv_main_img .img_fit:before{

}

.mv_schroll{
  width: 5.9%;
  position: absolute;
  right:-2.6%;
  height: 100%;
  bottom: 241px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mv_schroll_txt{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;

}
.mv_schroll_txt p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}
.mv_schroll_txt p:after{
  content: "";
  display: block;
  width: 1px;
  aspect-ratio:1 / 100;
  background-image: url(https://frontier-seikou.co.jp/system_panel/uploads/images/20250528181440963310.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 14px;
}



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

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

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

@media (max-width:767px){
  .mv{
    height: 510px;
  }
  .mv .container{
    padding-top: 20px;
  }
  .mv_main_img .img_fit:before{
    padding-top: 400px;
  }

  .mv_schroll{
    width: 100%;
    z-index: 1;
    bottom: -58px;
    right: 0;
  }
  .mv_schroll_txt{
    font-size: 14px;
  }
  .mv_schroll_txt p:after{
    aspect-ratio: 1 / 50;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
    height: 600px;
    /*    padding-top: 70px;*/
  }
  .mv .container{
    padding-top:145px;
  }
  .mv_img{
  }
  .mv_main_img{
    bottom: -142px;
  }
  .mv_main_img .img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_text{
    padding-left: 50px;
  }
  .mv_text1{
    font-size: 40px;

  }
  .mv_text:before{
    width: 10px;
    height: 300px;
    top: 10px;
  }
  .mv_text2{
    font-size: 24px;
    margin-top: 27px;
  }
  .mv_main_img{
    margin-top: 60px; 
  }
  .mv_main_img .img_fit:before{

  }
  .mv_schroll{
    bottom: 165px;
    right:-3.6%;
  }

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


  /* MV */
  .mv{
    height: 800px;
    /*    padding-top: 130px;*/
  }
  .mv .container{
    padding-top: 170px;
  }
  .mv_img{
  }
  .mv_main_img .img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_text{
    padding-left: 70px;
  }
  .mv_text1{
    font-size: 60px;
  }
  .mv_text:before{
    height: 400px;
    top: 15px;
  }
  .mv_text2{
    font-size: 30px;
  }
  .mv_main_img{
    margin-top: 96px; 
  }
  .mv_main_img .img_fit:before{

  }
  .mv_schroll{
    bottom: 165px;
    right:-3.6%;
  }

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

  /* MV */
  .mv{
    height: 1160px;
  }
  .mv .container{
    padding-top: 243px;
  }
  .mv_img{
  }
  .mv_main_img .img_fit:before{
    padding-top: 750px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_text1{
    font-size: 70px;
  }
  .mv_text:before{
    height: 600px;
    top: 18px;
  }
  .mv_schroll{
    bottom: 241px;
    right:-20px;
  }
}
@media (min-width:1540px){
  .mv{
    height: 1255px;
  }

  .mv_text1{
    font-size: 100px;
  }
  .mv_text:before{
    top: 22px;
  }
}
@media (min-width:1690px){
  .mv_schroll{
    right:-2.6%;
  }
}

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

/* サイドバー */
.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;
  }

}


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


/* テーブル用 */
.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{
  text-align: center;
  max-width: 350px;
  width: 100%;
  padding: 27px 0 30px;
  /*  border: 1px solid #212121;
    border-radius: 45px;*/
  background: transparent;
  color: #181818;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  border-radius: 50px;
  z-index: 1;
}
.read_more a:hover{
  /*background: var(--main-color);*/
  /*border-radius: 50px;*/
}
.read_more .read_more_inner:before{
  content: "";
  display: block;
  width: 99.43%;
  height: 39px;
  border: 1px solid #181818;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
}
.read_more .read_more_inner:after{
  content: "";
  display: block;
  width: 99.43%;
  height: 39px;
  border: 1px solid #181818;
  border-top: 0;
  border-radius: 0 0 50px 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.read_more a:hover{
  color: #181818;
}
.read_more a:after{
  content: "→";
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 18px;
  background: var(--main-color);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  top: 52%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  color: #181818;
}
.read_more a:hover:after{
  color: var(--main-color);
}
.read_more a p{
  /*letter-spacing: 0;*/
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.read_more a:hover p{
  transform: scale(1.1);
}

.ftr1_box2 .read_more .read_more_inner:before,
.ftr1_box2 .read_more .read_more_inner:after{
  border-color: #FFF;
}


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

.sec_title_en{
  line-height: 1!important;
  margin-top: 14px;
}


/* セクション */
.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;
  }

  .read_more{
    margin-top: 40px;
  }
  .read_more a{
    padding: 14px 0;
  }
  .read_more .read_more_inner:before{
    height: 25px;
  }
  .read_more .read_more_inner:after{
    height: 25px;
  }
}
@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: 350px;
    font-size: 20px;
    padding: 29px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*content: "→";*/
    right: 18px;
    padding-bottom: 2px;
  }
  .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;
  }*/

  .read_more a:after{
    right: 32px;
    padding-bottom: 0;
  }
  
  

  .ftr1_box2 .read_more .read_more_inner:before,
  .ftr1_box2 .read_more .read_more_inner:after{
    width: 100%;
  }
  .ftr1_box2 .read_more .read_more_inner:before{
    height: 28px;
    border-radius: 35px 35px 0 0;
    border: 1px solid #fff;
    border-bottom: 0;
  }
  .ftr1_box2 .read_more .read_more_inner:after{
    height: 28px;
    border-radius: 0 0 35px 35px;
    border: 1px solid #fff;
    border-top: 0;
  }
  .ftr1_box2 .read_more a:hover{
    border-radius: 28px;
  }/**/
}
@media (min-width:1200px){

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


}



/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
}
.body_home .footer{
  margin-top: 0;
}
.pg_home .section.sec1{
  padding-top: 120px;;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 34.37%;
  height: 50px;
  /*background:rgba(255,255,255,0.9);*/
  /*background:rgba(255,255,255,1);*/
  background-color: #FFF;
  background-image: 
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_dotted.png),
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_white.png)
    ;
  background-repeat: repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pg_home .section.sec2{
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  /*background:rgba(255,255,255,0.9);*/
  background-color: #FFF;
  background-image: 
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_dotted.png),
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_white.png)
    ;
  background-repeat: repeat;
}
.pg_home .section.sec2:after{
  content: "";
  display: block;
  width: 34.37%;
  height: 50px;
  background:rgba(0,0,0,0.9);
  
  position: absolute;
  bottom: 0;
  left: 0;
}
.pg_home .section.sec3{
  padding: 50px 0 80px;
  background: #181818;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3 .container{
  position: relative;
}
.bg1{
  width: 1920px;
  height: 2702px;
  background-image: url(https://frontier-seikou.co.jp/system_panel/uploads/images/20250529121039893140.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
}
.bg3{
  width: 1920px;
  height:100%;
  background-image: url(https://frontier-seikou.co.jp/system_panel/uploads/images/bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
}
.pg_home .section.sec4{
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 65.52%;
  height: 50px;
  background:rgba(0,0,0,0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.pg_home .section.sec4 .container{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec5{
  position: relative;
  z-index: 1;
  /*background:rgba(255,255,255,0.9);*/
  background-color: #FFF;
  background-image: 
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_dotted.png),
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_white.png)
    ;
  background-repeat: repeat;
  padding-bottom: 70px;;
}
.pg_home .section.sec6{
  background: #181818;
  padding-top: 80px;
  padding-bottom: 50px;
}
.pg_home .section.sec7{
  background: #181818;
  position: relative;
  padding-bottom:80px;
}
.pg_home .section.sec7:before{
  content: "";
  display: block;
  width: 100%;
  height: 39.56%;;;
  background: #181818;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
}
.pg_home .section.sec7:after{
  content: "";
  display: block;
  width: 100%;
  height: 60.43%;;;
  background: #fff;
  /*background-image: -moz-linear-gradient( -90deg, rgb(245,245,245) 9%, rgb(192,192,192) 65%);*/
  background-image: -webkit-linear-gradient( -90deg, rgb(245,245,245) 9%, rgb(192,192,192) 65%);
  /*background-image: -ms-linear-gradient( -90deg, rgb(245,245,245) 9%, rgb(192,192,192) 65%);*/
  background-image: 
    url(https://frontier-seikou.co.jp/system_panel/uploads/images/sec_bg_dotted.png), -webkit-linear-gradient( -90deg, rgb(245,245,245) 9%, rgb(192,192,192) 65%)
    ;
  background-repeat: repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
}


/*about*/
.sec_sub_title{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6em;
  margin-top: 30px;
}
.sec_sub_title.left{
  text-align: left;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height:2em;
  text-align: justify;
  margin-top: 20px;
}
.home_about_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 50px;
}
.home_about_item{
  padding: 0 5px;
}
.home_about_item_img:before{
  padding-top: 67.11%;
}

/*service*/
.home_service_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_service_box1{
  width: 100%;
}
.home_service_box1 .sec_title{

}
.home_service_box1 .sec_sub_title{

}
.home_service_box1 .content_desc{

}
.home_service_box1 .read_more{

}
.home_service_box2{
  width: 100%;
  position: relative;
  margin-top: 50px;;
}
.home_service_box2_top{
  width: 47.09%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.home_service_box2_pos1 .home_service_box2_img:before,
.home_service_box2_top .home_service_box2_img:before{
  padding-top: 123.28%;
}
.home_service_box2_btm{
  width: 73.54%;
  margin-top: 132px;
  position: relative;
}
.home_service_box2_pos2 .home_service_box2_img:before,
.home_service_box2_btm .home_service_box2_img:before{
  padding-top: 105.26%;
}
.home_service_box2_pos1 .home_service_box2_img,
.home_service_box2_pos2 .home_service_box2_img{
  background: var(--main-color);
}
.home_service_box2_pos1{
  width: 47.09%;
  position: absolute;
  top: -7px;
  right: 1.94%;;
}
.home_service_box2_pos2{
  width: 100%;
  position: absolute;
  bottom: -7px;
  left: 1.94%;; 
}

/*未来*/
.home_feature_outer{
  position: relative;
}
.home_feature_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_feature_top_left{

}
.home_feature_top_left .sec_title{
  color: #fff;
}
.home_feature_top_right{

}
.home_feature_top_right .content_desc{
  color: #fff;
}

.home_feature_box{
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
  position: relative;
}
.home_feature_items{
  display: flex;
  flex-wrap: nowrap;
}
.home_feature_item{

}
.home_feature_items .swiper-slide{
  width: 200px;
}
.home_feature_item_inner{
  position: relative;
}
.home_feature_item_img:before{
  padding-top: 85.47%;
}
.home_feature_item_tt{
  width: 100%;
  text-align: center;
  background:rgba(255,255,255,0.7);
  font-size: 17px;
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 5px;
}
/*swiper*/
.pg_home .section.sec3 .swiper-horizontal > .swiper-pagination-progressbar,
.pg_home .section.sec3 .swiper-pagination-progressbar.swiper-pagination-horizontal{
  top: auto;
  bottom: 0;
  height: 1px;
}
.pg_home .section.sec3 .swiper-pagination-progressbar {
  background-color: #a1a1a1;
}

.pg_home .section.sec3 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--main-color);
}

.pg_home .section.sec3 .swiper-pagination-bullets.swiper-pagination-horizontal{
  display: flex;
  top: 0;
}
.pg_home .section.sec3 .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet{
  background-color: #a1a1a1;
  width: 100%;
  height: 1px;
  margin: 0;
}
.pg_home .section.sec3 .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active{
  background-color: var(--main-color);
}

.slide_pagenation{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.slide_pagenation_left{
  width: 86.51%;
  position: relative;
}
.slide_pagenation_right{
  width: 7.43%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #181818;
}
.slide-prev,
.slide-next{
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  aspect-ratio:1 / 1;
  transition: 0.2s all;
}
.slide-prev.swiper-button-disabled,
.slide-next.swiper-button-disabled{
  visibility: hidden;
}
.slide-prev:hover,
.slide-next:hover{
  background: var(--main-color);
  cursor: pointer;
}
.slide_pagenation_right .slide-prev:before{
  content: "←";
  font-family: "Zen Old Mincho", san-serif;
  font-weight: 900;
}
.slide_pagenation_right .slide-next:before{
  content: "→";
  font-family: "Zen Old Mincho", san-serif;
  font-weight: 900;
}

/*設備*/
.equip_box2_img:before{
  padding-top: 114.2%;
}

/*採用*/
.home_recruit_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_recruit_wrap .home_service_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_recruit_wrap .home_service_box2{
  width: 100%;
  order: 1;
  margin-top: 0;
}
.home_recruit_img{

}
.home_recruit_img:before{
  padding-top: 88.92%;
}

/*協力会社*/
.home_partner_wrap{
  position: relative;
  border: 2px solid #fff;
}
.home_partner_img:before{
  padding-top: 550px;
}
.home_partner_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_partner_inner{
  max-width: 1110px;
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  padding: 0 16px;
}
.home_partner_title{
  color: #fff;
  text-align: center;
}
.home_partner_title strong{
  /*color:#59bbff;*/
  color: var(--main-color);
}
.home_partner_title_en{
  font-size: 32px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.home_partner_title_ja{
  width: 100%;
  display: inline-block;
  background: var(--main-color);
  color: #181818;
  font-size: 17px;
  font-weight: 700;
  padding: 2px;
  margin-top: 16px;
}
.home_partner_wrap .sec_sub_title{

}
.home_partner_wrap .sec_sub_title p{
  letter-spacing: 0;
}
.home_partner_wrap .content_desc{

}
.home_partner_wrap .read_more a{
  color: #fff;
}
.home_partner_wrap .read_more .read_more_inner:before{
  border: 1px solid #fff;
  border-bottom: 0;
}
.home_partner_wrap .read_more .read_more_inner:after{
  border: 1px solid #fff;
  border-top: 0;
}

/*新着情報*/
.home_news_wrap{
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 16px;
  position: relative;
  z-index: 1;
}
.home_news_box1{
  width: 100%;
}
.home_news_box2{
  width: 100%;
  margin-top: 30px;
}
.home_news_wrap .read_more{
  width: 100%;;
}
.home_news_wrap .read_more a{
  color: #181818;
}


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

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

}
@media (max-width:767px){
  .bg1{
    background-size: cover;
  }
  .bg3{
    background-size: cover;
    height: 100%;
  }


  /*swiper*/
  .slide_pagenation_left{
    width: 64.51%;
  }
  .slide_pagenation_right{
    width: 28.43%;
  }

  .home_service_wrap.equip .home_service_box1{
    order: 2;
    margin-top: 20px;
  }
  .home_service_wrap.equip .home_service_box2{
    order: 1;
  }


}
@media (min-width:768px){
  .body_home{
    padding-top: 0;
  }
  .pg_home .section.sec1{
    padding-top: 200px;;
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec3{
    padding: 100px 0 150px;
  }
  .pg_home .section.sec4{
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 0;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 0;
    padding-bottom: 100px;
  }


  .pg_home .section.sec1:after,
  .pg_home .section.sec2:after,
  .pg_home .section.sec4:before{
    height: 50px;
  }

  /*about*/
  .sec_sub_title{
    font-size: 22px;
    margin-top: 55px;
  }
  .content_desc{

  }
  .home_about_wrap .content_desc{
    margin-top: 31px;
  }
  .home_about_items{
    margin-inline:-10px;
    margin-top: 60px;
  }
  .home_about_item{
    padding: 0 10px;
  }
  .home_about_item_img:before{

  }
  .home_about_wrap .read_more{
    margin-top: 60px; 
  }

  /*service*/
  .home_service_items{

  }
  .home_service_box1{

  }
  .home_service_box1 .sec_title{

  }
  .home_service_box1 .sec_sub_title{

  }
  .home_service_box1 .content_desc{
    margin-top: 50px;
  }
  .home_service_box1 .read_more{

  }
  .home_service_box2{
    margin-top: 50px;;
  }
  .home_service_box2_top{

  }
  .home_service_box2_img .home_service_box2_img:before{

  }
  .home_service_box2_btm{

  }
  .home_service_box2_btm .home_service_box2_img:before{

  }
  .home_service_box2_pos1{

  }
  .home_service_box2_pos2{
    left: 2.94%;; 
  }

  /*未来*/
  .home_feature_top{

  }
  .home_feature_top_left{

  }
  .home_feature_top_left .sec_title{

  }
  .home_feature_top_right{

  }
  .home_feature_top_right .content_desc{

  }

  .home_feature_box{
    margin-top: 100px;
  }
  .home_feature_items{

  }
  .home_feature_item{

  }
  .home_feature_items .swiper-slide{
    width: 300px;
  }
  .home_feature_item_inner{

  }
  .home_feature_item_img:before{

  }
  .home_feature_item_tt{
    font-size: 20px;
    padding: 10px;
  }

  /*swiper*/
  .slide_pagenation{
    margin-top: 50px;
  }
  .slide_pagenation_left{
    width: 76.51%;
  }
  .slide_pagenation_right{
    width: 15.43%;
  }

  /*設備*/
  .home_service_wrap.equip{

  }
  .home_service_wrap.equip .home_service_box1{
    width: 49.01%;
    order: 2;
  }
  .home_service_wrap.equip .home_service_box2{
    width: 44.73%;
    order: 1;
  }
  .home_service_wrap.equip .sec_title_en{
    font-size:60px;
  }

  /*採用*/
  .home_recruit_wrap{

  }
  .home_recruit_wrap .home_service_box1{
    margin-top: 50px;
  }
  .home_recruit_wrap .home_service_box2{

  }
  .home_recruit_img{

  }
  .home_recruit_img:before{

  }

  /*協力会社*/
  .home_partner_wrap{

  }
  .home_partner_img:before{
    padding-top: 600px;
  }
  .home_partner_inner{

  }
  .home_partner_title{
    text-align: center;
  }
  .home_partner_title_en{
    font-size: 59px;
  }
  .home_partner_title_ja{
    font-size: 18px;
    width: 85.78%;
    margin-top: 16px;
  }
  .home_partner_wrap .sec_sub_title{
    margin-top: 40px;
  }
  .home_partner_wrap .sec_sub_title p{
    letter-spacing: 0.075em;
  }
  .home_partner_wrap .content_desc{

  }

  /*新着情報*/
  .home_news_wrap{
    background: #fff;
    padding: 70px 50px;
  }
  .home_news_box1{
    width: 100%;
  }
  .home_news_box2{
    width: 100%;
    margin-top: 50px;;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 300px;;
    padding-bottom: 180px;
  }

  .pg_home .section.sec2{
    padding-top: 150px;
    padding-bottom: 220px;
  }
  .pg_home .section.sec3{
    padding: 154px 0 100px;
  }

  .pg_home .section.sec1:after,
  .pg_home .section.sec2:after,
  .pg_home .section.sec4:before{
    height: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 250px;
    padding-bottom: 152px;
  }
  .pg_home .section.sec5{
    padding-top: 0;
    padding-bottom: 130px;;
  }
  .pg_home .section.sec6{
    padding-top: 152px;
    padding-bottom: 145px;
  }
  .pg_home .section.sec7{
    padding-top: 0;
    padding-bottom: 195px;
  }

  /*about*/
  .sec_sub_title{
    font-size: 28px;
  }
  .content_desc{
    font-size: 17px;
  }
  .content_desc.center{
    text-align: center;
  }
  .home_about_items{
    margin-inline:-15px;
    margin-top: 70px;
  }
  .home_about_item{
    padding: 0 15px;
  }
  .home_about_item_img:before{

  }
  .home_about_wrap .read_more{
    margin-top: 80px; 
  }

  /*service*/
  .home_service_items{

  }
  .home_service_box1{
    width:44.73%;
  }
  .home_service_box1 .sec_title{

  }
  .home_service_box1 .sec_title .sec_title_ja{
    margin-top: 0;
  }
  .home_service_box1 .sec_sub_title{
    margin-top: 76px;
  }
  .home_service_box1 .content_desc{
    margin-top: 32px;
  }
  .home_service_box1 .read_more{
    margin-top: 68px;
  }
  .home_service_box2{
    width: 50.98%;
    margin-top: 0;
  }
  .home_service_box2_top{

  }
  .home_service_box2_img .home_service_box2_img:before{

  }
  .home_service_box2_btm{

  }
  .home_service_box2_btm .home_service_box2_img:before{

  }
  .home_service_box2_pos1{
    width: 47.09%;
    position: absolute;
    top: -5px;
    right: 0.94%;
  }
  .home_service_box2_pos2{
    width: 100%;
    position: absolute;
    left: 1.94%;; 
    bottom: -5px;
  }

  /*未来*/
  .home_feature_top{

  }
  .home_feature_top_left{
    width: 30.26%;
  }
  .home_feature_top_left .sec_title{

  }
  .home_feature_top_left .sec_title_en{
    font-size: 70px;
  }
  .home_feature_top_right{
    width: 61.51%;
  }
  .home_feature_top_right .content_desc{
    margin-top: 34px;
  }

  .home_feature_box{
    margin-top: 120px;
  }
  .home_feature_items{

  }
  .home_feature_items .swiper-slide{
    width: 400px;
  }
  .home_feature_item_inner{

  }
  .home_feature_item_img:before{

  }

  /*swiper*/
  .slide_pagenation_left{
    width: 86.51%;
  }
  .slide_pagenation_right{
    width: 10.43%;
  }

  /*設備*/
  .home_service_wrap.equip .sec_title_en{
    font-size:70px;
  }

  /*採用*/
  .home_recruit_wrap{

  }
  .home_recruit_wrap .home_service_box1{
    width: 44.73%;
    padding-top:72px;
    order: 1;
  }
  .home_recruit_wrap .home_service_box2{
    width: 50.98%;
  }
  .home_recruit_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_recruit_img:before{

  }
  .home_service_box2 {
    order: 2;
  }

  /*協力会社*/
  .home_partner_wrap{

  }
  .home_partner_img:before{
    padding-top: 600px;
  }
  .home_partner_inner{

  }
  .home_partner_title{

  }
  .home_partner_title_en{
    font-size: 80px;
  }
  .home_partner_title_ja{

  }
  .home_partner_wrap .sec_sub_title{
    margin-top: 40px;
  }
  .home_partner_wrap .content_desc{

  }

  /*新着情報*/
  .home_news_wrap{
    background: #fff;
    padding: 100px 30px;
  }
  .home_news_box1{
    width: 33.51%;
  }
  .home_news_box1 .sec_title_ja{
    margin-top: 0;
  }
  .home_news_box2{
    width: 62.63%;
  }
  .home_news_wrap .read_more{
    width: auto;
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .pg_home .section.sec5{
    padding: 0 0 80px;
  }

  .home_service_box2_pos1{
    width: 47.09%;
    position: absolute;
    top: -10px;
    right: 1.94%;;
  }
  .home_service_box2_pos2{
    width: 100%;
    position: absolute;
    bottom: -10px;
  }

  /*未来*/
  .home_feature_top_left .sec_title_en{
    font-size: 70px;
  }
  .home_feature_items .swiper-slide{
    width: 585px;
  }

  /*swiper*/
  .slide_pagenation_right{
    width: 10.43%;
  }

  /*設備*/
  .home_service_wrap.equip .sec_title_en{
    font-size: 100px;
  }

  /*協力会社*/
  .home_partner_title_en{
    font-size: 96px;
  }

  /*新着情報*/
  .home_news_wrap{
    padding: 100px 40px;
  }
  .home_news_box1{
    width: 36.51%;
  }
  .home_news_wrap .read_more{
    margin-top: 60px;
  }
}
@media (min-width:1540px){
  .pg_home .section.sec5{
    padding: 0;
  }

  .home_service_box2_pos1{
    width: 47.09%;
    position: absolute;
    top: -15px;
  }
  .home_service_box2_pos2{
    width: 100%;
    position: absolute;
    bottom: -15px;
  }

  /*未来*/
  .home_feature_top_left .sec_title_en{
    font-size: 100px;
  }

  /*swiper*/
  .slide_pagenation_right{
    width: 7.43%;
  }

  /*協力会社*/
  .home_partner_title_en{
    font-size: 100px;
  }

  /*新着情報*/
  .home_news_wrap{
    padding: 100px 80px;
  }
}


/*******************************
*　設備紹介
********************************/
.pg_equipment{
  position: relative;
  z-index: 1;
  
}
.pg_equipment + .footer{
  margin-top: 0;
}

.bg_equipment{
  width: 1920px;
  height: 6280px;
  background-image: url(https://frontier-seikou.co.jp/system_panel/uploads/images/aaaa.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size:cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg_equipment .section.sec1{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_equipment .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_equipment .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}

/*カテゴリ*/
.equipment_cate_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-15px;
  margin-top:40px;
}
.equipment_cate_item{
  width: 100%;
  padding: 0 15px;
}
.equipment_cate_item:nth-child(n+2){
  margin-top: 16px;
}
.equipment_cate_item_inner{
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 0;
  background: transparent;
  color: #181818;
  letter-spacing: 0.075em;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  border-radius: 50px;
  z-index: 1;
}
.equipment_cate_item_inner:after {
  content: "→";
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 18px;
  background: var(--main-color);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  top: 52%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
.equipment_cate_item_inner:hover{
  background: var(--main-color);
  color: #181818;
}
.equipment_cate_item_inner:hover:after{
  background: #fff;
  right: 20px;
}
.equipment_cate_item_inner .read_more_inner{

}
.equipment_cate_item_inner .read_more_inner:before{
  content: "";
  display: block;
  width: 99.43%;
  height: 25px;
  border: 1px solid #181818;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.equipment_cate_item_inner .read_more_inner:after{
  content: "";
  display: block;
  width: 99.43%;
  height: 25px;
  border: 1px solid #181818;
  border-top: 0;
  border-radius: 0 0 50px 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}



/*設備*/
.equipment_content{
  margin-top: 60px;
}
.equipment_content_sec{

}
.equipment_content_sec:nth-child(n+2){
  margin-top:70px;
}
.equipment_content_sec_title{
  background: #181818;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.equipment_content_sec_title_en{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
.equipment_content_sec_title_ja{
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
}
.equipment_content_sec_imgs{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 20px;
}
.equipment_content_sec_imgs_item{
  width: 33.333%;
  padding: 0 5px;
}
.equipment_content_sec_imgs_item:nth-child(n+4){
  margin-top: 10px;
}
.equipment_content_sec_imgs_item{
}
.equipment_content_sec_img{
  /*margin-bottom: 15px;*/
}
.equipment_content_sec_img.img_fit:before{
  padding-top: 200px;
  padding-top: 75%;
}
a.equipment_content_sec_img{
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
a.equipment_content_sec_img:after{
  content: "\f00e";
  font-weight: 400;
  font-family: "FontAwesome";
  line-height: 1;
  position: absolute;
  z-index: 1;
  bottom: 5px;
  right: 5px;
  color: #FFF;
}
a.equipment_content_sec_img img{
  transition: 0.2s all;
}
a.equipment_content_sec_img:hover img{
  transform: scale(1.02);
}

.equipment_content_items{
  display: flex;
  flex-wrap: wrap;

}
.equipment_content_item{
  width: 100%;
}
.equipment_content_item:nth-child(n+2){
  margin-top: 50px;
}
.equipment_content_item_inner{

}
.equipment_content_item_img:before{
  padding-top: 52.41%;
}
.equipment_content_item_tt{
  background-image: url(https://frontier-seikou.co.jp/system_panel/uploads/images/bg5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6px 23px;
}
.equipment_content_item_txt{
  font-size: 18px;
  font-weight: 700;
}
.equipment_content_item_detail{
  background: #fff;
  padding: 20px 16px;
  margin-top: 20px;
}
.equipment_content_item_detail_tt{
  text-align: center;
  position: relative;
}
.equipment_content_item_detail_tt:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
.equipment_content_item_detail_txt{
  display: inline-block;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.equipment_content_item_detail_box{
  margin-top: 23px;
}
.equipment_content_item_detail_list{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
}
.equipment_content_item_detail_list:nth-child(n+2){
  margin-top: 16px;
}
.equipment_content_item_detail_list1{
  min-width: 90px;
  line-height: 1;
  border-right: 1px solid;

}
.equipment_content_item_detail_list2{
  width: calc(100% - 90px);
  line-height: 1.43em;
  padding-left: 22px;
  margin-top: -3px;
}
/* コピー用 */
@media (max-width:374px){

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

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

  .bg_equipment{
    height: 100%;
  }
  
}
@media (min-width:768px){
  .pg_equipment{

  }
  .pg_equipment .section.sec1{
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .pg_equipment .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_equipment .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /*カテゴリ*/
  .equipment_cate_items{
    margin-top: 56px;
    margin-inline:-5px;
  }
  .equipment_cate_item{
    width: 50%;
    padding: 0 5px;
  }
  .equipment_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .equipment_cate_item:nth-child(n+3){
    margin-top: 30px;
  }
  .equipment_cate_item_inner{
    font-size: 16px;
  }
  .equipment_cate_item_inner:after {
    right: 20px;
  }
  .equipment_cate_item_inner .read_more_inner{

  }



  /*設備*/
  .equipment_content{
    margin-top:80px;
  }
  .equipment_content_sec{

  }
  .equipment_content_sec:nth-child(n+2){
    margin-top: 100px;
  }
  .equipment_content_sec_title{

    padding: 9px 36px;
    margin-bottom: 30px;
  }
  .equipment_content_sec_title_en{
    font-size: 24px;
  }
  .equipment_content_sec_title_ja{
    font-size: 17px;
  }
  .equipment_content_sec_imgs{
    margin: 0 -10px 30px;
  }
  .equipment_content_sec_imgs_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .equipment_content_sec_imgs_item:nth-child(n+4){
    margin-top: 15px;
  }
  .equipment_content_sec_img{
    /*margin-bottom: 30px;*/
  }
  .equipment_content_sec_img.img_fit:before{
    /*padding-top: 400px;*/
  }
  .equipment_content_items{
    margin-inline:-10px;
  }
  .equipment_content_item{
    width: 50%;
    padding: 0 10px;
  }
  .equipment_content_item:nth-child(n+2){
    margin-top: 0;
  }
  .equipment_content_item:nth-child(n+3){
    margin-top: 30px;
  }
  .equipment_content_item_inner{

  }
  .equipment_content_item_img:before{

  }
  .equipment_content_item_tt{

  }
  .equipment_content_item_txt{
    font-size: 18px;
  }
  .equipment_content_item_detail{
    padding: 20px 20px;
    margin-top: 24px;
  }
  .equipment_content_item_detail_tt{

  }
  .equipment_content_item_detail_txt{
    font-size: 18px;
  }
  .equipment_content_item_detail_box{

  }
  .equipment_content_item_detail_list{

  }
  .equipment_content_item_detail_list1{

  }
  .equipment_content_item_detail_list2{

  }
}
@media (min-width:1024px){
  .pg_equipment{
    
  }
  .pg_equipment .section.sec1{
    padding-top: 90px;
    padding-bottom: 200px;
  }
  .pg_equipment .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_equipment .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /*カテゴリ*/
  .equipment_cate_items{

  }
  .equipment_cate_item{

  }
  .equipment_cate_item{
    width: 25%;
  }
  .equipment_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .equipment_cate_item:nth-child(n+5){
    margin-top: 30px;
  }
  .equipment_cate_item_inner{
    font-size: 18px;
  }
  .equipment_cate_item_inner:after {
    right: 30px;
  }
  .equipment_cate_item_inner .read_more_inner{

  }



  /*設備*/
  .equipment_content{
    margin-top: 100px;
  }
  .equipment_content_sec{

  }
  .equipment_content_sec:nth-child(n+2){
    margin-top: 120px;
  }
  .equipment_content_sec_title{
    /*margin-bottom: 58px;*/
    margin-bottom: 30px;
  }
  .equipment_content_sec_title_en{
    font-size: 30px;
  }
  .equipment_content_sec_title_ja{

  }
  .equipment_content_items{

  }
  .equipment_content_item{

  }
  .equipment_content_item:nth-child(n+3){
    margin-top: 80px;
  }
  .equipment_content_item_inner{

  }
  .equipment_content_item_img:before{

  }
  .equipment_content_item_tt{

  }
  .equipment_content_item_txt{
    font-size: 24px;
  }
  .equipment_content_item_detail{
    padding: 26px 50px 30px;
  }
  .equipment_content_item_detail_tt{

  }
  .equipment_content_item_detail_txt{

  }
  .equipment_content_item_detail_box{

  }
  .equipment_content_item_detail_list{

  }
  .equipment_content_item_detail_list1{

  }
  .equipment_content_item_detail_list2{

  }
}
@media (min-width:1200px){
  /*カテゴリ*/
  .equipment_cate_items{
    margin-inline:-20px;
  }
  .equipment_cate_item{
    padding: 0 20px;
  }


  /*設備*/
  
  .equipment_content_sec_imgs{
    margin: 0 -20px 30px;
  }
  .equipment_content_sec_imgs_item{
    width: 33.333%;
    padding: 0 20px;
  }
  
  .equipment_content_items{
    margin-inline:-35px;
  }
  .equipment_content_item{
    padding: 0 35px;
  }
  .equipment_content_item_txt{
    font-size: 28px;
  }
}


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

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

@media (max-width:374px){

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

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

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

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


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


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


}


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


/* コピー用 */
@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;
  }


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


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


}
