@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap');

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", 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", 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background: #eaebef !important;
  -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;
}

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

@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.02em;
}
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: var(--main-color);
  transition: 0.2s all;
}
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;
  background: transparent;
  padding: 0!important;
  z-index:3;
}
.hdr1{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 5px 10px;*/
}

.header .logo{
  mix-blend-mode: difference;
  isolation: isolate;
}
.header .logo a{
  display: block;
  mix-blend-mode: difference;
}
.header .logo img{
  display: block;
  mix-blend-mode: difference;
}

/* ロゴ */
.hdr_logo{
  display: flex;
  text-align: center;
  align-items: center;
}
.hdr_logo img{
  display: block;
  /*width: 150px;*/
  height: var(--logo-height);
  /*height: auto;*/
  transition: 0.2s all;
}
.hdr_logo1{
  margin-left: 15px;
}
.hdr_logo_txt{
  margin-left: 20px;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-en);
}
.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_tel_txt1:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 10px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  /*  margin-left: 20px;*/
}
.hdr_contact a{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gra1);
  color: #FFF !important;
  width: 120px;
  height: 80px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.5s all;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: #000;
}
.hdr_contact a.color1{
  background-color: #274195;
}
.hdr_contact a.color2{
  background-color: #52bebb;
}
.hdr_contact a:before{
  /*content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 31 / 31;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 12px;
  margin-bottom: 4px;*/
}
.hdr_contact a:hover{
  background: #000;
  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){
  .hdr_logo{
    width: 100px;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
  }

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 50px;
    /*background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    position: fixed;
    z-index: 2;
    top: 0;
    left: auto;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_box{
    display: flex;
    align-items: center;
  }
  .hdr_contact_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    font-size: 16px;
    padding: 21px 0 17px;
  }
  .hdr_contact_item:hover{
    opacity: .5;
    color: #000;
  }
  .hdr_contact_item p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hdr_contact_item p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 31px;
    margin-bottom: 8px;
  }
  .hdr_contact_item.mitumori{
    font-weight: 700;
    background: #cccccc;
  }
  .hdr_contact_item.mitumori p:before{
    width: 24px;
    aspect-ratio:24 / 31;
    background-image: url(/system_panel/uploads/images/calculator.png);
  }
  .hdr_contact_item.mitumori p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_item.contact{
    font-weight: 600;
    background: #000000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .hdr_contact_item.contact p{
    letter-spacing: 0;

  }
  .hdr_contact_item.contact p:before{
    width: 31px;
    aspect-ratio:31 / 23;
    background-image: url(/system_panel/uploads/images/envelope.png);
  }


  .hdr1{
    /*padding: 0 15px 0 25px;*/
  }

  /* ロゴ */
  .hdr_logo{
    mix-blend-mode:difference;
    position: fixed;
    z-index: 2;
    top: 10px;
    left: 10px;
  }
  .hdr_logo img{
    height: 60px;
  }

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

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
    /*height: auto;*/
  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 50px;
  }

  .hdr1{

  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{
    margin-left: 45px;
  }
  .hdr_tel_txt1{
    font-size: 20px;
  }

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

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

  }
  .hdr_logo img{
    /*width: auto;*/
  }

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_box{
    margin-left: 38px;
  }

  /* TELボタン */
  .hdr_tel_txt1:before{
    margin-right: 5px;
  }
  .hdr_tel_txt1{
    font-size: 20px;
  }

}
@media (min-width:1440px){
  /* TELボタン */
  .hdr_tel_txt1{
    font-size: 20px;
  }

}
@media (min-width:1470px){
  .hdr1{
    /*padding: 0 0 0 25px;*/
  }
}
@media (min-width:1720px){
  .header{
    --logo-height: 60px;
  }
  /* ロゴ */
  .hdr_logo img{
    /*width: auto;*/
  }
  /* TELボタン */
  .hdr_tel_txt1{
    font-size: 25px;
  }

}


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

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

/* バナー */
.sidebar{
  display: none;
}
.sidebar_bn{
}
.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{
    display: block;
    top: 50%;
  }

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


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

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

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

}

@media (min-width:1720px){
    .sidebar_bn img{
    width: auto;
  }
}

.pg_home,
.pg_header + [class*="pg_"]{
  position: relative;
  z-index: 1;
}

/*******************************
*　共通パーツ
********************************/
/* テキスト */
.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.cmn_txt p{
  letter-spacing: 0.075em;
}

/* テーブル用 */
.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 14px;
  margin: 0 4px;
  border: 1px solid var(--main-color);
  background: #ffffff;
  font-family: var(--font-en);
  font-weight: 700;
  border-radius: 50px;
}
.webgene-pagination li.selected{
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #FFF;
  border-radius: 50px;
}
.webgene-pagination li.next{
  border: 0;
  border-radius: 0;
  position: relative;
}
.webgene-pagination li.next a{
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.webgene-pagination li.next:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: -63%;
  padding-top: 2px;
  padding-left: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.webgene-pagination li.prev{
  border: 0;
  border-radius: 0;
  position: relative;
}
.webgene-pagination li.prev a{
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.webgene-pagination li.prev:before{
  content: "\f053";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: 63%;
  padding-top: 2px;
  padding-right: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* アンカー */
.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: 300px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  background: var(--main-color);
  border-radius: 50px;
  color: #FFF !important;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.075em;
}
.read_more a p:after{
  content: "\f061";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: #FFF;
  /*background-image: -moz-linear-gradient( 90deg, rgb(0,67,130) 0%, rgb(54,183,243) 100%);*/
  background-image: -webkit-linear-gradient( 90deg, rgb(0,67,130) 0%, rgb(54,183,243) 100%);
  /*background-image: -ms-linear-gradient( 90deg, rgb(0,67,130) 0%, rgb(54,183,243) 100%);*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.2s all;
  position: relative;
  right: 3px;
  padding-left: 3px;
}
.read_more a:hover{
  background: var(--main-color);
}
.read_more a:hover p:after{
  right: -3px;
}


.link_more_a p:after {
  content: "\f08e" !important;
  font-family: 'FontAwesome';
  display: block;
  width: 22px;
  aspect-ratio: 1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub-color);
  border-radius: 50%;
  font-size: 14px !important;
  transition: 0.2s all;
  position: relative;
  right: 0;
  padding-top: 3px;
}



.read_more a.wh{
  background: #FFF;
  
}
.read_more a.wh p{
  color: var(--txt-color);
}

.read_more a.sm{
  font-size: 16px;
  padding-top: 6px;
  padding-bottom: 7px;
  min-width: 200px;
}
.read_more a.sm p:after{
  width: 26px;
}


/* 見出し */
.tt2{
  margin-bottom: 25px;
}
.tt3{
  margin-bottom: 25px;
}
.tt2.center{
  text-align: center;
}
.tt2_en{
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
}
.tt3_en{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #f2efec;
  text-align: center;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 900;
  margin-top: 5px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}
.tt2_ja.wh{
  color: #FFF;
}
.tt2_ja2{
  font-size: 16px;
  font-weight: 900;
  margin-top: 5px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

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

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

}

.sec_sub_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.sec_sub_tt p{
  letter-spacing: 0.025em;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc.msg{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.71em;
}
.content_desc.msg p{
  letter-spacing: 0.075em;
}

.recruit_tbl_item.company_tbl .table_rows_th{
  background: #f2f2f2;
}
@media (max-width:374px){

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

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

  .read_more{
    width: 100%;
  }

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

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

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
    margin-top: 30px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 10px 7px 10px 32px;
    margin: 0;
  }
  /*  .read_more a:after{
      content: "";
  
    }*/
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt3{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 80px;
  }
  .tt3_en{
    font-size: 80px;
  }
  .tt2_ja{
    font-size: 24px;
    margin-top: 5px;
  }

  .tt2_ja2{
    font-size: 18px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }

  .sec_sub_tt{
    font-size: 30px;
  }
  .content_desc{

  }
  
  .cmn_txt{
    line-height: 2.5;
  }

  /* 募集要項 */
  .recruit_tbl_item.company_tbl .table_rows_th {
    border-right: 0;
    vertical-align: middle;
  }
  .recruit_tbl_item.company_tbl .table_rows_td {
    border-left: 0;
  }
}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 60px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }
  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
    margin-top: 30px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 20px;
    padding: 13px 7px 15px 32px;
    margin: 0;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  /* .tt2_en{
      font-size: 100px;
    }*/
  .tt2_ja{
    font-size: 26px;
  }

}
@media (min-width:1200px){
  .sec_sub_tt{
    font-size: 40px;
  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }

  .content_desc.msg{
    font-size: 21px;
  }
  /* 見出し */
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja {
    font-size: 30px;
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 10px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt3_en{
    font-size: 150px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 36px;
    line-height: 2;
  }

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

  /* 見出し */
  .tt3{
    margin-bottom: 10px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt3_en{
    font-size: 150px;
  }
}
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}





/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 0;
}
.pg_home .section.sec1{
  background-image: url(https://ons-trail.co.jp/system_panel/uploads/images/home_about_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 200px auto;
  padding-top: 0;
  
}
.pg_home .section.sec2{
  background-image: url(https://ons-trail.co.jp/system_panel/uploads/images/works_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #2fa9e6;
  padding-top: 100px;
  padding-bottom: 130px;
}
.pg_home .section.sec3{
  
}
.pg_home .section.sec4{
  
}
.pg_home .section.sec5{
  
}
.pg_home .section.sec6{
  background: var(--main-color);
  padding: 0;
}
.pg_home .section.sec7{
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  
  .pg_home .section.sec1{
    background-size: 400px auto;
    padding-bottom: 75px;
  }
  .pg_home .section.sec2{
    padding-bottom: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 75px;
  }
  .pg_home .section.sec4{
    padding-top: 75px;
  }
  .pg_home .section.sec5{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 75px;
  }
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){


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

  .pg_home .section.sec1{
    background-size: 750px auto;
  }
  .pg_home .section.sec2{
    padding-bottom: 180px;
  }
  .pg_home .section.sec3{
    padding-top: 160px;
  }
  .pg_home .section.sec4{
    padding-top: 115px;
  }
  .pg_home .section.sec5{
    padding-top: 130px;
    padding-bottom: 180px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 110px;
  }
  
}
@media (min-width:1720px){
  .pg_home .section.sec1{
    background-size: 831px auto;
  }
}


/* メイン */

/* 派遣について */
.home_haken_wrap{
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.home_haken_bg{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.home_haken_bg img{
  height: 120%;
  transform: translateY(0);
  will-change: transform;
}
.home_haken_bg.img_fit img{
  object-position: center bottom;
}
.home_haken_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_haken{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
}
.home_haken_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_haken_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.home_haken_head{
  margin-bottom: 20px;
}
.home_haken_head_ja{
  display: inline;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  color: var(--txt-color);;
  padding: 0.15em 0.4em;
  padding: 1px 10px 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: inset 0 1.9em 0 #FFF;
  /*box-shadow: none;*/
  /*transition: 0.8s all;*/
  /*transition-delay: 0.2s;*/
}


.home_haken_head_en{
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 2.0;
  letter-spacing: 0;
  margin-top: 20px;
}
.home_haken_txt{
  /*width: 460px;*/
}

.home_haken_merit{
  background: rgba(255,255,255,0.65);
  padding: 20px 20px
}
.home_haken_merit + .home_haken_merit{
  margin-top: 20px;
}
.home_haken_merit_title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.home_haken_merit_list{
  
}
.home_haken_merit_list_p{
  padding-left: 14px;
  position: relative;
  z-index: 1;
}
.home_haken_merit_list_p + .home_haken_merit_list_p{
  margin-top: 10px;
}
.home_haken_merit_list_p:before{
  content: "";
  width: 6px;
  aspect-ratio: 1 / 1;
  background-image: url(https://ons-trail.co.jp/system_panel/uploads/images/dot_gra.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
}
.home_haken_merit_list_p p{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.home_haken_img{
  width: 160px;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 49%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.home_haken .read_more{
  margin-top: 180px;
}

/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  padding-top: 30px;
}
.home_about_title_en{
  font-size: 60px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.home_about_title_ja{
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* background: linear-gradient(-135deg, #4171ec 0%, #52bebb 100%); */
  /*background: linear-gradient(82deg, #000000 0%, #2196F3 100%);*/
  background: linear-gradient(-135deg, #4171ec 0%, #000000 100%);
  background-clip: text;
}
.home_about_txt{
  font-size: 16px;
  font-weight: 500;
}
.home_about_img{
  margin-top: 20px;
}
.home_about_img.img_fit:before{
  padding-top: 70%;
}
.home_about .read_more{
  
}

/* WORKS(見出し) */
.home_works_head{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  margin-bottom: 50px;
}
.home_works_head:before{
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: #FFF;
  margin: 0 auto;
}
.home_works_head_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFF;
  margin-top: 20px; 
  margin-bottom: 30px;
}
.home_works_head_en{
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.home_works_head_en_img{
  padding: 0 20px;
}
.home_works_head_en_img img{
  max-width: none;
  height: 60px;
}

/* WORKS(メイン) */
.home_works{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_works_box1{
  order: 2;
  width: 50%;
  padding-top: 20px;
}
.home_works_box2{
  order: 1;
  width: 100%;
  padding-right: 0;
}
.home_works_box3{
  order: 3;
  width: 45%;
  padding-top: 45px;
}

.home_works_imgs1{
  display: flex;
  flex-wrap: wrap;
  /*margin-left: -145px;*/
}
.home_works_imgs1_item{
  
}
.home_works_imgs1_item.pos1{
  width: 88.88%;
  z-index: 0;
}
.home_works_imgs1_item.pos1.img_fit:before{
  padding-top: 112.500%;
}
.home_works_imgs1_item.pos2{
  width: 77.77%;
  margin-top: -50px;
  margin-left: auto;
  z-index: 1;
}
.home_works_imgs1_item.pos2.img_fit:before{
  padding-top: 114.286%;
}
.home_works_imgs2{
  /*margin-right: -150px;*/
}
.home_works_imgs2_item{
  
}
.home_works_imgs2_item.pos1{
  
}
.home_works_imgs2_item.pos1.img_fit:before{
  padding-top: 112.500%;
}

.home_works_title{
  text-align: center;
  margin-bottom: 30px;
}
.home_works_title_bg{
  display: inline-block;
  padding: 5px 20px 7px;
  margin: 5px 10px;
  background-color: #111;
}
.home_works_title_txt{
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(-135deg, #4171ec 0%, #52bebb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.home_works_txt{
  font-size: 16px;
  font-weight: 500;
  /*line-height: 1.875;*/
  /*text-align: justify;*/
  color: #FFF;
}
.home_works .read_more{
  
}

.about_contents1_box1_en .home_works_title_txt{
  /*background-image: linear-gradient(-135deg, #52bebb 0%, #4171ec 100%);*/
  background-image: linear-gradient(185deg,#52bebb 0% ,#52bebb 33%, #4171ec 100%);
}

/* SERVICE */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_service_box1{
  width: 100%;
  /*min-height: 150px;*/
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  order: 2;
}
.home_service_box2{
  width: 100%;
  color: #FFF;
  padding-top: 50px;
  padding-bottom: 40px;
  order: 1;
}

.home_service_gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  /*position: absolute;*/
  /*z-index: 1;*/
  /*inset: 0;*/
}

.home_service_gallery_imgs{
  width: 48%;
}

.home_service_gallery .infiniteslide_wrap{
  width: 100%;
  /*height: 100%!important;*/
}
.infiniteslide_wrap .home_service_gallery_imgs{
  width: 100%;
  height: 100%;
}

.home_service_gallery_img{
  width: 100px;
  margin: 5px 5px;
}
.home_service_gallery_img.img_fit:before{
  padding-top: 133.333%;
}
.home_service_title{
  margin-bottom: 30px;
}
.home_service_title_en{
  font-size: 50px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(-135deg, #4171ec 0%, #52bebb 100%);
  background: linear-gradient(-167deg, #2b3e93 0%, #52bebb 100%);
  background-clip: text;
  margin-bottom: 10px;
}
.home_service_title_ja{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.home_service_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}

.home_service_box2 .read_more{
  /*margin-top: 80px;*/
}

/* Strength */
.home_strength_head{
  position: relative;
  z-index: 1;
}
.home_strength_head_txt{
  font-size: 50px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}

.home_strength{
  position: relative;
  z-index: 1;
}
.home_strength_head + .home_strength{
  position: relative;
  z-index: 0;
  margin-top: -20px;
}
.home_strength_row{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 50px 15px;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  /*min-height: 800px;*/
}
.home_strength_row + .home_strength_row{
  
}
.home_strength_box1{
  width: 100%;
  color: #FFF;
  position: relative;
  z-index: 1;
}
.home_strength_box2{
  
}
.home_strength_num{
  display: flex;
  align-items: flex-end;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 50px;
}
.home_strength_num_txt1{
  font-size: 2em;
}
.home_strength_num_txt2{
  font-size: 1em;
  margin-left: 10px;
}
.home_strength_title{
  margin-bottom: 20px;
}
.home_strength_title_line{
  display: flex;
}
.home_strength_title_line p{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  background: var(--main-color);
  color: #FFF;
  padding: 4px 10px 6px;
}
.home_strength_title_line + .home_strength_title_line{
  margin-top: 10px;
}
.home_strength_img{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.home_strength_img:after{
  content: "";
  background: rgba(0,0,0,0.4);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_strength_img.img_fit:before{
  padding-top: 46.512%;
}

.home_strength_bn{
  width: 200px;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}
.home_strength_bn a{
  display: block;
  transition: 0.2s all;
}
.home_strength_bn a:hover{
  transform: scale(1.03);
}

/* 派遣先企業 */
.home_agency_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.home_agency_head_box1{
  width: 100%;
}
.home_agency_head_box2{
  width: 100%;
  margin-top: 20px;
}
.home_agency_head_en{
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.home_agency_head_ja{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.075em;
}
.home_agency_head_txt{
  
}

/* sec head */
.home_sec_head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}
.home_sec_head_en{
  font-size: 50px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  
}
.home_sec_head .read_more{
  margin-top: 0;
  margin-bottom: 10px;
}

/* VOICE */
.home_voice_wrap{
  background: #FFF;
  margin-left: 0;
  margin-right: 0;
  padding: 30px 15px;
}

@media (max-width:374px){

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

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

  /* 派遣について */
  .home_haken_wrap{
    margin-bottom: 100px;
  }
  .home_haken{
    padding: 100px 0 80px;
  }
  .home_haken_box1{
    /*width: 585px;*/
  }
  .home_haken_box2{
    width: 60%;
    margin-top: 30px;
  }
  .home_haken_head{
    margin-bottom: 20px;
  }
  .home_haken_head_ja{
    font-size: 40px;
    /*line-height: 1.666;*/
    /*padding: 1px 10px 5px;*/
    /*box-shadow: inset 0 2em 0 #FFF;*/
    /*font-size: 40px;*/
  }
  .home_haken_head_en{
    font-size: 18px;
    line-height: 2.666;
    margin-top: 20px;
  }
  .home_haken_txt{
    /*width: 460px;*/
  }

  .home_haken_merit{
    padding: 35px 40px
  }
  .home_haken_merit + .home_haken_merit{
    margin-top: 20px;
  }
  .home_haken_merit_title{
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .home_haken_merit_list_p{
    padding-left: 16px;
  }
  .home_haken_merit_list_p + .home_haken_merit_list_p{
    margin-top: 16px;
  }
  .home_haken_merit_list_p:before{
    width: 6px;
    top: 10px;
  }
  .home_haken_merit_list_p p{
    font-size: 16px;
  }

  .home_haken_img{
    width: 350px;
    left: 78%;
  }
  .home_haken .read_more{
    margin-top: 50px;
  }
  
  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    /*width: 395px;*/
  }
  .home_about_box2{
    /*width: calc(100% - 395px - 265px);*/
    /*padding-top: 6px;*/
  }
  .home_about_title_en{
    font-size: 80px;
    line-height: 1.5;
  }
  .home_about_title_ja{
    font-size: 45px;
    line-height: 2;
    margin-bottom: 20px;
  }
  .home_about_txt{
  }
  .home_about_img{
    margin-top: 80px;
  }


  /* WORKS(見出し) */
  .home_works_head{
    margin-bottom: 50px;
  }
  .home_works_head:before{
    height: 80px;
  }
  .home_works_head_ja{
    font-size: 26px;
    margin-top: 30px; 
    margin-bottom: 80px;
  }
  .home_works_head_en{
  }
  .home_works_head_en_img{
    padding: 0 30px;
  }
  .home_works_head_en_img img{
    height: 100px;
  }

  /* WORKS(メイン) */
  .home_works{
  }
  .home_works_box1{
    padding-top: 70px;
  }
  .home_works_box2{
  }
  .home_works_box3{
    padding-top: 190px;
  }

  .home_works_imgs1{
  }
  .home_works_imgs1_item{

  }
  .home_works_imgs1_item.pos2{
    margin-top: -100px;
  }
  .home_works_imgs2{
  }
  .home_works_title{
    text-align: center;
    margin-bottom: 56px;
  }
  .home_works_title_bg{
    padding: 5px 20px 7px;
    margin: 10px 10px;
  }
  .home_works_title_txt{
    font-size: 36px;
  }
  .home_works_txt{
    /*font-size: 16px;*/
    /*line-height: 2.5;*/
  }
  
  /* SERVICE */
  .home_service{
  }
  .home_service_box1{
    /*width: 42.76%;*/
    /*padding-top: 0;*/
    /*position: relative;*/
    /*z-index: 1;*/
    padding-bottom: 50px;
  }
  .home_service_box2{
    /*width: 46.38%;*/
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home_service_gallery{
    /*position: absolute;*/
    /*z-index: 1;*/
    /*inset: 0;*/
  }

  .home_service_gallery_imgs{
    width: 48%;
  }

  .home_service_gallery .infiniteslide_wrap{
    /*width: 48%;*/
    /*height: 100%!important;*/
  }
  .infiniteslide_wrap .home_service_gallery_imgs{
    /*width: 100%;*/
    /*height: 100%;*/
  }
  .home_service_gallery_img{
    width: 200px;
    /*width: 100%;*/
    margin: 10px 10px;
  }
  .home_service_title{
    margin-bottom: 30px;
  }
  .home_service_title_en{
    font-size: 75px;
    margin-bottom: 20px;
  }
  .home_service_title_ja{
    font-size: 32px;
  }
  .home_service_txt{
    font-size: 16px;
    line-height: 2.5;
  }
  .home_service_box2 .read_more{
    margin-top: 40px;
  }

  /* Strength */
  .home_strength_head{
  }
  .home_strength_head_txt{
    font-size: 100px;
  }
  .home_strength{

  }
  .home_strength_head + .home_strength{
    margin-top: -30px;
  }
  .home_strength_row{
    padding: 70px 50px;
    /*margin-left: -100px;*/
    /*margin-right: -100px;*/
    min-height: 700px;
  }
  .home_strength_row + .home_strength_row{

  }
  .home_strength_box1{
    width: 100%;
  }
  .home_strength_box2{

  }
  .home_strength_num{
    font-size: 24px;
    margin-bottom: 50px;
  }
  .home_strength_num_txt1{
    font-size: 2em;
  }
  .home_strength_num_txt2{
    font-size: 1em;
    margin-left: 10px;
  }
  .home_strength_title{
    margin-bottom: 30px;
  }
  .home_strength_title_line{
  }
  .home_strength_title_line p{
    font-size: 32px;
    padding: 5px 15px 7px;
  }
  .home_strength_title_line + .home_strength_title_line{
    margin-top: 20px;
  }
  .home_strength_img{
    position: absolute;
    z-index: 0;
    inset: 0;
  }
  .home_strength_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  
  .home_strength_bn{
    width: 200px;
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 400px;
    margin-top: 0;
  }
  
  /* GSAP対応 */
  .home_strength {
    /*position: relative;*/
    /*height: 100vh;*/
    /*overflow: hidden;*/
  }
  .home_strength_row{
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100vh;*/
  }
  
  /* 派遣先企業 */
  .home_agency_head{
    margin-bottom: 50px;
  }
  .home_agency_head_box1{
    /*width: 585px;*/
    /*padding-top: 10px;*/
  }
  .home_agency_head_box2{
    /*width: calc(100% - 585px - 135px);*/
    /*margin-top: 0;*/
  }
  .home_agency_head_en{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .home_agency_head_ja{
    font-size: 32px;
  }
  .home_agency_head_txt{

  }
  
  /* sec head */
  .home_sec_head{
  }
  .home_sec_head_en{
    font-size: 70px;
  }
  .home_sec_head .read_more{
    margin-top: 0;
    margin-bottom: 10px;
  }

  /* VOICE */
  .home_voice_wrap{
    /*margin-left: -100px;*/
    /*margin-right: -100px;*/
    padding: 50px 40px;
  }
}
@media (min-width:1024px){

  /* 派遣について */
  .home_haken_wrap{
    
  }
  .home_haken{
    padding: 120px 0 350px;
  }
  .home_haken_box1{
    width: 400px;
  }
  .home_haken_box2{
    width: 400px;
    margin-top: 0;
  }
  .home_haken_head{
/*    margin-bottom: 30px;*/
  }
  .home_haken_head_ja{
    font-size: 40px;
    /*line-height: 1.666;*/
    /*padding: 1px 10px 5px;*/
    /*box-shadow: inset 0 2em 0 #FFF;*/
  }
  .home_haken_head_en{
    /*font-size: 18px;*/
    /*line-height: 2.666;*/
    /*margin-top: 40px;*/
  }
  .home_haken_txt{
    /*width: 460px;*/
  }

  .home_haken_merit{
    padding: 20px 20px
  }
  .home_haken_merit + .home_haken_merit{
    margin-top: 20px;
  }
  .home_haken_merit_title{
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .home_haken_merit_list_p{
    padding-left: 16px;
  }
  .home_haken_merit_list_p + .home_haken_merit_list_p{
    margin-top: 16px;
  }
  .home_haken_merit_list_p:before{
    width: 6px;
    top: 10px;
  }
  .home_haken_merit_list_p p{
    font-size: 16px;
  }

  .home_haken_img{
    width: 300px;
    left: 49%;
  }
  .home_haken .read_more{
    margin-top: 50px;
  }
  
  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 300px;
  }
  .home_about_box2{
    width: calc(100% - 300px - 60px);
    padding-top: 6px;
  }
  .home_about_title_en{
    /*font-size: 100px;*/
  }
  .home_about_title_ja{
    /*font-size: 60px;*/
    /*line-height: 2;*/
    /*margin-bottom: 75px;*/
  }
  .home_about_txt{
    /*font-size: 16px;*/
    /*line-height: 2.5;*/
  }
  .home_about_img{
    margin-left: var(--margin-for-device-side-w);
    /*margin-top: 80px;*/
  }
  .home_about_img.img_fit:before{
    padding-top: 100%;
  }
  
  /* WORKS(見出し) */
  .home_works_head{
    margin-bottom: 80px;
  }
  .home_works_head:before{
    height: 100px;
  }
  .home_works_head_ja{
    font-size: 30px;
    margin-top: 30px; 
    margin-bottom: 50px;
  }
  .home_works_head_en{
  }
  .home_works_head_en_img{
    padding: 0 20px;
  }
  .home_works_head_en_img img{
    height: 120px;
  }

  /* WORKS(メイン) */
  .home_works{
  }
  .home_works_box1{
    order: 1;
    width: 200px;
    padding-top: 70px;
  }
  .home_works_box2{
    order: 2;
    width: calc(100% - 200px - 150px - 90px);
    /*padding-right: 60px;*/
  }
  .home_works_box3{
    order: 3;
    width: 150px;
    padding-top: 190px;
  }

  .home_works_imgs1{
    margin-left: -30px;
  }
  .home_works_imgs1_item{

  }
  .home_works_imgs1_item.pos2{
    margin-top: -100px;
  }
  .home_works_imgs2{
    margin-right: -30px;
  }
  .home_works_title{
    /*text-align: center;*/
    /*margin-bottom: 56px;*/
  }
  .home_works_title_bg{
    padding: 5px 20px 7px;
    margin: 10px 10px;
  }
  .home_works_title_txt{
    /*font-size: 48px;*/
  }
  .home_works_txt{
    /*font-size: 16px;*/
    /*line-height: 2.5;*/
  }
  
  /* SERVICE */
  .home_service{
  }
  .home_service_box1{
    width: 42.76%;
    padding-top: 0;
    order: 1;
  }
  .home_service_box2{
    /*width: 46.38%;*/
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    order: 2;
  }

  .home_service_gallery{
    margin: 0;
    position: absolute;
    z-index: 1;
    inset: 0;
  }
  
  .gjs-dashed .home_service_gallery{
    position: static;
  }

  .home_service_gallery_imgs{
    width: 48%;
  }

  .home_service_gallery .infiniteslide_wrap{
    width: 48%;
    height: 100%!important;
  }
  .infiniteslide_wrap .home_service_gallery_imgs{
    width: 100%;
    height: 100%;
  }
  .home_service_gallery_img{
    width: 100%;
    margin: 15px 0;
  }
  /*.home_service_title{
    margin-bottom: 58px;
  }
  .home_service_title_en{
    font-size: 100px;
    margin-bottom: 50px;
  }
  .home_service_title_ja{
    font-size: 48px;
  }
  .home_service_txt{
  }
  .home_service_box2 .read_more{
    margin-top: 80px;
  }*/
  
  
  .home_strength_bn{
    width: 240px;
    right: 50px;
    bottom: 80px;
  }
  .home_strength_box1{
    bottom: 200px;
  }
  
  /* 派遣先企業 */
  .home_agency_head{
    margin-bottom: 50px;
  }
  .home_agency_head_box1{
    width: 430px;
    padding-top: 10px;
  }
  .home_agency_head_box2{
    width: calc(100% - 430px - 35px);
    margin-top: 0;
  }
  .home_agency_head_en{
    font-size: 24px;
    margin-bottom: 25px;
  }
  .home_agency_head_ja{
    font-size: 36px;
  }
  .home_agency_head_txt{

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

  /* 派遣について */
  .home_haken_wrap{
    margin-bottom: 140px;
  }
  .home_haken{
    padding: 120px 0 250px;
  }

  /* 派遣先企業 */
  .home_agency_head{
  }
  .home_agency_head_box1{
    width: 430px;
  }
  .home_agency_head_box2{
    width: calc(100% - 430px - 75px);
  }
  
}
@media (min-width:1366px){
  
  .home_strength_box1{
    width: 75%;
  }
  
}
@media (min-width:1470px){

  /* 派遣について */
  .home_haken_wrap{
  }
  .home_haken{
    padding: 180px 0 120px;
  }
  .home_haken_box1{
    width: 585px;
  }
  .home_haken_box2{
    width: 470px;
    margin-top: 0;
  }
  .home_haken_head{
    margin-bottom: 30px;
  }
  .home_haken_head_ja{
    font-size: 60px;
    line-height: 1.666;
    padding: 1px 10px 5px;
    box-shadow: inset 0 2em 0 #FFF;
  }
  .home_haken_head_en{
    font-size: 18px;
    line-height: 2.666;
    margin-top: 40px;
  }
  .home_haken_txt{
    width: 460px;
  }

  .home_haken_merit{
    padding: 35px 40px
  }
  .home_haken_merit + .home_haken_merit{
    margin-top: 20px;
  }
  .home_haken_merit_title{
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .home_haken_merit_list_p{
    padding-left: 16px;
  }
  .home_haken_merit_list_p + .home_haken_merit_list_p{
    margin-top: 16px;
  }
  .home_haken_merit_list_p:before{
    width: 6px;
    top: 10px;
  }
  .home_haken_merit_list_p p{
    font-size: 16px;
  }

  .home_haken_img{
    width: auto;
    left: 49%;
  }
  .home_haken .read_more{
    margin-top: 50px;
  }
  
  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 395px;
  }
  .home_about_box2{
    width: calc(100% - 395px - 100px);
    padding-top: 6px;
  }
  .home_about_title_en{
    font-size: 100px;
  }
  .home_about_title_ja{
    font-size: 60px;
    line-height: 2;
    margin-bottom: 80px;
  }
  .home_about_txt{
  }
  .home_about_img{
    margin-left: var(--margin-for-device-side-w);
    margin-top: 80px;
  }
  .home_about .read_more{
    margin-top: 75px;
  }

  /* WORKS(見出し) */
  .home_works_head{
    margin-bottom: 150px;
  }
  .home_works_head:before{
    height: 140px;
  }
  .home_works_head_ja{
    font-size: 36px;
    margin-top: 30px; 
    margin-bottom: 80px;
  }
  .home_works_head_en{
  }
  .home_works_head_en_img{
    padding: 0 30px;
  }
  .home_works_head_en_img img{
    height: 159px;
  }

  /* WORKS(メイン) */
  .home_works{
  }
  .home_works_box1{
    order: 1;
    width: 300px;
    padding-top: 70px;
  }
  .home_works_box2{
    order: 2;
    width: calc(100% - 300px - 250px - 100px);
    /*padding-right: 60px;*/
  }
  .home_works_box3{
    order: 3;
    width: 250px;
    padding-top: 190px;
  }

  .home_works_imgs1{
    /*margin-left: -145px;*/
  }
  .home_works_imgs1_item{

  }
  .home_works_imgs1_item.pos2{
    margin-top: -100px;
  }
  .home_works_imgs2{
    /*margin-right: -150px;*/
  }
  .home_works_title{
    text-align: center;
    margin-bottom: 56px;
  }
  .home_works_title_bg{
    padding: 5px 20px 7px;
    margin: 10px 10px;
  }
  .home_works_title_txt{
    font-size: 48px;
  }
  .home_works_txt{
    /*font-size: 16px;*/
    /*line-height: 2.5;*/
  }
  .home_works .read_more{
    margin-top: 75px;
  }
  /* SERVICE */
  .home_service{
  }
  .home_service_box1{
    width: 42.76%;
  }
  .home_service_box2{
    width: 46.38%;
    width: 50%;
    padding-top: 165px;
    padding-bottom: 180px;
  }

  .home_service_gallery{
  }

  .home_service_gallery_imgs{
    width: 48%;
  }

  .home_service_gallery .infiniteslide_wrap{
    width: 48%;
    height: 100%!important;
  }
  .infiniteslide_wrap .home_service_gallery_imgs{
    width: 100%;
    height: 100%;
  }
  .home_service_gallery_img{
    width: 100%;
    margin: 15px 0;
  }
  .home_service_title{
    margin-bottom: 58px;
  }
  .home_service_title_en{
    font-size: 100px;
    margin-bottom: 50px;
  }
  .home_service_title_ja{
    font-size: 48px;
  }
  .home_service_txt{
  }
  .home_service_box2 .read_more{
    margin-top: 80px;
  }
  
  /* Strength */
  .home_strength{

  }
  .home_strength_row{
    padding: 100px 50px;
    margin-left: -30px;
    margin-right: -30px;
    min-height: 700px;
  }
  .home_strength_row + .home_strength_row{

  }
  .home_strength_box1{
    width: 70%;
    bottom: 30px;
  }
  .home_strength_box2{

  }
  .home_strength_num{
    font-size: 24px;
    margin-bottom: 50px;
  }
  .home_strength_num_txt1{
    font-size: 2em;
  }
  .home_strength_num_txt2{
    font-size: 1em;
    margin-left: 10px;
  }
  .home_strength_title{
    margin-bottom: 50px;
  }
  .home_strength_title_line{
  }
  .home_strength_title_line p{
    font-size: 48px;
    padding: 5px 15px 7px;
  }
  .home_strength_title_line + .home_strength_title_line{
    margin-top: 20px;
  }
  
  .home_strength_bn{
    width: 300px;
    right: 50px;
    bottom: 265px;
  }
  
  /* 派遣先企業 */
  .home_agency_head{
    margin-bottom: 50px;
  }
  .home_agency_head_box1{
    width: 585px;
    padding-top: 10px;
  }
  .home_agency_head_box2{
    width: calc(100% - 585px - 135px);
    margin-top: 0;
  }
  .home_agency_head_en{
    font-size: 24px;
    margin-bottom: 45px;
  }
  .home_agency_head_ja{
    font-size: 48px;
  }
  .home_agency_head_txt{

  }
  
  /* sec head */
  .home_sec_head{
  }
  .home_sec_head_en{
    font-size: 100px;
  }
  .home_sec_head .read_more{
    margin-top: 0;
    margin-bottom: 10px;
  }

  /* VOICE */
  .home_voice_wrap{
    /*margin-left: -100px;*/
    /*margin-right: -100px;*/
    padding: 85px 70px;
  }
}
@media (min-width:1536px){
  
  /* WORKS(メイン) */
  .home_works_box1{
    width: 300px;
    padding-top: 70px;
  }
  .home_works_box2{
    width: calc(100% - 300px - 250px - 150px);
    /*padding-right: 60px;*/
  }
  .home_works_box3{
    width: 250px;
    padding-top: 190px;
  }
  
}
@media (min-width:1720px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 395px;
  }
  .home_about_box2{
    width: calc(100% - 395px - 265px);
    padding-top: 6px;
  }
  
  /* WORKS(メイン) */
  .home_works_box1{
    width: 300px;
    padding-top: 70px;
  }
  .home_works_box2{
    width: calc(100% - 300px - 250px - 215px);
    padding-right: 60px;
  }
  .home_works_box3{
    width: 250px;
    padding-top: 190px;
  }
  
  .home_works_imgs1{
    margin-left: -145px;
  }
  .home_works_imgs2{
    margin-right: -150px;
  }
  
  /* SERVICE */
  .home_service{
  }
  .home_service_box1{
    width: 42.76%;
  }
  .home_service_box2{
    width: 46.38%;
    padding-top: 165px;
    padding-bottom: 180px;
  }
  
  /* Strength */
  .home_strength_head{
  }
  .home_strength_head_txt{
    font-size: 150px;
  }
  .home_strength{

  }
  .home_strength_head + .home_strength{
    margin-top: -90px;
  }
  .home_strength_row{
    padding: 100px 100px;
    margin-left: -100px;
    margin-right: -100px;
    min-height: 800px;
  }
  
  .home_strength_bn{
    width: 360px;
    right: 100px;
    bottom: 250px;
  }
  
  /* VOICE */
  .home_voice_wrap{
    margin-left: -100px;
    margin-right: -100px;
    padding: 85px 100px;
  }
}


/*******************************
*　派遣企業スライダー
********************************/
.dispatch_list.slider{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.dispatch_list.slider .webgene-blog{
  margin-left: -10px;
  margin-right: -10px;
}
.dispatch_list.slider .webgene-item{
  width: 300px;
  height: auto;
  margin-top: 0!important;
  padding: 0 10px;
}

@media (min-width:768px){
  .dispatch_list.slider{
    
  }
  .dispatch_list.slider .webgene-blog{
    margin-left: -20px;
    margin-right: -20px;
  }
  .dispatch_list.slider .webgene-item{
    width: 520px;
    padding: 0 20px;
  }
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}
@media (min-width:1470px){
  
}
@media (min-width:1720px){
  
}

/**/
.gra_en_txt1{
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*background: linear-gradient(-135deg, #4171ec 0%, #52bebb 100%);*/
  /*background: linear-gradient(-167deg, #2b3e93 0%, #52bebb 100%);*/
  background: linear-gradient(-112deg, #004382 0%, #36b7f3 100%);
  background-clip: text;
}
.gra_bg_txt1{
  display: flex;
  flex-wrap: wrap;
}
.gra_bg_txt1 > *{
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #FFF;
  padding: 4px 0px 6px 10px;
  position: relative;
  z-index: 1;
}
.gra_bg_txt1 > *:after{
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: -webkit-linear-gradient( 90deg, rgb(0,67,130) 0%, rgb(54,183,243) 100%);
  transition: 0.4s all;
  transition-delay: 0.6s;
}

/*******************************
*　ONSについて
********************************/
.pg_about{

}
.pg_about .section.sec1{
  background-image: url(https://ons-trail.co.jp/system_panel/uploads/images/about_top_bg.png);
  background-repeat: no-repeat;
  background-size: 300px auto;
  background-position: left top;
}
.pg_about .section.sec2{
  background-image: -moz-linear-gradient( 105deg, rgb(54,183,243) 0%, rgb(0,67,130) 100%);
  background-image: -webkit-linear-gradient( 105deg, rgb(54,183,243) 0%, rgb(0,67,130) 100%);
  background-image: -ms-linear-gradient( 105deg, rgb(54,183,243) 0%, rgb(0,67,130) 100%);
}
.pg_about .section.sec3{
  
}
.pg_about .section.sec4{
  padding-bottom: 50px;
}
.pg_about .section.sec5{
  
}

.pg_about + .footer{
  margin-top: 0;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_about .section.sec1{
    padding-top: 75px;
    padding-bottom: 75px;
    background-size: 450px auto;
    
  }
  .pg_about .section.sec2{
    padding-top: 75px;
  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{
    padding-bottom: 100px;
  }
  .pg_about .section.sec5{

  }
}
@media (min-width:1024px){
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{

  }
  .pg_about .section.sec5{

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

  .pg_about .section.sec1{
    padding-top: 115px;
    padding-bottom: 170px;
    background-size: 668px auto;
  }
  .pg_about .section.sec2{
    padding-top: 115px;
  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{
    padding-bottom: 200px;
  }
  .pg_about .section.sec5{

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

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

}


/* メイン */


/* OUR VISION */
.about_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_top_box1{
  width: 100%;
}
.about_top_box2{
  width: 100%;
  margin-top: 30px;
}
.about_top_head{
  margin-bottom: 20px;
}
.about_top_head_en{
  font-size: 42px;
  margin-bottom: 8px;
}
.about_top_head_ja{
}
.about_top_head_ja_txt{
  font-size: 22px;
}
.about_top_head_en2{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 16px;
}
.about_top_txt{
  font-size: 16px;
  
}
.about_top_img{
  
}
.about_top_img.img_fit:before{
  padding-top: 100%;
}

/* Strength */
.about_strength_head{
  text-align: center;
  position: relative;
  z-index: 0;
}
.about_strength_head img{
  
}

.about_strength{
  position: relative;
  z-index: 1;
}
.about_strength_head + .about_strength{
  margin-top: -10px;
}
.about_strength_row{
  display: flex;
  flex-wrap: wrap;
  /*margin-left: -100px;*/
  /*margin-right: -100px;*/
  background: #FFF;
}
.about_strength_row + .about_strength_row{
  
}
.about_strength_box1{
  width: 100%;
}
.about_strength_box2{
  width: 100%;
  padding: 25px 15px;
}
.about_strength_num{
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 15px;
}
.about_strength_num_p1{
  font-size: 2em;
  letter-spacing: 0;
  margin-bottom: -4px;
}
.about_strength_num_p2{
  letter-spacing: 0;
  margin-left: 0.625em;
}
.about_strength_title{
  margin-bottom: 10px;
}
.about_strength_title_line{
  display: flex;
}
.about_strength_title_line + .about_strength_title_line{
  margin-top: 10px;
}
.about_strength_title_txt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075em;
  background: var(--main-color);
  color: #FFF;
  padding: 5px 10px 8px;
}
.about_strength_txt{
  
}
.about_strength_img{
  
}
.about_strength_img.img_fit:before{
  
}

@media (max-width:374px){

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

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

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

  /* OUR VISION */
  .about_top{
  }
  .about_top_box1{
  }
  .about_top_box2{
    margin-top: 30px;
  }
  .about_top_head{
    margin-bottom: 30px;
  }
  .about_top_head_en{
    font-size: 70px;
    margin-bottom: 8px;
  }
  .about_top_head_ja{
  }
  .about_top_head_ja_txt{
    font-size: 30px;
  }
  .about_top_head_en2{
    font-size: 24px;
    margin-top: 16px;
  }
  .about_top_txt{
    font-size: 16px;
  }
  
  /* Strength */
  .about_strength_head{
  }
  .about_strength_head img{

  }
  .about_strength{
  }
  .about_strength_head + .about_strength{
    margin-top: -32px;
  }
  .about_strength_row{
    /*margin-left: -100px;*/
    /*margin-right: -100px;*/
  }
  .about_strength_row + .about_strength_row{

  }
  .about_strength_box1{
    /*width: 52.32%;*/
  }
  .about_strength_box2{
    /*width: 47.68%;*/
    padding: 30px 30px;
  }
  .about_strength_num{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .about_strength_num_p1{
    font-size: 2em;
    margin-bottom: -4px;
  }
  .about_strength_num_p2{
    margin-left: 0.625em;
  }
  .about_strength_title{
    margin-bottom: 30px;
  }
  .about_strength_title_line{
  }
  .about_strength_title_line + .about_strength_title_line{
    margin-top: 15px;
  }
  .about_strength_title_txt{
    font-size: 32px;
    padding: 5px 10px 8px;
  }
  
}
@media (min-width:1024px){

  /* OUR VISION */
  .about_top{
  }
  .about_top_box1{
    width: 55.26%;
  }
  .about_top_box2{
    width: 39.47%;
    margin-top: 0;
  }
  .about_top_head{
    margin-bottom: 30px;
  }
  .about_top_head_en{
    font-size: 70px;
  }
  .about_top_head_ja{
  }
  .about_top_head_ja_txt{
    font-size: 32px;
  }
  .about_top_head_en2{
    font-size: 20px;
  }
  .about_top_txt{
  }
  
  /* Strength */
  .about_strength_head{
  }
  .about_strength_head img{

  }
  .about_strength{
  }
  .about_strength_head + .about_strength{
    margin-top: -32px;
  }
  .about_strength_row{
    /*margin-left: -100px;*/
    /*margin-right: -100px;*/
  }
  .about_strength_row + .about_strength_row{

  }
  .about_strength_box1{
    width: 52.32%;
    position: relative;
    z-index: 1;
  }
  .about_strength_box2{
    width: 47.68%;
    /*padding: 70px 80px;*/
  }
  .about_strength_num{
    /*font-size: 24px;*/
    /*margin-bottom: 35px;*/
  }
  .about_strength_num_p1{
  }
  .about_strength_num_p2{
  }
  .about_strength_title{
    /*margin-bottom: 70px;*/
  }
  .about_strength_title_line{
  }
  .about_strength_title_line + .about_strength_title_line{
    /*margin-top: 20px;*/
  }
  .about_strength_title_txt{
    font-size: 24px;
    /*padding: 5px 10px 8px;*/
  }
  .about_strength_img{
    height: 100%;
  }
  .about_strength_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
}
@media (min-width:1200px){


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

  /* OUR VISION */
  .about_top{
  }
  .about_top_box1{
    width: 55.26%;
  }
  .about_top_box2{
    width: 39.47%;
    margin-top: 0;
  }
  .about_top_head{
    margin-bottom: 50px;
  }
  .about_top_head_en{
    font-size: 100px;
    margin-bottom: 8px;
  }
  .about_top_head_ja{
  }
  .about_top_head_ja_txt{
    font-size: 42px;
  }
  .about_top_head_en2{
    font-size: 30px;
    margin-top: 16px;
  }
  .about_top_txt{
  }

  /* Strength */
  .about_strength_head{
  }
  .about_strength_head img{

  }
  .about_strength{
  }
  .about_strength_head + .about_strength{
    margin-top: -32px;
  }
  .about_strength_row{
    /*margin-left: -100px;*/
    /*margin-right: -100px;*/
  }
  .about_strength_row + .about_strength_row{

  }
  .about_strength_box1{
    width: 52.32%;
  }
  .about_strength_box2{
    width: 47.68%;
    padding: 70px 80px;
  }
  .about_strength_num{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .about_strength_num_p1{
    font-size: 2em;
    margin-bottom: -4px;
  }
  .about_strength_num_p2{
    margin-left: 0.625em;
  }
  .about_strength_title{
    margin-bottom: 70px;
  }
  .about_strength_title_line{
  }
  .about_strength_title_line + .about_strength_title_line{
    margin-top: 20px;
  }
  .about_strength_title_txt{
    font-size: 48px;
    padding: 5px 10px 8px;
  }
}
@media (min-width:1720px){

  /* Strength */
  .about_strength_head{
  }
  .about_strength_head img{

  }
  .about_strength{
  }
  .about_strength_head + .about_strength{
    margin-top: -32px;
  }
  .about_strength_row{
    margin-left: -100px;
    margin-right: -100px;
  }
  .about_strength_row + .about_strength_row{

  }
  .about_strength_box1{
    width: 52.32%;
  }
  .about_strength_box2{
    width: 47.68%;
    padding: 30px 30px;
  }
  .about_strength_num{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .about_strength_num_p1{
    font-size: 2em;
    margin-bottom: -4px;
  }
  .about_strength_num_p2{
    margin-left: 0.625em;
  }
  .about_strength_title{
    margin-bottom: 70px;
  }
  .about_strength_title_line{
  }
  .about_strength_title_line + .about_strength_title_line{
    margin-top: 20px;
  }
  .about_strength_title_txt{
    font-size: 48px;
    padding: 5px 10px 8px;
  }
  
}



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

/* VOICE */
.voice_list{
  position: relative;
  z-index: 1;
  --voice-slide-size: 300px;
}
* + .voice_list{
  margin-top: 30px;
}
.voice_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.voice_list .webgene-item{
  width: 100%;
  height: auto;
  padding: 0 5px;
  position: relative;
  z-index: 1;
}
.voice_list .webgene-item:nth-child(n+2){
  margin-top: 30px;
}
.voice_list .webgene-item .inner{
  height: 100%;
  background: #eaebef;
  padding: 20px 20px 85px;
  position: relative;
  z-index: 1;
}
.voice_list .webgene-item:before{
  content: "";
  width: 40px;
  aspect-ratio: 66 / 52;
  background-image: url('https://ons-trail.co.jp/system_panel/uploads/images/voice_icon.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 15px;
  -webkit-transform: translate(0, -21.1%);
  transform: translate(0, -21.1%);
}
.voice_list .webgene-item .inner .read_more{
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 20px;
}
.voice_item_head{
  margin-bottom: 10px;
}
.voice_item_head_category{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
      margin-top: 0;
}
.voice_item_head_category.left{
  justify-content: flex-start;
}
.voice_item_head_category span{
  min-width: 140px;
  min-width: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  border-radius: 14px;
  background: #FFF;
  padding: 4px 15px 5px;
}
.voice_item_head_title{
  display: inline;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.08;
  color: #fff;
  padding: 0.15em 0.4em;
  padding: 1px 10px 5px;

  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  
}

.gjs-dashed .voice_item_head_title,
.voice_item_head_title.on{
  /* 背景は影として下側に描画 */
  box-shadow: inset 0 2em 0 #000;
}

.voice_item_txt{
  font-size: 14px;
}
.voice_item_txt2{
  font-size: 14px;
}
.voice_item_more{
  position: absolute;
  z-index: 0;
  left: 40px;
  right: 40px;
  bottom: 0;
  border-top: 1px solid #b3b3b3;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  text-align: center;
}
.voice_item_more a{
  display: block;
  padding: 15px 0;
}

.voice_item_head .img{
 width: 160px;
margin-inline:auto; 
 border-radius: 50%;
}
.voice_popup_box1 .img img,
.voice_item_head .img img{
  border-radius: 50%;
}
.voice_popup_box1 .img:before,
.voice_item_head .img:before{
  padding-top: 100%;
}

.voice_popup_box1 .img{
   width: 160px;
margin-inline:auto; 
 border-radius: 50%;
 margin-bottom: 30px;
}
.voice_popup_box1 .voice_item_head_category{
 margin-top: 0; 
}


/*
.voice_slider_btns{
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: var(--voice-slide-size);
  height: 0;
}
.voice_slider_btns_prev,
.voice_slider_btns_next{
  width: 40px;
  position: absolute;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  transition: 0.2s all;
  top: 0;
}
.voice_slider_btns_prev{
  left: -20px;
}
.voice_slider_btns_next{
  right: -20px;
}
.voice_slider_btns_prev:hover,
.voice_slider_btns_next:hover{
  transform: translate(0, -50%) scale(1.1);
}
*/


/* ポップアップ */
.voice_popup{
  background: #eaebef;
  background-image: url('https://ons-trail.co.jp/system_panel/uploads/images/voice_icon.png');
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: 20px 20px;
  margin: 15px 15px;
  padding: 80px 20px 20px;
  position: relative;
  z-index: 1;
  overflow: auto;
}
.voice_popup_box1{
  /*background-image: url(/system_panel/uploads/images/voice_list_illust.png);*/
  background-size: 120px auto;
  /*background-repeat: no-repeat;*/
  /*background-position: right 0 bottom 20px;*/
  /*padding-bottom: 50px;*/
}
.voice_popup_box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
  padding: 20px 20px 20px;
  background: #f2ebe2;
  border-radius: 30px;
}

.voice_popup_box2_l{
  width: 50px;
}
.voice_popup_box2_r{
  width: calc(100% - 50px - 15px);
}

.voice_popup .popup_close{
  width: 30px;
  position: absolute;
  position: fixed;
  z-index: 1;
  top: 20px;
  right: 35px;
  cursor: pointer;
}
.voice_popup .popup_close img{
  display: block;
  width: 100%;
}

@media (max-width:1023px){
  .voice_popup{
    height: calc(100vh - 30px);
  }
}
@media (max-width:767px){
}

@media (min-width:768px){

  /* VOICE */
  .voice_list{
    --voice-slide-size: 500px;
  }
  * + .voice_list{
    margin-top: 45px;
  }
  .voice_list .webgene-blog{
    margin-left: -8px;
    margin-right: -8px;
  }
  .voice_list .webgene-item{
    padding: 0 8px;
  }
  .voice_list .webgene-item .inner{
    padding: 30px 30px 85px;
  }
  .voice_list .webgene-item:before{
    width: 66px;
    left: 40px;
    /*-webkit-transform: translate(0, -21.1%);*/
    /*transform: translate(0, -21.1%);*/
  }
  .voice_list .webgene-item .inner .read_more{
    bottom: 30px;
  }
  .voice_item_head{
    margin-bottom: 20px;
  }
  .voice_item_head_title{
    font-size: 20px;
  }
  .voice_item_txt,
  .voice_item_txt2{
    font-size: 16px;
  }

  .voice_slider_btns_prev,
  .voice_slider_btns_next{
    width: 60px;
  }
  .voice_slider_btns_prev{
    left: -20px;
  }
  .voice_slider_btns_next{
    right: -20px;
  }

  /* ポップアップ */
  .voice_popup{
    padding: 145px 40px 50px;
    background-size: 66px auto;
    background-position: 50px 50px;
  }
  .voice_popup_box1{
    /*background-size: 180px auto;*/
    /*background-position: right 0 bottom 20px;*/
    /*padding-bottom: 50px;*/
  }
  .voice_popup_box2{
    padding: 50px 95px 40px;
    border-radius: 30px;
  }

  .voice_popup_box2_l{
    width: 95px;
  }
  .voice_popup_box2_r{
    width: calc(100% - 95px - 30px);
  }
  .voice_popup .popup_close{
    width: 35px;
    top: 20px;
    right: 35px;
  }
  
  .voice_item_head .img{
 width: 160px;
}
.voice_popup_box1 .img{
  width: 350px;
}

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

  .voice_list .webgene-item{
    width: 33.333%;
  }
  .voice_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .voice_list .webgene-item:nth-child(n+4){
    margin-top: 10px;
  }
  .voice_list .webgene-item .inner{
    padding: 40px 15px 85px;
  }
  .voice_popup .popup_close{
  }
  
  .voice_item_head .img{
 width: 100px;
}
}
@media (min-width:1200px){
.voice_item_head .img{
 width: 160px;
}
.voice_item_head_category{
  margin-top: -24px;
}

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

  /* VOICE */
  .voice_list{
    --voice-slide-size: 750px;
  }
  * + .voice_list{
    margin-top: 45px;
  }
  .voice_list .webgene-blog{
    margin-left: -20px;
    margin-right: -20px;
  }
  .voice_list .webgene-item{
    width: 33.333%;
    padding: 0 20px;
  }
  .voice_list .webgene-item .inner{
    padding: 30px 40px 85px;
  }
  .voice_list .webgene-item .inner .read_more{
    bottom: 60px;
  }
  .voice_item_head{
    margin-bottom: 20px;
  }
  .voice_item_head_title{
    font-size: 24px;
  }
  .voice_item_txt,
  .voice_item_txt2{
    font-size: 16px;
  }

  .voice_slider_btns_prev,
  .voice_slider_btns_next{
    width: 60px;
  }
  .voice_slider_btns_prev{
    left: -2px;
  }
  .voice_slider_btns_next{
    right: -2px;
  }

  /* ポップアップ */
  .voice_popup{
    padding: 145px 60px 60px;
  }
  .voice_popup_box1{
    /*background-size: 235px auto;*/
    /*background-position: right 0 bottom 20px;*/
    /*padding-bottom: 50px;*/
  }
  .voice_popup_box2{
    padding: 50px 95px 40px;
    border-radius: 30px;
  }

  .voice_popup_box2_l{
    width: 95px;
  }
  .voice_popup_box2_r{
    width: calc(100% - 95px - 30px);
  }
  .voice_popup .popup_close{
    width: 35px;
    top: 20px;
    right: 35px;

  }

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


}



/*******************************
*　
********************************/
.pg_XXX{

}
.pg_XXX .section.sec1{
  
}
.pg_XXX .section.sec2{
  
}
.pg_XXX .section.sec3{
  
}
.pg_XXX .section.sec4{
  
}
.pg_XXX .section.sec5{
  
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_XXX .section.sec1{

  }
  .pg_XXX .section.sec2{

  }
  .pg_XXX .section.sec3{

  }
  .pg_XXX .section.sec4{

  }
  .pg_XXX .section.sec5{

  }
}
@media (min-width:1024px){
  .pg_XXX .section.sec1{

  }
  .pg_XXX .section.sec2{

  }
  .pg_XXX .section.sec3{

  }
  .pg_XXX .section.sec4{

  }
  .pg_XXX .section.sec5{

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


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

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

}


/* メイン */


@media (max-width:374px){

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

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

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

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

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


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


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

}

/*******************************
*　
********************************/
.pg_XXX{

}
.pg_XXX .section.sec1{
  
}
.pg_XXX .section.sec2{
  
}
.pg_XXX .section.sec3{
  
}
.pg_XXX .section.sec4{
  
}
.pg_XXX .section.sec5{
  
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_XXX .section.sec1{

  }
  .pg_XXX .section.sec2{

  }
  .pg_XXX .section.sec3{

  }
  .pg_XXX .section.sec4{

  }
  .pg_XXX .section.sec5{

  }
}
@media (min-width:1024px){
  .pg_XXX .section.sec1{

  }
  .pg_XXX .section.sec2{

  }
  .pg_XXX .section.sec3{

  }
  .pg_XXX .section.sec4{

  }
  .pg_XXX .section.sec5{

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


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

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

}


/* メイン */


@media (max-width:374px){

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

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

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

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

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


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


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

}

/*******************************
*　
********************************/
.pg_XXX{

}
.pg_XXX .section.sec1{
  
}
.pg_XXX .section.sec2{
  
}
.pg_XXX .section.sec3{
  
}
.pg_XXX .section.sec4{
  
}
.pg_XXX .section.sec5{
  
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_XXX .section.sec1{

  }
  .pg_XXX .section.sec2{

  }
  .pg_XXX .section.sec3{

  }
  .pg_XXX .section.sec4{

  }
  .pg_XXX .section.sec5{

  }
}
@media (min-width:1024px){
  .pg_XXX .section.sec1{

  }
  .pg_XXX .section.sec2{

  }
  .pg_XXX .section.sec3{

  }
  .pg_XXX .section.sec4{

  }
  .pg_XXX .section.sec5{

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


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

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

}


/* メイン */


@media (max-width:374px){

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

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

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

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

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


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


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

}


/* テキストアニメーション */
.flicker-heading{
  text-transform: uppercase;
  white-space: pre-wrap;
  visibility: hidden;
}
.gjs-dashed .flicker-heading,
.flicker-heading.is-ready{
  visibility: visible;
}

.flicker-heading .ch{
  display:inline-block;
  opacity: 1;
  will-change: opacity;
}

.flicker-heading .sp{
  display:inline-block!important;
  width: .45em;
}

/* 発火中だけアニメーションを付ける（JSが文字ごとにCSS変数を入れる） */
.flicker-heading.is-flickering .ch{
  animation-name: letterFlicker;
  animation-duration: var(--dur, 700ms);
  animation-delay: var(--delay, 0ms);
  animation-iteration-count: infinite;     /* ← JS側で“切りの良い所”で止める */
  animation-timing-function: ease-in-out;  /* 参考は緩やか */
  animation-fill-mode: both;
}

/* JSが停止させた文字（待機状態） */
.flicker-heading .ch.is-hold{
  animation: none !important;
  opacity: 1 !important;
}

/* 0→1→0→1 の2往復風。最後は1で終わる */
@keyframes letterFlicker{
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  50%  { opacity: 0; }
  75%  { opacity: 1; }
  100% { opacity: 1; }
}

/* 動き軽減 */
@media (prefers-reduced-motion: reduce){
  .flicker-heading .ch{
    opacity: 1 !important;
    animation: none !important;
  }
}
