@charset "UTF-8";

:root {
  --main-color: #324e4a;
  --sub-color: #a6d44c;;
}
#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;


}

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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


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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 100px;
  }
  .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 31px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btn{
    display: block;
    width: 120px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    transition: all .2s;
    border: 1px solid transparent;
    padding: 34px 0 27px;
    margin-left: 23px;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    letter-spacing: 0;
  }

  .hdr_contact_btn p:before{
    content: "";
    display: block;
    width: 18px;
    height: 13px;
    background-image: url(/system_panel/uploads/images/mai_wh.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-bottom: 2px;
  }
  .hdr_contact_btn:hover{
    background:#33b9a6;
    color: #fff;
  }
  /*  .hdr_contact_btn:hover p:before{
      background-image: url(/system_panel/uploads/images/mai_gr.svg);
    }*/

  .hdr1{
    padding: 0 15px 0;
  }

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

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

  /* TELボタン */
  .hdr_tel{

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


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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

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

  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv:before{
  content: "";
  display: block;
  width: 30.98%;
  aspect-ratio: 1;
  clip-path: polygon(0 100%,100% 0,100% 100%);
  background: #a6d44c;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top:calc(100vh - 54px - 60px);
}
.mv_inner{
  overflow: hidden;
  position: relative;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

.mv_contents{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.mv_contents_txt1{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.mv_contents_txt1 p{
  letter-spacing: 0;
}
.mv_contents_txt2{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.42em;
  color: #fff;
  margin-top: 16px;
}
.mv_contents_txt3{
  font-size: 18px;
  font-family: "Anton", sans-serif;
  line-height: 1;
  color: #fff;
  margin-top: 22px;
}
.mv_contents_txt3 p{
  letter-spacing: 0;
}

/*三角形*/
.mv_triangle1{
  width: 90.88%;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0 0,100% 0,0 100%);
  background: #069599;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


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

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

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

.pg_header.btm_space{
  margin-bottom: 60px!important;;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 50vh;
  }

  .mv_triangle1{
    width: 73.88%;
  }

  /* MVテキスト */
  .mv_contents_txt1{
    font-size: 20px;
  }
  .mv_contents_txt2{
    font-size: 42px;
  }
  .mv_contents_txt3{
    font-size: 20px;
  }

  .pg_header.btm_space{
    margin-bottom: 100px!important;;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 0!important;
  }

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top:100vh;
  }

  .mv_triangle1{
    width: 48.88%;
  }

  /* MVテキスト */
  .mv_contents_txt1{
    font-size: 24px;
  }
  .mv_contents_txt2{
    font-size: 52px;
  }
  .mv_contents_txt3{
    font-size: 24px;
  }

  .pg_header.btm_space{
    margin-bottom: 120px!important;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top:100vh;
  }

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

  }
  .mv_txt_p2{

  }

  .pg_header.btm_space{
    margin-bottom: 200px!important;
  }
}
@media (min-width:1470px){
  .mv_img.img_fit:before{
    padding-top: 820px;
  }
}

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

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

}


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

.footer{
  background: #f1f1f1;
  margin-top: 50px;
  padding: 50px 0 16px;
}

.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: 15px;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid var(--main-color);
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  color: #fff;
  background: var(--main-color);
}
.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: var(--main-color);
}
.pagetop a i{
  font-size: 40px;
}


.ftr_1{
  text-align: center;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin-top: 20px;
}
.ftr_add p{
  letter-spacing: 0;
}
.ftr_1 .read_more{
  margin-top: 16px;
}
.ftr_add_sub{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin-top: 18px;
}
.ftr_add_sub p{
  letter-spacing: 0;
}
.ftr_2{

}
.ftr_links{

}
.ftr_link{

}
.ftr_link:hover{
  color: #324e4a;
}

.ftr_1 .read_more a p{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr_1 .read_more a p:before{
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background-image: url(/system_panel/uploads/images/mai_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  /*  position: absolute;
    top: 50%;
    transform: translateY(-50%);*/
  margin-right: 16px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .mv_contents{
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  }

  .ftr_logo{
    display: block;
    width: 250px;
    margin: 0 auto;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_2{
    display: none;
  }
}
@media (min-width:768px){
  .footer{
    padding: 60px 0 20px;
    margin-top: 100px;
  }
  .ftr_copy{
    padding: 20px 0;
  }


  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_1 .read_more{

  }
  .ftr_add_sub{

  }
  .ftr_2{
    background: #069599;
    margin-top: 44px;
  }
  .ftr_links{

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }
  .ftr_link{
    text-align: center;
    width: 25%;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
    position: relative;
  }
  .ftr_link:nth-child(4):after{
    display: none;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 16px;
  }
  .ftr_link:last-child:after{
    display: none;
  }
  .ftr_link:after{
    content: "／";
    position: absolute;
    top: 50%;
    right: -2%;;
    transform: translateY(-50%);
  }
  .ftr_link:hover:after{
    color: #fff;
  }
}
@media (min-width:1024px){
  .footer{
    padding: 80px 0 41px;
    margin-top: 180px;
  }

  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_1 .read_more{

  }
  .ftr_add_sub{

  }
  .ftr_2{

  }
  .ftr_links{

  }
  .ftr_link{
    width: auto;
    text-align: left;
  }
  .ftr_link:nth-child(4):after{
    display: block;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .ftr_link{
    padding: 0 24px;
  }
  .ftr_link:after{
    right: -5%;
  }
}


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


/* テーブル用 */
.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 #069599;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #069599;
  color: #fff;
}  
.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: 250px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "▶";
  position: absolute;
  z-index: 1;
  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(--sub-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{

}


/*タイトル・説明*/
.sec_tt{
  display: inline-block;
}
.sec_tt.center{
  display: block;
  text-align: center;
}
.sec_tt_en{

  font-size: 50px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.sec_tt_ja{
  font-size: 17px;
  font-weight: 700;
}
.sec_tt_ja.gr{
  color: #069599;
}
.sec_sub_tt{
  font-size: 20px;
  font-weight: 700;
}
.sec_sub_title_sm{
  font-size: 18px;
  font-weight: 800;
  color: #069599;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}

/*流れる文字*/
.flowing_etters{
  font-size: clamp(2.875rem, 0.95rem + 9.63vw, 12.5rem);
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
  margin-bottom: -0.11em;
  margin-right: 30px;
}
.flowing_etters p{
  letter-spacing: 0;
}
@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;
  }

  .bg_sp_rg{
    position: relative;
  }
  .bg_sp_rg:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #a6d44c;
    position: absolute;
    top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
  }
  .bg_sp_gr{
    position: relative;
  }
  .bg_sp_gr:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;

    background: #069599;
    position: absolute;
    top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
  }

  .sec_tt_ja{
    font-size: 18px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }

  /* ページネーション */
  .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: 262px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "▶";
    top: 50%;
    right: 10px;
    font-size: 12px;
  }
  .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;
  }

  /*タイトル・説明*/
  .sec_tt{

  }
  .sec_tt_en{
    font-size: 80px;
  }
  .sec_tt_ja{
    font-size: 18px;
  }
  .sec_sub_tt{
    font-size: 20px;
  }
  .sec_sub_title_sm{
    font-size: 19px;
  }
  .content_desc{

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

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

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

  /*タイトル・説明*/
  .sec_tt{

  }
  .sec_tt_en{
    font-size: 110px;
  }
  .sec_tt_en.sm{
    font-size: 60px;
  }
  .sec_tt_ja{

  }
  .sec_tt_ja.lg{

  }
  .sec_sub_tt{
    font-size: 28px;
  }
  .sec_sub_title_sm{
    font-size: 21px;
  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }
}
@media (min-width:1200px){
  .sec_tt_en.sm{
    font-size: 80px;
  }

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

  /* コンテナ */
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    /*    max-width: calc(1250px + 70px);
        padding-left: 35px;
        padding-right: 35px;*/
  }
  .sec_tt_en.sm{
    font-size: 100px;
  }
}
@media (min-width:1450px){

  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1370px + 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{
  overflow: hidden;
}
.pg_home .section.sec1{

  position: relative;
  padding-top: 40px;
}
.pg_home .section.sec1:after{
  /*  content: "";
    display: block;
    width: 62.76%;
    aspect-ratio:1205 / 1361;
    background: #f1f1f1;
    position: absolute;
  left: 41%;
    top: 0;
    transform: skewX(45deg);
    z-index: 1;*/
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 30.98%;
  aspect-ratio: 1;
  clip-path: polygon(0 0,100% 0,100% 100%);
  background: #a6d44c;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width:1710px;
  aspect-ratio:1205 / 1361;
  background: #f1f1f1;
  position: absolute;
  left: 41.5%;
  top: 0;
  transform: skewX(45deg);
  z-index: 3;
}
.pg_home .section.sec2{
  position: relative;
  z-index: 4;
  padding-top: 180px;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  position: relative;
  padding-top: 110px;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 100%;
  height: 600px;
  background: #069599;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec4{
  position: relative;
  z-index: 4;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height: 550px;
  background: #a6d44c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec5{
  padding-top: 50px;
}
.pg_home .section.sec6{
  padding-top: 0;
  margin-top: -0.3em;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}


/*三角形*/
.triangle2{
  width: 30.98%;
  aspect-ratio:595 / 1190;
  background-image: url(/system_panel/uploads/images/triangle2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50%;
  right: 0;

}
@media (max-width:767px){
  .pg_home .section.sec3:before{
    height: 565px;
  }
  .pg_home .section.sec4:before{
    height: 502px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 50px;
  }
  .pg_home .section.sec1:after{
    content: "";
    display: block;
    width:1300px;
  }
  .pg_home .section.sec2{
    padding-top: 53px;
  }
  .pg_home .section.sec3{
    padding-top: 150px;
  }
  .pg_home .section.sec3:before{
    height: 680px;
  }
  .pg_home .section.sec4{
    margin-top: 70px;
    padding-top: 80px;
  }
  .pg_home .section.sec4:before{
    height:640px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec6{
    padding-top: 0;
    margin-top: 0;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1:after{
    content: "";
    display: block;
    width:1300px;
  }
  .pg_home .section.sec3:before{
    height: 500px;
  }
  .pg_home .section.sec4:before{
    height: 365px;
  }
  .pg_home .section.sec6{
    padding-top: 0;
    margin-top: 0;
  }
}
@media (min-width:1200px){

  .pg_home .section.sec1{
    padding-top: 80px;
  }
  .pg_home .section.sec1:after{
    content: "";
    display: block;
    width: 1209px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 200px;
  }
  .pg_home .section.sec3:before{
    height: 500px;
  }
  .pg_home .section.sec4{
    margin-top: 90px;
    padding-top: 105px;
  }
  .pg_home .section.sec5{
    padding-top: 153px;
  }
  .pg_home .section.sec6{
    /*    margin-top: -1.4em;*/
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1366px){
  .pg_home .section.sec3{
    padding-top: 238px;
  }
}


/*メイン*/
.home_contents1_img{
  width: 61.777%;
  aspect-ratio:1186 / 1221;
  position: absolute;
  top: 0;
  left: 0;
}
.home_contents1_img:before{
  padding-top: 1500px;
}
.home_contents1_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.home_contents1_wrap{
  position: relative;
  z-index: 5;
}
.home_contents1_hdr{
  display: block;
  text-align: right;
}
.home_contents1_hdr .sec_tt{

}
.home_contents1_hdr .sec_tt_ja{
  text-align: right;
}
.home_contents1_hdr .sec_sub_tt{
  margin-top: 20px;
}
.home_contents1_box1{
  margin-top: 30px;
}
.home_contents1_box1 .sec_sub_title_sm{

}
.home_contents1_box1 .content_desc{

}

/*サポート*/
.home_contents2_wrap{
  position: relative;
  z-index: 2;
}
.home_contents2_wrap .sec_tt{
  color: #fff;
}
.home_contents2_items{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-top:30px;
}
.home_contents2_items:before{
  content: "";
  display: block;
  /*  width: 100vw;
    height: 101%;*/
  /*  background: #a6d44c;*/
  width: 1770px;
  aspect-ratio:1920 / 953;
  background-image: url(/system_panel/uploads/images/bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents2_item{
  width: 100%;
}
.home_contents2_item:nth-child(n+2){
  margin-top: 40px;;
}
.home_contents2_wrap .home_contents2_item_img{
  transition: all .2s;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents2_wrap .home_contents2_item_img img{
  transition: all .2s;
  overflow: hidden;
}
.home_contents2_wrap .home_contents2_item_img{
  overflow: hidden;
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
}

.home_contents2_wrap .home_contents2_item_inner:hover img{
  transform: scale(1.05);
}
.home_contents2_wrap .home_contents2_item_inner:hover .home_contents2_item_img{
  /*  transform: scale(1.02);*/
}
.home_contents2_item_img{
  aspect-ratio: 745 / 808;
  position: relative;
  overflow: hidden;
}
.home_contents2_item_img img{
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
  aspect-ratio: 745 / 808;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents2_item_inner{
  position: relative;
}
.home_contents2_item_img:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 2px;
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
  -webkit-mask-size: contain;
}
.onsen_contents7_wrap .home_contents2_item_img:before{
  left: 0;
  left: 0px;
  -webkit-mask-size: 100%;
}
.home_contents2_item_title{
  color: #fff;
  position: absolute;
  top: 8.85%;
  right: 3.04%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home_contents2_item_tt{
  font-size: 22px;
  font-weight: 900;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.onsen_contents7_wrap .flow_content_child_box2_tt{
  color: #fff;
}
.home_contents2_item_icon{
  display: block;
  width: 60px;
  position: relative;
  right: 0;
  transition: all .2s;
}
.home_contents2_item_icon:hover{
  right: -5px;
}

/*製品紹介*/
.home_contents_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents3_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.home_contents3_box1_img_outer{
  width: 100%;
}
.home_contents3_box1_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
}
.home_contents3_wrap .home_contents3_box1_tt{
  justify-content: flex-end;
}
.home_contents4_wrap .home_contents3_box1_tt{
  justify-content: flex-start;
}
.home_contents3_box1_tt_en{
  letter-spacing: 0;
  display: flex;
  align-items: center;
}
.home_contents3_box1_tt_en:before{
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  background: #0d1323;
  margin-right: 10px;
}
.home_contents3_box1_tt_ja{
  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  padding-left: 10px;
  position: relative;
}
.home_contents3_box1_tt_ja:before{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #0d1323;
  position: absolute;
  top:1px;
  left: 0;
}
.home_contents3_box1_img{
  margin-top: 20px;
}
.home_contents3_box1_img:before{
  padding-top: 76.47%;
}
.home_contents3_txt_en{
  font-size: 40px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 0.9;
}
.home_contents3_txt_en p{
  letter-spacing: 0;
}
.home_contents3_box2{
  width: 100%;
  margin-top: 20px;;
}
.home_contents3_box2 .sec_sub_title_sm{
  color: #fff;
}
.home_contents3_box2 .content_desc{
  line-height: 2;
}

/*お知らせ*/
.home_contents5_wrap .sec_tt{
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.home_contents5_box{

}
.home_contents5_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.home_contents5_box .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.home_contents5_box .webgene-item:nth-child(n+3){
  margin-top: 10px
}
.home_contents5_box .webgene-item a{

}
.home_contents5_box .webgene-item a:hover{
  color: #069599;
}
.home_contents5_box .webgene-item .box2{
  margin-top: 10px;
}
.home_contents5_box .webgene-item .img:before{
  padding-top: 77.777%;
}
.home_contents5_box .webgene-item .img{
  overflow: hidden;
}
.home_contents5_box .webgene-item .category{
  width: 142px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #069599;
  color: #fff;
  text-align: center;
  padding: 4px 0;
}
.home_contents5_box .webgene-item .date{
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.home_contents5_box .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  margin-top: 9px;
}

/*採用*/
.home_contents6_wrap{
  position: relative;
  overflow: hidden;
}
.home_contents6_img{

}
.home_contents6_wrap:hover .home_contents6_img{
  overflow: hidden;
}
.home_contents6_wrap .home_contents6_img img{
  transition: all .2s;
}
.home_contents6_wrap:hover .home_contents6_img img{
  transform: scale(1.05);
}
.home_contents6_img:before{
  padding-top: 750px;
}
.home_contents6_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_contents6_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  color: #fff;
  padding: 0 16px;
}
.home_contents6_inner home_contents3_box1_tt{

}
.home_contents6_inner .home_contents3_box1_tt_en{

}
.home_contents6_inner .home_contents3_box1_tt_en:before{
  display: none;
}
.home_contents6_inner .home_contents3_box1_tt_ja{

}
.home_contents6_tt{
  font-size: 24px;
  font-weight: 900;
  margin-top: 16px;
}
.home_contents6_tt p{
  letter-spacing: 0;
}
.home_contents6_inner .sec_sub_title_sm{
  color: #fff;
  margin-top: 16px;
}
.home_contents6_inner .content_desc{

}
.home_contents6_wrap .home_contents2_item_icon{
  position: absolute;
  right: 3.15%;
  bottom: 2.4%;
  z-index: 9;
  cursor: pointer;
}
.home_contents6_wrap .home_contents2_item_icon:hover{
  right: 2.15%;
}
.pg_home .section.sec6 .home_contents3_box1_tt_ja:before{
  background: #fff;
}
.flowing_etters.recruit{
  margin-bottom: -0.11em;
}

.pg_home .flowing_etters{
  margin-bottom: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_contents1_img{
    width: 111.777%;
    aspect-ratio: 1186 / 1221;
    position: absolute;
    top: 420px;
  }
  .home_contents1_img:before{
    padding-top: 1000px;
  }

  .home_contents3_box1_tt_en{
    margin-right: 10px;
  }
  .home_contents3_box1_tt_en:before{
    width:32px;
  }

  .pg_home .flowing_etters{
    margin-bottom: -0.09em;
  }

  .home_contents3_txt_en{
    font-size: 46px;
  }

  .home_contents3_box2 .sec_sub_title_sm{
    font-size: 19px;
  }
}
@media (min-width:768px){


  /*メイン*/
  .home_contents1_img{
    width: 87.777%;
  }
  .home_contents1_img:before{
    padding-top: 1300px;
  }
  .home_contents1_wrap{

  }
  .home_contents1_hdr{
    display: inline-block;
    padding-left:0;
  }
  .home_contents1_hdr .sec_tt{

  }
  .home_contents1_hdr .sec_tt_ja{
    padding-right: 63px;
    margin-top: 2px;
  }
  .home_contents1_hdr .sec_sub_tt{
    margin-top: 24px;
    padding-right: 20px;
  }
  .home_contents1_box1{
    width: 55.51%;
    margin-top: 40px;
    margin-left: auto;
  }
  .home_contents1_box1 .sec_sub_title_sm{

  }
  .home_contents1_box1 .content_desc{

  }

  /*サポート*/
  .home_contents2_items{
    margin-inline:-15px;
    margin-top: -10px;
  }
  .home_contents2_items:before{
    width: 900px;
    top: 63px;
  }
  .home_contents2_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_contents2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents2_item:first-child{
    padding-top: 75px;
  }
  .home_contents2_item_inner{

  }
  .home_contents2_item_img{

  }
  .home_contents2_item_title{

  }
  .home_contents2_item_tt{
    font-size: 24px;
  }
  .home_contents2_item_icon{
    width: 60px;
  }

  /*製品紹介*/
  .home_contents3_box{

  }
  .home_contents3_box1{

  }
  .home_contents3_wrap .home_contents3_box1{
    justify-content: flex-start;
  }
  .home_contents4_wrap .home_contents3_box1{

  }
  .home_contents3_box1_img_outer{
    width: 77.38%;
  }
  .home_contents3_box1_tt{
    font-size: 18px;
  }
  .home_contents3_box1_tt_en{
    margin-right: 10px;
  }
  .home_contents3_box1_tt_ja{
    font-size: 18px;
  }

  .home_contents3_box1_img{

  }
  .home_contents3_box1_img:before{

  }
  .home_contents3_txt_en{
    width: 22.61%;
    font-size: 80px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: -0.05em;
  }
  .home_contents3_txt_en.yoko{
    width: 100%;
  }
  .home_contents3_wrap .home_contents3_txt_en{
    justify-content: flex-end;
  }
  .home_contents4_wrap .home_contents3_txt_en{
    justify-content: flex-end;
  }
  .home_contents3_txt_en p{

  }
  .home_contents3_box2{
    margin-top: 30px;;
  }
  .home_contents3_box2 .sec_sub_title_sm{

  }
  .home_contents3_box2 .content_desc{
    margin-top: 37px;
  }

  /*お知らせ*/
  .home_contents5_wrap .sec_tt{
    margin-bottom: 55px;
  }
  .home_contents5_box{

  }
  .home_contents5_box .webgene-blog{
    margin-inline:-13px;
  }
  .home_contents5_box .webgene-item{
    padding-inline:13px;
  }
  .home_contents5_box .webgene-item:nth-child(n+3){
    margin-top: 30px
  }
  .home_contents5_box .webgene-item a{

  }
  .home_contents5_box .webgene-item .img:before{

  }
  .home_contents5_box .webgene-item .category{

  }
  .home_contents5_box .webgene-item .date{

  }
  .home_contents5_box .webgene-item .title{

  }
  .home_contents5_wrap .read_more{
    margin-top: 50px;
  }

  /*採用*/
  .home_contents6_wrap{

  }
  .home_contents6_img{

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

  }
  .home_contents6_inner{
    padding: 0 100px 0 32px;
    top: 65%;
  }
  .home_contents6_inner home_contents3_box1_tt{

  }
  .home_contents6_inner .home_contents3_box1_tt_en{

  }
  .home_contents6_inner .home_contents3_box1_tt_ja{

  }
  .home_contents6_tt{
    font-size: 40px;
    margin-top: 28px;
  }
  .home_contents6_inner .sec_sub_title_sm{

  }
  .home_contents6_inner .content_desc{

  }
  .home_contents6_wrap .home_contents2_item_icon{
    position: absolute;
    right: 3.15%;
    bottom: 6.4%;
  }
  .flowing_etters.recruit{
    margin-bottom: -0.11em;
  }
}
@media (min-width:1024px){
  /*メイン*/
  .home_contents1_img{
    width: 81.777%;
  }
  .home_contents1_img:before{
    padding-top: 1400px;
  }
  .home_contents1_wrap{

  }
  .home_contents1_hdr{
    padding-left: 13.2%;
  }
  .home_contents1_hdr .sec_tt{

  }
  .home_contents1_hdr .sec_tt_ja{
    padding-right: 63px;
    margin-top: 2px;
  }
  .home_contents1_hdr .sec_sub_tt{
    padding-right: 44px;
  }
  .home_contents1_box1{
    width: 48.51%;
    margin-left: auto;
    padding-right: 42px;
    margin-top: 90px;
  }
  .home_contents1_box1 .sec_sub_title_sm{

  }
  .home_contents1_box1 .content_desc{

  }

  /*サポート*/
  .home_contents2_wrap .sec_tt{
    padding-left: 13.48%;
  }
  .home_contents2_items{
    margin-inline: -15px;
  }
  .home_contents2_items:before{
    width: 1100px;
  }
  .home_contents2_item{
    width: 50%;
    padding-inline: 15px;
  }
  .home_contents2_item_inner{

  }
  .home_contents2_item_img{

  }
  .home_contents2_item_title{

  }
  .home_contents2_item_tt{
    font-size: 32px;
  }
  .home_contents2_item_icon{
    width: 60px;;
  }

  /*製品紹介*/
  .home_contents3_box{

  }
  .home_contents3_box1{
    width: 55.26%;
  }
  .home_contents3_wrap .home_contents3_box1{
    order: 1;
  }
  .home_contents3_wrap .home_contents3_box2{
    order: 2;
  }
  .home_contents4_wrap .home_contents3_box1{
    order: 2;
  }
  .home_contents4_wrap .home_contents3_box2{
    order: 1;
  }
  .home_contents3_box1_img_outer{

  }
  .home_contents4_wrap .home_contents3_box1_img_outer{
    order: 2;
  }
  .home_contents3_box1_tt{

  }
  .home_contents3_box1_tt_en{

  }
  .home_contents3_box1_tt_ja{

  }
  .home_contents3_box1_img{

  }
  .home_contents3_wrap .home_contents3_box1_img{
    margin-left: var(--margin-for-device-side);
  }
  .home_contents4_wrap .home_contents3_box1_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents3_box1_img:before{

  }
  .home_contents3_wrap .home_contents3_txt_en{
    margin-left: -0.05em;
  }
  .home_contents4_wrap .home_contents3_txt_en{
    margin-right: 0;
    order: 1;
    justify-content: flex-start;
  }
  .home_contents3_txt_en{
    font-size: 60px;
  }
  .home_contents3_txt_en p{

  }
  .home_contents3_box2{
    width: 42.76%;
    padding-top: 110px;
    margin-top: 0;
  }
  .home_contents3_box2 .sec_sub_title_sm{

  }
  .home_contents3_box2 .content_desc{

  }

  /*お知らせ*/
  .home_contents5_box{

  }
  .home_contents5_box .webgene-blog{
    margin-inline:-13px;
  }
  .home_contents5_box .webgene-item{
    width: 25%;
    padding-inline:13px;
  }
  .home_contents5_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .home_contents5_box .webgene-item a{

  }
  .home_contents5_box .webgene-item .img:before{

  }
  .home_contents5_box .webgene-item .category{

  }
  .home_contents5_box .webgene-item .date{

  }
  .home_contents5_box .webgene-item .title{

  }
  .home_contents5_wrap .read_more{
    margin-top: 70px;
  }

  /*採用*/
  .home_contents6_wrap{

  }
  .home_contents6_img{

  }
  .home_contents6_img:before{
    padding-top: 650px;
  }
  .home_contents6_img:after{

  }
  .home_contents6_inner{
    padding: 0 100px 0 32px;
  }
  .home_contents6_inner home_contents3_box1_tt{

  }
  .home_contents6_inner .home_contents3_box1_tt_en{

  }
  .home_contents6_inner .home_contents3_box1_tt_ja{

  }
  .home_contents6_tt{
    font-size: 50px;
  }
  .home_contents6_inner .sec_sub_title_sm{

  }
  .home_contents6_inner .content_desc{

  }

  .pg_home .section.sec2 .home_contents2_item_inner{
    position: relative;
    overflow: hidden;
    -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
  }
}
@media (min-width:1200px){
  /*メイン*/
  .home_contents1_img{
    width: 66.777%;
  }
  .home_contents1_img:before{
    padding-top: 1300px;
  }
  .home_contents1_box1{
    width: 61.51%;
  }
  .home_contents2_item_icon{
    width: 60px;;
  }

  /*サポート*/
  .home_contents2_items:before{
    width: 1300px;
  }

  /*製品紹介*/
  .home_contents3_txt_en{
    font-size: 60px;
  }

  /*採用*/
  .home_contents6_inner{
    padding: 0 32px;
  }
  .home_contents6_img:before{
    padding-top: 540px;
  }
}
@media (min-width:1366px){
  /*サポート*/
  .home_contents2_item_tt{
    font-size: 40px;
  }
  .home_contents2_items:before{
    width: 1450px;
  }

  /*製品紹介*/
  .home_contents3_txt_en{
    font-size: 60px;
  }
}
@media (min-width:1450px){
  .home_contents1_box1{
    width: 50.51%;
  }

  /*サポート*/
  .home_contents2_items:before{
    width: 1920px;
  }
  .home_contents2_item_tt{
    font-size: 50px;
  }
  .home_contents2_item_icon{
    width: auto;
  }

  /*製品紹介*/
  .home_contents3_txt_en{
    font-size: 80px;
  }
}

@media (min-width:1700px){


  /*メイン*/
  .home_contents1_img{
    width: 61.777%;
  }
  .home_contents1_img:before{
    padding-top: 97.13%;
  }
  .home_contents1_box1{
    width: 61.51%;
  }

  /*サポート*/
  .home_contents2_item_tt{
    font-size: 56px;
  }

  /*製品紹介*/
  .home_contents3_wrap .home_contents3_txt_en{
    margin-left: -3px;
  }
  .home_contents4_wrap .home_contents3_txt_en{
    margin-right: 0;
  }
  .home_contents3_txt_en{
    font-size: 98px;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .home_contents1_hdr .sec_tt_ja,
  .home_contents1_hdr .sec_sub_tt{
    padding-right: 0;
  }
  .home_contents4_wrap .home_contents3_txt_en{
    justify-content: flex-start;
  }
}



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

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

}
.pg_about .section.sec1{
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.pg_about .section.sec1 .container{
  position: relative;
  z-index: 3;
}
.pg_about .section.sec2{
  position: relative;
}
.pg_about .section.sec2:before{
  content: "";
  display: block;
  width: 100%;
  height:395px;
  background: #069599;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_about .section.sec3{
  padding-top: 50px;
}
.pg_about .section.sec4{
  padding-top: 50px;
}
.pg_about .section.sec5{
  position: relative;
  padding-bottom: 50px;
}
.pg_about .section.sec5:before{
  content: "";
  display: block;
  width: 100%;
  height:500px;
  background: #a6d44c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_about .section.sec6{
  position: relative;
}
.pg_about .section.sec6:before{
  content: "";
  display: block;
  width: 100%;
  height:500px;
  background: #069599;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*vison*/
.about_contents3_box{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.about_contents3_box:before{
  content: "";
  display: block;
  width: 5.8%;;
  aspect-ratio:65 / 56;
  background-image: url(/system_panel/uploads/images/left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;;
}
.about_contents3_box:after{
  content: "";
  display: block;
  width: 5.8%;;
  aspect-ratio:65 / 56;
  background-image: url(/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;;
}
.about_contents3_box_list{
  width: 100%;
  font-size: 16px;
  font-weight: 900;
}



@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_about .section.sec2:before{
    height: 425px;
  }
  .pg_about .section.sec5:before{
    height: 500px;
  }

  .about_contents3_box:after{
    bottom: 0;
  }

  .about_contents3_wrap .about_contents3_box{
    padding: 0 13px 0 21px;
  }
  .about_contents3_box:before{
    content: "";
    display: block;
    width: 3.8%;;
  }
  .about_contents3_box:after{
    content: "";
    display: block;
    width: 3.8%;;
  }
  .about_contents3_box_list{
    font-size: 15px; 
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 50px;
  }
  .pg_about .section.sec2{
    padding-top: 106px;
  }
  .pg_about .section.sec2:before{
    height: 600px;
  }
  .pg_about .section.sec3{
    padding-top: 200px;
  }
  .pg_about .section.sec4{
    padding-top:250px;
  }
  .pg_about .section.sec5{
    margin-top: 90px;
    padding-bottom: 100px;
  }
  .pg_about .section.sec5:before{
    height: 700px;
  }
  .pg_about .section.sec6{
    padding: 80px 0 0;
  }
  .pg_about .section.sec6:before{
    height: 700px;
  }


  .about_contents3_box_list{
    font-size: 20px;
  }
  .about_contents3_box:before{
    width: 3.8%;;
    left: -1.8%;;
    top: -19%;
  }
  .about_contents3_box:after{
    width: 3.8%;;
    right: -2.8%;;
    bottom: -23%;
  }
}
@media (min-width:1024px){
  .pg_about .section.sec6:before{
    height: 500px;
  }

  /*vison*/
  .about_contents3_box{

  }
  .about_contents3_box_list{
    font-size: 24px;
  }

  .about_contents3_box:before{
    width: 5.8%;;
    left: -1.8%;;
  }
  .about_contents3_box:after{
    width: 5.8%;;
    right: -2.8%;;
  }

}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 106px;
  }
  .pg_about .section.sec2:before{
    height: 365px;
  }
  .pg_about .section.sec3{
    padding-top: 270px;
  }
  .pg_about .section.sec4{
    padding-top: 330px;
  }
  .pg_about .section.sec5{
    margin-top: 90px;
    padding-bottom: 150px;
  }
  .pg_about .section.sec5:before{
    height: 365px;
  }  
  .pg_about .section.sec6{
    padding: 140px 0 0;
  }
  .pg_about .section.sec6:before{
    height: 500px;
  }

  .about_contents3_box:before{
    width: 5.8%;;
    left: -4.8%;
  }
  .about_contents3_box:after{
    width: 5.8%;;
    right: -4.8%;
  }

}
@media (min-width:1470px){
  .pg_about .section.sec1{
    padding-bottom:0;
  }
}
@media (min-width:1536px){
  .pg_about .section.sec1{
    padding-bottom:0;
  }
}

/* メイン部分 */
/*見出し*/
.about_contents1_wrap{

}
.about_contents1_wrap .home_contents3_txt_en{
  writing-mode: horizontal-tb;
  letter-spacing: 0;
}
.about_contents1_wrap .home_contents3_box1_tt_en{
  font-size: 16px;
  font-weight: 900;
  margin-top: 14px;
}
.about_contents1_wrap .sec_sub_title_sm{

}
.about_contents1_wrap .content_desc{

}
.about_contents1_img_box{
  position: relative;
  margin-top: 40px;
}
.about_contents1_img_box:before{
  display: none;
  /*  content: "";
    width: 61.78%;
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, 0 94%);
    background: #fff;
    position: absolute;
    top: -1px;
    left: -1px;;
    z-index: 2;*/
}
.about_contents1_img{
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 0% 100%);
}
.about_contents1_wrap.recruit .about_contents1_img{
  clip-path: polygon(0 0, 48% 0, 100% 100%, 0% 100%);
}
.about_contents1_img:before{
  padding-top: 57.75%;
}

/*存在意義*/
.about_contents2_wrap .home_contents3_box1_tt{
  justify-content: flex-end;
}
.about_contents2_wrap{

}
.about_contents2_wrap .home_contents3_box1_img:before{
  padding-top: 61.36%;
}
.pg_about .section.sec5 .home_contents3_box1_img:before{
  padding-top: 72.94%;
}

/*vision*/
.about_contents3_wrap{
  position: relative;
}
.about_contents3_wrap:before{
  content: "";
  display: block;
  /* background: #a6d44c; */
  width: 1920px;
  aspect-ratio: 1920 / 855;
  background-image: url(/system_panel/uploads/images/bg4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.about_contents3_wrap .sec_tt{
  position: relative;
  z-index: 2;
}
.about_contents3_wrap .about_contents3_box{
  position: relative;
  z-index: 2;
}
.about_contents3_box{
  margin-top: 40px;
  padding: 0 20px 0 28px;
}
.about_contents3_box_list:nth-child(n+2){
  margin-top: 16px;
}

/*フジテクノの3つの力​​​​​​​*/
.about_contents4_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:40px;
}
.about_contents4_content{
  width: 47.5%;
}
.about_contents4_content.one{
  order: 1;
}
.about_contents4_content.two{
  order: 2;
}
.about_contents4_content.three{
  width: 100%;
  order: 4;
  padding-top: 20px;
}
.about_contents4_content_tt{
  font-size: 24px;
  font-weight: 900;
}
.about_contents4_content_tt.rg{
  color: #a6d44c;
}
.about_contents4_content_tt.gr{
  color: #324e4a;
}
.about_contents4_content_tt.eme{
  color: #069599;
}
.about_contents4_content_sub{
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}
.about_contents4_content .content_desc{
  margin-top: 17px;
}
.about_contents4_content_img{
  order: 3;
}

/*行動基準*/
.about_contents5_wrap{
  display: flex;
  flex-wrap: wrap;
}
.about_contents5_box1{
  width: 100%;
}
.about_contents5_box1 .home_contents3_box1_tt{
  justify-content: flex-end;
  margin-bottom: 14px;
}
.about_contents5_box1 .home_contents3_box1_tt_en{
  font-size: 16px;
  color: #fff;
  margin-right: 0;
}
.about_contents5_box1 .home_contents3_box1_tt_en:before{
  background: #fff;
}
.about_contents5_box1_img{
  aspect-ratio:887 / 552;
}
.about_contents5_box1_img img{
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask5.png);
  aspect-ratio:887 / 552;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.about_contents5_box1_img:before{
  padding-top: 62.23%;
}
.about_contents5_box1_img:after{

}
.about_contents5_box2{
  width: 100%;
  padding-top: 36px;
}
.about_contents5_box2 .sec_tt_en{
  text-align: right;
  margin-bottom: -0.1em;
  color: #fff;
}
.about_contents5_box2_content{
  background: #324e4a;
  color: #fff;
  position: relative;
  padding: 40px 0;
}
.about_contents5_box2_content:after{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #324e4a;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.about_contents5_box2_content:before{
  content: "";
  display: block;
  width: 21%;
  height: 100%;
  aspect-ratio: 1;
  clip-path: polygon(0 100%,100% 0,100% 100%);
  background: #324e4a;
  position: absolute;
  top: 0;
  left: -20.9%;
}

.about_contents5_box2_content_item{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 25px 0 30px;
}
.about_contents5_box2_content_item:last-child{
  border-bottom: 0;
}
.about_contents5_box2_content_item:first-child{
  padding-top: 0;
}
.about_contents5_box2_content_item_num{
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.about_contents5_box2_content_item_num p{
  letter-spacing: 0;
  -webkit-text-stroke: 1px white;
  color: transparent;
}
.about_contents5_box2_content_item_right{
  padding-left: 20px;
  padding-top: 10px;
}
.about_contents5_box2_content_item_tt{
  font-size: 18px;
  font-weight: 900;
}
.about_contents5_box2_content_item .content_desc{
  margin-top: 10px;
}
.onsen_contents7_wrap .home_contents2_item_img:before{
  -webkit-mask-image: url(/system_panel/uploads/images/nn1.png);
  -webkit-mask-size: 100%;
}


@media (max-width:767px){
  .sec_sub_title_sm{
    font-size: 20px; 
    margin-top: 10px;
  }
  .sec_sub_title_sm p{
    letter-spacing: 0;
  }

  .about_contents3_wrap:before{
    width: 1200px;
  }

  .about_contents5_box2 .sec_tt_en{
    font-size: 42px;
  }

  .about_contents4_content_tt.eme,
  .about_contents4_content_sub{
    text-align: center;
  }

  .about_contents5_box1_img{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media (min-width:768px){
  /*見出し*/
  .about_contents1_wrap{

  }
  .about_contents1_wrap .home_contents3_txt_en{

  }
  .about_contents1_wrap .home_contents3_box1_tt_en{
    font-size: 18px;
  }
  .about_contents1_wrap .sec_sub_title_sm{
    margin-top: 23px;
    margin-right: -40px;
  }
  .about_contents1_wrap .content_desc{
    margin-top: 34px;
  }
  .about_contents1_img_box{
    margin-top: 50px;
  }

  /*存在意義*/
  .about_contents2_wrap .home_contents3_box1_tt{

  }
  .about_contents2_wrap{

  }
  .about_contents2_wrap .home_contents3_box1{
    width: 100%;
  }
  .about_contents2_wrap .home_contents3_box1_img_outer{

  }
  .pg_about .section.sec5 .home_contents3_box1_img_outer,
  .about_contents2_wrap .home_contents3_box1_img_outer{
    width: 87.74%;
  }
  .pg_about .section.sec5 .home_contents3_txt_en,
  .about_contents2_wrap .home_contents3_txt_en{
    width: 12.25%;
  }
  .pg_about .section.sec5 .home_contents3_txt_en{
    justify-content: flex-start;
  }

  /*vision*/
  .about_contents3_box{
    margin-top: 80px;
  }
  .about_contents3_box_list:nth-child(n+2){
    margin-top: 30px;;
  }

  .about_contents3_box{
    width: 68%;
    margin-inline:auto;
    margin-top: 80px;
    padding: 0;
  }
  .about_contents3_box_list p{
    width: 100%;
  }

  /*フジテクノの3つの力​​​​​​​*/
  .about_contents4_box{
    margin-top: 70px;
  }
  .about_contents4_content{
    width: 48%;
  }
  .about_contents4_content.one{
    order: 1;
  }
  .about_contents4_content.two{
    order: 2;
  }
  .about_contents4_content.three{
    order: 4;
  }
  .about_contents4_content.three{
    text-align: center;
    width: 100%;
    padding-top: 32px;
  }
  .about_contents4_content_tt{
    font-size: 30px;
  }
  .about_contents4_content_sub{
    font-size: 20px;
    margin-top: 20px;
  }
  .about_contents4_content .content_desc{

  }
  .about_contents4_content.three .content_desc{
    text-align: center;
  }
  .about_contents4_content_img{
    width: 70%;
    order: 3;
    margin-inline:auto;
  }

  /*目標*/
  .pg_about .section.sec5 .home_contents_box{
    padding-top: 54px;
  }


  /*行動基準*/
  .about_contents5_wrap{

  }
  .about_contents5_box1{

  }
  .about_contents5_box1 .home_contents3_box1_tt{

  }
  .about_contents5_box1 .home_contents3_box1_tt_en{
    font-size: 18px;
  }
  .about_contents5_box1_img{

  }
  .about_contents5_box1_img:before{

  }
  .about_contents5_box1_img:after{

  }
  .about_contents5_box2{
    padding-top: 36px;
  }
  .about_contents5_box2 .sec_tt_en{

  }
  .about_contents5_box2_content{
    padding-left: 57px;
    padding: 66px 0 47px 0;
  }
  .about_contents5_box2_content_item{
    padding: 25px 0 30px;
  }
  .about_contents5_box2_content_item_num{
    font-size: 70px;
  }
  .about_contents5_box2_content_item_right{
    padding-left: 33px;
  }
  .about_contents5_box2_content_item_tt{
    font-size: 20px;
  }
  .about_contents5_box2_content_item .content_desc{

  }

  /*福利厚生*/
  .recruit_contents2_img{

  }
  .recruit_contents2_img:before{

  }
  .recruit_contents2_img:after{

  }
  .recruit_contents2_inner{

  }
  .recruit_contents2_inner .sec_tt_mid{

  }
  .recruit_contents2_items{

  }
  .recruit_contents2_item{

  }
  .recruit_contents2_item_inner{

  }
  .recruit_contents2_item_icon{

  }
  .recruit_contents2_item_tt{

  }
  .recruit_contents2_item_inner .content_desc{

  }
  .home_contents4_wrap .home_contents3_box1_img_outer{
    order: 2;
  }
  .home_contents4_wrap .home_contents3_txt_en{
    order: 1;
    margin-right: -0.03em;
  }

}
@media (min-width:1024px){
  /*見出し*/
  .about_contents1_wrap{
    display: flex;
    flex-wrap: wrap;
  }
  .about_contents1_wrap .home_contents3_txt_en{
    font-size: 100px;
  }
  .about_contents1_wrap .home_contents3_box1_tt_en{
    font-size: 18px;
  }
  .about_contents1_wrap .sec_sub_title_sm{

  }

  .about_contents1_wrap.recruit .content_desc{
    margin-right: 0;
  }
  .about_contents1_box1{
    width: calc(100% - 67.76%);
    position: relative;
    z-index: 1;
    padding-top: 40px;
  }
  .about_contents1_img_box{
    width: 67.76%;
    /*    position: absolute;*/
    position: static;
    right: 0;
    top: 0;
    margin-top: 0;
  }
  .about_contents1_img_box:before{
    width: 500px;
  }
  .about_contents1_img:before{
    padding-top: 400px;
    /* padding-top: 57.75%;*/
  }
  .about_contents1_img{
    margin-right: var(--margin-for-device-side);
  }

  /*存在意義*/
  .about_contents2_wrap .home_contents3_box1_tt{

  }
  .about_contents2_wrap{

  }
  .about_contents2_wrap .home_contents3_box1_img{
    margin-left: var(--margin-for-device-side);
  }
  .pg_about .section.sec5 .home_contents3_box1_img{
    margin-right: var(--margin-for-device-side);
  }
  .pg_about .section.sec5 .home_contents3_txt_en,
  .about_contents2_wrap .home_contents3_txt_en{
    font-size: 84px;
  }
  .about_contents2_wrap .home_contents3_box1{
    width: 50.98%;
  }
  .pg_about .section.sec5 .home_contents3_box1{
    width: 49.01%;
  }
  .about_contents2_wrap .home_contents3_box2{
    padding-top: 127px;
  }

  /*vision*/

  .about_contents3_box{
    margin-inline:-15px;
  }
  .about_contents3_box_list{
    font-size: 20px;

  }
  .about_contents3_box{
    width: auto;
    margin-top: 107px;
  }
  .about_contents3_box_list{
    width: 50%;
    font-size: 20px;
    padding-inline:15px;
  }
  .about_contents3_box_list:nth-child(n+2){
    margin-top: 0;;
  }
  .about_contents3_box_list:nth-child(n+3){
    margin-top: 37px;
  }
  .about_contents3_box_list:nth-child(odd) p{
    padding-left: 42px;
  }
  .about_contents3_box_list:nth-child(even) p{
    padding-left: 42px;
  }

  /*フジテクノの3つの力​​​​​​​*/
  .about_contents4_box{
    margin-top: 90px;
  }
  .about_contents4_content{
    width: 25.98%;
    padding-top: 0;
  }
  .about_contents4_content.one{
    order: 1;
  }
  .about_contents4_content.two{
    order: 3;
  }
  .about_contents4_content.three{
    order: 4;
  }
  .about_contents4_content:nth-child(3){
    padding-left: 26px;
    order: 3;
  }
  .about_contents4_content_tt{
    font-size: 40px;
  }
  .about_contents4_content_sub{
    font-size: 24px;
    margin-top: 37px;
  }
  .about_contents4_content .content_desc{

  }
  .about_contents4_content.one .content_desc{
    padding-right: 20px;
  }
  .about_contents4_content_img{
    width: 48.02%;
    margin-top: 80px;;
    order: 2;
    margin-inline:0;
  }

  .pg_about .section.sec5 .home_contents3_txt_en{
    justify-content: flex-start;
    margin-left: -0.05em;
  }

  /*行動基準*/
  .about_contents5_wrap{
    justify-content: flex-end;
    position: relative;
  }
  .about_contents5_box1{
    width: 44.73%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .about_contents5_box1 .home_contents3_box1_tt{

  }
  .about_contents5_box1 .home_contents3_box1_tt_en{

  }
  .about_contents5_box1_img{
    margin-left: var(--margin-for-device-side);
  }
  .about_contents5_box1_img:before{

  }
  .about_contents5_box1_img:after{

  }
  .about_contents5_box2{
    width:61.51%;
    position: relative;
    z-index: 1;
  }
  .about_contents5_box2 .sec_tt_en{

  }
  .about_contents5_box2_content{
    padding: 66px 0 47px 57px;
  }
  .about_contents5_box2_content:before{
    display: block;
  }
  .about_contents5_box2_content:after{
    margin-left: 0;
    margin-right: calc(50% - 50vw);
  }
  .about_contents5_box2_content_item{

  }
  .about_contents5_box2_content_item_num{
    font-size: 100px;
  }
  .about_contents5_box2_content_item_right{

  }
  .about_contents5_box2_content_item_tt{
    font-size: 22px;
  }
  .about_contents5_box2_content_item .content_desc{

  }

  /*福利厚生*/
  .recruit_contents2_img{

  }
  .recruit_contents2_img:before{

  }
  .recruit_contents2_img:after{

  }
  .recruit_contents2_inner{

  }
  .recruit_contents2_inner .sec_tt_mid{

  }
  .recruit_contents2_items{

  }
  .recruit_contents2_item{

  }
  .recruit_contents2_item_inner{

  }
  .recruit_contents2_item_icon{

  }
  .recruit_contents2_item_tt{

  }
  .recruit_contents2_item_inner .content_desc{

  }
}
@media (min-width:1200px){
  /*見出し*/
  .about_contents1_box1{
    width: calc(100% - 67.76%);
  }
  .about_contents1_img_box:before{
    width: 760px;
  }
  .about_contents1_img:before{
    padding-top: 715px;
    /* padding-top: 57.75%;*/
  }

  /*vison*/
  .about_contents3_box_list{
    font-size: 24px;
  }

  /*フジテクノの3つの力​​​​​​​*/
  .about_contents4_content_img{
    margin-top: 0;
  }
}
@media (min-width:1366px){
  /*見出し*/
  .about_contents1_box1{
    width: calc(100% - 67.76%);
    padding-top: 95px;
  }


  /*行動基準*/
  .about_contents5_box2_content_item_tt{
    font-size: 28px;
  }
  .pg_about .section.sec1 .about_contents1_img_box .about_contents1_img:before{
    padding-top: 760px;
  }
}
@media (min-width:1450px){
  /*フジテクノの3つの力​​​​​​​*/
  .about_contents4_content{
    padding-top: 75px;
  }
  .about_contents1_wrap .content_desc{
    margin-right: 0;;
  }



}

@media (min-width:1700px){
  .pg_about .section.sec1 .about_contents1_img_box .about_contents1_img:before{
    padding-top: 715px;
  }
}



/*******************************
*　recruit
********************************/

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

}
.pg_recruit .section.sec1{
  position: relative;
}
.pg_recruit .section.sec2{
  padding-top: 0;
}
.pg_recruit .section.sec4{
  position: relative;
  margin-top: 50px;
}
.pg_recruit .section.sec5{
  position: relative;
  padding-top: 100px;
}

.pg_recruit .section.sec5:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 985;
  background-image: url(/system_panel/uploads/images/bg6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.gnav .gnav_item a:hover p{
  color: #069599;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_recruit .section.sec5:before{
    top: -50px;
  }
}
@media (min-width:768px){
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 50px;
  }
  .pg_recruit .section.sec3{
    padding-top: 90px;
  }
  .pg_recruit .section.sec4{
    margin-top: 50px;
  }
  .pg_recruit .section.sec5{
    padding-top: 200px;
  }
  .pg_recruit .section.sec6{
    padding-top: 90px;
  }

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


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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 50px;
  }
  .pg_recruit .section.sec3{
    padding-top: 90px;
  }
  .pg_recruit .section.sec4{
    margin-top: 50px;
  }
  .pg_recruit .section.sec5{
    padding-top: 290px;
  }
}
@media (min-width:1366px){
  .pg_recruit .section.sec2{
    padding-top: 70px;
  }

}
@media (min-width:1450px){
  .pg_recruit .section.sec2{
    padding-top: 70px;
  }
}

@media (min-width:1700px){

}


/* メイン部分 */
/*見出し*/
.about_contents1_img_box.recruit:before{
  width: 51.79%;
  height: 100%;
  clip-path: polygon(0 0,100% 0,100% 100%);
  right: -1px;
  left: auto;
  bottom: auto;
}
.about_contents1_img_box .about_contents1_img:before{
  padding-top: 73.84%;
}


/*ページ内リンク*/
.recruit_link_items{
  display: flex;
  flex-wrap: wrap;
}
.recruit_link_item{
  width: 100%;
}
.recruit_link_item:nth-child(n+2){
  margin-top: 10px;;
}
.recruit_link_item_inner{
  display: block;
  background: #324e4a;
  color: #fff;
  border: 1px solid transparent;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
  padding: 10px;
  position: relative;
}
.recruit_link_item_inner:after{
  font-size: 13px;
  content: "▶";
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}
.recruit_link_item_inner:hover{
  background: #fff;
  border: 1px solid #324e4a;
  color: #324e4a;
}
.recruit_link_item_inner:hover:after{
  color: #324e4a;
}

/*OUR POINTS*/
.page_contents_items{
  margin-top: 40px;
  position: relative;
}
.page_contents_items:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 911;
  background-image: url(/system_panel/uploads/images/1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.page_contents_items:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 984;
  background-image: url(/system_panel/uploads/images/2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -18%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.page_contents_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_contents_item:nth-child(n+2){
  margin-top: 50px;
}
.page_contents_box1{
  width: 100%;
}
.page_contents_box1_img{

}
.page_contents_box1_img:before{
  padding-top: 58.82%;
}
.page_contents_box2{
  width: 100%;
  margin-top: 20px;
}
.page_contents_box2_sub{
  display: flex;
  align-items: flex-end;
  color: #a6d44c;
}
.page_contents_box2_sub1{
  font-size: 18px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 10px;
}
.page_contents_box2_sub1:after{
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #a6d44c;
  margin-top: 5px;
}
.page_contents_box2_sub2{
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.page_contents_box2_tt{
  font-size: 20px;
  font-weight: 900;
  margin-top: 10px;
}
.page_contents_box2 .content_desc{
  line-height: 2;
}

/*福利厚生*/
.recruit_contents2_inner .home_contents3_box1_tt_en{
  font-size: 16px;
  font-weight: 900;
  margin-top: 12px;
}
.recruit_contents2_img{

}
.recruit_contents2_img:before{
  padding-top: 650px;
}
.recruit_contents2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.recruit_contents2_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.recruit_contents2_inner .sec_tt_mid{
  color: #fff;
}
.recruit_contents2_inner .home_contents3_txt_en{
  letter-spacing: 0;
  color: #fff;
  writing-mode: horizontal-tb;
}
.recruit_contents2_inner .home_contents3_box1_tt_en:before{
  background: #fff;
}
.recruit_contents2_items{

  margin-top: 36px;
}
.recruit_contents2_item{
  width: 100%;
  color: #fff;
}
.recruit_contents2_item:nth-child(n+2){
  margin-top: 30px; 
}
.recruit_contents2_item:nth-child(odd) .recruit_contents2_item_inner{
  background: #324e4a;
}
.recruit_contents2_item:nth-child(even) .recruit_contents2_item_inner{
  background: #069599;
}
.recruit_contents2_item_inner{
  height: 100%;
  padding: 50px 16px 40px;
}
.recruit_contents2_item_icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit_contents2_item_tt{
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  margin-top: 15px;
}
.recruit_contents2_item_inner .content_desc{
  line-height: 2;
}

/*共に働き、共に成長できる仲間へ。*/
.recruit_contents3_wrap{
  position: relative;
}

.recruit_contents3_wrap .sec_tt{
  color: #fff;
}
.recruit_contents3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.recruit_contents3_item{
  width: 100%;
}
.recruit_contents3_item:nth-child(n+2){
  margin-top: 30px;
}
.recruit_contents3_item_inner{
  background: #f1f1f1;
  padding: 45px 16px 37px;
}
.recruit_contents3_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}
.recruit_contents3_item_tt:after{
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #069599;
  margin: 16px auto 0;
}
.recruit_contents3_item .content_desc{
  line-height: 2;
  margin-top: 11px;
}

/*テーブル*/
.recruit_contents4_wrap{

}
.content_tbl{
  margin-top: 47px;
}
.content_tbl.company .table_rows_td{
  font-size: 16px;
  font-weight: 400;
}
.content_tbl.company .table_rows_td.list{
  line-height: 1.8em;
}
.content_tbl.company .table_rows_td.list p{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.16em;
}
.content_tbl .table_rows_th,
.content_tbl .table_rows_td{
  font-size: 16px;
  border: 1px solid #ababab;
  padding: 15.5px 15px;
}

.pg_recruit .section.sec6 .content_tbl .table_rows_th,
.pg_recruit .section.sec6 .content_tbl .table_rows_td{
  border: 1px solid #dbdbdb;
}
.content_tbl .table_rows_th{
  background: #e5e5e5;
  font-weight: 500;
}
.content_tbl .table_rows_td{
  font-weight: 400;
  line-height: 1.88em;
  background: #fff;
  padding-left: 18px;
}
.recruit_contents4_wrap .read_more{

}

@media (max-width:767px){


  /*swiper*/
  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled{
    opacity: 0;
    pointer-events: none;  
  }

  /*テーブル*/
  .recruit_contents4_wrap{

  }
  .content_tbl{

  }
  .content_tbl .table_rows_th,
  .content_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .content_tbl .table_rows_th{

  }
  .content_tbl .table_rows_td{

  }
  .content_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dbdbdb;
  }

  .pg_recruit .section.sec4 .swiper-slide:nth-child(odd) .recruit_contents2_item_inner{
    background: #324e4a;
  }
  .pg_recruit .section.sec4 .swiper-slide:nth-child(even) .recruit_contents2_item_inner{
    background:#069599;
  }
}
@media (min-width:768px){
  /*ページ内リンク*/
  .recruit_link_items{
    margin-inline:-15px;
  }
  .recruit_link_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_link_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_link_item:nth-child(n+3){
    margin-top: 16px;
  }

  .recruit_link_item_inner{

  }

  /*OUR POINTS*/
  .page_contents_items{
    margin-top: 70px;
  }
  .page_contents_item{

  }
  .page_contents_item:nth-child(n+2){
    margin-top: 78px;
  }
  .page_contents_box1{

  }
  .page_contents_box1_img{

  }
  .page_contents_box1_img:before{

  }
  .page_contents_box2{
    margin-top: 30px;
  }
  .page_contents_box2_sub{

  }
  .page_contents_box2_sub1{
    font-size: 24px;
  }
  .page_contents_box2_sub2{
    font-size: 50px;
  }
  .page_contents_box2_tt{
    font-size: 24px;
  }
  .page_contents_box2 .content_desc{

  }

  /*福利厚生*/
  .recruit_contents2_img{

  }
  .recruit_contents2_img:before{
    padding-top: 1200px;
  }
  .recruit_contents2_img:after{

  }
  .recruit_contents2_inner{

  }
  .recruit_contents2_inner .sec_tt_mid{

  }
  .recruit_contents2_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-20px;
    margin-top: 40px;
  }
  .recruit_contents2_item{
    width: 50%;
    padding-inline:20px;
  }
  .recruit_contents2_item:nth-child(n+2){
    margin-top: 0; 
  }
  .recruit_contents2_item:nth-child(n+3){
    margin-top: 40px;; 
  }
  .recruit_contents2_item_inner{
    padding: 50px 29px 40px;
  }
  .recruit_contents2_item_icon{

  }
  .recruit_contents2_item_tt{
    font-size: 18px;
  }
  .recruit_contents2_item_inner .content_desc{

  }

  /*共に働き、共に成長できる仲間へ。*/
  .recruit_contents3_wrap{

  }
  .recruit_contents3_items{
    margin-inline:-20px;
    margin-top: 50px;
  }
  .recruit_contents3_item{
    width: 50%;
    padding-inline:20px;
  }
  .recruit_contents3_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_contents3_item:nth-child(n+3){
    margin-top: 38px;
  }
  .recruit_contents3_item_inner{
    height: 100%;
    padding: 45px 16px 37px;
  }
  .recruit_contents3_item_tt{
    font-size: 21px;
  }
  .recruit_contents3_item .content_desc{

  }

  /*テーブル*/
  .recruit_contents4_wrap{

  }
  .content_tbl{

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

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

@media (min-width:1024px){
  /*見出し*/
  .about_contents1_img_box.recruit{
    width: 45.78%;
  }
  .about_contents1_img_box.left{
    left: 0;
    right: auto;
    order: 1;
  }
  .about_contents1_wrap.recruit .about_contents1_box1{
    width: calc(100% - 50.98%);
    margin-left: auto;
    position: relative;
    z-index: 4;
    order: 2;
    left: -28px;
  } 

  .about_contents1_wrap.recruit .about_contents1_img{
    margin-left: var(--margin-for-device-side);
    margin-right:0;
  }
  .about_contents1_img_box .about_contents1_img:before{
    padding-top: 720px;
  }

  /*ページ内リンク*/
  .recruit_link_items{

  }
  .recruit_link_item{
    width: 25%;
  }
  .recruit_link_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_link_item:nth-child(n+5){
    margin-top: 16px;
  }
  .recruit_link_item_inner{

  }

  /*OUR POINTS*/
  .page_contents_items{
    margin-top: 70px;
  }
  .page_contents_item{

  }
  .page_contents_item:nth-child(n+2){
    margin-top: 78px;
  }
  .page_contents_item:nth-child(odd) .page_contents_box1{
    order: 1;
  }
  .page_contents_item:nth-child(odd) .page_contents_box2{
    order: 2;
  }
  .page_contents_item:nth-child(even) .page_contents_box1{
    order: 2;
  }
  .page_contents_item:nth-child(even) .page_contents_box2{
    order: 1;
  }
  .page_contents_box1{
    width: 42.76%;
  }
  .page_contents_box1_img{

  }
  .page_contents_item:nth-child(odd) .page_contents_box1_img{
    margin-left: var(--margin-for-device-side);
  }
  .page_contents_item:nth-child(even) .page_contents_box1_img{
    margin-right: var(--margin-for-device-side);
  }
  .page_contents_box1_img:before{

  }
  .page_contents_box2{
    width: 50.98%;
    padding-top: 20px;
    margin-top: 0;
  }
  .page_contents_box2_sub{

  }
  .page_contents_box2_sub1{

  }
  .page_contents_box2_sub2{
    font-size: 60px;
  }
  .page_contents_box2_tt{
    font-size: 26px;
  }
  .page_contents_box2 .content_desc{

  }

  /*福利厚生*/
  .recruit_contents2_inner .home_contents3_box1_tt_en{
    font-size: 18px;
  }
  .recruit_contents2_img{

  }
  .recruit_contents2_img:before{
    padding-top: 1100px;
  }
  .recruit_contents2_img:after{

  }
  .recruit_contents2_inner{

  }
  .recruit_contents2_inner .sec_tt_mid{

  }
  .recruit_contents2_items{

  }
  .recruit_contents2_item{

  }
  .recruit_contents2_item_inner{
    padding: 50px 29px 40px;
  }
  .recruit_contents2_item_icon{

  }
  .recruit_contents2_item_tt{
    font-size: 20px;
  }
  .recruit_contents2_item_inner .content_desc{

  }

  /*共に働き、共に成長できる仲間へ。*/
  .recruit_contents3_wrap{

  }
  .recruit_contents3_items{
    margin-top: 68px;
  }
  .recruit_contents3_item{

  }
  .recruit_contents3_item_inner{
    padding: 45px 30px 37px;
  }
  .recruit_contents3_item_tt{

  }
  .recruit_contents3_item .content_desc{

  }

  /*テーブル*/
  .recruit_contents4_wrap{

  }
  .content_tbl{

  }
  .content_tbl .table_rows_th,
  .content_tbl .table_rows_td{

  }
  .content_tbl .table_rows_th{
    width: 284px;
  }
  .content_tbl .table_rows_td{

  }
}
@media (min-width:1200px){
  /*OUR POINTS*/
  .page_contents_box2{
    padding-top: 20px;
  }
  .page_contents_box2_tt{
    font-size: 32px;
  }

  /*福利厚生*/
  .recruit_contents2_items{

  }
  .recruit_contents2_item{
    width: 25%;
  }
  .recruit_contents2_item:nth-child(n+3){
    margin-top: 0; 
  }
  .recruit_contents2_img:before{
    padding-top: 721px;
  }

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


}
@media (min-width:1450px){
  /*OUR POINTS*/
  .page_contents_box2{
    padding-top: 75px;
  }
}

@media (min-width:1700px){
  /*見出し*/
  .about_contents1_img_box.recruit{
    width: 50.98%;
  }
}






/*******************************
*　流れ
********************************/

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

}
.pg_flow .section.sec1{
  padding-bottom: 40px;
}
.pg_flow .section.sec2{

}
.pg_flow .section.sec3{
  padding-top: 140px;
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_flow{

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }
  .pg_flow .section.sec3{
    padding-top: 100px;
  }

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


}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_flow{

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }
  .pg_flow .section.sec3{
    padding-top: 140px;
  }

}


/* メイン部分 */
/*ページ内リンク*/
.recruit_link_items.flow{

}
.recruit_link_items.flow .recruit_link_item{

}

/*内容*/
.flow_content_child_box2_tt.center{
  margin-bottom: 36px;
}
flow_content_items{

}
.flow_content_item{

}
.flow_content_child{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow_content_child:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 40px solid #324e4a;
  border-bottom: 0;
  position: absolute;
  bottom: -77px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.flow_content_child:last-child:after{
  display: none;
}
.flow_content_child:nth-child(n+2){
  margin-top: 70px;
}
.flow_content_child_box1{
  width: 100%;
  background: #069599;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
.flow_content_item.gr .flow_content_child_box1{
  background: #a6d44c;
}
.flow_content_child_box1_num1{
  font-size: 18px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.flow_content_child_box1_num2{
  font-size: 40px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.flow_content_child_box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f1f1f1;
  padding: 40px 16px;
}
.flow_content_child_box2_left{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.flow_content_child_box2_tt{
  font-size: 18px;
  font-weight: 900;
  color: #324e4a;
}
.flow_content_child_box2_tt.center{
  text-align: center;
}
.flow_content_child_box2 .content_desc{

}
.flow_content_child_contact{
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
}
.flow_content_child_contact_item{

}
.flow_content_child_contact_item_tt{
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}
.flow_content_child_contact_item_num{
  font-size: 36px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  margin-top: 10px;
}
.flow_content_child_contact_item_num a:hover{
  color: #a6d44c;
}
.flow_content_child_contact_item .read_more{
  margin-top: 0;
}
.flow_content_child_box2_right{
  width: 100%;
  order: 1;
}
.flow_content_child_box2_img:before{
  padding-top: 70.21%;
}
@media (max-width:767px){
  .flow_content_child_contact{
    justify-content: center;
    margin-top: 36px;
  }
  .flow_content_child_contact_item{
    text-align: center;
    width: 100%;
  }
  .flow_content_child_contact_item:nth-child(n+2){
    margin-top: 16px;
  }
  .flow_content_child_contact_item .read_more a{
    width: 100%;
  }

  .flow_content_child_box1{
    align-items: flex-start;
    padding-left: 16px;
  }
  .flow_content_child_box1_num1{
    font-size: 24px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  /*ページ内リンク*/
  .recruit_link_items.flow{

  }
  .recruit_link_items.flow .recruit_link_item{

  }

  /*内容*/
  flow_content_items{

  }
  .flow_content_item{

  }
  .flow_content_child{

  }
  .flow_content_child:after{
    bottom: -77px;
  }
  .flow_content_child:nth-child(n+2){
    margin-top: 73px;
  }
  .flow_content_child_box1{
    width: 100%;
  }
  .flow_content_child_box1_num1{
    font-size: 20px;
  }
  .flow_content_child_box1_num2{
    font-size: 50px;
  }
  .flow_content_child_box2{
    width:100%;
    padding: 40px 30px;
  }
  .flow_content_child_box2_left{
    margin-top: 30px;
  }
  .flow_content_child_box2_tt{
    font-size: 24px;
  }
  .flow_content_child_box2 .content_desc{

  }
  .flow_content_child_contact{

  }
  .flow_content_child_contact_item{
    margin-right: 16px;
  }
  .flow_content_child_contact_item_tt{

  }
  .flow_content_child_contact_item_num{
    font-size: 30px;
  }
  .flow_content_child_contact_item .read_more{

  }
  .flow_content_child_contact_item .read_more a{
    width: 300px;
  }
  .flow_content_child_box2_right{

  }
  .flow_content_child_box2_img:before{

  }
}
@media (min-width:1024px){
  /* メイン部分 */
  /*ページ内リンク*/
  .recruit_link_items.flow{
    margin-inline:-25px;
  }
  .recruit_link_items.flow .recruit_link_item{
    width: 50%;
    padding-inline:25px;
  }
  .recruit_link_items.flow .recruit_link_item:nth-child(n+2){

  }
  .recruit_link_items.flow .recruit_link_item_inner{
    padding: 14px 5px;;
  }


  /*内容*/
  flow_content_items{

  }
  .flow_content_item{

  }
  .flow_content_child{

  }
  .flow_content_child_box1{
    width: 9.4%;
    padding:0 0 16px 0;
    order: 1;
  }
  .flow_content_child_box1_num1{
    font-size: 30px;
  }
  .flow_content_child_box1_num2{
    font-size: 60px;
  }
  .flow_content_child_box2{
    width: calc(100% - 9.4%);
    padding: 36px 16px 24px 16px;
    order: 2;
  }
  .flow_content_child_box2_left{
    width: 57.25%;
    order: 1;
    margin-top: 0;
  }
  .flow_content_child_box2_tt{
    font-size: 30px;
  }
  .flow_content_child_box2 .content_desc{
    margin-top: 22px;
  }
  .flow_content_child_contact{
    justify-content: center;
  }
  .flow_content_child_contact_item{
    margin-right: 16px;
  }
  .flow_content_child_contact_item:nth-child(n+2){
    margin-top: 16px;
  }
  .flow_content_child_contact_item_tt{

  }
  .flow_content_child_contact_item_num{
    font-size: 34px;
  }
  .flow_content_child_contact_item .read_more{
    margin-top: 5px;
  }
  .flow_content_child_contact_item .read_more a{
    min-width: 260px;
    width: 100%;
  }
  .flow_content_child_box2_right{
    width: 36.86%;
    order: 2;

  }
  .flow_content_child_box2_img:before{

  }
}
@media (min-width:1200px){
  .flow_content_child_box1_num2{
    font-size: 70px;
  }
  .flow_content_child_contact{
    justify-content: flex-start;
  }
  .flow_content_child_contact_item:nth-child(n+2){
    margin-top: 0;
  }

}

@media (min-width:1024px){


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


}
@media (min-width:1366px){
  /*内容*/
  .flow_content_child_contact_item{
    margin-right: 30px;
  }
  .flow_content_child_box2{
    padding: 36px 40px 24px 60px;
  }
  .flow_content_child_contact_item .read_more a{
    min-width: 280px;
    width: 100%;
  }


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

}

@media (min-width:1700px){
  .flow_content_child_contact_item .read_more a{
    min-width: 350px;
    width: 100%;
  }
}


/*******************************
*　温泉
********************************/

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

}
.pg_onsenPump .section.sec1{
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.pg_onsenPump .section.sec1:after{
  content: "";
  display: block;
  width: 100%;
  height: 320px;
  background: #069599;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.pg_onsenPump .section.sec2{
  padding-top: 0;
  position: relative;
}
.pg_onsenPump .section.sec3{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.pg_onsenPump .section.sec4{
  position: relative;
}
.pg_onsenPump .section.sec5{
  padding: 0;
}
.pg_onsenPump .section.sec6{

}
.pg_onsenPump .section.sec7{
  position: relative;
}
.pg_onsenPump .section.sec7:before{
  content: "";
  display: block;
  width: 100%;
  height: 520px;
  background: #a6d44c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_onsenPump .section.sec1:after{
    display: none;
  }
  .pg_onsenPump .section.sec3{
    margin-top: 230px;
  }
  .pg_onsenPump .section.sec7:before{
    height: 300px;
  }

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_onsenPump{

  }
  .pg_onsenPump .section.sec1{
    padding-bottom: 80px;
    margin-bottom: 100px;
  }
  .pg_onsenPump .section.sec2{
    position: relative;
  }
  .pg_onsenPump .section.sec3{
    margin-top: 200px;
  }
  .pg_onsenPump .section.sec5{
    padding-top: 100px;
  }
  .pg_onsenPump .section.sec6{
    padding-top: 100px;
  }
  .pg_onsenPump .section.sec7{
    padding-top: 100px;
    margin-top: 50px;
  }
  .pg_onsenPump .section.sec7:before{
    height: 400px;
  }

}
@media (min-width:1024px){
  .pg_onsenPump .section.sec3{
    display: block;
    position: relative;
    margin-top: 350px;
  }
  .pg_onsenPump .section.sec4{
    margin-top: 300px;
  }

}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_onsenPump{

  }
  .pg_onsenPump .section.sec1{
    padding-bottom: 105px;
    margin-bottom: 130px;
  }
  .pg_onsenPump .section.sec2{

  }
  .pg_onsenPump .section.sec3{
    margin-top: 320px;
  }
  .pg_onsenPump .section.sec4{
    margin-top: 200px;
  }
  .pg_onsenPump .section.sec5{
    padding-top: 100px;
  }
  .pg_onsenPump .section.sec6{
    padding-top: 145px;
  }
  .pg_onsenPump .section.sec7{
    padding-top: 145px;
    margin-top: 235px;
  }
  .pg_onsenPump .section.sec7:before{
    height: 352px;
  }
}
@media (min-width:1366px){
  .pg_onsenPump .section.sec4{
    margin-top: 100px;
  }
}

/* メイン部分 */
.home_contents_box.onsen{

}
.home_contents_box.onsen .home_contents3_box1{

}
.home_contents_box.onsen .home_contents3_box1_img{

}
.home_contents_box.onsen .home_contents3_box1_img:before{
  padding-top: 123.07%;
}
.home_contents_box.onsen .home_contents3_box2{

}
.home_contents_box.onsen .sec_sub_title_sm{
  color: #069599;
  margin-top: 16px;
}
.home_contents_box.onsen .content_desc{
  line-height: 2.125em;;
}
.home_contents_box.onsen .home_contents3_box1_tt{
  justify-content: flex-start;
}


.pg_onsenPump .flowing_etters{
  margin-bottom: -0.1em;
}

/*温泉設備のことなら、​​​​​​​すべてフジテクノへ。*/
.onsen_contents2_img{

}
.onsen_contents2_img:before{
  padding-top: 750px;
}
.onsen_contents2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.onsen_contents2_inner{
  color: #fff;
  width: 100%;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.onsen_contents2_inner .product_tt{

}
.onsen_contents2_inner .content_desc{

}
.recruit_contents2_items.onsen{

}
.recruit_contents2_items.onsen .recruit_contents2_item{

}
.recruit_contents2_items.onsen .recruit_contents2_item_inner{

}
.recruit_contents2_items.onsen .recruit_contents2_item:nth-child(odd) .recruit_contents2_item_inner{
  background: #069599;
}
.recruit_contents2_items.onsen .recruit_contents2_item:nth-child(even) .recruit_contents2_item_inner{
  background: #324e4a;
}
.recruit_contents2_items.onsen .recruit_contents2_item_icon{

}
.recruit_contents2_items.onsen .recruit_contents2_item_tt{
  font-weight: 900;
}
.recruit_contents2_items.onsen .content_desc{

}

/*地図*/
.onsen_contents3_inner{
  width: 100%;
  order: 1;
}
.onsen_contents3_img{
  order: 2;
  margin-top: 40px;;
}
.onsen_contents3_box1{

}
.onsen_contents3_box1 .sec_tt_mid{

}
.onsen_contents3_box1 .home_contents3_txt_en{
  width: auto;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
}
.onsen_contents3_box1 .home_contents3_box1_tt_en{
  font-size: 16px;
  margin-top: 15px;
  font-weight: 900;
}
.onsen_contents3_box1 .content_desc{
  margin-top: 16px;
}
.onsen_contents3_box1 .onsen_contents3_lists{
  width: 100%;;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  background: #e5e5e5;
  padding: 30px 47px;
  margin-top: 40px;
}
.onsen_contents3_box1 .onsen_contents3_list{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 38px;
}
.onsen_contents3_box1 .onsen_contents3_list:nth-child(n+2){
  margin-top: 0;
}
.onsen_contents3_box1 .onsen_contents3_list:nth-child(n+3){
  margin-top: 16px;;
}
.onsen_contents3_box1 .onsen_contents3_list:before{
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background-image: url(/system_panel/uploads/images/spot.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*スマホ管理システムについて*/
.sec_tt_mid.yoko .home_contents3_txt_en{
  width: auto;
  writing-mode: horizontal-tb;
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents6_inner{
  padding: 30px 16px;
  top: 0;
  transform:translateX(-50%);
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents6_inner .read_more a{
  border: 1px solid transparent;
  background: #069599;
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents6_inner .read_more a:hover{
  background: #fff;
  border: 1px solid #069599;
  color: #069599;
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents6_img:before{
  padding-top: 700px;
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents3_txt_en{
  letter-spacing: 0.015em;
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents3_box1_tt_en{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
.home_contents6_wrap.onsen_contents4_wrap .home_contents3_box1_tt_en:before{
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  background: #fff;
  margin-right: 10px;
}
.home_contents6_wrap.onsen_contents4_wrap .flow_content_child_box2_tt{
  line-height: 1.666em;
  margin-top: 20px;
}
.home_contents6_wrap.onsen_contents4_wrap .flow_content_child_box2_tt:after{
  content: "";
  display: block;
  width: 51.42%;
  height: 1px;
  background: #fff;
  margin-top: 20px;
}

/*ポンプや温泉管理で、こんなお悩みはありませんか？*/
.onsen_contents5_wrap{
  position: relative;
  padding: 50px 0 0;
}
.onsen_contents5_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #a6d44c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.sec_tt.wh{
  color: #fff;
} 
.onsen_contents5_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  padding: 20px 16px;
  margin-top: 40px;
}
.onsen_contents5_item{
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}
.onsen_contents5_item:nth-child(n+2){
  margin-top: 16px;;
}
.onsen_contents5_item strong{
  color: #fc8353;
  font-weight: 600;
}
.onsen_contents5_item p{
  position: relative;
  padding-left: 37px;
}
.onsen_contents5_item p:before{
  content: "";
  display: block;
  width: 16px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/gr_check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 14px;
  left:0;
  transform: translateY(-50%);
}

.page_contents_box2_tt.center{
  text-align: center;
}
.onsen_contents6_wrap{
  position: relative;
  background: #f1f1f1;
  padding-bottom: 50px;
}
.onsen_contents6_wrap:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 220;
  clip-path: polygon(50% 100%,100% 0,0 0);
  background:#a6d44c;
  position: absolute;
  top: -5px;
  left: 0;
  z-index: 0;
}
.onsen_contents6_wrap .page_contents_box2_tt{
  color: #a6d44c;
}
.onsen_contents6_content{
  padding-top: 80px;
}

/*故障してからでも、定期点検でも対応します。*/
.onsen_contents7_wrap .home_contents2_item_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/nn1.png);
}
.onsen_contents7_content{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;
  padding: 0 16px;
}
.onsen_contents7_content_t1{
  font-size: 16px;
  font-weight: 900;
  display: inline-block;
  background: #069599;
  color: #fff;
  text-align: center;
  padding: 2px 20px;
}
.onsen_contents7_content .flow_content_child_box2_tt{
  margin-top: 16px;
} 
.onsen_contents7_content .content_desc{
  margin-top: 30px;
}
.onsen_contents7_wrap .home_contents2_items:before{
  aspect-ratio:1920 / 953;
  background-image: url(/system_panel/uploads/images/sss.png);
}

.onsen_contents4_wrap .flow_content_child_box2_tt{
  color: #fff;  
}
@media (max-width:767px){
  .onsen_contents3_box1 .onsen_contents3_lists{
    justify-content: flex-start;
    padding: 30px 20px;
  }
  .onsen_contents3_box1 .onsen_contents3_list{
    width: 48%;
    font-size: 16px;
    padding-left: 30px;
  }
  .onsen_contents3_box1 .onsen_contents3_list:nth-child(odd){
    margin-right: 10px;
  }

  .onsen_contents6_wrap:before{
    top: 0;
  }
  .onsen_contents6_wrap .page_contents_box2_tt{
    letter-spacing: 0;
    font-size: 17px;
  }

  .onsen_contents7_wrap .home_contents2_items{
    padding-top: 50px;
  }

  .recruit_contents2_items.onsen .swiper-slide:nth-child(odd) .recruit_contents2_item_inner{
    background: #069599;
  }
  .recruit_contents2_items.onsen .swiper-slide:nth-child(even) .recruit_contents2_item_inner{
    background: #324e4a;
  }

  .swiper-button-next, .swiper-button-prev{
    color: #fff;
  }
  .onsen_contents2_inner .swiper-button-next, .onsen_contents2_inner .swiper-button-prev{
    top: 42%;
  }

  .onsen_contents7_content_t1{
    width: 100%;
  }
  .onsen_contents7_content .content_desc{
    margin-top: 11px;
  }
  .flow_content_child_box2_tt{
    font-size: 19px;
  }
  .home_contents2_item_img{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .home_contents2_wrap .home_contents2_item_img{
    margin-left: 0;
    margin-right: 0;
  }
  .flow_content_child_box2_tt p{
    letter-spacing: 0; 
  }

  .home_contents6_wrap.onsen_contents4_wrap .home_contents6_img:before{
    padding-top:800px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .home_contents_box.onsen{

  }
  .home_contents_box.onsen .home_contents3_box1{

  }
  .home_contents_box.onsen .home_contents3_box1_img_outer {
    width: 86.02%;
  }
  .home_contents_box.onsen .home_contents3_txt_en{
    align-items: center;
  }
  .home_contents_box.onsen .sec_sub_title_sm{
    margin-top: 20px;
  }
  .home_contents_box.onsen .home_contents3_box1_img{

  }
  .home_contents_box.onsen .home_contents3_box2{

  }

  /*温泉設備のことなら、​​​​​​​すべてフジテクノへ。*/
  .onsen_contents2_img{

  }
  .onsen_contents2_img:before{
    padding-top: 1100px;
  }
  .onsen_contents2_inner{
    width: 100%;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .onsen_contents2_inner .product_tt{

  }
  .onsen_contents2_inner .content_desc{

  }
  .recruit_contents2_items.onsen{
    justify-content: center;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item{

  }

  .recruit_contents2_items.onsen .recruit_contents2_item_inner{

  }
  .recruit_contents2_items.onsen .recruit_contents2_item_icon{

  }
  .recruit_contents2_items.onsen .recruit_contents2_item_tt{

  }
  .recruit_contents2_items.onsen .content_desc{

  }

  /*地図*/
  .onsen_contents3_img{
    margin-top: 50px;;
  }
  .onsen_contents3_inner{

  }
  .onsen_contents3_box1{

  }
  .onsen_contents3_box1 .sec_tt_mid{

  }
  .onsen_contents3_box1 .home_contents3_txt_en{

  }
  .onsen_contents3_box1 .home_contents3_box1_tt_en{
    font-size: 16px;
  }
  .onsen_contents3_box1 .content_desc{

  }
  .onsen_contents3_box1 .onsen_contents3_lists{
    width: 100%;;
  }
  .onsen_contents3_box1 .onsen_contents3_list{
    font-size: 20px;
  }
  .onsen_contents3_box1 .onsen_contents3_list:nth-child(n+2){
    margin-top: 0;
  }
  .onsen_contents3_box1 .onsen_contents3_list:nth-child(n+4){
    margin-top: 10px;
  }

  /*スマホ管理システムについて*/
  .sec_tt_mid.yoko .home_contents3_txt_en{
    width: auto;
    writing-mode: horizontal-tb;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents3_txt_en{
    font-size: 50px;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents6_inner{
    padding: 30px 16px;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents6_img:before{
    padding-top: 650px;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents3_box1_tt_en{
    font-size: 18px;
  }
  .home_contents6_wrap.onsen_contents4_wrap .flow_content_child_box2_tt{
    margin-top: 40px;
  }

  /*ポンプや温泉管理で、こんなお悩みはありませんか？*/
  .onsen_contents5_wrap{
    padding: 100px 0 0;
  }
  .onsen_contents5_items{
    padding: 40px 60px;
    margin-top: 50px;
  }
  .onsen_contents5_item{

  }
  .onsen_contents5_item:nth-child(n+2){
    margin-top: 20px;;
  }
  .onsen_contents5_item p{

  }
  .page_contents_box2_tt.center{
    text-align: center;
  }
  .onsen_contents6_wrap{
    padding-bottom: 100px;
  }
  .onsen_contents6_content{
    padding-top: 150px;
  }
  .onsen_contents6_wrap .content_desc{
    margin-top: 34px;
  }

  /*故障してからでも、定期点検でも対応します。*/
  .onsen_contents7_wrap .home_contents2_item_img img{
  }
  .onsen_contents7_content{
    top: 60%;
    padding: 0 20px;
  }
  .onsen_contents7_content_t1{

  }
  .onsen_contents7_content .flow_content_child_box2_tt{

  } 
  .onsen_contents7_content .content_desc{

  }
  .onsen_contents7_wrap .home_contents2_items{
    margin-top: 45px;;
  }
  .onsen_contents7_wrap .home_contents2_item:first-child{
    padding-top: 0;
  }
  .onsen_contents7_wrap .home_contents2_item:last-child{
    padding-top: 40px;
  }
  .onsen_contents7_wrap .home_contents2_items:before{
    width: 1920px;
  }
  .onsen_contents7_wrap .home_contents2_item{
    width: 75%;
    margin-inline:auto;
  }

  .home_contents6_wrap.onsen_contents4_wrap .flow_content_child_box2_tt:after{
    width: 60.42%;
  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .home_contents_box.onsen{
    align-items: flex-start;
  }
  .home_contents_box.onsen .home_contents3_box1{
    width: 44.73%;
  }
  .home_contents_box.onsen .home_contents3_box1_img{
    margin-left: 0;
  }
  .home_contents_box.onsen .home_contents3_box2{
    width: 50.98%;
    padding-top: 150px;
  }
  .home_contents_box.onsen .home_contents3_txt_en{
    font-size: 80px;
    align-items: center;
  }
  .home_contents_box.onsen .sec_sub_title_sm{
    font-size: 28px;
    margin-top: 20px;
  }

  /*温泉設備のことなら、​​​​​​​すべてフジテクノへ。*/
  .onsen_contents2_img{

  }
  .onsen_contents2_img:before{
    padding-top: 700px;
  }
  .content_desc.center{

  }
  .onsen_contents2_inner{

  }
  .onsen_contents2_inner .product_tt{

  }
  .onsen_contents2_inner .content_desc.center{
    margin-top: 32px;
  }
  .recruit_contents2_items.onsen{
    justify-content: flex-start;
    margin-top: 70px;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item{
    width:33.333%;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item_inner{
    padding: 63px 29px 58px;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item_icon{

  }
  .recruit_contents2_items.onsen .recruit_contents2_item_tt{
    font-size: 22px;
    margin-top: 38px;
  }
  .onsen_contents2_inner .recruit_contents2_items.onsen .content_desc{

  }

  /*地図*/
  .onsen_contents3_img{
    margin-top: 0;
  }
  .onsen_contents3_inner{
    width: 100%;
    position: absolute;
    top:0;
    left: 50%;
    transform:translateX(-50%);
    z-index: 1;
    order: 2;
  }
  .onsen_contents3_box1{
    width: 42.76%;
    padding-top: 50px;
  }
  .onsen_contents3_box1 .sec_tt_mid{

  }
  .onsen_contents3_box1 .home_contents3_txt_en{

  }
  .onsen_contents3_box1 .home_contents3_box1_tt_en{
    font-size: 18px;
  }
  .onsen_contents3_box1 .content_desc{

  }
  .onsen_contents3_box1 .onsen_contents3_lists{
    display: block;
    width: 365px;
  }
  .onsen_contents3_box1 .onsen_contents3_list{
    font-size: 22px;
  }
  .onsen_contents3_box1 .onsen_contents3_list:nth-child(n+2){
    margin-top: 10px;
  }

  /*スマホ管理システムについて*/
  .sec_tt_mid.yoko .home_contents3_txt_en{
    width: auto;
    writing-mode: horizontal-tb;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents3_txt_en{
    font-size: 60px;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents6_inner{
    padding: 30px 60px;
  }
  .home_contents6_wrap.onsen_contents4_wrap .home_contents6_img:before{
    padding-top: 700px;
  }

  /*ポンプや温泉管理で、こんなお悩みはありませんか？*/
  .onsen_contents5_wrap{
    padding: 137px 0 0;
  }
  .onsen_contents5_items{
    padding: 20px 20px;
    margin-top: 50px;
  }
  .onsen_contents5_item{
    width: 49.01%;
    font-size: 18px;
  }
  .onsen_contents5_item:nth-child(n+2){
    margin-top: 0;
  }
  .onsen_contents5_item:nth-child(n+3){
    margin-top: 23px;
  }
  .onsen_contents5_item p{

  }
  .page_contents_box2_tt.center{
    text-align: center;
  }
  .onsen_contents6_wrap{
    padding-bottom: 145px;
  }
  .onsen_contents6_content{
    padding-top: 200px;
  }

  /*故障してからでも、定期点検でも対応します。*/
  .onsen_contents7_wrap .sec_tt_ja{
    font-size: 21px;
    margin-top: 15px;
  }
  .onsen_contents7_wrap .home_contents2_item_img img{

  }
  .onsen_contents7_content{
    width: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    padding: 0 20px;
  }
  .onsen_contents7_content_t1{
    font-size: 16px;
  }
  .onsen_contents7_content .flow_content_child_box2_tt{
    font-size: 22px;
  } 
  .onsen_contents7_content .content_desc{

  }
  .onsen_contents7_wrap .home_contents2_items:before{
    width: 1200px;
  }
  .onsen_contents7_wrap .home_contents2_item{
    width: 50%;
    margin-inline:0;
  }
  .onsen_contents7_wrap .home_contents2_item:last-child{
    padding-top: 73px;
  }

  .home_contents6_wrap.onsen_contents4_wrap .flow_content_child_box2_tt:after{
    width: 51.42%;
  }
}
@media (min-width:1200px){
  /*温泉設備のことなら、​​​​​​​すべてフジテクノへ。*/
  .onsen_contents2_img:before{
    padding-top: 630px;
  }


  .home_contents6_wrap.onsen_contents4_wrap .home_contents6_img:before{
    padding-top: 630px;
  }
  .onsen_contents6_content{
    padding-top: 275px;
  }

  /*故障してからでも、定期点検でも対応します。*/
  .onsen_contents7_content{
    top: 71%;
    padding: 0 44px;
  }
  .onsen_contents7_content .flow_content_child_box2_tt{
    font-size: 24px;
  }
  .onsen_contents7_content_t1{
    font-size: 22px;
  }

  .onsen_contents7_wrap .home_contents2_items:before{
    width: 1400px;
  }
}
@media (min-width:1366px){
  /* メイン部分 */
  .home_contents_box.onsen .home_contents3_txt_en{
    font-size: 100px;
  }

  /*温泉設備のことなら、​​​​​​​すべてフジテクノへ。*/
  .recruit_contents2_items.onsen{
    margin-inline:-27.5px;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item{
    padding-inline:27.5px;
  }
  .recruit_contents2_items.onsen .recruit_contents2_item_tt{
    font-size: 28px;
  }

  /*ポンプや温泉管理で、こんなお悩みはありませんか？*/
  .onsen_contents5_items{
    padding: 46px 55px 46px 120px;
  }

  /*故障してからでも、定期点検でも対応します。*/
  .onsen_contents7_content .flow_content_child_box2_tt{
    font-size: 30px;
  }
  .onsen_contents7_content_t1{
    font-size: 24px;
  }
  .onsen_contents7_wrap .home_contents2_items:before{
    width: 1600px;
  }
}
@media (min-width:1450px){
  /*スマホ管理システムについて*/
  .home_contents6_wrap.onsen_contents4_wrap .home_contents3_txt_en{
    font-size: 100px;
  }

  .onsen_contents7_wrap .home_contents2_items:before{
    width: 1920px;
  }
}

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


}

/* メイン部分 */

/*地図*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}

/*ギャラリー*/
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 40px;
}
.company_gallery_item{
  width: 50%;
  padding-inline:5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img:before{
  padding-top: 71.42%;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*地図*/
  .gmap{
    margin-top: 60px;
  }
  .access_map iframe{
    height: 350px;
  }

  /*ギャラリー*/
  .company_gallery_items{
    margin-inline:-15px;
    margin-top: 50px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }
  company_gallery_item_img:before{

  }
}
@media (min-width:1024px){
  /*地図*/
  .gmap{
    margin-top: 80px;
  }
  .access_map iframe{
    height: 400px;
  }

  /*ギャラリー*/
  .company_gallery_items{
    margin-top: 75px;
  }
  .company_gallery_item{

  }
  .company_gallery_item:nth-child(n+3){

  }
  company_gallery_item_img:before{

  }

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


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


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


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


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

}

@media (min-width:1700px){

}

/*******************************
*　製品
********************************/

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

}
.pg_product .section.sec1{

}
.pg_product .section.sec2{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_product .section.sec1{
    padding-bottom: 0;
  }
  .pg_product .section.sec2{
    padding-top:0px;
  }

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_product{

  }
  .pg_product .section.sec1{

  }
  .pg_product .section.sec2{

  }

}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_product{

  }
  .pg_product .section.sec1{
    padding-bottom: 44px;
  }
  .pg_product .section.sec2{

  }

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


}

/* メイン部分 */
/*カテゴリ*/
.product_cate_wrap{

}
.product_cate_wrap .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.product_cate_wrap .webgene-item{
  width: 100%;
}
.product_cate_wrap .webgene-item:nth-child(n+2){
  margin-top: 10px;
}
.product_cate_wrap .webgene-item a{
  display: block;
  width: 100%;;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-align: center;
  border: 2px solid currentColor;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #FFF;
  padding: 20px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.product_cate_wrap .webgene-item a p{
  letter-spacing: 0.075em;
}
.product_cate_wrap .webgene-item a:after{
  font-size: 12px;
  content: "▶";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 9px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.product_cate_wrap .webgene-item a.on{
  background: #fff;
  border: 2px solid #324e4a;
  color: #324e4a;
}
.pg_product .posts_side_title{
  background: #069599;
}

/*リスト*/
.product_list_box{

}
.product_list_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.product_list_box .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.product_list_box .webgene-item:nth-child(n+3){
  margin-top: 16px;;
}
.product_list_box .webgene-item a{

}
.product_list_box .webgene-item .img{
  overflow: hidden;
}
.product_list_box .webgene-item .img:before{
  padding-top: 80%;
}
.product_list_box .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.65em;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden;
  margin-top: 10px;
}

/*詳細*/
.gallery_wrap{
  width: 100%;
}
.product_detail{

}
.product_detail .title{
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 2px solid #b3b3b3;
  padding-bottom: 14px;
  margin-bottom: 25px;
}
.product_detail .webgene-item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_detail .gallery_box1{
  width: 100%;
}
.product_detail .gallery_box1 .img:before{

}
.product_detail .gallery_box2{
  width: 100%;
  position: relative;
  margin-top: 8px;
}
.gallery_box2 .img:before{
  padding-top: 75%;
}
.product_detail .gallery_thumb .swiper-slide{
  height: auto!important;
}
.product_detail .gallery_detail .post_content{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.375em;
  letter-spacing: 0.075em;
}
.maker{
  margin-top: 30px;
}
.product_detail .gallery_detail{
  width: 100%;
}
.product_detail .read_more a{
  width: 100%;
  max-width: 303px;
  background: #069599;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.product_detail .read_more a:after{
  display: none;
}
.product_detail .read_more p{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_detail .read_more p{
  letter-spacing: 0.075em;
}
.product_detail .read_more p:after{
  content: "";
  display: block;
  width: 18px;
  height: 19px;
  background-image: url(/system_panel/uploads/images/20250901122456953613.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-right: -5px;
}
.product_detail .read_more a:hover{
  background: #fff;
  border: 1px solid #069599;
  color: #069599;
}
.product_detail .read_more a:hover p:after{
  background-image: url(/system_panel/uploads/images/20250901122456536518.svg);
}
@media (max-width:767px){
  .product_cate_wrap{
    display: none;
  }
  .product_detail .gallery_detail{
    margin-top: 30px;
  }
}
@media (min-width:768px){
  /*カテゴリ*/
  .product_cate_wrap{

  }
  .product_cate_wrap .webgene-blog{
    margin-inline:-15px;
  }
  .product_cate_wrap .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .product_cate_wrap .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .product_cate_wrap .webgene-item a{

  }
  .product_cate_wrap .webgene-item a:after{

  }

  /*リスト*/
  .product_list_box{

  }
  .product_list_box .webgene-blog{
    margin-inline:-15px;
  }
  .product_list_box .webgene-item{
    padding-inline:15px;
  }
  .product_list_box .webgene-item:nth-child(n+3){
    margin-top: 30px;;
  }
  .product_list_box .webgene-item a{

  }
  .product_list_box .webgene-item .img:before{

  }
  .product_list_box .webgene-item .title{

  }

  /*詳細*/
  .product_detail{

  }

  .product_detail .title{
    font-size: 20px;
  }
  .product_detail .gallery_box1{

  }
  .product_detail .gallery_box1 .img:before{

  }

  .gallery_box2 .img:before{

  }
  .maker{
    margin-top: 44px;
  }
  .pg_product .read_more{
    margin-top: 115px;
  }
  .gallery_detail .read_more{
    justify-content: center;
  }
}
@media (min-width:1024px){
  /*カテゴリ*/
  .product_cate_wrap{

  }
  .product_cate_wrap .webgene-blog{

  }
  .product_cate_wrap .webgene-item{
    width: 25%;
  }
  .product_cate_wrap .webgene-item:nth-child(n+5){
    margin-top: 16px;
  }
  .product_cate_wrap .webgene-item a{
    font-size: 14px;
  }
  .product_cate_wrap .webgene-item a:after{

  }


  /*リスト*/
  .product_list_box{

  }
  .product_list_box .webgene-blog{

  }
  .product_list_box .webgene-item{
    width: 33.333%;
  }
  .product_list_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .product_list_box .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }
  .product_list_box .webgene-item a{

  }
  .product_list_box .webgene-item .img:before{

  }
  .product_list_box .webgene-item .title{

  }

  /*詳細*/
  .gallery_wrap{
    width: 57.2%;
  }
  .product_detail{

  }
  .product_detail .title{
    font-size: 24px;
  }
  .product_detail .gallery_box1{

  }
  .product_detail .gallery_box1 .img:before{

  }
  .gallery_box2 .img:before{

  }
  .product_detail .gallery_detail{
    width: 38.73%;
    padding-left: 5px;
  }
  .product_detail .read_more{
  }
  .gallery_detail .read_more{
    justify-content: flex-start;
  }
}
@media (min-width:1200px){
  .product_cate_wrap .webgene-item a{
    display: block;
    width: 100%;;
    font-size: 16px;
  }

}

/*******************************
*　新着
********************************/

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


}

/* メイン部分 */
.news_list.home_contents5_box{

}
.news_list.home_contents5_box .webgene-blog{

}
.news_list.home_contents5_box .webgene-item{

}
.news_list.home_contents5_box .webgene-item .img{
  overflow: hidden;
}
.news_list.home_contents5_box .webgene-item .img:before{
  padding-top: 80%;
}
.news_list .meta{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news_list .meta .category{
  padding: 3px 0;
  font-weight: 500;
}
.news_list .meta .date{
  letter-spacing: 0.075em;
}
.news_list .title{

}
.news_list.home_contents5_box .title{
  font-weight: 400;
  line-height: 1.75em;
  margin-top: 3px;
}
@media (max-width:767px){
  .news_list .meta{
    flex-wrap: wrap;
  }

  .pg_flow .section.sec3{
    padding-top:50px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .news_list.home_contents5_box{

  }
  .news_list.home_contents5_box .webgene-blog{
    margin-inline:-15px;
  }
  .news_list.home_contents5_box .webgene-item{
    padding-inline:15px;
  }
  .news_list.home_contents5_box .box2{
    margin-top: 14px;
  }
  .news_list .meta{

  }
  .news_list .meta .category{
    width: 120px;
    margin-left: 12px;
  }
  .news_list .meta .date{

  }
  .news_list .title{

  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .news_list.home_contents5_box{

  }
  .news_list.home_contents5_box .webgene-item{
    width: 33.333%;
  }
  .news_list.home_contents5_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list.home_contents5_box .webgene-item:nth-child(n+4){
    margin-top: 53px;
  }
  .news_list .meta{

  }
  .news_list .meta .category{

  }
  .news_list .meta .date{
    margin-top: 0;
  }
  .news_list .title{

  }

  .pg_news .webgene-pagination{
    margin-top: 78px;
  }
}
@media (min-width:1200px){


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


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


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


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

}

@media (min-width:1700px){

}