@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #f6ff00;
  --sub-color: #e7161a;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

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

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: 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;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

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

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

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

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


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    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{
  --logo-height: 30px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;

  transition: 0.2s all;
}

/* メニュー全般 */
.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){

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contact_btn{
    display: none;
  }

  .header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 20px 30px;;
  }
  .hdr_logo img{
    width: 220px;
  }
  .mv_tt{
    padding: 30px 20px;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{


    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 48px 12px 10px;
    transition: all .2s;
  }

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_tel{
    display: flex;
    align-items: flex-end;
    margin-right: 30px;
    color: #fff;
  }
  .hdr_tel1{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-right: 16px;
  }
  .hdr_tel2{
    font-size: 24px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .hdr_tel2 a{

  }
  .hdr_contact_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    text-align: center;
    background: var(--main-color);
    border: 2px solid transparent;
    padding: 13px 0;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    border: 2px solid var(--main-color);
  }
  .hdr_contact_btn1{
    font-size: 18px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-right: 19px;
  }
  .hdr_contact_btn2{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }



  .hdr1{
    padding: 0 15px 0;
  }

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

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

  .header.slim .btnHamburger .line{
    background: #fff;
  }
  .header.slim .hdr_logo img{

  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 50px;
    padding: 12px 48px 12px 20px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    width: 220px;
  }

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

  .header{
    --logo-height: 75px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_tel{

  }
  .hdr_tel1{
    font-size: 20px;
  }
  .hdr_tel2{
    font-size: 35px;
  }
  .hdr_tel2 a{

  }
  .hdr_contact_btn{

  }
  .hdr_contact_btn1{
    font-size: 20px;
  }
  .hdr_contact_btn2{

  }

  .hdr_contact_btn{
    width: 300px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  background: linear-gradient(127deg,rgba(29, 117, 175, 1) 0%, rgba(6, 18, 87, 1) 99%);
  padding-left: 5.2%;
  padding-bottom: 8%;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_img.img_fit: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;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  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_tt{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  text-align: left;
  width: 100%;
  color: #fff;
}
.mv_tt1{
  font-size: 40px;
  font-weight: 700;
}
.mv_tt2{
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}

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

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

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

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

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

  }
  .mv_txt_p2{

  }

  .mv_tt{

  }
  .mv_tt1{
    font-size: 60px;
  }
  .mv_tt2{
    font-size: 20px;
    margin-top: 24px;
  }

  .hdr_logo img{
    width: 220px;
  }

}
@media (min-width:1024px){
  .header{
    padding: 22px 48px 12px 100px;
  }

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
    padding-top: calc(100vh - 8%);
  }

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

  }
  .mv_txt_p2{

  }

  .mv_tt{

  }
  .mv_tt1{
    font-size: 100px;
  }
  .mv_tt2{
    font-size: 30px;
    margin-top: 24px;
  }

  .hdr_logo img{
    width: 260px;
  }

}
@media (min-width:1200px){
  .header{
    padding: 22px 48px 12px 100px;
  }

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 45.05%;
    padding-top: calc(100vh - 8%);
  }

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

  }
  .mv_txt_p2{

  }

  .mv_tt{

  }
  .mv_tt1{
    font-size: 120px;
  }
  .mv_tt2{
    font-size: 40px;
  }

  .hdr_logo img{
    width: 260px;
  }

}
@media (min-width:1440px){
  .header{
    padding: 22px 48px 12px 100px;
  }

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

}
@media (min-width:1720px){
  .header{
    padding: 22px 48px 12px 153px;
  }
}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding-left: 4.6%;
  padding-bottom: 8%;
  background: linear-gradient(127deg, rgba(29, 117, 175, 1) 0%, rgba(6, 18, 87, 1) 99%);
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}



.pg_header_img{

}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_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;
  transition: all .2s;
}
.pg_header_tt{
  color: #fff;
  width: 100%;
  position: absolute;
  top: 67.66%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.pg_header_text{
  font-size: 22px;
  font-weight: 700;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_img{

  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header_tt{

  }
  .pg_header_text{
    font-size: 40px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_img{

  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header_tt{

  }
  .pg_header_text{
    font-size: 50px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 120px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_img{

  }
  .pg_header_img:before{
    padding-top: 600px;
  }
  .pg_header_tt{

  }
  .pg_header_text{

  }
}



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

.footer{
  margin-top: 50px;
}
.body_home .footer{
  margin-top: 0;
}

.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{
  color: #fff;

  font-size: 14px;
  text-align: center;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.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%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_wrap{
  background: #030538;
}
.ftr_contact_wrap:before{
  content: "";
  display: block;

}
.ftr_contact_img:before{
  padding-top: 400px;
}
.ftr_contact_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: 2;
  transition: all .2s;
}
.ftr_contact_outer{
  margin-top: -100px;
  position: relative;
  z-index: 5;
}
.ftr_contact_bb{
  background: #fff;
}
.ftr_contact_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 16px;
}
.ftr_contact_box1{
  text-align: center;
  width: 100%;
}
.ftr_contact_box1_en{
  font-size: 30px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  line-height: 1;
}
.ftr_contact_box1_ja{
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.ftr_contact_box1_ja:before{
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #000;
  margin-right: 16px;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 30px;
}
.link_1{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  border: none;
  background: linear-gradient(180deg,rgba(10, 90, 141, 1) 0%, rgba(6, 23, 125, 1) 99%);
  padding: 18px 0;
  border: 1px solid transparent;
  transition: all .2s;
}
.link_1:hover{
  background: #fff;
  border: 1px solid #030538;
}
.link_txt1{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-right: 18px;
}
.link_txt2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.ftr_contact_box2_tel{
  text-align: center;
  margin-top: 40px;
}
.ftr_contact_box2_tel1{
  font-size: 16px;
  font-weight: 500;
  border-bottom:1px solid #000;
  padding-bottom: 10px;
}
.ftr_contact_box2_tel2{
  font-size: 34px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 7px;
}

.ftr_1{
  background: #030538;
  padding-top: 50px;
  padding-bottom: 30px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_add{

}
.ftr_add p{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_item_p1{
  width: 75px;
  position: relative;
}
.ftr_add_item_p1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.ftr_add_item_p2{
  padding-left: 11px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }

  .ftr_contact_img:before{
    padding-top: 190px;
  }

  .ftr_1_box2{
    display: none;
  }
  .ftr_add{
    text-align: center;
  }
  .ftr_add_item{
    width: 210px;
    margin: 0 auto;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{

  }
  .ftr_contact_img:after{

  }
  .ftr_contact_outer{
    margin-top: -200px;
    position: relative;
    z-index: 5;
  }
  .ftr_contact_bb{

  }
  .ftr_contact_inner{
    align-items: center;
    padding: 91px 40px;
  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_en{
    font-size: 40px;
  }
  .ftr_contact_box1_ja{
    margin-top: 40px;
  }
  .ftr_contact_box2{
    margin-top: 50px;
  }
  .link_1{

  }
  .link_txt1{
    font-size: 20px;
  }
  .ftr_contact_box2_tel{

  }
  .ftr_contact_box2_tel1{

  }
  .ftr_contact_box2_tel2{
    font-size: 30px;
  }

  .ftr_1{
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 42.76%;
  }
  .ftr_add{

  }
  .ftr_add_item{

  }
  .ftr_add_item_p1{

  }
  .ftr_add_item_p2{

  }
  .ftr_1_box2{
    display: flex;
    flex-wrap: wrap;
    width: 57.01%;
  }
  .ftr_links{

  }
  .ftr_link{
    width: 160px;
    white-space: nowrap;
    display: block;
    font-size: 16px;
    font-weight: 500;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 23px;
  }
  .ftr_links:nth-child(n+3){
    margin-top: 20px;;
  }

  .ftr_copy{
    text-align: left;
    margin-top: 88px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }


  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{

  }
  .ftr_contact_img:after{

  }
  .ftr_contact_outer{
    margin-top: -200px;
    position: relative;
    z-index: 5;
  }
  .ftr_contact_inner{
    padding: 91px 16px 75px;
  }
  .ftr_contact_bb{

  }
  .ftr_contact_box1{
    text-align: left;
    width: 22.97%;
  }
  .ftr_contact_box1_en{
    font-size: 50px;
  }
  .ftr_contact_box1_ja{
    justify-content: flex-start;
  }
  .ftr_contact_box2{
    width: 48.64%;
    margin-top: 0;
  }
  .link_1{

  }
  .ftr_contact_box2_tel{
    text-align: left;
    margin-top: 58px;
  }
  .ftr_contact_box2_tel1{

  }
  .ftr_contact_box2_tel2{
    font-size: 35px;
  }

  .ftr_1{
    padding-top: 167px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_add{

  }
  .ftr_add_item{

  }
  .ftr_add_item_p1{

  }
  .ftr_add_item_p2{

  }
  .ftr_1_box2{
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_links{

  }
  .ftr_links{
    width: 160px;
  }
  .ftr_links:nth-child(3n){
    width: 160px;
  }
  .ftr_links:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_links:last-child{
    margin-top: 20px;
  }
  .ftr_link{
    white-space: nowrap;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 23px;
  }
}
@media (min-width:1200px){
  .ftr_contact_inner{
    max-width: 1110px;
    margin-inline:auto;
  }
  .ftr_links{
    width: 190px;
  }
  .ftr_links:nth-child(3n){
    width: 160px;
  }
  .ftr_links:nth-child(3){
    margin-top: 20px;
  }
  .ftr_links:last-child{
    margin-top: 20px;
  }
  .ftr_link{
    white-space: nowrap;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 23px;
  }
  .ftr_links:nth-child(3){
    margin-top: 0;
  }
}
@media (min-width:1440px){
  .ftr_contact_inner{
    padding-inline:0;
  }
  .ftr_links:last-child{
    margin-top: 0;
  }
}
@media (min-width:1720px){
  .ftr_1_box2{
    display: flex;
    flex-wrap: wrap;
    width: 49.01%;
  }
}

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


/* テーブル用 */
.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 #194fb1;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #060a51;
  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{
  min-width: 250px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #181818;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0.05em;
}
.read_more a:after{
  content: "";
  width: 22px;;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  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: #181818;
  background:#fff;
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more.wh a,
.read_more.bl a{
  min-width: 350px;
  background: #fff;
  font-size: 16px;
  padding: 24px 20px;
}
.read_more.bl a{
  background: #060a51;
  color: #fff;
}
.read_more.out a:after{
  content: "\f08e";
  font-family: 'FontAwesome';
  font-weight: 900;
  background-image: none;
  width: auto;
  font-size: 17px;
  right: 30px;
}
.read_more.insta a:after{
  content: "\f08e";
  font-family: 'FontAwesome';
  font-weight: 900;
  background-image: none;
  width: auto;
  font-size: 17px;
  right: 15px;
}




/* 見出し */
.tt2{
  font-size: 18px;
  font-weight: 700;
  color: #0d1160;
  margin-bottom: 30px;
}
.tt2.wh{
  color: #fff;
}
.tt2.center{
  text-align: center;
}
.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;
}

.tt2_sub{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.54em;
}


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

}

.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.18em;
  text-align: justify;
}

.wh{
  color: #fff;
}
@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;
  }

  .tt2_sub{
    margin-top: 16px;
  }
}
@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{
    min-width: 304px;
    font-size: 15px;
    padding: 19px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    font-size: 20px;
    margin-bottom: 0;
  }
  .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;
  }
  .tt2_sub{
    font-size: 40px;
    font-size: 34px;
  }

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

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

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

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

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 0;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: #4f4f4f;
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



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

}
.pg_home .section.sec1{
  position: relative;
  padding: 50px 0 80px;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 32.96%;;
  aspect-ratio:633 / 849;
  background-image: url(/system_panel/uploads/images/b1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  pointer-events: none;
}
.pg_home .section.sec2{
  position: relative;
  background: linear-gradient(159deg,rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  background: linear-gradient(180deg,rgba(6, 10, 81, 1) 0%, rgba(6, 21, 89, 1) 55%, rgba(31, 120, 177, 1) 99%);
  padding: 50px 0;
}
.pg_home .section.sec3{
  padding: 0;
  position: relative;
}
.pg_home .section.sec4{
  padding: 0;
}
.pg_home .section.sec5{
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  padding-bottom: 40px;
}
.pg_home .section.sec6{
  padding-top: 50px;
  padding-bottom:80px;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(217, 217, 217, 1) 99%);
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding: 100px 0;
  }
  .pg_home .section.sec2{
    padding: 100px 0;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 106px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding: 150px 0;
  }
  .pg_home .section.sec2{
    padding: 140px 0 148px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 140px;
  }
  .pg_home .section.sec6{
    padding-bottom: 140px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*メイン*/

/*about*/
.hm_s1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hm_s1_box1{
  width: 100%;
}
.hm_s1_box1_en_tate{
  font-size: 50px;
  font-size: clamp(2.5rem, 1.25rem + 6.25vw, 8.75rem);
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
}
.txt_gld{
  background: linear-gradient(180deg,rgba(10, 90, 141, 1) 0%, rgba(7, 18, 125, 1) 99%); 
  background: linear-gradient(180deg,rgba(10, 90, 141, 1) 0%, rgba(11, 87, 136, 1) 49%, rgba(7, 20, 125, 1) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.hm_s1_box2{
  width: 100%;
  margin-top: 20px;
}
.hm_s1_box2 .tt2{

}
.hm_s1_box2 .tt2_sub{

}
.hm_s1_box2 .content_desc{
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
}
.hm_s1_box2 .content_desc:before{
  content: "";
  display: block;
  width: 83.333%;
  height: 5px;
  background: linear-gradient(90deg,rgba(10, 90, 141, 1) 0%, rgba(7, 18, 125, 1) 99%);
  position: absolute;
  top: 0;
  left: 0;
}
.hm_s1_box3{
  width: 100%;
  margin-top: 20px;
}
.hm_s1_box3_img{

}
.hm_s1_box3_img:before{
  padding-top: 113.63%;
}


/*強み*/
.infiniteslide_wrap{
  margin-top:0;
  position: absolute;
  top: -9.9%;
  top: -28px;
}
.flowing_letters{
  font-size: clamp(3.125rem, 1.25rem + 9.38vw, 12.5rem);
  font-size: 50px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  position: relative;
}
.flowing_letters p:first-child{
  color:rgba(27,65,143,0.5);
  clip-path: inset(0 0 40% 0);
}
.gjs-dashed .flowing_letters p{
  clip-path:inherit;
}
.flowing_letters p:nth-child(2){
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color:#1b418f;
  clip-path: inset(57.5% 0 0 0);
}
.hm_s2_wrap{
  padding:30px 16px;;
  background: linear-gradient(163deg,rgba(255, 255, 255, 1) 0%, rgba(217, 217, 217, 1) 99%);
}
.hm_s2_hdr{

}
.hm_s2_en{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.hm_s2_en .hm_s1_box1_en_tate{
  display: inline-block;
  align-items: center;
  z-index: 2;
  position: relative;
}
/*.hm_s2_en .hm_s1_box1_en_tate:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}*/
.hm_s2_en:after{
  content: "";
  display: block;
  width: 45.88%;
  height: 5px;
  /*  position: absolute;
  top: 50%;
    right: 0;
    transform: translateY(-50%);*/
  background: linear-gradient(90deg, rgb(10, 90, 141) 0%, rgb(7, 18, 125) 99%);
}
.hm_s2_hdr .tt2{
  margin-top: 10px;
  padding-left: 6px;
}
.hm_s2_hdr{
  position: relative;
  z-index: 1;
}
.hm_s2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.hm_s2_box1{
  width: 100%;
}
.hm_s2_box1 .tt2_sub{

}
.hm_s2_box1 .content_desc{

}
.hm_s2_box2{
  width: 100%;
}
.hm_s2_box2_inner{
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.hm_s2_box2_item{
  width: 100%;
}
.hm_s2_box2_item:nth-child(n+2){
  margin-top: 50px;;
}
.hm_s2_box2_item_inner{
  background: #090e69;
  padding: 50px 16px 20px;
  position: relative;
}
.hm_s2_box2_item_num{
  font-size: 50px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
  text-shadow: 0px 0px 10px rgba(78,80,152,1);

  position: absolute;
  top: -7%;
  left: 4.8%;
}
.hm_s2_box2_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #fff;
}
.hm_s2_box2_item .content_desc{
  font-size: 15px;
  color: #fff;
  line-height: 1.86em;
  margin-top: 21px;
}
.hm_s2_box2_item_img{
  margin-top: 20px;
}
.hm_s2_box2_item_img:before{
  padding-top: 68.57%;
}

/*business*/
.hm_s3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hm_s3_wrap.bis{
  padding-top: 50px; 
}
.pg_home .section.sec5 .read_more a:after{
  right: 14px;
}
.hm_s3_box1{
  width: 100%;
}
.hm_s3_box1_inner{

}
.hm_s3_box1_img{

}
.hm_s3_box1_img:before{
  padding-top: 76.59%;
}
.hm_s3_box2{
  width: 100%;
  margin-top: 20px;
}
.hm_s3_wrap.bis .hm_s3_box2{
  color: #fff;
}
.hm_s3_box2 .hm_s1_box1_en_tate{

}
.hm_s3_box2 .tt2{

}
.hm_s3_box2 .tt2_sub{

}
.hm_s3_box2 .content_desc{
  margin-top: 20px;
}

/*難削材加工*/
.hm_hard_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.hm_hard_bg:before{
  padding-top: 1550px;
}
.hm_hard_bg:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transition: all .2s;
}
.hm_s3_wrap.hard{

}
.hm_s3_wrap.hard .hm_s3_box1{

}
.hm_s3_wrap.hard .hm_s3_box1_inner{
  display: flex;
  flex-wrap: wrap;
}
.hm_s3_box1_link{
  width: 50%;
}
.hm_s3_box1_link a{
  display: block;
  position: relative;
}
.hm_s3_box1_link a:hover .hm_s3_box1_link_img:after{
  background: rgba(0,0,0,0.7);
}
.hm_s3_box1_link_img:before{
  padding-top: 48.18%;
}
.hm_s3_box1_link_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;
  transition: all .2s;
}
.hm_s3_box1_link_meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  padding: 0px 10px 14px;
}
.hm_s3_box1_link_meta:after{
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  aspect-ratio:1;
  border-radius: 50%;
  border:1px solid #fff;
  font-size: 22px;
  position: relative;
  right: 0;
  transition: all .2s;
}
.hm_s3_box1_link a:hover .hm_s3_box1_link_meta:after{
  right: -5px;
}
.hm_s3_box1_link_left{
  width: 100%;
}
.hm_s3_box1_link_txt1{
  font-size: 14px;
  font-weight: 500;
  line-height: 1
}
.hm_s3_box1_link_tx2{
  font-size:16px;
  font-weight: 700;
  margin-top: 5px;
}

/*サービス*/
.hm_s4_wrap{
  display: flex;
  flex-wrap: wrap;
}
.hm_s4_box{
  width: 100%;
}
.hm_s4_box_inner{
  display: block;
  position: relative;
}
.hm_s4_box_img{

}
.hm_s4_box_img:before{
  padding-top: 110.54%;
}
.hm_s4_box_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:rgba(13,17,96,0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transition: all .2s;
}
.hm_s4_box.sanmix .hm_s4_box_img:after{
  background:rgba(13,81,96,0.4);
}
.hm_s4_box.sanmix .hm_s4_box_inner:hover .hm_s4_box_img:after{
  background:rgba(13,81,96,0.8);
}
.hm_s4_box_inner:hover .hm_s4_box_img:after{
  background:rgba(13,17,96,0.8);
}
.hm_s4_box_content{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background:rgba(13,17,96,0.5);
  z-index: 1;
  padding: 27px 16px;
}
.hm_s4_box.sanmix .hm_s4_box_content{
  background:rgba(13,81,96,0.5);
}
.hm_s4_box_content:after{
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--main-color);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  right: 0;
  transition: all .2s;
  color: #000;
  margin-left: auto;
  border: 1px solid #fff;
}
.hm_s4_box_inner:hover .hm_s4_box_content:after{
  right: -10px;
}
.hm_s4_box_content_left{
  width: 100%;
}
.hm_s4_box_content_left_top{
  display: flex;
  flex-wrap: wrap;
  align-items: center;

}
.hm_s4_box_content_left_en{
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 24px;
}
.hm_s4_box_content_left_ja{
  font-size: 17px;
  font-weight: 700;
}
.hm_s4_box_content .content_desc{
  margin-top: 12px;
}
.hm_s3_wrap.multi .read_more a{
  min-width: 320px;
}

/*採用*/
.hm_s5_wrap{
  position: relative;
  border: 2px solid #fff;
  margin-top: 50px;
}
.hm_s5_img:before{
  padding-top: 800px;
}
.hm_s5_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: 2;
  transition: all .2s;
}
.hm_s4_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  color: #fff;
  padding: 30px 16px;
}
.hm_s5_wrap .hm_s1_box1_en_tate{

}
.hm_s5_wrap .tt2{
  margin-top: 10px;
}
.hm_s5_wrap .tt2_sub{
  margin-top: 20px;
}
.hm_s5_wrap .content_desc{
  margin-top: 30px;
}
.hm_s5_wrap .read_more{

}

/*新着*/
.home_news_outer{
  margin-top: 50px;
}
.hm_s1_wrap.news{

}
.hm_s1_wrap.news .hm_s1_box1{

}
.home_news_box{
  width: 100%;
  color: #fff;
  margin-top: 40px;;
}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.hm_s1_wrap .hm_s1_box1_en_tate{
  color: #fff;
}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #fff;
  padding: 16px 0;
  position: relative;
}
.news_list .webgene-item a:after{
  content: "→";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.news_list .webgene-item a:hover{
  color: #7d7d7d;
}
.news_list .webgene-item a:hover:after{
  right: 15px;
}
.news_list .webgene-item:last-child a{
  border-bottom: 1px solid #fff;
}
.news_list .webgene-item .img:before{

}
.news_list .webgene-item .date{
  width: 100px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
}
.news_list .webgene-item .category{
  color: #000;
  width: 125px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(201, 223, 238, 1) 99%);
}
.news_list .webgene-item .title{
  width: calc(100% - 50px);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 16px;
}

/*insta*/
.insta_outer .hm_s1_box1_en_tate,
.insta_outer .tt2{
  text-align: center;
}
.insta_outer .hm_s1_box1_en_tate{
  line-height: 1.25em;
}
.insta_outer .tt2{
  margin-top: 16px;
}
.hm_insta_box{

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

}
.hm_insta_box .webgene-item .img{
  overflow: hidden;
}
.hm_insta_box .webgene-item .img:before{
  padding-top: 133.333%;
}
.hm_insta_box video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .hm_s3_box1_link_img:before{
    padding-top: 90.18%;
  }

  .hm_s3_box1_link_meta:after{
    width: 25px;
    font-size: 12px;
    margin-left: auto;
  }

  .hm_s2_box1 .content_desc{
    margin-top: 20px;
  }

  .hm_s2_box1 .tt2_sub{
    font-size: 24px;
  }
}
@media (min-width:768px){
  /*メイン*/

  /*about*/
  .hm_s1_wrap{

  }
  .hm_s1_box1{
    width: 8.5%;
  }
  .hm_s1_box1 .hm_s1_box1_en_tate{
    margin-left: -20px;
  }
  .hm_s1_box1_en_tate{
    /*    font-size: 100px;*/

  }
  .hm_s1_box1_en_tate.tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .hm_s1_box2{
    width: calc(100% - 8.5% - 50px);
    padding-top: 24px;
    margin-top: 0;
  }
  .hm_s1_box2 .tt2{
    margin-bottom: 25px;
  }
  .hm_s1_box2 .tt2_sub{

  }
  .hm_s1_box2 .content_desc{
    padding-top: 53px;
  }
  .hm_s1_box3{
    margin-top: 30px;;
  }
  .hm_s1_box3_img{

  }
  .hm_s1_box3_img:before{
    padding-top: 85.63%;
  }

  /*強み*/
  .flowing_letters{
    font-size: 100px;
  }
  .infiniteslide_wrap{
    margin-top:0;
    position: absolute;
    top: -56px;
  }
  .hm_s2_hdr{

  }
  .hm_s2_en{

  }
  .hm_s2_en .hm_s1_box1_en_tate{

  }
  .hm_s2_hdr .tt2{

  }
  .hm_s2_hdr{

  }
  .hm_s2_inner{

  }
  .hm_s2_box1{

  }
  .hm_s2_box1 .tt2_sub{

  }
  .hm_s2_box1 .content_desc{

  }
  .hm_s2_box2{

  }
  .hm_s2_box2_inner{
    margin-inline:-10px;
    margin-top: 70px;;
  }
  .hm_s2_box2_item{
    width: 33.333%;
    padding-inline:10px;
  }
  .hm_s2_box2_item:nth-child(n+2){
    margin-top: 0;
  }
  .hm_s2_box2_item_inner{
    height: 100%;
    padding: 54px 16px 38px;
  }
  .hm_s2_box2_item_num{
    font-size: 50px;
    left: 8.8%;
  }
  .hm_s2_box2_item_tt{
    font-size: 20px;
  }
  .hm_s2_box2_item .content_desc{

  }
  .hm_s2_box2_item_img{
    margin-top: 26px;
  }
  .hm_s2_box2_item_img:before{

  }

  /*business*/
  .hm_s3_wrap{

  }
  .hm_s3_wrap.bis{
    padding-top: 100px; 
  }
  .hm_s3_box1{

  }
  .hm_s3_box1_inner{

  }
  .hm_s3_box1_img{

  }
  .hm_s3_box1_img:before{

  }
  .hm_s3_box2{
    margin-top: 30px;
  }
  .hm_s3_box2 .hm_s1_box1_en_tate{

  }
  .hm_s3_box2 .tt2{
    margin-top: 7px;
  }
  .hm_s3_box2 .tt2_sub{

  }
  .hm_s3_box2 .content_desc{
    margin-top: 30px;
  }

  /*難削材加工*/
  .hm_hard_outer{
    width: 100%;
    position: absolute;
    top: 49%;
  }
  .hm_hard_bg:before{
    padding-top: 1350px;
  }
  .hm_s3_wrap.hard{

  }
  .hm_s3_wrap.hard .hm_s3_box1{

  }
  .hm_s3_wrap.hard .hm_s3_box1_inner{

  }
  .hm_s3_box1_link{
    width: 50%;
  }
  .hm_s3_box1_link a{

  }
  .hm_s3_box1_link_img:before{
    padding-top: 35%;
  }
  .hm_s3_box1_link_meta{
    padding: 0px 28px 14px;
  }
  .hm_s3_box1_link_left{
    width: auto;
  }
  .hm_s3_box1_link_txt1{

  }
  .hm_s3_box1_link_tx2{
    font-size: 20px;
  }

  /*サービス*/
  .hm_s4_wrap{

  }
  .hm_s4_box{

  }
  .hm_s4_box_inner{

  }
  .hm_s4_box_img{

  }
  .hm_s4_box_img:before{
    padding-top: 88.54%;
    padding-top: 70.54%;
  }
  .hm_s4_box_content{
    padding: 27px 16px 35px;
  }
  .hm_s4_box_content:after{
    width: 70px;
    font-size: 34px;
  }
  .hm_s4_box_content_left{

  }
  .hm_s4_box_content_left_top{

  }
  .hm_s4_box_content_left_en{
    font-size: 60px;
  }
  .hm_s4_box_content_left_ja{
    font-size: 20px;
  }
  .hm_s4_box_content .content_desc{

  }

  /*採用*/
  .hm_s5_wrap{
    margin-top: 100px;
  }
  .hm_s5_img:before{
    padding-top: 685px;
  }
  .hm_s5_img:after{

  }
  .hm_s4_inner{
    top: 49%;
  }
  .hm_s5_wrap .hm_s1_box1_en_tate{

  }
  .hm_s5_wrap .tt2{

  }
  .hm_s5_wrap .tt2_sub{
    font-size: 28px;
    margin-top: 30px;
  }
  .hm_s5_wrap .content_desc{
    margin-top: 50px;
  }
  .hm_s5_wrap .read_more{

  }

  /*新着*/
  .home_news_outer{
    margin-top: 100px;
  }
  .hm_s1_wrap.news{

  }
  .hm_s1_wrap.news .hm_s1_box1{

  }
  .home_news_box{
    width: 82.88%;
    margin-top: 0;
  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    padding: 24px 0;
  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{
    width: 100%;
  }
  .home_news_box .read_more{
    margin-top: 46px;
  }

  /*insta*/
  .insta_outer .tt2{
    margin-top: 35px;
    margin-top: 21px;
  }
  .hm_insta_box{
    margin-top: 36px;
  }
  .hm_insta_box .webgene-blog{

  }
  .hm_insta_box .webgene-item{

  }
  .hm_insta_box .webgene-item:nth-child(n+3){

  }
  .hm_insta_box .webgene-item:nth-child(n+6){

  }
  .hm_insta_box .webgene-item a{

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

  }
  .pg_home .section.sec6 .read_more{
    margin-top: 44px;
  }
}
@media (min-width:1024px){
  /*難削材加工*/
  .hm_hard_bg:before{
    padding-top: 1500px;
  }
  .hm_s3_box1_link_img:before{
    padding-top: 35%;
  }

  /*サービス*/
  .hm_s4_wrap{

  }
  .hm_s4_box{
    width: 50%;
  }

  /*news*/
  .news_list .webgene-item .title{
    width: calc(100% - 100px - 125px - 40px);
    padding-left: 22px;
    margin-top: 0;
  }

  /*insta*/
  .hm_insta_box{

  }
  .hm_insta_box .webgene-blog{

  }
  .hm_insta_box .webgene-item{
    width: 20%;
  }
  .hm_insta_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .hm_insta_box .webgene-item:nth-child(n+6){

  }
  .hm_insta_box .webgene-item a{

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

  }
}
@media (min-width:1200px){
  /*メイン*/

  /*about*/
  .hm_s1_wrap{

  }
  .hm_s1_box1{

  }
  .hm_s1_box1_en_tate{
    /*    font-size: 140px;*/

  }
  .hm_s1_box2{
    width: 51.35%;
  }
  .hm_s1_box2 .tt2{

  }
  .hm_s1_box2 .tt2_sub{

  }
  .hm_s1_box2 .content_desc{
    margin-top: 22px;
  }
  .hm_s1_box3{
    width: 22.97%;
    margin-top: 0;
  }
  .hm_s1_box3_img{
    margin-right: var( --margin-for-device-side);
  }
  .hm_s1_box3_img:before{

  }
  .hm_s1_box3_img:before{
    padding-top: 113.63%;
  }

  /*強み*/
  .flowing_letters{
    font-size: 200px;
  }
  .infiniteslide_wrap{
    margin-top:0;
    position: absolute;
    top: -114px;
  }
  .hm_s2_wrap{
    padding: 70px 0 80px 100px;
    position: relative;
    background: none;
  }
  .hm_s2_wrap:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: linear-gradient(163deg, rgba(255, 255, 255, 1) 0%, rgba(217, 217, 217, 1) 99%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .hm_s2_hdr{

  }
  .hm_s2_en{

  }
  .hm_s2_en .hm_s1_box1_en_tate{

  }
  .hm_s2_hdr .tt2{

  }
  .hm_s2_hdr{

  }
  .hm_s2_inner{

  }
  .hm_s2_box1{
    width: 27.46%;
    padding-top: 22px;
  }
  .hm_s2_box1 .tt2_sub,
  .tt2_sub.s-40{
    font-size: 29px;
  }
  .hm_s2_box1 .content_desc{
    margin-top: 22px;
  }
  .hm_s2_box2{
    width: 67.95%;
  }
  .hm_s2_box2_inner{
    margin-right: var(--margin-for-device-side-w);
    margin-left: 0;
    margin-top: 0;
  }
  .hm_s2_box2_item{
    width: 29.18%;
    margin-right: 20px;
    padding-inline:0;
  }
  .hm_s2_box2_item_inner{
    padding: 54px 30px 38px;

  }
  .hm_s2_box2_item_num{
    font-size: 80px;
  }
  .hm_s2_box2_item_tt{
    font-size: 24px;
  }
  .hm_s2_box2_item .content_desc{

  }
  .hm_s2_box2_item_img:before{

  }

  /*business*/
  .hm_s3_wrap.bis{
    padding-top: 123px; 
  }
  .hm_s3_wrap.multi{
    padding-top: 70px;
  }
  .hm_s3_box1{
    width: 44.73%;
    padding-top: 27px;
    order: 1;
  }
  .hm_s3_box1_inner{

  }
  .hm_s3_wrap.bis .hm_s3_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .hm_s3_box1_img{

  }
  .hm_s3_box1_img:before {
    padding-top: 96.59%;
  }
  .hm_s3_box2{
    width: 44.73%;
    order: 2;
    margin-top: 0;
  }
  .hm_s3_box2 .hm_s1_box1_en_tate{

  }
  .hm_s3_box2 .tt2{

  }
  .hm_s3_box2 .tt2_sub{
    margin-top: 31px;
  }
  .hm_s3_box2 .content_desc{
    margin-top: 51px;
  }

  /*難削材加工*/
  .hm_s3_wrap.hard{

  }
  .hm_hard_bg:before{
    padding-top: 1149px;
  }
  .hm_s3_wrap.hard .hm_s1_box1_en_tate,
  .hm_s1_box1_en_tate.multi{
    line-height: 0.9em;
  }
  .hm_s3_wrap.hard .hm_s3_box1{
    order: 2;
    padding-top: 18px;
  }
  .hm_s3_wrap.hard .hm_s3_box1_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .hm_s3_wrap.hard .hm_s3_box2 .tt2,
  .hm_s3_wrap.multi .hm_s3_box2 .tt2{
    margin-top: 13px;
  }
  .hm_s3_box1_link{

  }
  .hm_s3_box1_link a{

  }
  .hm_s3_box1_link_img:before{
    padding-top: 77.18%;
  }
  .hm_s3_box1_link_meta{

  }
  .hm_s3_box1_link_left{

  }
  .hm_s3_box1_link_txt1{

  }
  .hm_s3_box1_link_tx2{

  }
  .hm_s3_wrap.hard .hm_s3_box2{
    order: 1;
  }

  /*サービス*/
  .hm_s4_wrap{

  }
  .hm_s4_box{

  }
  .hm_s4_box_inner{

  }
  .hm_s4_box_img{

  }
  .hm_s4_box_img:before{
    padding-top: 88.54%;
  }
  .hm_s4_box_content{

  }
  .hm_s4_box_content_left{

  }
  .hm_s4_box_content_left_top{

  }
  .hm_s4_box_content_left_en{
    font-size: 60px;
  }
  .hm_s4_box_content_left_ja{
    font-size: 20px;
  }
  .hm_s4_box_content .content_desc{

  }

  /*採用*/
  .hm_s5_wrap{
    margin-top: 180px;
  }
  .hm_s5_img:before{

  }
  .hm_s5_img:after{

  }
  .hm_s4_inner{
    padding: 30px 65px;
  }
  .hm_s5_wrap .hm_s1_box1_en_tate{

  }
  .hm_s5_wrap .tt2{

  }
  .hm_s5_wrap .tt2_sub{
    font-size: 29px;
  }
  .hm_s5_wrap .content_desc{

  }
  .hm_s5_wrap .read_more{

  }

  /*新着*/
  .home_news_outer{
    margin-top: 152px;
  }
  .hm_s1_wrap.news{

  }
  .hm_s1_wrap.news .hm_s1_box1{

  }
  .home_news_box{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .date{
    width: 100px;
    padding-left: 5px;
  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1470px){
  .infiniteslide_wrap{
    margin-top:0;
    position: absolute;
    top: -114px;
  }
  .hm_s2_box2_item_tt{
    font-size: 30px;
  }

  .hm_s2_box1 .tt2_sub,
  .tt2_sub.s-40{
    font-size: 32px;
  }

  /*難削材加工*/
  .hm_s3_box1_link_img:before{
    padding-top: 48.18%;
  }

  /*サービス*/
  .hm_s4_box_content_left_en{
    font-size: 85px;
    width: auto;
  }
  .hm_s4_box_content_left_ja{
    font-size: 18px;
  }
  .hm_s4_box_content{
    padding: 27px 47px 35px;
  }

  /*採用*/
  .hm_s5_wrap .tt2_sub{
    font-size: 29px;
  }

  /*insta*/
  .hm_insta_box{
    padding: 0 90px;
  }
  .hm_insta_box .webgene-blog{
    margin-inline:-7.5px;
  }
  .hm_insta_box .webgene-item{
    padding-inline:7.5px;
  }
  .hm_insta_box .webgene-item:nth-child(n+6){

  }
  .hm_insta_box .webgene-item a{

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

  }
}
@media (min-width:1536px){
  .infiniteslide_wrap{
    margin-top:0;
    position: absolute;
    top: -114px;
  }


}
@media (min-width:1720px){
  .infiniteslide_wrap{
    margin-top:0;
    position: absolute;
    top: -114px;
  }

  .hm_s2_box1 .tt2_sub,
  .tt2_sub.s-40{
    font-size: 40px;
  }

  /*サービス*/
  .hm_s4_box_content_left{
    width: auto;
  }
  .hm_s4_box_content_left_en{
    font-size: 85px;
  }
  .hm_s4_box_content_left_ja{
    font-size: 24px;
  }

  /*採用*/
  .hm_s5_wrap .tt2_sub{
    font-size: 40px;
  }
}




/*******************************
*　business
********************************/
.body_business .footer{
  margin-top: 0;
}
/* セクション設定 */
.pg_business{

}
.pg_business .section.sec1{
  padding-bottom: 40px;
}
.pg_business .section.sec2{
  position: relative;
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  padding-bottom: 40px;
}
.pg_business .section.sec3{
  padding-top: 50px;
  padding-bottom: 80px;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(217, 217, 217, 1) 99%);
}

@media (max-width:374px){

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

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

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

  }
  .pg_business .section.sec1{
    padding-bottom: 100px;
  }
  .pg_business .section.sec2{
    padding-bottom: 100px;
  }
  .pg_business .section.sec3{
    padding-top: 95px;
    padding-bottom: 100px;
  }


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


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

  }
  .pg_business .section.sec1{
    padding-bottom: 140px;
  }
  .pg_business .section.sec2{
    padding-bottom: 150px;
  }
  .pg_business .section.sec3{
    padding-bottom: 200px;
  }
}
@media (min-width:1470px){


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


}

/* メイン部分 */
.tt2.mt_10{
  margin-top: 10px;
}
/*見出し*/
.hm_s3_wrap.business1{

}
.hm_s3_wrap.business1 .hm_s3_box1{

}
.hm_s3_wrap.business1 .hm_s1_box3_img{

}
.hm_s3_wrap.business1 .hm_s1_box3_img:before{
  padding-top: 73.86%;
}
.hm_s3_wrap.business1 .hm_s3_box2{

}
.hm_s3_wrap.kasou .hm_s3_box1{
  order: 2;
  margin-top: 20px;
}
.hm_s3_wrap.kasou .hm_s3_box2{
  order: 1;
}

/*ラインナップ*/
.hm_s1_box1_en_tate.center,
.tt2.center{
  text-align: center;
}
.hm_s1_box1_en_tate.wh{
  color: #fff;
}
.content_desc.wh{
  color: #fff; 
}
.business_1_wrap .content_desc{
  margin-top: 20px;
}
.business_1_wrap{
  padding-top: 50px;
}
/*カテゴリ*/
.business_1_cate{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.business_1_cate_item{
  width: 100%;
}
.business_1_cate_item:nth-child(n+2){
  margin-top: 10px;;
}
.business_1_cate_item a{
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #181818;
  padding: 11px 20px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.business_1_cate_item a:hover{
  background: #fff;
}
.business_1_cate_item a:after{
  content: "";
  width: 22px;
  aspect-ratio: 1;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}

/*作業内容*/
.business_1_items{
  margin-top:50px;
}
.business_1_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 16px;
  background: #fff;
}
.business_1_item:nth-child(n+2){
  margin-top: 30px;
}
.business_1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.business_1_box1_tt{
  font-size: 20px;
  font-weight: 700;
  color: #060a51;
}
.business_1_box1 .sec_sub_tt{
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid #1a1a1a;
  margin-top: 19px;
  padding-bottom: 10px;
}
.business_1_box1 .content_desc{
  margin-top: 30px;
}
.business_1_box1 .read_more{

}
.business_1_box2{
  width: 100%;
  order: 1;
}
.business_1_box2_img:before{
  padding-top: 63.15%;
}

/*設備紹介*/
.business_tbl{
  margin-top: 40px;
}
.business_tbl_item{

}
.business_tbl_item:nth-child(n+2){
  margin-top: 50px;
}
.business_tbl_item_tt{
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,rgba(8, 15, 124, 1) 0%, rgba(10, 90, 141, 1) 99%);
  background: linear-gradient(90deg,rgba(8, 16, 124, 1) 0%, rgba(10, 90, 141, 1) 62%, rgba(10, 90, 141, 1) 99%);
  padding: 5px 16px;
  overflow: hidden;
}
.business_tbl_main{
  margin-top: 36px;
}
.business_tbl_main .table_rows_th,
.business_tbl_main .table_rows_td{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #1a1a1a;
}
.business_tbl_main .table_rows_th{
  background: #ededed;
  padding: 5px 15px;
}
.business_tbl_main .table_rows_td{
  background: #fff;
  padding: 14px 15px;
}


@media (max-width:767px){
  .business_1_box1 .read_more a{
    min-width: inherit;
    width: 100%;
  }


  /*テーブル*/
  .business_tbl_main .table_rows{
    min-width: 1000px;
  }
  .business_tbl_main .table_rows_th:nth-child(1){
    width: 150px;
  }
  .business_tbl_main .table_rows_th:nth-child(2){
    width: 200px;
  }
  .business_tbl_main .table_rows_th:nth-child(3){
    width:100px;
  }
  .business_tbl_main .table_rows_th:nth-child(4){
    width:50px;
  }
  .business_tbl_main .table_rows_th:nth-child(5){
    width: 200px;
    /*  width: calc(100% - 200px - 200px - 200px - 100px);*/
  }

  .business_tbl_main .table_rows_td{
    font-size: 14px;
  }
}
@media (min-width:768px){
  /*見出し*/
  .hm_s3_wrap.business1{

  }
  .hm_s3_wrap.business1 .hm_s3_box1{

  }
  .hm_s3_wrap.business1 .hm_s1_box3_img{

  }
  .hm_s3_wrap.business1 .hm_s3_box2{

  }
  .hm_s3_wrap.kasou .hm_s3_box1{
    order: 2;
    margin-top: 40px;
  }
  .hm_s3_wrap.kasou .hm_s3_box2{
    order: 1;
  }
  .business_1_wrap .content_desc{
    margin-top: 42px;
  }
  .business_1_wrap{
    padding-top: 80px;
  }
  /*カテゴリ*/
  .business_1_cate{
    margin-inline:-15px;
    margin-top: 40px;
  }
  .business_1_cate_item{
    width: 50%;
    padding-inline:15px;
  }
  .business_1_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .business_1_cate_item:nth-child(n+3){
    margin-top: 16px;;
  }
  .business_1_cate_item a{

  }
  .business_1_cate_item a:after{

  }

  /*作業内容*/
  .business_1_items{
    margin-top:80px;
  }
  .business_1_item{

  }
  .business_1_item:nth-child(n+2){
    margin-top: 55px;
  }
  .business_1_box1{
    margin-top: 30px;
  }
  .business_1_box1_tt{
    font-size: 40px;
  }
  .business_1_box1 .sec_sub_tt{
    font-size: 24px;
  }
  .business_1_box1 .content_desc{
    margin-top: 22px;
  }
  .business_1_box1 .read_more{

  }
  .business_1_box2{

  }
  .business_1_box2_img:before{

  }

  /*設備紹介*/
  .business_2_wrap .content_desc{
    margin-top: 46px;
  }

  .business_tbl{
    margin-top: 50px;
  }
  .business_tbl_item{

  }
  .business_tbl_item:nth-child(n+2){
    margin-top: 98px;
  }
  .business_tbl_item_tt{
    font-size: 24px;
    padding: 3px 44px;
  }
  .business_tbl_main{
    margin-top: 49px;
  }
  .business_tbl_main .table_rows_th,
  .business_tbl_main .table_rows_td{
    font-size: 18px;
  }
  .business_tbl_main .table_rows_th{

  }
  .business_tbl_main .table_rows_td{

  }
  .business_tbl_main .table_rows{
    min-width: 1400px;
  }
  .gjs-dashed .business_tbl_main .table_rows{
    min-width: inherit;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*見出し*/
  .hm_s3_wrap.business1{

  }
  .hm_s3_wrap.business1 .hm_s3_box1{

  }
  .hm_s3_wrap.business1 .hm_s3_box1 .hm_s3_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .hm_s3_wrap.business1 .hm_s1_box3_img{
    margin-right: 0;
  }
  .hm_s3_wrap.business1 .hm_s3_box2{

  }
  .hm_s3_wrap.business1 .tt2_sub{
    margin-right: -16px;
    margin-top: 45px;
  }
  .hm_s3_wrap.kasou .hm_s3_box1{
    order: 1;
    margin-top: 0;
  }
  .hm_s3_wrap.kasou .hm_s3_box2{
    order: 2;
  }

  .business_1_wrap{
    padding-top: 117px;
  }
  /*カテゴリ*/
  .business_1_cate{

  }
  .business_1_cate_item{
    width: 25%;
  }
  .business_1_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .business_1_cate_item:nth-child(n+5){
    margin-top: 20px;;
  }
  .business_1_cate_item a{
    font-size: 12px;
  }
  .business_1_cate_item a:after{

  }

  /*作業内容*/
  .business_1_items{
    margin-top: 100px;
  }
  .business_1_item{
    padding: 30px 80px 43px;
  }
  .business_1_box1{
    width: 58.08%;
    order: 1;
    margin-top: 0;
  }
  .business_1_box1_tt{
    font-size: 36px;
  }
  .business_1_box1 .sec_sub_tt{
    font-size: 24px;
  }
  .business_1_box1 .content_desc{

  }
  .business_1_box1 .read_more{
    margin-top: 15px;
  }
  .business_1_box2{
    width: 34.92%;
    padding-top: 20px;
    order: 2;
  }
  .business_1_box2_img:before{

  }

  /*設備紹介*/
  .business_tbl_main .table_rows{
    min-width: 100%;
  }
  .business_tbl{
    margin-top: 70px;
  }
  .business_tbl_item{

  }
  .business_tbl_item_tt{
    font-size: 30px;
  }
  .business_tbl_main{
    margin-top: 49px;
  }
  .business_tbl_main .table_rows_th,
  .business_tbl_main .table_rows_td{

  }
  .business_tbl_main .table_rows_th{

  }
  .business_tbl_main .table_rows_th:nth-child(1){
    width: auto;
  }
  .gjs-dashed .business_tbl_main .table_rows_th:nth-child(1){
    width: auto;
  }
  .business_tbl_main .table_rows_th:nth-child(2){
    width: auto;
  }
  .business_tbl_main .table_rows_th:nth-child(3){
    width:auto;
  }
  .business_tbl_main .table_rows_th:nth-child(4){
    width:100px;
  }
  .business_tbl_main .table_rows_th:nth-child(5){
    width: auto;
  }
  .business_tbl_main .table_rows_td{

  }
  .business_tbl_main.over_y_none .js-scrollable{
    overflow: hidden!important;
  }
}
@media (min-width:1470px){
  .business_1_cate_item a{
    font-size: 15px;
  }

  /*作業内容*/
  .business_1_box1_tt{
    font-size: 50px;
  }
  .business_1_box1 .sec_sub_tt{
    font-size: 30px;
  }
}
@media (min-width:1720px){
  .business_tbl_main .table_rows{
    min-width: 1400px;
  }
  .business_tbl_main .table_rows_th:nth-child(1){
    width: 455px;
  }
  .business_tbl_main .table_rows_th:nth-child(2){
    width: 263px;
  }
  .business_tbl_main .table_rows_th:nth-child(3){
    width:365px;
  }
  .business_tbl_main .table_rows_th:nth-child(5){
    width: calc(100% - 455px - 263px - 365px - 100px);
  }


}



/*******************************
*　難削材
********************************/
.body_hardmaterial .footer{
  margin-top: 0;
}
/* セクション設定 */
.pg_hardmaterial{

}
.pg_hardmaterial .section.sec1{
  position: relative;
}
.pg_hardmaterial .section.sec1:after{
  content: "";
  display: block;
  width: 48.07%;
  aspect-ratio:923 / 903;
  background-image: url(/system_panel/uploads/images/neji.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 11%;
}
.pg_hardmaterial .section.sec2{
  position: relative;
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  margin-top: 50px;
  padding-bottom: 80px;
}


@media (max-width:374px){

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

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

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

  }
  .pg_hardmaterial .section.sec1{

  }
  .pg_hardmaterial .section.sec1:after{
    right: 0;
    bottom: 30%;
  }
  .pg_hardmaterial .section.sec2{
    margin-top:100px;
    padding-bottom: 100px;
  }

}
@media (min-width:1024px){
  .pg_hardmaterial .section.sec1:after{
    right: 0;
    bottom: 30%;
  }

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

  }
  .pg_hardmaterial .section.sec1{

  }
  .pg_hardmaterial .section.sec1:after{
    right: 0;
    bottom: 0;
  }
  .pg_hardmaterial .section.sec2{
    margin-top: 132px;
    padding-bottom: 200px;
  }

}
@media (min-width:1470px){
  .pg_hardmaterial .section.sec1:after{
    right: 0;
    bottom: 0;
  }

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


}

/* メイン部分 */

/*見出し*/
.hm_s3_wrap.mate{

}
.hm_s3_wrap.mate .hm_s3_box1{

}
.hm_s3_wrap.mate .hm_s3_box2{

}
.hm_s3_wrap.mate .hm_s3_box1_inner{

}
.hm_s3_wrap.mate .hm_s1_box3_img:before{
  padding-top:73.86%;

}

.hm_s3_wrap.mate2{
  padding-top:80px;
}
.hm_s3_wrap.mate2 .hm_s3_box1{
  width: 100%;
}
.hm_s3_wrap.mate2 .hm_s3_box1_inner{
  display: block;
}
.hm_s3_wrap.mate2 .hm_s1_box3_img.no1{
  width: 50%;
}
.hm_s3_wrap.mate2 .hm_s1_box3_img.no1:before{
  padding-top: 110%;
}
.hm_s3_wrap.mate2 .hm_s1_box3_img.no2{
  width: 52%;
  margin-top: -35%;
  margin-left: auto;
}
.hm_s3_wrap.mate2 .hm_s1_box3_img.no2:before{
  padding-top: 102.2%;
}
.hm_s3_wrap.mate2 .hm_s3_box2{

}
.sec_tt{

}
.sec_tt_en{
  font-size: clamp(2.5rem, 1.5rem + 5vw, 7.5rem);
  font-size: clamp(1.875rem, 0.75rem + 5.63vw, 7.5rem);
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  color:rgba(27,65,143,0.2);
  white-space: nowrap;
}
.sec_tt_ja{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.41em;
  color: #060a51;
  margin-top: -4%;
}
.hm_s3_wrap.mate2 .tt2_sub{

}
.hm_s3_wrap.mate2 .content_desc{

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

/*素材一覧*/
.business_1_items.cd{
  display: flex;
  flex-wrap: wrap;
}
.business_1_item.cd{
  display: block;
  width: 100%;
  background: none;
  padding: 0;
}
.business_1_item_inr{
  background: #fff;

}
.business_1_item_inr .business_1_box1{
  width: 100%;
  padding: 16px;
  margin-top: 0;
}
.business_1_item_inr .business_1_box2{
  width: 100%;
  padding-top: 0;
}
.business_1_item_inr .business_1_box2_img{

}
.business_1_item_inr .business_1_box2_img:before{
  padding-top: 60.4%;
}
.business_1_item_inr .business_1_box1_tt{
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
}
.business_1_item_inr .content_desc{
  margin-top: 14px;
}

/*バナー*/
.hardmaterial_ftr_bnr{
  padding: 35px 16px;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(218, 218, 218, 1) 99%);
  margin-top: 50px;
}
.hardmaterial_ftr_bnr .sec_tt{
  text-align: center;
}
.hardmaterial_ftr_bnr .hardmaterial_msg{
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
.hardmaterial_ftr_bnr .content_desc{
  margin-top: 30px;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*見出し*/
  .hm_s3_wrap.mate{

  }
  .hm_s3_wrap.mate .hm_s3_box1{

  }
  .hm_s3_wrap.mate .hm_s3_box2{

  }
  .hm_s3_wrap.mate .hm_s3_box1_inner{

  }

  .hm_s3_wrap.mate2{
    padding-top: 160px;
  }
  .hm_s3_wrap.mate2 .hm_s3_box1{

  }
  .hm_s3_wrap.mate2 .hm_s3_box1_inner{

  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no1{

  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no2{
    margin-top: -35%;

  }
  .hm_s3_wrap.mate2 .hm_s3_box2{

  }
  .sec_tt{
    margin-bottom: 20px;
  }
  .sec_tt_en{

  }
  .sec_tt_ja{
    font-size: 50px;
  }
  .hm_s3_wrap.mate2 .tt2_sub{

  }
  .hm_s3_wrap.mate2 .content_desc{

  }
  .content_block:nth-child(n+2){
    margin-top: 35px;
  }


  /*素材一覧*/
  .business_1_items.cd{
    margin-inline:-15px;
  }
  .business_1_item.cd{
    width: 50%;
    padding-inline:15px; 
    padding-top: 0;
    padding-bottom: 0;
  }
  .business_1_item.cd:nth-child(n+2){
    margin-top: 0;
  }
  .business_1_item.cd:nth-child(n+3){
    margin-top: 60px;
  }
  .business_1_item_inr{

  }
  .business_1_item_inr .business_1_box1{
    padding: 16px;
    margin-top: 0;
  }
  .business_1_item_inr .business_1_box2{

  }
  .business_1_item_inr .business_1_box2_img{

  }
  .business_1_item_inr .business_1_box2_img:before{

  }
  .business_1_item_inr .business_1_box1_tt{
    font-size: 24px;
  }
  .business_1_item_inr .content_desc{

  }

  /*バナー*/
  .hardmaterial_ftr_bnr{
    padding: 35px 30px;
    margin-top: 80px;
  }
  .hardmaterial_ftr_bnr .sec_tt{

  }
  .hardmaterial_ftr_bnr .sec_tt_ja{
    font-size: 40px;
  }
  .hardmaterial_ftr_bnr .hardmaterial_msg{
    font-size: 30px;
    margin-top: 30px;
  }
  .hardmaterial_ftr_bnr .content_desc{
    margin-top: 43px;
  }
}
@media (min-width:1024px){
  .hardmaterial_ftr_bnr .sec_tt_ja{
    font-size: 40px;
  }

}
@media (min-width:1200px){
  /*見出し*/
  .hm_s3_wrap.mate{

  }
  .hm_s3_wrap.mate .hm_s3_box1{
    order: 2;
  }
  .hm_s3_wrap.mate .hm_s3_box2{
    order: 1; 
  }
  .hm_s3_wrap.mate .hm_s3_box1_inner{
    margin-right:var(--margin-for-device-side-w);
  }
  .hm_s3_wrap.mate .hm_s3_box1_inner .hm_s1_box3_img{
    margin-right:0;
    margin-left: 0;
  }
  .hm_s3_wrap.mate .tt2_sub{
    margin-right: -16px;
    margin-top: 50px;
  }

  .hm_s3_wrap.mate2{

  }
  .hm_s3_wrap.mate2{
    padding-top: 130px;
  }
  .hm_s3_wrap.mate2 .hm_s3_box1{
    width: 19.73%;
  }
  .hm_s3_wrap.mate2 .hm_s3_box1_inner{
    margin-right: 0;
    margin-left: 0;
  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img{
    margin-right: 0;
    margin-left: 0;
  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no1{
    width: 130.666%;
    margin-left: var(--margin-for-device-side-w);
  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no2{
    width: 130.3%;
    margin-left: 0;
    margin-top: -49%;
  }
  .hm_s3_wrap.mate2 .hm_s3_box2{
    width: 63.48%;
  }
  .sec_tt{
    margin-bottom: 0;
  }
  .sec_tt_en{

  }
  .sec_tt_ja{
    font-size: 50px;
  }
  .hm_s3_wrap.mate2 .tt2_sub{
    margin-top: 52px;
  }
  .hm_s3_wrap.mate2 .content_desc{

  }
  .content_block:nth-child(n+2){

  }

  /*素材一覧*/
  .pg_hardmaterial .section.sec2 .business_1_cate{
    margin-top: 90px;
  }
  .pg_hardmaterial .section.sec2 .business_1_cate_item:nth-child(n+5){
    margin-top: 29px;
  }
  .business_1_items.cd{
    margin-top: 134px;
  }
  .business_1_item.cd{

  }

  .business_1_item_inr{

  }
  .business_1_item_inr .business_1_box1{
    padding: 16px 32px 41px;
  }
  .business_1_item_inr .business_1_box2{

  }
  .business_1_item_inr .business_1_box2_img{

  }
  .business_1_item_inr .business_1_box2_img:before{

  }
  .business_1_item_inr .business_1_box1_tt{
    font-size: 40px;
  }
  .business_1_item_inr .content_desc{

  }

  /*バナー*/
  .hardmaterial_ftr_bnr{
    padding: 35px 30px 69px;
    margin-top: 100px;
  }
  .hardmaterial_ftr_bnr .sec_tt{

  }
  .hardmaterial_ftr_bnr .sec_tt_ja{
    font-size: 50px;
  }
  .hardmaterial_ftr_bnr .hardmaterial_msg{
    font-size: 40px;
  }
  .hardmaterial_ftr_bnr .content_desc{

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

  /*バナー*/
  .hardmaterial_ftr_bnr{
    padding: 35px 79px 69px;
  }
  .hardmaterial_ftr_bnr .sec_tt_ja{
    font-size: 50px;
  }

  .hm_s3_wrap.mate2 .hm_s1_box3_img.no1{
    width: 130.666%;
  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no2{
    width: 130.3%;
    margin-left: 0;
    margin-top: -49%;
  }


}
@media (min-width:1720px){
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no1{
    width: 166.666%;
  }
  .hm_s3_wrap.mate2 .hm_s1_box3_img.no2{
    width: 163.3%;
    margin-left: -10%;
    margin-top: -49%;
  }

}







/*******************************
*　SANFINISH
********************************/

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

}
.pg_sanfinish .section.sec1{

}
.pg_sanfinish .section.sec2{
  position: relative;
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  padding-bottom: 50px;
  margin-top: 60px;
}


@media (max-width:374px){

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

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

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

  }
  .pg_sanfinish .section.sec1{

  }
  .pg_sanfinish .section.sec2{
    padding-bottom: 80px;
    margin-top: 140px;
  }
  .pg_sanfinish .section.sec3{
    padding-top: 95px;
  }

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


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

  }
  .pg_sanfinish .section.sec1{

  }
  .pg_sanfinish .section.sec2{
    padding-bottom: 115px;
    margin-top: 315px;
  }

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


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


}

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

}
.hm_s3_wrap.sanfinsh .hm_s3_box1{

}
.hm_s3_wrap.sanfinsh .hm_s3_box1_inner{
  display: flex;
  justify-content: space-between;
}
.hm_s3_wrap.sanfinsh .hm_s1_box3_img{

}
.hm_s3_wrap.sanfinsh .hm_s1_box3_img.left{
  width: 47.64%;
  top: 125px;
  top: 50px;
}
.hm_s3_wrap.sanfinsh .hm_s1_box3_img.left:before{
  padding-top: 118.02%;
}
.hm_s3_wrap.sanfinsh .hm_s1_box3_img.right{
  width: 47.64%;
}
.hm_s3_wrap.sanfinsh .hm_s1_box3_img.right:before{
  padding-top: 118.02%;
}
.hm_s3_wrap.sanfinsh .hm_s3_box2{

}

.tt2.bk{
  color: #1a1a1a; 
}

.hm_s3_wrap.poli{

}
.sec_tt_en.multi{
  line-height: 0.85em;
}
.hm_s3_wrap.poli .hm_s3_box1{

}
.hm_s3_wrap.poli .hm_s3_box2{

}
.hm_s3_wrap.poli .hm_s3_box1_inner{

}
.hm_s3_wrap.poli .hm_s1_box3_img:before{
  padding-top: 79.03%;
}

/*feature*/
.sanfinish_feature_items{
  overflow: visible;
  margin-top: 50px;
}
.sanfinish_feature_item{

}
.sanfinish_feature_item_inner{
  background: #fff;
  padding: 0 16px 20px;;
  height: 100%;
}
.sanfinish_feature_item_num{
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color:#eae202;
  position: relative;
  top: -30px;;
}
.sanfinish_feature_item_tt{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #060a51;
  padding-bottom: 16px;
  margin-top: -8px;
}
.sanfinish_feature_item .content_desc{
  line-height: 2;
  margin-top: 15px;
}

/*work*/
.sanfinish_work_wrap{

}
.sanfinish_work_wrap .tt2{

}
.sanfinish_work_wrap .content_desc{
  margin-top: 20px;
}
.sanfinish_work_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.sanfinish_work_item{
  width: 100%;
}
.sanfinish_work_item:nth-child(n+2){
  margin-top: 20px;;
}
.sanfinish_work_item_inner{

}
.sanfinish_work_item_img{

}
@media (max-width:767px){
  /*feature*/
  .sanfinish_feature_item_num{
    font-size: 40px;
    top: -24px;
  }

  .sanfinish_feature_items .swiper-pagination-bullet{
    background: #fff;
  }

  .sanfinish_feature_item{
    height: auto;
  }
  .sanfinish_feature_item_inner{

  }
}
@media (min-width:768px){
  /*見出し*/
  .hm_s3_wrap.sanfinsh{

  }
  .hm_s3_wrap.sanfinsh .hm_s3_box1{

  }
  .hm_s3_wrap.sanfinsh .hm_s3_box1_inner{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.left{
    top: 125px;
  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.left:before{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.right{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.right:before{

  }
  .hm_s3_wrap.sanfinsh .hm_s3_box2{

  }

  .tt2.bk{
    font-size: 20px;
    margin-top: 14px;
  }

  .hm_s3_wrap.poli{

  }
  .hm_s3_wrap.poli .hm_s3_box1{

  }
  .hm_s3_wrap.poli .hm_s3_box2{

  }
  .hm_s3_wrap.poli .hm_s3_box1_inner{

  }

  /*feature*/
  .sanfinish_feature_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-13.5px;
    margin-top: 70px;
  }
  .sanfinish_feature_item{
    width: 50%;
    padding-inline:13.5px;
  }
  .sanfinish_feature_item:nth-child(n+3){
    margin-top:50px;;
  }
  .sanfinish_feature_item_inner{
    height: 100%;
    padding: 0 20px 30px;;
  }
  .sanfinish_feature_item_num{
    font-size: 40px;
  }
  .sanfinish_feature_item_tt{

  }
  .sanfinish_feature_item .content_desc{

  }
  .pg_sanfinish .section.sec2 .read_more{
    margin-top: 73px;
  }

  /*work*/
  .sanfinish_work_wrap{

  }
  .sanfinish_work_wrap .tt2{

  }
  .sanfinish_work_wrap .content_desc{
    margin-top: 30px;
  }
  .sanfinish_work_items{
    margin-inline:-15px;
    margin-top: 50px;
  }
  .sanfinish_work_item{
    width: 50%;
    padding-inline:15px;
  }
  .sanfinish_work_item:nth-child(n+2){
    margin-top: 0;
  }
  .sanfinish_work_item:nth-child(n+3){
    margin-top: 21px;
  }
  .sanfinish_work_item_inner{

  }
  .sanfinish_work_item_img{

  }
  .pg_sanfinish .section.sec3 .read_more{
    margin-top: 73px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*見出し*/
  .hm_s3_wrap.sanfinsh{

  }
  .hm_s3_wrap.sanfinsh .hm_s3_box1{
    width: 42.76%;
  }
  .hm_s3_wrap.sanfinsh .hm_s3_box1_inner{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.left{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.left:before{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.right{

  }
  .hm_s3_wrap.sanfinsh .hm_s1_box3_img.right:before{

  }
  .hm_s3_wrap.sanfinsh .hm_s3_box2{
    width: 50.98%;
  }
  .hm_s3_wrap.sanfinsh .hm_s3_box2 .tt2_sub{

  }
  .hm_s3_wrap.sanfinsh .hm_s3_box2 .tt2_sub{
    margin-top: 44px;
  }
  .hm_s3_wrap.sanfinsh .hm_s3_box2 .content_desc{
    margin-top: 37px;
  }

  .tt2.bk{
    font-size: 26px;
  }

  .hm_s3_wrap.poli{
    padding-top: 163px;
  }
  .hm_s3_wrap.poli .hm_s3_box1{
    width: 38.48%;
  }
  .hm_s3_wrap.poli .hm_s3_box2{
    width: 55.26%;
    padding-top: 17px;
  }
  .hm_s3_wrap.poli .hm_s3_box1_inner{
    margin-left: var(--margin-for-device-side-w);;
  }
  .hm_s3_wrap.poli .tt2_sub{
    margin-top: 40px;
  }
  .hm_s3_wrap.poli .content_desc{
    margin-top: 39px;
  }

  /*feature*/
  .sanfinish_feature_items{
    margin-top: 94px;
  }
  .sanfinish_feature_item{
    width: 25%;
  }
  .sanfinish_feature_item:nth-child(n+3){
    margin-top: 0;
  }
  .sanfinish_feature_item_inner{
    padding: 0 16px 25px;
  }
  .sanfinish_feature_item_num{
    font-size: 50px;
  }
  .sanfinish_feature_item_tt{

  }
  .sanfinish_feature_item .content_desc{

  }

  /*work*/
  .sanfinish_work_wrap{

  }
  .sanfinish_work_wrap .tt2{
    font-size: 24px;
  }
  .sanfinish_work_wrap .content_desc{
    margin-top: 43px;
  }
  .sanfinish_work_items{

  }
  .sanfinish_work_item{

  }
  .sanfinish_work_item_inner{

  }
  .sanfinish_work_item_img{

  }
}
@media (min-width:1470px){
  /*feature*/
  .sanfinish_feature_item_inner{
    padding: 0 53px 25px;
  }
}
@media (min-width:1720px){


}




/*******************************
*　SANMIX
********************************/

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

}
.pg_sanmix .section.sec1{

}
.pg_sanmix .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_sanmix .section.sec1{

  }
  .pg_sanmix .section.sec2{

  }

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


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

  }
  .pg_sanmix .section.sec1{

  }
  .pg_sanmix .section.sec2{
    margin-top: 236px;
  }

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


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


}

/* メイン部分 */

/*見出し*/
.hm_s3_wrap.sanmix1{

}
.hm_s3_wrap.sanmix1 .hm_s3_box1{

}
.hm_s3_wrap.sanmix1 .hm_s3_box2{

}

.hm_s3_wrap.sanmix2{

}
.hm_s3_wrap.sanmix2 .hm_s3_box1{

}
.hm_s3_wrap.sanmix2 .hm_s3_box2{

}

/*work*/
.sanfinish_work_item_tt{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
}
.pg_sanfinish .section.sec3 .sanfinish_work_item_inner .read_more{
  margin-top: 20px;
}
.sanfinish_work_item_inner .read_more a{
  border: 1px solid #060a51;
  min-width: inherit;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 0;
  padding: 16px 0;
}


@media (max-width:767px){
  .sanfinish_work_item_inner .read_more a{
    max-width: 280px;
  }
  .body_sanmix .sanfinish_work_item:nth-child(n+2),
  .body_sanfinish .sanfinish_work_item:nth-child(n+2),
  .body_testpieces .sanfinish_work_item:nth-child(n+2){
    margin-top: 0;
  }
}
@media (min-width:768px){
  /*見出し*/
  .hm_s3_wrap.sanmix1{

  }
  .hm_s3_wrap.sanmix1 .hm_s3_box1{

  }
  .hm_s3_wrap.sanmix1 .hm_s3_box2{

  }

  .hm_s3_wrap.sanmix2{

  }
  .hm_s3_wrap.sanmix2 .hm_s3_box1{

  }
  .hm_s3_wrap.sanmix2 .hm_s3_box2{

  }

  /*work*/
  .pg_sanfinish .section.sec3 .sanfinish_work_item:nth-child(n+3){
    margin-top: 46px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*見出し*/
  .hm_s3_wrap.sanmix1{

  }
  .hm_s3_wrap.sanmix1 .hm_s3_box1{
    order: 1;
  }
  .hm_s3_wrap.sanmix1 .hm_s3_box1 .hm_s3_box1_inner{
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .hm_s3_wrap.sanmix1 .hm_s3_box2{
    order: 2;
  }

  .hm_s3_wrap.sanmix2{

  }
  .hm_s3_wrap.sanmix2 .hm_s3_box1{
    order: 2;
  }
  .hm_s3_wrap.sanmix2 .hm_s3_box1 .hm_s3_box1_inner{
    margin-right: var(--margin-for-device-side-w);
    margin-left: 0;
  }
  .hm_s3_wrap.sanmix2 .hm_s3_box2{
    order: 1;
  }

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

  .pg_sanmix .section.sec2 .sanfinish_feature_item_inner{
    padding: 0 31px 25px;
  }
}
@media (min-width:1720px){


}


/*******************************
*　非破壊検査の試験片の制作
********************************/
.body_testpieces .footer{
  margin-top: 0;
}

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

}
.pg_testpieces .section.sec1{

}
.pg_testpieces .section.sec2{
  position: relative;
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  margin-top: 50px;
}
.pg_testpieces .section.sec3{
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(218, 218, 218, 1) 99%);
  padding-bottom: 50px;
}
.pg_testpieces .section.sec4{
  padding-top: 50px;
}
.pg_testpieces .section.sec5{
  padding-top: 50px;
}
.pg_testpieces .section.sec6{
  padding-bottom:40px;
}
.pg_testpieces .section.sec7{
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  padding-top: 50px;
  padding-bottom: 80px;
}


@media (max-width:374px){

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

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

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

  .pg_testpieces{

  }
  .pg_testpieces .section.sec1{

  }
  .pg_testpieces .section.sec2{
    padding-bottom:80px;
    margin-top: 120px;
  }
  .pg_testpieces .section.sec3{
    padding-top: 95px;
    padding-bottom: 100px;
  }
  .pg_testpieces .section.sec4{
    padding-top: 100px;
  }
  .pg_testpieces .section.sec5{
    padding-top: 100px;
  }
  .pg_testpieces .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_testpieces .section.sec7{
    padding-top: 100px;
    padding-bottom: 100px;
  }

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


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

  }
  .pg_testpieces .section.sec1{

  }
  .pg_testpieces .section.sec2{
    padding-bottom: 115px;
    margin-top: 215px;
  }
  .pg_testpieces .section.sec3{
    padding-bottom: 150px;
  }
  .pg_testpieces .section.sec4{
    padding-top: 132px;
  }
  .pg_testpieces .section.sec5{
    padding-top: 140px;
  }
  .pg_testpieces .section.sec6{
    padding-bottom: 180px;
  }
  .pg_testpieces .section.sec7{
    padding-top: 160px;
    padding-bottom: 200px;
  }

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


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


}

/*メイン*/
.sanfinish_feature_items.theory{

}
.sanfinish_feature_items.theory .sanfinish_feature_item_inner{
  text-align: center;
  padding: 0;
}

/*feture*/
.sanfinish_work_items.feture{

}
.sanfinish_work_items.feture .sanfinish_work_item{

}
.sanfinish_work_items.feture .sanfinish_work_item_inner{
  background: #090e69;
  color: #fff;
  padding: 20px 16px;
}
.sanfinish_work_items.feture .sanfinish_work_item_tt{
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 23px;
}
.sanfinish_work_items.feture .content_desc{
  line-height: 1.86em;
  margin-top: 22px;
}

/*繰り返し*/
.testpieces_contents_item{

}
.testpieces_contents_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testpieces_contents_item_head_box1{
  width: 100%;
}
.testpieces_contents_item_head_img{

}
.testpieces_contents_item_head_img:before{
  padding-top: 94.01%;
}
.testpieces_contents_item_head_box2{
  width: 100%;
  margin-top: 20px;
}
.testpieces_contents_item_head_box2 .content_desc{
  margin-top: 20px;
}
.testpieces_contents_item_btm{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.testpieces_contents_item_btm_child{
  width: 100%;
}
.testpieces_contents_item_btm_child:nth-child(n+2){
  margin-top: 30px;
}
.testpieces_contents_item_btm_child_inr{

}
.testpieces_contents_item_btm_img{
  border: 1px solid #1a1a1a;
  margin-bottom: 12px;
}
.testpieces_contents_item_btm_tt{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625em;
}

/*サンプルスライド*/
.testpieces_sample_box{
  margin-top: 40px;
}
.testpieces_sample_box .webgene-blog{
  margin-inline:-5px;
}
.testpieces_sample_box .webgene-item{
  width: 250px;
  padding-inline:5px;
}
.testpieces_sample_box .webgene-item .img_fit:before{
  padding-top: 66.666%;
}
.testpieces_sample_box_pages{

}
.testpieces_sample_box_pages .swiper-button-next:after,
.testpieces_sample_box_pages .swiper-button-prev:after{
  display: none;
}
.testpieces_sample_box_pages{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.testpieces_sample_box_pages .swiper-button-prev,
.testpieces_sample_box_pages .swiper-button-next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio:1;
  border-radius: 50%;
  border: 1px solid #282828;
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  transform: none;
  margin-top: 0;
  color: #282828;
  margin: 0 14px;
  transition: all .2s;
}
.testpieces_sample_box_pages .swiper-button-prev:hover,
.testpieces_sample_box_pages .swiper-button-next:hover{
  background: #030538;
  color: #fff;
}
.testpieces_sample_box_pages .swiper-button-next:before{
  content: "→";
  display: block;
}
.testpieces_sample_box_pages .swiper-button-prev:before{
  content: "←";
  display: block;
}

/*ポップアップ*/
.style_popup{
  position: relative;
}
.style_popup .style_popup_box1{

}
.style_popup_imgs .img.img_fit:before{
  padding-top: 66.32%;
}
.style_popup .style_popup_box2{

}
.style_popup_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1875em;
  color: #181818;
  margin-top: 20px;
}

.style_popup_close{
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  position: absolute;
  top: 2%;
  right: 1%;
  color: #000;
}
.style_popup_close:before{
  content: "";
  display: block;
  width: 33px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/batu.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

.testpieces_contents_items .testpieces_contents_item:nth-child(n+2){
  margin-top: 80px;
}
.testpieces_contents_items .testpieces_contents_item .testpieces_contents_item_btm_img{
  border: none;
}

.sec_tt{

}
.content_lists{
  margin-top: 24px;
}
.content_list{

}
.content_list:nth-child(n+2){
  margin-top: 4px;
}
.content_list_tt{
  font-size: 18px;
  font-weight: 700;
}
.content_list .content_desc{
  margin-top: 2px;
}

/*flow*/
.flow_items{
  margin-top: 40px;
}
.flow_item{
  display: flex;
  flex-wrap: wrap;
  background: #efefef;
  padding: 16px;
  position: relative;
}
.flow_item:nth-child(n+2){
  margin-top: 50px;
}
.flow_item:after{
  content: "";
  display: block;
  border-style: solid;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 20px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.flow_item:last-child:after{
  display: none;
}
.flow_item_box1{
  width: 100%;
  display: flex;
  align-items: center;
}
.flow_item_box1_img{

}
.flow_item_box1_tt{
  font-size: 22px;
  font-weight: 700;
  margin-left: 20px;
}
.flow_item_box2{
  width: 100%;

  margin-top: 20px;;
}
.flow_item_box2 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1875em;
}

.content_desc.testpieces_btm{
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  margin-top: 30px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .style_popup{
    padding: 90px 30px 30px;
  }
  .style_popup_close:before{
    margin-bottom: 5px;
  }


  .flow_item_box1{
    position: relative;
    padding-bottom: 16px;
  }
  .flow_item_box1:after{
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: #090e69;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }
  .flow_item_box2{
    margin-top: 0; 
  }
}
@media (min-width:768px){

  .pg_testpieces{

  }
  .pg_testpieces .section.sec1{

  }
  .pg_testpieces .section.sec2{

  }

  /*メイン*/
  .sanfinish_feature_items.theory{
    margin-bottom: 50px;
  }
  .sanfinish_feature_items.theory .sanfinish_feature_item_inner{

  }

  /*feture*/
  .sanfinish_work_items.feture{
    margin-top: 50px;
  }
  .sanfinish_work_items.feture .sanfinish_work_item{
    width: 50%;
  }
  .sanfinish_work_items.feture .sanfinish_work_item:nth-child(n+3){
    margin-top: 20px;;
  }
  .sanfinish_work_items.feture .sanfinish_work_item_inner{
    padding: 20px 20px 40px;
  }
  .sanfinish_work_items.feture .sanfinish_work_item_tt{
    font-size: 24px;
    padding-bottom: 23px;
  }
  .sanfinish_work_items.feture .content_desc{
    font-size: 15px;
  }

  /*繰り返し*/
  .testpieces_contents_item{

  }
  .testpieces_contents_item_head{

  }
  .testpieces_contents_item_head_box1{

  }
  .testpieces_contents_item_head_img{

  }
  .testpieces_contents_item_head_img:before{

  }
  .testpieces_contents_item_head_box2{
    margin-top: 30px;
  }
  .testpieces_contents_item_head_box2 .content_desc{
    margin-top: 39px;
  }
  .testpieces_contents_item_btm{
    margin-inline:-15px;
    margin-top: 70px;
  }

  .testpieces_contents_item_btm_child{
    width: 33.333%;
    padding-inline:15px;
  }
  .testpieces_contents_item_btm_child:nth-child(n+2){
    margin-top: 0;
  }
  .testpieces_contents_item_btm_child_inr{

  }
  .testpieces_contents_item_btm_img{

  }
  .testpieces_contents_item_btm_tt{

  }

  /*サンプルスライド*/
  .testpieces_sample_box{
    margin-top: 50px;
  }
  .testpieces_sample_box .webgene-blog{
    margin-inline:-16px;
  }
  .testpieces_sample_box .webgene-item{
    width: 400px;
    padding-inline:16px;
  }
  .testpieces_sample_box .webgene-item .img_fit:before{
    padding-top: 66.666%;
  }
  .testpieces_sample_box_pages{
    margin-top: 40px;
  }

  /*ポップアップ*/
  .style_popup{

  }
  .style_popup .style_popup_box1{
    width: 100%;
  }
  .style_popup_imgs .img.img_fit:before{

  }
  .style_popup .style_popup_box2{
    width: 100%;
  }

  .testpieces_contents_items .testpieces_contents_item:nth-child(n+2){
    margin-top: 120px;
  }

  .content_lists{
    margin-top: 38px;
  }
  .content_list{

  }
  .content_list_tt{
    font-size: 20px;
  }
  .content_list .content_desc{
    margin-top: 2px;
  }

  /*flow*/
  .flow_items{
    margin-top: 70px;
  }
  .flow_item{
    padding: 14px 0;
  }
  .flow_item:nth-child(n+2){
    margin-top: 60px;
  }
  .flow_item:after{
    bottom: -44px;
  }
  .flow_item_box1{
    width: 32.23%;
    width: 37.23%;
    position: relative;
    padding-left: 16px;
  }
  .flow_item_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background: #090e69;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .flow_item_box1_img{
    min-width: 76px;
  }
  .flow_item_box1_tt{
    font-size: 20px;
    margin-left: 20px;
  }
  .flow_item_box2{
    width: 67.76%;
    width: 61.76%;
    margin-top: 0;
    padding-right: 16px;
  }
  .flow_item_box2 .content_desc{
    padding-left: 32px;
  }

  .content_desc.testpieces_btm{
    font-size: 18px;
    margin-top: 90px;
  }
}
@media (min-width:1024px){


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


  /*メイン*/
  .sanfinish_feature_items.theory{
    margin-top: 74px;
    margin-bottom: 73px;
  }

  /*feture*/
  .sanfinish_work_items.feture{
    margin-top: 72px;
  }
  .sanfinish_work_items.feture .sanfinish_work_item{
    width: 25%;
  }
  .sanfinish_work_items.feture .sanfinish_work_item:nth-child(n+3){
    margin-top: 0;
  }
  .sanfinish_work_items.feture .sanfinish_work_item_inner{

  }
  .sanfinish_work_items.feture .sanfinish_work_item_tt{
    font-size: 30px;
  }
  .sanfinish_work_items.feture .content_desc{

  }

  /*繰り返し*/
  .testpieces_contents_item{

  }
  .testpieces_contents_item_head{

  }
  .testpieces_contents_item.left_img .testpieces_contents_item_head_box1{
    order: 1;
  }
  .testpieces_contents_item.left_img .testpieces_contents_item_head_box2{
    order: 2;
  }
  .testpieces_contents_item.right_img{

  }
  .testpieces_contents_item_head_box1{
    width: 38.48%;
    order: 2;
    padding-top: 27px;
  }
  .testpieces_contents_item_head_img{

  }
  .testpieces_contents_item_head_img:before{

  }
  .testpieces_contents_item_head_box2{
    width: 55.26%;
    order: 1;
    margin-top: 0;
  }
  .testpieces_contents_item_head_box2 .content_desc{

  }
  .testpieces_contents_item_btm{
    margin-top: 91px;
  }
  .testpieces_contents_item_btm_child{

  }
  .testpieces_contents_item_btm_child_inr{

  }
  .testpieces_contents_item_btm_img{

  }
  .testpieces_contents_item_btm_tt{

  }

  /*サンプルスライド*/
  .testpieces_sample_box{
    margin-top: 50px;
  }
  .testpieces_sample_box .webgene-blog{

  }
  .testpieces_sample_box .webgene-item{
    width: 480px;
  }
  .testpieces_sample_box .webgene-item .img_fit:before{
    padding-top: 66.666%;
  }

  /*ポップアップ*/
  .body_testpieces .style_popup{
    width: 1110px;
    padding: 100px 65px 40px;
  }

  .style_popup .style_popup_box1{

  }
  .style_popup_imgs .img.img_fit:before{

  }
  .style_popup .style_popup_box2{

  }

  .testpieces_contents_items .testpieces_contents_item:nth-child(n+2){
    margin-top: 166px;
  }

  /*flow*/
  .flow_items{
    margin-top: 93px;
  }
  .flow_item{

  }
  .flow_item_box1{
    width: 32.23%;
    padding-left: 33px;
  }
  .flow_item_box1_img{

  }
  .flow_item_box1_tt{
    font-size: 24px;
    margin-left: 20px;
  }
  .flow_item_box2{
    width: 67.76%;
  }
  .flow_item_box2 .content_desc{
    padding-left: 32px;
  }

  .content_desc.testpieces_btm{
    font-size: 20px;
  }
}
@media (min-width:1470px){
  .flow_item_box1_tt{
    font-size: 30px;
    margin-left: 40px;
  }

}
@media (min-width:1720px){
  .flow_item_box1_tt{
    font-size: 35px;
  }

}


/*******************************
*　採用
********************************/
.body_recruit .footer{
  margin-top: 0;
}

.pg_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{
  position: relative;
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  margin-top:50px;
  padding-bottom:40px;
}
.pg_recruit .section.sec3{
  position: relative;
  padding: 0;
}
.pg_recruit .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.pg_recruit .section.sec4:after{
  content: "";
  display: block;
  width: 46.35%;
  aspect-ratio:890 / 942;
  background-image: url(/system_panel/uploads/images/lop.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.pg_recruit .section.sec5{
  background: linear-gradient(159deg, rgba(6, 10, 81, 1) 0%, rgba(30, 120, 177, 1) 99%);
  padding-bottom: 50px;
  padding-top: 50px;
}
.pg_recruit .section.sec6{
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(217, 217, 217, 1) 99%);
  padding-top: 50px;
  padding-bottom: 80px;
}

@media (max-width:374px){

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

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

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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 70px;
    margin-top: 100px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec6{
    padding-top: 90px;
    padding-bottom: 100px;
  }

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


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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    margin-top: 170px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{
    padding-top: 120px;
    padding-bottom: 150px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .pg_recruit .section.sec6{
    padding-bottom: 200px;
  }
}

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

}
.hm_s3_wrap.recruit .hm_s3_box1{

}
.hm_s3_wrap.recruit .hm_s3_box2{

}
.hm_s3_wrap.recruit .hm_s3_box1_inner{

}
.hm_s3_wrap.recruit .hm_s1_box3_img:before{
  padding-top: 73.86%;
}

/*理念*/
.recruit_bnr{
  position: relative;
  border: 1px solid #fff;
}
.recruit_bnr_inr{
  width: 100%;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  padding: 0 16px;
}
.recruit_bnr_inr_txt1{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.recruit_bnr_inr_txt1 p{
  letter-spacing: 0;
  display: inline-block;
  background: #fff;
  padding: 5px 16px 5px 16px;
  position: relative;
  height: 47px;
}
.recruit_bnr_inr_txt1 p:before{
  content: "";
  display: block;
  width: 24px;
  height: 47px;
  background-color: #ffffff;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: -24px;
}
.recruit_bnr_inr_txt1 p:after{
  content: "";
  display: block;
  width: 24px;
  height: 47px;
  background-color: #ffffff;
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
  position: absolute;
  top: 0;
  right: -24px;
}
.recruit_bnr_inr_txt2{
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 16px 0;
  color: #fff;
}
.recruit_bnr_inr_txt2 strong{
  color: #f6ff00;
}
.recruit_bnr_inr_txt2 p{
  letter-spacing: 0.1em;
}
.recruit_bnr_inr .content_desc{
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
  line-height: 2.142em;
}
.recruit_bnr_img{

}
.recruit_bnr_img:before{
  padding-top: 437px;
}
.recruit_bnr_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:rgba(123,138,183,0.75);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/*appeal*/
.pg_recruit .section.sec2 .hm_s1_box1_en_tate{
  margin-top: 50px;
}
.recruit_appeal_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.recruit_appeal_item{
  width: 100%;
}
.recruit_appeal_item:nth-child(n+2){
  margin-top: 30px;
}
.recruit_appeal_item_inr{
  color: #fff;
}
.recruit_appeal_item_img{

}
.recruit_appeal_item_img:before{
  padding-top: 67.11%;
}
.recruit_appeal_item_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.recruit_appeal_item .content_desc{
  margin-top: 20px;
}

/*feture*/
.recruit_feture_img{

}
.recruit_feture_img:before{
  padding-top: 650px;
}
.recruit_feture_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: 2;
}
.recruit_feture_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.recruit_feture_box .sanfinish_work_wrap{

}
.sanfinish_work_items.recruit{

}
.sanfinish_work_items.recruit .sanfinish_work_item{

}

.sanfinish_work_items.recruit .sanfinish_work_item_inner{
  background: #fff;
  padding: 20px 16px;
}
.sanfinish_work_items.recruit .sanfinish_work_item_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45em;
  color: #060a51;
  margin-top: 0;
}
.sanfinish_work_items.recruit .sanfinish_work_item_tt:after{
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #666666;
  margin: 24px auto 0;
}
.recruit_feture_box .content_desc{
  margin-top: 12px;
}

/*person*/
.recruit_person_items{
  margin-top: 40px;
}
.recruit_person_item.testpieces_contents_item{

}
.recruit_person_item.testpieces_contents_item:nth-child(n+2){
  margin-top: 40px;
}
.recruit_person_item .testpieces_contents_item_head_box1{

}
.recruit_person_item .testpieces_contents_item_head_box2{

}
.recruit_person_item .testpieces_contents_item_head_img:before{
  padding-top: 61.93%;
}

/*インタビュー*/
.interview_items{
  margin-top: 50px;
}
.interview_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}
.interview_item:nth-child(n+2){
  margin-top: 50px;
}
.interview_item:before{
  content: "";
  display:block;
  width: 100vw;
  height: 100%;
  background: #d4d5e6;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index:0;
}
.interview_item:nth-child(odd):before{
  background: linear-gradient(180deg,rgba(212, 212, 229, 1) 0%, rgba(212, 219, 235, 1) 99%);
}
.interview_item:nth-child(even):before{
  background: linear-gradient(180deg,rgba(213, 220, 236, 1) 0%, rgba(215, 227, 242, 1) 99%);
}
.interview_item_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.interview_item_img:before{
  padding-top: 63.06%;
}
.interview_item_name{
  background: #0d1160;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.interview_item_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.interview_item_faq{

}
.interview_item_faq_block{

}
.interview_item_faq_block:nth-child(n+2){
  margin-top: 16px;
}
.interview_item_faq_tt{
  font-size: 17px;
  font-weight: 700;
  background: #ffffff;
  color: #0d1160;
  padding: 5px 15px;
}
.interview_item .content_desc{
  line-height: 2;
  margin-top: 20px;
}

/*テーブル*/
.contents_tbl{
  margin-top: 40px;
}
.contents_tbl .table_rows_th,
.contents_tbl .table_rows_td{
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #dbdbdb;
  padding: 16px 15px;
}
.contents_tbl .table_rows_th{
  background: #f3f1f1;
}
.contents_tbl .table_rows_td{
  background: #fff;
  line-height: 1.875em;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .recruit_bnr_inr_txt1 p{
    height: 57px;
  }
  .recruit_bnr_inr_txt1 p:before,
  .recruit_bnr_inr_txt1 p:after{
    height: 57px;
  }
  .recruit_bnr_inr{
    padding: 0 5px;
  }

  /*feture*/
  .sanfinish_work_items.recruit .sanfinish_work_item:nth-child(n+2){
    margin-top: 0;
  }

  /*テーブル*/
  .contents_tbl{

  }
  .contents_tbl .table_rows_th,
  .contents_tbl .table_rows_td{
    width: 100%;
    display: block;
    border-bottom: none;
  }
  .contents_tbl .table_rows_th{
    background: #f3f1f1;
  }
  .contents_tbl .table_rows_td{
    background: #fff;
  }
  .contents_tbl .table_rows_tr:last-child{
    border-bottom: 1px solid #dbdbdb;
  }
}
@media (min-width:768px){
  /*見出し*/
  .hm_s3_wrap.recruit{

  }
  .hm_s3_wrap.recruit .hm_s3_box1{

  }
  .hm_s3_wrap.recruit .hm_s3_box2{

  }
  .hm_s3_wrap.recruit .hm_s3_box1_inner{

  }

  /*理念*/
  .recruit_bnr{

  }
  .recruit_bnr_inr{
    padding: 0 30px;
  }
  .recruit_bnr_inr_txt1{
    font-size: 20px;
  }
  .recruit_bnr_inr_txt1 p{
    letter-spacing: 0.075em;
    padding: 5px 41px 5px 40px;
  }
  .recruit_bnr_inr_txt2{
    font-size: 40px;
  }
  .recruit_bnr_inr_txt2 p{

  }
  .recruit_bnr_inr .content_desc{
    font-size: 20px;
    margin-top: 52px;
  }
  .recruit_bnr_img{

  }
  .recruit_bnr_img:before{

  }
  .recruit_bnr_img:after{

  }

  /*appeal*/
  .pg_recruit .section.sec2 .hm_s1_box1_en_tate{
    margin-top: 100px;
  }
  .recruit_appeal_items{
    margin-inline:-16.5px;
    margin-top: 50px;
  }
  .recruit_appeal_item{
    width: 50%;
    padding-inline:16.5px;
  }
  .recruit_appeal_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_appeal_item:nth-child(n+3){
    margin-top: 70px;;
  }
  .recruit_appeal_item_inr{

  }
  .recruit_appeal_item_img{

  }
  .recruit_appeal_item_img:before{

  }
  .recruit_appeal_item_tt{
    font-size: 22px;
    margin-top: 33px;
  }
  .recruit_appeal_item .content_desc{
    margin-top: 35px;
  }

  /*feture*/
  .recruit_feture_img{

  }
  .recruit_feture_img:before{
    padding-top: 1400px;
  }
  .recruit_feture_img:after{

  }
  .recruit_feture_box{

  }
  .recruit_feture_box .sanfinish_work_wrap{

  }
  .sanfinish_work_items.recruit{

  }
  .sanfinish_work_items.recruit .sanfinish_work_item{

  }
  .sanfinish_work_items.recruit .sanfinish_work_item_inner{
    height: 100%;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item_tt{
    font-size: 22px;
  }
  .sanfinish_work_items.recruit .content_desc{

  }

  /*person*/
  .recruit_person_items{
    margin-top: 60px;
  }
  .recruit_person_item.testpieces_contents_item{

  }
  .recruit_person_item.testpieces_contents_item:nth-child(n+2){
    margin-top: 90px;
  }
  .recruit_person_item .testpieces_contents_item_head_box1{

  }
  .recruit_person_item .testpieces_contents_item_head_box2{

  }
  .recruit_person_item .testpieces_contents_item_head_box2 .content_desc{
    margin-top: 20px;
  }
  .recruit_person_item .testpieces_contents_item_head_img:before{

  }

  /*インタビュー*/
  .interview_items{
    margin-top: 100px;
  }
  .interview_item{
    padding: 50px 0;
  }
  .interview_item:nth-child(n+2){
    margin-top: 80px;
  }
  .interview_item_box1{

  }
  .interview_item_img:before{

  }
  .interview_item_name{
    font-size: 20px;
  }
  .interview_item_box2{
    margin-top: 30px;
  }
  .interview_item_faq{

  }
  .interview_item_faq_block{

  }
  .interview_item_faq_block:nth-child(n+2){
    margin-top: 39px;
  }
  .interview_item_faq_tt{
    font-size: 22px;
  }
  .interview_item .content_desc{

  }

  /*テーブル*/
  .contents_tbl{
    margin-top: 78px;
  }
  .contents_tbl .table_rows_th,
  .contents_tbl .table_rows_td{
    font-size: 17px;
  }
  .contents_tbl .table_rows_th{
    width:200px;
    border-right: 0;
    vertical-align: middle;
  }
  .contents_tbl .table_rows_td{
    border-left: 0;
  }
}
@media (min-width:1024px){
  /*feture*/
  .recruit_feture_img:before{
    padding-top: 1300px;
  }

}
@media (min-width:1200px){
  /*見出し*/
  .hm_s3_wrap.recruit{

  }
  .hm_s3_wrap.recruit .hm_s3_box1{

  }
  .hm_s3_wrap.recruit .hm_s3_box2{

  }
  .hm_s3_wrap.recruit .hm_s3_box1_inner{

  }
  .hm_s3_wrap.recruit .hm_s1_box3_img{
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .hm_s3_wrap.recruit .tt2_sub{
    margin-right: -16px;
  }


  /*理念*/
  .recruit_bnr{

  }
  .recruit_bnr_inr{
    padding: 0 40px;
  }
  .recruit_bnr_inr_txt1{
    font-size: 25px;
  }
  .recruit_bnr_inr_txt1 p{

  }
  .recruit_bnr_inr_txt2{
    font-size: 55px;
  }
  .recruit_bnr_inr_txt2 p{

  }
  .recruit_bnr_inr .content_desc{
    font-size: 28px;
  }
  .recruit_bnr_img{

  }
  .recruit_bnr_img:before{

  }
  .recruit_bnr_img:after{

  }

  /*appeal*/
  .pg_recruit .section.sec2 .hm_s1_box1_en_tate{
    margin-top: 120px;
  }
  .recruit_appeal_items{
    margin-top: 72px;
  }
  .recruit_appeal_item{

  }
  .recruit_appeal_item_inr{

  }
  .recruit_appeal_item_img{

  }
  .recruit_appeal_item_img:before{

  }
  .recruit_appeal_item_tt{
    font-size: 32px;
  }
  .recruit_appeal_item .content_desc{

  }

  /*feture*/
  .recruit_feture_img{

  }
  .recruit_feture_img:before{

  }
  .recruit_feture_img:after{

  }
  .recruit_feture_box{

  }
  .recruit_feture_box .sanfinish_work_wrap{

  }
  .sanfinish_work_items.recruit{
    margin-inline:-9px;
    margin-top: 60px;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item{
    width: 20%;
    padding-inline:9px;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item:nth-child(n+3){
    margin-top: 0;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item_inner{
    padding: 26px 5px;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item_tt{
    font-size: 18px;
  }
  .sanfinish_work_items.recruit .content_desc{

  }
  .recruit_feture_box .read_more{
    margin-top: 46px;
  }

  /*person*/
  .recruit_person_items{
    margin-top: 60px;
  }
  .recruit_person_item.testpieces_contents_item{

  }
  .recruit_person_item.testpieces_contents_item:nth-child(odd) .testpieces_contents_item_head_box1{
    order: 1;
  }
  .recruit_person_item.testpieces_contents_item:nth-child(odd) .testpieces_contents_item_head_box2{
    order: 2;
  }
  .recruit_person_item.testpieces_contents_item:nth-child(even) .testpieces_contents_item_head_box1{
    order: 2;
  }
  .recruit_person_item.testpieces_contents_item:nth-child(even) .testpieces_contents_item_head_box2{
    order: 1;
  }
  .recruit_person_item .testpieces_contents_item_head_box1{
    width: 50.98%;
    padding-top: 10px;
  }
  .recruit_person_item .tt2_sub{
    font-size: 32px;
  }
  .recruit_person_item .testpieces_contents_item_head_box2{
    width: 42.76%;
  }
  .recruit_person_item .testpieces_contents_item_head_img:before{

  }

  /*インタビュー*/
  .interview_items{
    margin-top: 134px;
  }
  .interview_item{

  }
  .interview_item:before{
    width: 86.51%;
  }
  .interview_item:nth-child(odd):before{
    right: 0;
    margin-left:0;
    margin-right:0;
  }
  .interview_item:nth-child(even):before{
    left: 0;
    margin-right:0;
    margin-left: 0;
  }
  .interview_item:nth-child(n+2){
    margin-top: 105px;
  }
  .interview_item:nth-child(odd) .interview_item_box1{
    order: 1;
  }
  .interview_item:nth-child(odd) .interview_item_box2{
    order: 2;
    padding-right: 50px;
  }
  .interview_item:nth-child(even) .interview_item_box1{
    order: 2;
  }
  .interview_item:nth-child(even) .interview_item_box2{
    order: 1;
    padding-left: 50px;
  }
  .interview_item_box1{
    width: 36.51%;
  }
  .interview_item_img{
    margin-top: -100px;
  }
  .interview_item_img:before{

  }
  .interview_item_name{

  }
  .interview_item_box2{
    width: 57.23%;
    margin-top: 0;
  }
  .interview_item_faq{

  }
  .interview_item_faq_block{

  }
  .interview_item_faq_tt{
    font-size: 22px;
  }
  .interview_item .content_desc{

  }

  /*テーブル*/
  .contents_tbl{

  }
  .contents_tbl .table_rows_th,
  .contents_tbl .table_rows_td{

  }
  .contents_tbl .table_rows_th{
    width:285px;
  }
  .contents_tbl .table_rows_td{

  }
}
@media (min-width:1470px){
  .recruit_bnr_inr{
    padding: 0 105px;
  }

  /*feture*/
  .recruit_feture_img:before{
    padding-top: 879px;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item_inner{
    padding: 26px 16px;
  }
  .sanfinish_work_items.recruit .sanfinish_work_item_tt{
    font-size: 22px;
  }

  /*person*/
  .recruit_person_item .tt2_sub{
    font-size: 40px;
  }
}
@media (min-width:1720px){

  .sanfinish_work_items.recruit .sanfinish_work_item_inner{
    padding: 26px 25px;
  }

}



/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}


/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav li a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 li a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 li a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 li a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp li{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp li{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp li{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp li{
    font-size: 10px;
  }

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav.col2 li{
    width: 50%;
  }
  .cmn_cat_nav.col3 li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 li{
    width: 25%;
  }
  .cmn_cat_nav.col5 li{
    width: 20%;
  }

}


/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 10px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

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

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}
.pg_news .news_list .webgene-item a{
  border-top: 1px solid #b3b3b3;
}
.pg_news .news_list .webgene-item:nth-last-child(2) a{
  border-bottom: 1px solid #b3b3b3;
}
.pg_news .news_list .webgene-item a:after{
  right: 6px;
}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left:0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 5px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 35px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #dee604;
}

/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #bfbfbf;
  padding: 0 0 30px;;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  display: inline-block;
  margin-bottom: 2px;
  color: #000;
  width: 125px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(201, 223, 238, 1) 99%);
  padding: 2px 31px;
  margin-right: 10px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  font-size: 14px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
}
.posts_detail .title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 16px;
}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

.pg_news .read_more a{
  background: #060a51;
  color: #fff;
}
.pg_news .read_more a:after{
  background-image: url(/system_panel/uploads/images/wh_circle.png);
}
/* コピー用 */
@media (max-width:374px){

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

  /* 詳細 */
  .posts_detail{
    padding: 0 0 43px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 17px;
  }
  .posts_detail .meta .category{
    width: auto;
    margin-right: 24px;
  }
  .posts_detail .meta .category span{

  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: 100%;
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0;
    padding-top: 20px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 0;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}



/*******************************
*　会社概要
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

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

/*ギャラリー*/
.company_gallery_items{

}
.company_gallery_item{

}
.company_gallery_item_img:before{
  padding-top: 71.42%;
}

.company_video iframe{
  border: 0;
}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .contents_tbl.company{

  }
  .contents_tbl.company .table_rows_th{
    vertical-align: top;
  }
  .contents_tbl.company .table_rows_td{
    padding-left: 20px;
  }
  .contents_tbl.company .table_rows_th,
  .contents_tbl.company .table_rows_td{
    font-size: 18px;
    padding: 15px 15px;
  }

  /*地図*/
  .gmap{
    margin-top: 72px;
  }
  .access_map iframe{
    height: 400px;
  }

  /*ギャラリー*/
  .company_gallery_items{

  }
  .company_gallery_item{

  }
  .company_gallery_item_img:before{

  }
}
@media (min-width:1024px){
  /*地図*/
  .gmap{

  }
  .access_map iframe{

  }

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

  }
  .company_gallery_item_img:before{

  }

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


}

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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #0d1160;
}
.pg_contact .formBtn.formSend {
  display: block;
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #181818;
  padding: 16px 20px;
  margin: 40px auto 0; 
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  width: 22px;
  aspect-ratio: 1;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  background: #fff;
  border: 1px solid #000;
}
.pg_contact .formBtn.formSend:hover:after{
  right: 14px;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.25em;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.contact_form{
  margin-top: 60px;
}
@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}
.privacy_item_box{
  padding: 30px 64px 30px 29px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 55px;
}

/* プライバシー */
.pg_contact .section.sec2{
  padding: 95px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 47px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #0d1160;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

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

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

  .thanks_text{
    text-align: justify;
  }

  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

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

  .pg_contact .section.sec2 .contact_tt{
    font-size: 19px;
  }
  .privacy_item_box{
    padding: 30px 10px;
  }
}

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

/*アニメーション*/
.animated2.blurInUp{
  transform: translateY(2%);
  filter: blur(10px);
}
.animated2.inview {
  transition: 1s all;
}
.animated2.blurInUp.inview{
  transform: translateY(0);
  filter: blur(0);
}

.business_tbl_main.over_y_none{
  overflow:inherit;
}
.business_tbl_main.over_y_none .table_rows{
  overflow:inherit;
  max-height: 95px;
}
.business_tbl_main.over_y_none .js-scrollable{

}
.scroll-hint-icon{
  width: 100px;
  height: 60px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
@media (min-width:768px) and (max-width:1023px){
  .ftr_1_box1{
    width: 50.76%;
  }
  .ftr_1_box2{
    width: 39.01%;
  }
  .ftr_links{
    width: 100%;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 10px;;
  }
  .ftr_link{
    margin-top: 10px;
  }
  .ftr_links:nth-child(n+3){
    margin-top: 0;
  }
}
@media (min-width:768px) and (max-width:1440px){
  .business_tbl_main .table_rows_th, .business_tbl_main .table_rows_td{
    padding: 23px 15px;
  }

}
