@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --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: "Oswald", "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;
  background: #fff;
}

#root{
  overflow: hidden;
}


u{
  display: inline-block;
  font-style: normal;
  text-decoration: none;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
: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;*/
  letter-spacing: inherit;
}
p{

}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
  color: var(--main-color);
}
img{
  max-width: 100%;
  width: auto;
}

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

.img_fit{
  position: relative;
  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: flex-start;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  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;
}

.pg_header:after{
  content: "";
  display: block;
  width: 100%;
  ;
  aspect-ratio:1920 / 126;
  background-image: url(/system_panel/uploads/images/obi2.png);
  background-position:center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.pg_header_sub_img{
  aspect-ratio:1920 / 684;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.pg_header_sub_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/ma.png);
}
.pg_header_sub_img:before{
  padding-top:180px;
}
.pg_header_txt_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.pg_header_txt_inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pg_header_txt_h1{
  background: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  position: relative;
  padding: 5px 24px;
}
.pg_header_txt_bg{
  position: relative;
}
.pg_header_txt_bg:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #54a4a1;
  position: absolute;
  top: 5px;
  left: 5px;
}
.pg_header_txt_en{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  background: #54a4a1;
  color: #fff;
  margin-top: 10px;
  padding: 5px 15px;
  margin-top: 13px;
}

@media (min-width:375px){

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

  .hdr1 {
    justify-content: flex-start;
    padding: 0;
    position: absolute;
    z-index: 2;
    top: 0;
  }
  .pg_header_txt_inner{
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    bottom: -38px;
  }

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

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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

  .pg_header_sub_img{

  }
  .pg_header_sub_img:before{
    padding-top: 400px;
  }
  .pg_header_txt_box{

  }
  .pg_header_txt_inner{

  }
  .pg_header_txt_h1{
    font-size: 30px;
  }
  .pg_header_txt_en{
    font-size: 20px;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 109px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .pg_header_sub_img{

  }
  .pg_header_sub_img:before{
    padding-top: 667px;
  }
  .pg_header_txt_box{

  }
  .pg_header_txt_inner{

  }
  .pg_header_txt_h1{
    font-size: 40px;
  }
  .pg_header_txt_en{

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  --mv-frame-size: 16px;
  position: relative;
  z-index: 1;
}
.mv:before{
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    url('/system_panel/uploads/images/recruit_mv_fr1.jpg'),
    url('/system_panel/uploads/images/recruit_mv_fr2.jpg'),
    url('/system_panel/uploads/images/recruit_mv_fr3.jpg'),
    url('/system_panel/uploads/images/recruit_mv_fr4.jpg');

  background-size: var(--mv-frame-size) auto, auto var(--mv-frame-size), var(--mv-frame-size) auto, auto var(--mv-frame-size);
  background-position: left top, left top, right top, left bottom;
  background-repeat: repeat-y, repeat-x, repeat-y, repeat-x;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* MVテキスト */
.mv_catch{
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
.mv_catch_inner{
  padding: 0 20px;
}
.mv_catch_txt1{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
.mv_catch_txt2{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.mv_catch_txt3{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.777;
  letter-spacing: 0.075em;

  /*text-shadow    :
       4px  4px 1px #ffffff,
      -4px  4px 1px #ffffff,
       4px -4px 1px #ffffff,
      -4px -4px 1px #ffffff,
       4px  0px 1px #ffffff,
       0px  4px 1px #ffffff,
      -4px  0px 1px #ffffff,
       0px -4px 1px #ffffff;*/

  text-shadow:
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff;

  margin-top: 20px;
}

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

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

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

  /* MV */
  .mv{
    --mv-frame-size: 36px;
  }
  .mv_img.img_fit:before{
    padding-top: 390px;
  }

  /* MVテキスト */
  .mv_catch{
    top: 50%;
  }
  .mv_catch_inner{
    padding: 0;
  }
  .mv_catch_txt1{
    font-size: 40px;
  }
  .mv_catch_txt2{
    font-size: 20px;
    margin-top: 20px;
  }
  .mv_catch_txt3{
    font-size: 16px;
    /*text-shadow    :
       4px  4px 1px #ffffff,
      -4px  4px 1px #ffffff,
       4px -4px 1px #ffffff,
      -4px -4px 1px #ffffff,
       4px  0px 1px #ffffff,
       0px  4px 1px #ffffff,
      -4px  0px 1px #ffffff,
       0px -4px 1px #ffffff;*/
  }

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


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

  /* MVテキスト */


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

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

  /* MVテキスト */
  .mv_catch{
    top: 50%;
  }
  .mv_catch_inner{
    padding: 0;
  }
  .mv_catch_txt1{
    font-size: 48px;
  }
  .mv_catch_txt2{
    font-size: 24px;
    margin-top: 40px;
  }
  .mv_catch_txt3{
    font-size: 16px;
  }


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

  .mv{
    --mv-frame-size: 36px;
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }

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

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

  /* MV */
  .mv_img.img_fit:before{
    padding-top: 920px;
  }
  /* MVテキスト */
  .mv_catch_txt1{
    font-size: 100px;
  }
  .mv_catch_txt2{
    font-size: 30px;
    margin-top: 40px;
  }
  .mv_catch_txt3{
    font-size: 18px;
  }
}


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

/* サイドバー */
.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: 0;
  position: relative;
  z-index: 1;
}
.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;
}




@media (min-width:768px){
  .pg_header{
    margin-bottom: 0;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 0;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

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

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

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

}


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


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

}


/* テーブル用 */
.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 #959595;
  vertical-align: middle;
  font-weight: 500;
  padding: 16px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #dff3f6;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #FFF;
  vertical-align: top;
  border-left: 0;
  line-height: 1.88em;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


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

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* swiper */
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



@media (max-width:374px){

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

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

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

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

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

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

  .anchor{
    top: -100px;
  }

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



  /* 見出し */



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


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

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


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


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }


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

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



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

}
.pg_home .section.sec1{

}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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

}
.pg_staff .section.sec1{
  position: relative;
  z-index: 1;
  background: #fff;
  padding-top: 80px;
}
.sec_top:after{
  content: "";
  display: block;
  width: 1920px;
  ;
  aspect-ratio:1920 / 50;
  background-image: url(/system_panel/uploads/images/bbt.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.pg_staff .section.sec2{

}
.pg_staff .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_staff{

  }
  .pg_staff .section.sec1{
    padding-top: 158px;
  }
  .pg_staff .section.sec2{

  }
  .pg_staff .section.sec3{

  }

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


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

  }
  .pg_staff .section.sec1{

  }
  .pg_staff .section.sec2{

  }
  .pg_staff .section.sec3{

  }

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

  .pg_staff .section.sec1{
    padding-bottom: 100px;
  }

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


}

.body_staff,
.body_flow{
  position: relative;
}
.body_work-place:before,
.body_flow:before,
.body_staff:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:1920 / 1613;
  background-image: url(/system_panel/uploads/images/bbg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
/* メイン部分 */
.sec_top{
  position: relative;
  padding-bottom: 50px;
  padding-top: 0;
}
.sec_top:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #89c997;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.pos{
  position: absolute;
  z-index: 2;
}
.side_obj1{
  width: 318px;
  aspect-ratio:318 / 941;
  background-image: url(/system_panel/uploads/images/right1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 141px;
  right: calc(50% - 959px);
}
.side_obj2{
  width: 327px;
  aspect-ratio:327 / 1064;
  background-image: url(/system_panel/uploads/images/right2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  right: calc(50% - 959px);
  bottom: 193px;
}
.side_obj3{
  width: 324px;
  aspect-ratio:324 / 1064;
  background-image: url(/system_panel/uploads/images/left1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  left: calc(50% - 959px);
  top: 1207px;
}
.side_obj4{
  width: 338px;
  aspect-ratio:338 / 937;
  background-image: url(/system_panel/uploads/images/left2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  left: calc(50% - 959px);
  bottom: -262px;
}
.man1{
  width: 206px;
  width: 10.72%;
  aspect-ratio:206 / 343;
  right:0;
  top: 1102px;
}
.man2{
  width: 324px;
  width: 6.61%;
  aspect-ratio:127 / 380;
  bottom: 924px;
  left:0;
}

/*sec1*/
.recruit_header_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.recruit_header_box1{
  width: 100%;
}
.recruit_header_box1_tt{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  color: #fff;
  text-shadow: 1.231px 1.576px 7px rgba(0, 0, 0, 0.5);
}
.recruit_header_box1_tt p{
  letter-spacing: 0.075em;
  border-bottom: 6px solid #fff45c;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}
.recruit_header_box1 .content_desc{
  margin-top: 20px;
}
.recruit_header_box2{
  width: 100%;
  margin-top: 20px;
}
.recruit_header_box2_img{
  box-shadow: 10px 10px 0 #81d742;
}
.recruit_header_box2_img:before{
  padding-top: 81.9%;
}


/*sec2*/
.recruit_tt{
  position: relative;
  padding-bottom: 28px;
}
.recruit_tt:before{
  content: "";
  display: block;
  width: 1520px;
  height: 5px;
  max-width: 1;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  /* margin-left: calc(50% - 50vw); */
  margin-right: calc(50% - 50vw);
}
.recruit_tt_en{
  font-size: 30px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.recruit_tt_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.staff_sec2_wrap{
  position: relative;
  z-index: 1;
  margin-top:40px;
}
.staff_sec2_items{

}
.staff_sec2_item{
  padding-top: 30px;
  padding-bottom: 30px;
}
.staff_sec2_item:nth-child(n+2){
  margin-top: 50px;
}
.staff_sec2_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staff_sec2_item_head_left{
  width: 100%;
}
.staff_sec2_item_head_img:before{
  padding-top: 84.03%;
}
.staff_sec2_item_head_name{
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  margin-top: 16px;
}
.staff_sec2_item_head_name p{
  letter-spacing: 0.075em;
}
.staff_sec2_item_head_right{
  width: 100%;
  margin-top: 20px;
}
.staff_sec2_item_head_item{

}
.staff_sec2_item_head_item:nth-child(n+2){
  margin-top: 20px;
}
.staff_sec2_item_head_item_tt_box{
  position: relative
}
.staff_sec2_item_head_item_tt_box:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #54a4a1;
  position: absolute;
  top: 5px;
  left: 5px;
}
.staff_sec2_item_head_item_tt{
  font-size: 17px;
  font-weight: 600;
  ;
  background: #ffffff;
  padding: 4px 27px;
}
.staff_sec2_item_head_item .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 20px;
}
.staff_sec2_item_main{
  margin-top: 33px;
}

.staff_top_illust1{
  width: 80px;
  position: absolute;
  z-index: 3;
  left: 15px;
  bottom: 0px;
  transform: translate(0, 50%);
}
@media (min-width:768px){
  .staff_top_illust1{
    width: 120px;
    left: 50px;
    transform: translate(0, 50%);
  }
}
@media (min-width:1024px){
  .staff_top_illust1{
    width: 150px;
    left: 120px;
    transform: translate(0, 50%);
  }
}
@media (min-width:1470px){
  .staff_top_illust1{
    width: 188px;
    left: 192px;
    transform: translate(0, 50%);
  }
}


@media (max-width:767px){
  .body_staff:before{
    top: 50px;
  }

  .man1{
    width: 206px;
    width: 100px;
    aspect-ratio: 206 / 343;
    right: 0;
    top: 1665px;
    z-index: 2;
  }
  .man2{
    width: 324px;
    width: 60px;
    aspect-ratio: 127 / 380;
    bottom: 1200px;
    left: 0;
    z-index: 2;
  }
  
  .recruit_header_box1_tt{
    display: inline-block;
  }
}
@media (min-width:768px){
  .sec_top{
    padding-bottom: 100px;
  }
  .sec_top:before{
    top: 0%;
  }

  /*sec1*/
  .recruit_header_wrap{
    margin-top: 74px;
  }
  .recruit_header_box1{

  }
  .recruit_header_box1_tt{
    font-size: 50px;
  }
  .content_desc{
    font-size: 18px;
    line-height: 2.33em;
  }
  .recruit_header_box1 .content_desc{
    margin-top: 39px;
  }
  .recruit_header_box2{
    margin-top: 30px;
  }
  .recruit_header_box2_img:before{

  }

  /*sec2*/
  .recruit_tt{

  }
  .recruit_tt_en{
    font-size: 60px;
  }
  .recruit_tt_ja{
    font-size: 20px;
  }
  .staff_sec2_wrap{
    margin-top: 82px;
  }
  .staff_sec2_items{

  }
  .staff_sec2_item{
    padding-top: 50px;
    padding-bottom: 45px;
  }
  .staff_sec2_item:nth-child(n+2){
    margin-top: 50px;
  }
  .staff_sec2_item_head{

  }
  .staff_sec2_item_head_left{

  }
  .staff_sec2_item_head_img:before{

  }
  .staff_sec2_item_head_name{
    font-size: 20px;
    margin-top: 24px;
    padding-bottom: 10px;
  }
  .staff_sec2_item_head_right{
    margin-top: 30px;
  }
  .staff_sec2_item_head_item{

  }
  .staff_sec2_item_head_item:nth-child(n+2){
    margin-top:31px;
  }
  .staff_sec2_item_head_item_tt{
    font-size: 18px;
  }
  .staff_sec2_item_head_item .content_desc{
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (min-width:1024px){
  .sec_top{
    padding-bottom: 190px;
  }
  .sec_top:before{
    top: 30%;
  }

  .man2{
    width: 324px;
    width: 6.61%;
    aspect-ratio:127 / 380;
    bottom: 800px;
    left:0;
  }

  /*sec1*/
  .recruit_header_wrap{

  }
  .recruit_header_box1{
    width: 42.76%;
  }
  .recruit_header_box1_tt{
    font-size: 50px;
    white-space: nowrap;
  }
  .content_desc{

  }
  .recruit_header_box2{
    width: 48.35%;
    margin-top: 0;
    padding-top: 30px;
  }
  .recruit_header_box2_img:before{

  }

  /*sec2*/
  .recruit_tt{

  }
  .recruit_tt_en{
    font-size: 60px;
  }
  .recruit_tt_ja{
    font-size: 20px;
  }
  .staff_sec2_wrap{

  }
  .staff_sec2_items{

  }
  .staff_sec2_item{
    position: relative;
  }
  .staff_sec2_item:nth-child(n+2){
    margin-top: 85px;
  }
  .staff_sec2_item:before{
    content: "";
    display: block;
    width: 91.53%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .staff_sec2_item:nth-child(4n+1):before{
    right: 0;
    background: #84ccc9;
  }
  .staff_sec2_item:nth-child(4n+1) .staff_sec2_item_head_item_tt{
    /*box-shadow: 3px 3px 0 #54a4a1;*/
  }
  .staff_sec2_item:nth-child(4n+2):before{
    left: 0;
    background: #8c97cb;
  }
  .staff_sec2_item:nth-child(4n+2) .staff_sec2_item_head_item_tt{
    /*box-shadow: 3px 3px 0 #5767b5;*/
  }
  .staff_sec2_item:nth-child(4n+3):before{
    right: 0;
    background: #beda7c;
  }
  .staff_sec2_item:nth-child(4n+3) .staff_sec2_item_head_item_tt{
    /*box-shadow: 3px 3px 0 #54a4a1;*/
  }
  .staff_sec2_item:nth-child(4n):before{
    left: 0;
    background: #f4abad;
  }
  .staff_sec2_item:nth-child(4n) .staff_sec2_item_head_item_tt{
    /*box-shadow: 3px 3px 0 #d2696c;*/
  }
  
  .staff_sec2_item:nth-child(odd) {
    padding-right: 30px;
  }
  .staff_sec2_item:nth-child(even){
    padding-left: 30px;
  }
  .staff_sec2_item_head{

  }
  .staff_sec2_item:nth-child(odd) .staff_sec2_item_head_left{
    order: 1;
  }
  .staff_sec2_item:nth-child(odd) .staff_sec2_item_head_right{
    order: 2;
  }
  .staff_sec2_item:nth-child(even) .staff_sec2_item_head_left{
    order: 2;
  }
  .staff_sec2_item:nth-child(even) .staff_sec2_item_head_right{
    order: 1;
  }
  .staff_sec2_item_head_left{
    width: 45.48%;
  }
  .staff_sec2_item_head_img:before{

  }
  .staff_sec2_item_head_name{
    font-size: 20px;
    margin-top: 24px;
  }
  .staff_sec2_item_head_right{
    width: 48.33%;
    margin-top: 0;
  }
  .staff_sec2_item_head_item{

  }
  .staff_sec2_item_head_item_tt{
    font-size: 20px;
  }
  .staff_sec2_item_head_item .content_desc{

  }
  .staff_sec2_item_main{
    width: 84.5%;
    margin-top: 33px;
  }
  .staff_sec2_item:nth-child(odd) .staff_sec2_item_main{
    margin-left: auto;
  }
}
@media (min-width:1200px){
  .man1{
    width: 206px;
    width: 10.72%;
    aspect-ratio:206 / 343;
    right:0;
    top: 1900px;
  }
  .man2{
    width: 324px;
    width: 6.61%;
    aspect-ratio:127 / 380;
    bottom: 800px;
    left:0;
  }



  /*sec1*/
  .recruit_header_wrap{

  }
  .recruit_header_box1{

  }
  .recruit_header_box1_tt{
    font-size: 60px;
  }
  .content_desc{

  }
  .recruit_header_box2{

  }
  .recruit_header_box2_img:before{

  }

  /*sec2*/
  .recruit_tt{

  }
  .recruit_tt_en{
    font-size: 80px;
  }
  .recruit_tt_ja{
    font-size: 24px;
  }
  .staff_sec2_wrap{

  }
  .staff_sec2_items{

  }
  .staff_sec2_item{

  }
  .staff_sec2_item:nth-child(odd) {
    padding-right: 65px;
  }
  .staff_sec2_item:nth-child(even){
    padding-left: 65px;
  }
  .staff_sec2_item_head{

  }
  .staff_sec2_item_head_left{

  }
  .staff_sec2_item_head_img:before{

  }
  .staff_sec2_item_head_name{

  }
  .staff_sec2_item_head_right{

  }
  .staff_sec2_item_head_item{

  }
  .staff_sec2_item_head_item_tt{
    font-size: 22px;
  }
  .staff_sec2_item_head_item .content_desc{

  }
}
@media (min-width:1470px){
  .sec_top:before{
    top: 70%;
  }

}
@media (min-width:1720px){
  .sec_top:before{
    top: 90%;
  }

  /*sec1*/
  .recruit_header_box1_tt{
    white-space: nowrap;
    font-size: 80px;
  }
  .man1{
    width: 206px;
    width: 10.72%;
    aspect-ratio:206 / 343;
    right: calc(50% - 39.5%);
    top: 1102px;
  }
  .man2{
    width: 324px;
    width: 6.61%;
    aspect-ratio:127 / 380;
    bottom: 924px;
    left: calc(50% - 40%);
  }


}
@media (max-width:1023px){
  .staff_sec2_item{
    position: relative;
  }
  .staff_sec2_item:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .staff_sec2_item:nth-child(4n+1):before{
    right: 0;
    background: #84ccc9;
  }
  .staff_sec2_item:nth-child(4n+2):before{
    left: 0;
    background: #8c97cb;
  }
  .staff_sec2_item:nth-child(4n+3):before{
    right: 0;
    background: #beda7c;
  }
  .staff_sec2_item:nth-child(4n):before{
    left: 0;
    background: #f4abad;
  }
  
  
  
}

.staff_sec2_item:nth-child(4n+1) .staff_sec2_item_head_item_tt{
  box-shadow: 3px 3px 0 #54a4a1;
}
.staff_sec2_item:nth-child(4n+2) .staff_sec2_item_head_item_tt{
  box-shadow: 3px 3px 0 #5767b5;
}
.staff_sec2_item:nth-child(4n+3) .staff_sec2_item_head_item_tt{
  box-shadow: 3px 3px 0 #54a4a1;
}
.staff_sec2_item:nth-child(4n) .staff_sec2_item_head_item_tt{
  box-shadow: 3px 3px 0 #d2696c;
}

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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}
.body_flow .sec_top{
  margin-top: 80px;
  padding-bottom: 50px;
}
.pg_flow .sec_top:after{
  background: #89c997;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_fllow{
  width: 1920px;
  aspect-ratio: 1920 / 2161;
  background-image: url(/system_panel/uploads/images/hhh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* メイン部分 */
.body_flow .sec_top:before{
  z-index: -1;
}

.flow_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  position: relative;
  padding: 30px 16px;
}
.flow_item:nth-child(n+2){
  margin-top: 50px;
}
.flow_item:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 30px solid #181818;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  ;
  left: 50%;
  transform: translateX(-50%);
}
.flow_item:last-child:after{
  display: none;
}
.flow_item_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.flow_item_box1_tt{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow_item_box1_tt_img{
  min-width: 118px;
}
.flow_item_box1_tt_h2{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  border-bottom: 5px solid #fff100;
  width: 78.57%;
  padding-bottom: 10px;
}
.flow_item_box1 .content_desc{
  line-height: 2.25em;
  margin-top: 24px;
}
.flow_item_box1 .content_desc p{

}
.flow_item_box1_btn{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flow_item_box1_btn_num{
  font-size: 18px;
  font-weight: 700;
  width: 17.42%;
  letter-spacing: 0.075em;
}
.link_3{
  font-size: 18px;
  font-weight: 700;
  background: #ec6941;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 350px;
  padding: 16px;
}
.link_3:hover{
  background: var(--main-color);
  color: #fff;
}
.flow_item_box2{
  width: 100%;
  order: 1;
}
.flow_item_box2_img_outer{
  position: relative;
}
.flow_item_box2_img_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #81d742;
  position: absolute;
  top: 11px;
  left: 11px;
}
.flow_item_box2_img:before{
  padding-top: 70.37%;
}
@media (max-width:767px){
  .body_flow:before{
    top: 50px;
  }
  .flow_item_box1_tt_img{
    width: 80px;
    min-width: inherit;
  }
  .flow_item_box1_tt_h2{
    width: calc(100% - 80px - 15px);
    font-size: 18px;
  }
  .flow_item_box1_btn_num{
    width: 100%;
    font-size: 28px;
    margin: 20px 0;
  }
}
@media (min-width:768px){
  .body_flow .sec_top{
    margin-top: 140px;
    padding-bottom: 200px;
  }

  .flow_item{
    padding: 50px 30px;
  }
  .flow_item:nth-child(n+2){
    margin-top: 62px;
  }
  .flow_item_box1{
    margin-top: 30px;
  }
  .flow_item_box1_tt{

  }
  .flow_item_box1_tt_img{

  }
  .flow_item_box1_tt_h2{
    font-size: 22px;
  }
  .flow_item_box1 .content_desc{
    font-size: 16px;
  }
  .flow_item_box1_btn{
    margin-top: 20px;
  }
  .flow_item_box1_btn_num{
    font-size: 20px;
    width: 250px;
    ;
  }
  .link_3{

  }
  .flow_item_box2{

  }
  .flow_item_box2_img_outer{

  }
  .flow_item_box2_img:before{

  }
}
@media (min-width:1024px){
  .flow_item{
    padding: 50px 30px;
  }
  .flow_item_box1{
    width: 53.63%;
    order: 1;
    margin-top: 0;
  }
  .flow_item_box1_tt{

  }
  .flow_item_box1_tt_img{

  }
  .flow_item_box1_tt_h2{
    font-size: 24px;
  }
  .flow_item_box1 .content_desc{

  }
  .flow_item_box1_btn{
    margin-top: 20px;
  }
  .flow_item_box1_btn_num{
    font-size: 22px;
    width: 100%;
    margin-right: 14px;
  }
  .link_3{
    max-width: 300px;
    margin-top: 20px;
  }
  .flow_item_box2{
    width: 41.37%;
    order: 2;
  }
  .flow_item_box2_img_outer{

  }
  .flow_item_box2_img:before{

  }

}
@media (min-width:1200px){
  .body_flow .sec_top{
    margin-top: 229px;
  }

  .flow_item{
    padding: 50px 30px;
  }
  .flow_item_box1_tt_h2{
    font-size: 28px;
  }
  .flow_item_box1_btn_num{
    font-size: 22px;
    width: 47.85%;
  }

}
@media (min-width:1470px){
  
  
  .flow_item{
    padding: 50px 140px 60px 75px;
  }
  .flow_item_box1_btn{
    margin-top: 0;
  }
  .flow_item_box1_btn_num{
    font-size: 24px;
  }
  .link_3{
    margin-top: 0;
  }
  .flow_item_box1_tt_h2{
    font-size: 32px;
  }

}
@media (min-width:1720px){
  .flow_item_box1_btn_num{
    font-size: 31px;
    width: 47.85%;
  }
  .link_3{
    max-width: 350px;
  }
  .flow_item_box1_tt_h2{
    font-size: 38px;
  }

}



/*******************************
*　エントリー
********************************/

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

}
.pg_entry .section.sec1{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_entry .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_entry .section.sec1{
    padding-bottom: 50px;
  }
  .pg_entry .section.sec2{

  }


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


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

  

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


  .pg_entry .section.sec1{
    padding-bottom: 150px;
  }
  .pg_entry .section.sec2{

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


}

.body_entry{
  background: #89c997;
}
.body_entry:before{
  content: "";
  display: block;
  width: 100%;
  ;
  aspect-ratio:1920 / 1545;
  background-image: url(/system_panel/uploads/images/34.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.entry_bg{
  width: 1920px;
  aspect-ratio: 1920 / 1377;
  background-image: url(/system_panel/uploads/images/t.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* メイン部分 */

.entry_cate{
  display: flex;
  flex-wrap: wrap;
  gap:10px 0;
  margin-top: 40px;
}
.entry_cate_item{
  width: 100%;
}
.entry_cate_item a{
  background: #ec6941;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
}
.entry_cate_item a p{
  letter-spacing: 0.05em;
}
.entry_cate_item a:hover{
  background: #85d848;
}

.entry_items{
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.entry_item{

}
.entry_item:nth-child(n+2){
  margin-top: 50px;
}
.entry_item .compnay_tbl{
  margin-top: 40px;
}
.entry_item .recruit_tt{

}
.link_4{
  display: block;
  width: 100%;
  max-width: 240px;
  background: #181818;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 23px;
  border: 1px solid transparent;
  margin-inline: auto;
  padding: 10px 0;
  position: relative;
  margin-top: 30px;
}
.link_4:after{
  content: "";
  display: block;
  width: 34px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arrr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all .2s;
}
.link_4:hover{
  background: #181818;
  color: #fff;
}
.link_4:hover:after{
  right: 10px;
}
@media (max-width:767px){
  .body_entry:before{
    top: 50px;
  }

  .entry_item .table_rows_th,
  .entry_item .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #959595;
    border-bottom: none;
  }
  .entry_item .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #959595;
  }
}
@media (min-width:768px){
  .entry_cate{
    gap:30px;
    margin-top: 66px;
  }
  .entry_cate_item{
    width: calc(50% - 15px);
  }
  .entry_cate_item a{
    font-size: 18px;
    padding: 23px 0;
  }

  .entry_items{
    margin-top: 76px;
  }
  .entry_item{

  }
  .entry_item:nth-child(n+2){
    margin-top: 80px;
  }
  .entry_item .compnay_tbl{
    margin-top: 84px;
  }

  .entry_item .recruit_tt{

  }
  .link_4{
    margin-top: 50px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .entry_cate{
    gap:0 22px;
  }
  .entry_cate_item{
    width: calc(33.333% - 15px);
  }
  .entry_cate_item a{

  }

  .entry_items{
    margin-top: 76px;
  }
  .entry_item{

  }
  .entry_item:nth-child(n+2){
    margin-top: 110px;
  }
  .entry_item .recruit_tt{

  }
  .link_4{

  }

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

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

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

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

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

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

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

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.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{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item 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 .webgene-item 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 .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item 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 .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    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: 30px;
}
.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{

}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.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{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

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

/* コピー用 */
@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: 50px;
  }
  .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: 55px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .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: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横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){


}





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

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

/* フォーム */
.formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.formWrap .text-center{
  padding-top: 40px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #1a3e9b;
}
.formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.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;
}

@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.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;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}


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


  .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;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .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;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .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;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 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;
  }
}



/*******************************
*　
********************************/
:root{
  --body-bg-resize: 0.3;
}
@media (min-width:768px){
  :root{
    --body-bg-resize: 0.5;
  }
}
@media (min-width:1024px){
  :root{
    --body-bg-resize: 0.6;
  }
}
@media (min-width:1200px){
  
}
@media (min-width:1470px){
  :root{
    --body-bg-resize: 0.8;
  }
}
@media (min-width:1720px){
  :root{
    --body-bg-resize: 1.0;
  }
}

.pg_recruit{
  
  position: relative;
  z-index: 1;
}
.pg_recruit .section.sec1{
  padding-top: 50px;
  padding-bottom: 30px;
  background: #89c997;
  position: relative;
  z-index: 2;
}
.pg_recruit .section.sec1:before{
  content: "";
  width: 320px;
  aspect-ratio: 1722 / 226;
  background-image: url('/system_panel/uploads/images/recruit_mv_btm.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 20px;
}
.pg_recruit .section.sec2{
  padding-top: 80px;
  background-image: 
    url(/system_panel/uploads/images/recruit_body_bg1.png),
    url(/system_panel/uploads/images/recruit_body_bg2.png)
    ;
  background-repeat: no-repeat;
  background-size: calc(353px * var(--body-bg-resize)) auto, calc(328px * var(--body-bg-resize)) auto;
  background-position: left 20%, right 56%;
  position: relative;
  z-index: 1;
}
.pg_recruit .section.sec2:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 50;
  background-image: url(/system_panel/uploads/images/bbt.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.pg_recruit .section.sec3{
  padding-top: 0;
}
.pg_recruit .section.sec4{
  padding-top: 0;
}


.recruit_about{
  position: relative;
  z-index: 1;
}
.recruit_about_side_bg{
  --side-bg-resize: 0.3;
  position: absolute;
  z-index: 0;
  top: 50%;
}
.recruit_about_side_bg.left{
  width: calc(387px * var(--side-bg-resize));
  left: 0;
  transform: translate(-6%, -104%);
}
.recruit_about_side_bg.right{
  width: calc(420px * var(--side-bg-resize));
  right: 0;
  transform: translate(2%, -102%);
}


@media (max-width:767px){

  .recruit_about_head{
    margin-left: 50px;
    margin-right: 50px;
  }
  .recruit_about_mv{
    margin-left: 30px;
    margin-right: 30px;
  }
  
  .recruit_about_side_bg.left{
    width: calc(290px * var(--side-bg-resize));
    left: 0;
    transform: translate(-3%, -97%);
  }
  .recruit_about_side_bg.right{
    width: calc(295px * var(--side-bg-resize));
    right: 0;
    transform: translate(2%, -100%);
  }
}
@media (min-width:768px){

  .pg_recruit{
    /*--body-bg-resize: 1.0;*/
  }
  .pg_recruit .section.sec1{
    padding-top: 75px;
    padding-bottom: 55px;
  }
  .pg_recruit .section.sec1:before{
    width: 800px;
    left: 20px;
  }
  .pg_recruit .section.sec2{
    padding-top: 155px;
    background-position: left 110%, right 56%;
  }
  .pg_recruit .section.sec2:before{
    width: 1920px;
    aspect-ratio: 1920 / 50;
  }
  .pg_recruit .section.sec3{
    padding-top: 65px;
  }
  .pg_recruit .section.sec4{
    padding-top: 70px;
  }
  
  .recruit_about_side_bg{
    --side-bg-resize: 0.4;
  }
  .recruit_about_side_bg.left{
    transform: translate(0%, -90%);
  }
  .recruit_about_side_bg.right{
    transform: translate(0%, -88%);
  }

  .recruit_about_head{
    margin-left: 120px;
    margin-right: 120px;
  }
  .recruit_about_mv{
    margin-left: 75px;
    margin-right: 75px;
  }
}
@media (min-width:1024px){
  
  .pg_recruit{
    /*--body-bg-resize: 1.0;*/
  }
  .pg_recruit .section.sec1{
    padding-top: 100px;
    padding-bottom: 55px;
  }
  .pg_recruit .section.sec1:before{
    width: 1000px;
    left: 65px;
  }
  .pg_recruit .section.sec2{
    padding-top: 155px;
  }
  .pg_recruit .section.sec2:before{
    width: 1920px;
    aspect-ratio: 1920 / 50;
  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{

  }
  
  .recruit_about_side_bg{
    --side-bg-resize: 0.5;
  }
  .recruit_about_side_bg.left{
    transform: translate(0%, -73%);
  }
  .recruit_about_side_bg.right{
    transform: translate(0%, -73%);
  }
  
  .recruit_about_head{
    margin-left: 150px;
    margin-right: 150px;
  }
  .recruit_about_mv{
    margin-left: 100px;
    margin-right: 100px;
  }

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


  .recruit_about_side_bg.left{
    transform: translate(10%, -73%);
  }
  .recruit_about_side_bg.right{
    transform: translate(-10%, -73%);
  }
  
}
@media (min-width:1470px){

  .pg_recruit{
    /*--body-bg-resize: 1.0;*/
  }
  .pg_recruit .section.sec1{
    padding-top: 120px;
    padding-bottom: 55px;
  }
  .pg_recruit .section.sec1:before{
    width: 1722px;
    left: 65px;
  }
  .pg_recruit .section.sec2{
    padding-top: 155px;
  }
  .pg_recruit .section.sec2:before{
    width: 1920px;
    aspect-ratio: 1920 / 50;
  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{
    padding-bottom: 100px;
  }
  
  .recruit_about_side_bg{
    --side-bg-resize: 0.8;
  }
  .recruit_about_side_bg.left{
    transform: translate(20%, -42%);
  }
  .recruit_about_side_bg.right{
    transform: translate(-20%, -41%);
  }

  .recruit_about_head,
  .recruit_about_mv{
    margin-left: 0;
    margin-right: 0;
  }
  
}
@media (min-width:1720px){

  .pg_recruit{
    /*--body-bg-resize: 1.0;*/
  }
  .pg_recruit .section.sec1{
    padding-top: 185px;
    padding-bottom: 55px;
  }
  
  .recruit_about_side_bg{
    --side-bg-resize: 1.0;
  }
  .recruit_about_side_bg.left{
    transform: translate(50%, -42%);
  }
  .recruit_about_side_bg.right{
    transform: translate(-46%, -41%);
  }

  .recruit_about_head,
  .recruit_about_mv{
    margin-left: 0;
    margin-right: 0;
  }
}

/* メイン */


/* ABOUT */
.recruit_about{
  width: 920px;
  max-width: 100%;
  margin: 0 auto ;
}
.recruit_about_head{
  text-align: center;
  margin-bottom: 40px;
}
.recruit_about_head_ttl{
  
}

.recruit_about_mv{
  --illust-resize: 0.3;
  position: relative;
  z-index: 1;
}
.recruit_about_mv_img{
  border-radius: 180px;
}
.recruit_about_mv_img.img_fit:before{
  padding-top: 39.130%;
}
.recruit_about_mv_illust1,
.recruit_about_mv_illust2{
  position: absolute;
  z-index: 2;
}
.recruit_about_mv_illust1{
  width: calc(181px * var(--illust-resize));
  top: 0;
  right: 0;
  transform: translate(-6%, -53%);
}
.recruit_about_mv_illust2{
  width: calc(78px * var(--illust-resize));
  bottom: 0;
  left: 0;
  transform: translate(34%, 0%);
}

.recruit_about_txt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2.0;
  text-align: center;
}
* + .recruit_about_txt{
  margin-top: 38px;
}
.recruit_about_txt strong{
  display: inline-block;
  font-weight: 500;
  line-height: 1.2;
  background: #FFF;
  padding: 5px 4px;
  margin: 0 5px;
}

/* メニュー */
.recruit_menu_head{
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.recruit_menu_head.mb50{
/*  margin-bottom: 50px;*/
}
.recruit_menu_head:after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -205px;
  right: -205px;
  height: 5px;
  background: #1a1a1a;
}
.recruit_menu_head_en{
  font-size: 26px;
  font-weight: 500;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 3px;
}
.recruit_menu_head_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
}

.recruit_menu{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
.recruit_menu_item{
  width: 100%;
}
.recruit_menu_item_bg{
  background: #84ccc9;
  position: relative;
  z-index: 1;
}
.recruit_menu_item_bg:before{
  content: "";
  display: block;
  padding-top: 60.185%;
}
.recruit_menu_item_num{
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #FFF;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 15px;
}
.recruit_menu_item_ttl{
  position: absolute;
  z-index: 1;
  top: 70px; 
  left: 33px;
  right: 10px;
}
.recruit_menu_item_ttl_txt1{
  width: 320px;
  max-width: 100%;
  font-size: 20px;
  letter-spacing: 0.025em;
  white-space: nowrap;
  padding: 0 15px 4px 15px;
}
* + .recruit_menu_item_ttl_txt1{
  margin-top: 15px;
}
* + .recruit_menu_item_ttl_txt2{
  margin-top: 15px;
}
.recruit_menu_item_ttl_txt2 p{
  font-size: 14px;
  letter-spacing: 0.075em;
  padding: 0 20px 3px 10px;
}

.recruit_menu_item_ttl_txt1,
.recruit_menu_item_ttl_txt2 p{
  display: inline-block;
  font-weight: 700;
  background: #FFF;
}
.recruit_menu_item_illust{
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
}

.recruit_menu_item_detail{
  margin-top: 20px;
  padding: 10px 10px;
  padding-bottom: 25px;
  margin: 0 15px;
  background: #FFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  position: relative;
  z-index: 2;
  border-bottom: 5px solid #181818;
}

.recruit_menu_item_ttl .read_more{
  margin-top: 30px;
}

/* カラバリ */
.recruit_menu_item.color1{
  
}
.recruit_menu_item.color1 .recruit_menu_item_bg{
  background: #84ccc9;
}
.recruit_menu_item.color1 .recruit_menu_item_detail{
  border-color: #84ccc9;
}
.recruit_menu_item.color1 .recruit_menu_item_ttl_txt1,
.recruit_menu_item.color1 .recruit_menu_item_ttl_txt2 p{
  box-shadow: 5px 5px 0 #54a4a1;
}
.recruit_menu_item.color1 .recruit_menu_item_illust{
  width: 59.25%;
  right: -10px;
}
.recruit_menu_item.color2{
  
}
.recruit_menu_item.color2 .recruit_menu_item_bg{
  background: #f29c9f;
}
.recruit_menu_item.color2 .recruit_menu_item_detail{
  border-color: #f29c9f;
}
.recruit_menu_item.color2 .recruit_menu_item_ttl_txt1,
.recruit_menu_item.color2 .recruit_menu_item_ttl_txt2 p{
  box-shadow: 5px 5px 0 #d2696c;
}
.recruit_menu_item.color2 .recruit_menu_item_illust{
  width: 54.81%;
  right: -25px;
}
.recruit_menu_item.color3{
  
}
.recruit_menu_item.color3 .recruit_menu_item_bg{
  background: #8c97cb;
}
.recruit_menu_item.color3 .recruit_menu_item_detail{
  border-color: #8c97cb;
}
.recruit_menu_item.color3 .recruit_menu_item_ttl_txt1,
.recruit_menu_item.color3 .recruit_menu_item_ttl_txt2 p{
  box-shadow: 5px 5px 0 #5767b5;
}
.recruit_menu_item.color3 .recruit_menu_item_illust{
  width: 70.55%;
  right: -8px;
}
.recruit_menu_item.color4{
  
}
.recruit_menu_item.color4 .recruit_menu_item_bg{
  background: #b3d465;
}
.recruit_menu_item.color4 .recruit_menu_item_detail{
  border-color: #b3d465;
}
.recruit_menu_item.color4 .recruit_menu_item_ttl_txt1,
.recruit_menu_item.color4 .recruit_menu_item_ttl_txt2 p{
  box-shadow: 5px 5px 0 #88a349;
}
.recruit_menu_item.color4 .recruit_menu_item_illust{
  width: 67.77%;
  right: 0px;
}

.recruit_menu_item .read_more{
  margin-top: 20px;
}


.recruit_menu_item_illust.career1{
  width: 77.777% !important;
  right: -25px !important;
}
.recruit_menu_item_illust.career2{
  width: 63.497% !important;
  right: -20px !important;
}
.recruit_menu_item_illust.career3{
  width: 58.888% !important;
  right: -25px !important;
}

.recruit_menu.col3 .recruit_menu_item_bg:before{
  padding-top: 66.87%;
}
.recruit_menu.col3 .recruit_menu_item_detail{
  border-bottom: 0;
}
.recruit_menu.col3 + .read_more{
  margin-top: 10px;
}

@media (max-width:413px){
  .recruit_menu_item .read_more{
    margin-top: 10px;
  }
}
@media (min-width:375px){

}
@media (min-width:390px){
  .recruit_about_txt{
    font-size: 16px;
  }
}
@media (min-width:414px){
  .recruit_about_txt{
    font-size: 17px;
  }
}
@media (min-width:430px){
  .recruit_about_txt{
    font-size: 17px;
  }
}
@media (max-width:767px){
  .recruit_menu_item_ttl{
    top: 110px;
  }
  .recruit_menu_item_ttl_txt2 p{
        font-size: 12px;
  }
}
@media (min-width:768px){
  
  
  /* ABOUT */
  .recruit_about{
  }
  .recruit_about_head{
    margin-bottom: 40px;
  }
  .recruit_about_head_ttl{

  }

  .recruit_about_mv{
    --illust-resize: 1.0;
  }
  .recruit_about_mv_img{
    border-radius: 180px;
  }
  .recruit_about_mv_illust1{
    transform: translate(-6%, -53%);
  }
  .recruit_about_mv_illust2{
    transform: translate(34%, 0%);
  }

  .recruit_about_txt{
    font-size: 17px;
    line-height: 2.333;
  }
  * + .recruit_about_txt{
    margin-top: 38px;
  }
  .recruit_about_txt strong{
    padding: 5px 4px;
    margin: 0 5px;
  }

  /* メニュー */
  .recruit_menu_head{
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
  .recruit_menu_head:after{
    left: -205px;
    right: -205px;
    height: 5px;
  }
  .recruit_menu_head_en{
    font-size: 50px;
  }
  .recruit_menu_head_ja{
    font-size: 20px;
  }

  .recruit_menu{
    gap: 40px 20px;
    justify-content: center;
  }
  .recruit_menu_item{
    width: calc((100% - 20px) / 2);
  }
  .recruit_menu_item_bg{
  }
  .recruit_menu_item_num{
    font-size: 50px;
    top: 10px;
    left: 30px;
  }
  .recruit_menu_item_ttl{
    top: 70px; 
    left: 10px;
    right: 10px;
    position: absolute;
    
  }
  .recruit_menu_item_ttl_txt1{
    font-size: 26px;
    padding: 0 15px 4px 15px;
  }
  * + .recruit_menu_item_ttl_txt1{
    margin-top: 15px;
  }
  * + .recruit_menu_item_ttl_txt2{
    margin-top: 15px;
  }
  .recruit_menu_item_ttl_txt2 p{
    font-size: 14px;
    padding: 0 20px 3px 10px;
  }
  
  .recruit_menu_item_ttl .read_more{
    margin-top: 58px;
  }
  
  .recruit_menu_item_detail{
    padding-bottom: 25px;
    font-size: 16px;
  }


}
@media (min-width:1024px){
  
  /* ABOUT */
  .recruit_about{
  }
  .recruit_about_head{
    margin-bottom: 40px;
  }
  .recruit_about_head_ttl{

  }

  .recruit_about_mv{
    --illust-resize: 1.0;
  }
  .recruit_about_mv_img{
    border-radius: 180px;
  }
  .recruit_about_mv_illust1{
    transform: translate(-6%, -53%);
  }
  .recruit_about_mv_illust2{
    transform: translate(34%, 0%);
  }

  .recruit_about_txt{
    font-size: 18px;
    line-height: 2.333;
  }
  * + .recruit_about_txt{
    margin-top: 38px;
  }
  .recruit_about_txt strong{
    padding: 5px 4px;
    margin: 0 5px;
  }

  
  .recruit_menu_head{
    max-width: 1110px;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit_menu_item_detail{
    margin-top: -58px;
    padding: 10px 10px;
    padding: 13px 15px;
    padding-bottom: 25px;
    font-size: 16px;
  }
  
  /* 3column */
  .recruit_menu.col3{
    gap: 80px 30px;
    
  }
  .recruit_menu.col3 .recruit_menu_item{
    width: calc((100% - 60px) / 3);
  }
  .recruit_menu.col3 .recruit_menu_item_detail{
    /*margin-top: -25px;*/
  }
  
  .recruit_menu_item_ttl .read_more{
    margin-top: 45px;
  }
}
@media (min-width:1200px){

  /* メニュー */
  .recruit_menu_head{
    padding-bottom: 30px;
    margin-bottom: 80px;
  }
  .recruit_menu_head.mb50{
    margin-bottom: 50px;
  }
  .recruit_menu_head:after{
    left: -205px;
    right: -205px;
    height: 5px;
  }
  .recruit_menu_head_en{
    font-size: 80px;
  }
  .recruit_menu_head_ja{
    font-size: 24px;
  }

  .recruit_menu{
    gap: 80px 30px;
  }
  .recruit_menu_item{
    width: calc((100% - 30px) / 2);
  }
  .recruit_menu_item_bg{
  }
  .recruit_menu_item_num{
    font-size: 50px;
    top: 10px;
    left: 30px;
  }
  .recruit_menu_item_ttl{
    top: 108px; 
    left: 33px;
    right: 10px;
  }
  .recruit_menu_item_ttl_txt1{
    width: 320px;
    font-size: 36px;
    padding: 0 15px 4px 15px;
  }
  * + .recruit_menu_item_ttl_txt1{
    margin-top: 15px;
  }
  * + .recruit_menu_item_ttl_txt2{
    margin-top: 15px;
  }
  .recruit_menu_item_ttl_txt2 p{
    font-size: 20px;
    padding: 0 10px 3px 10px;
  }
  
  .recruit_menu.col3 .recruit_menu_item_ttl_txt1{
    width: 335px;
  }

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

  .recruit_menu_item_ttl .read_more{
    margin-top: 30px;
  }

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

  .recruit_menu_item_detail{
    margin-left: 65px;
    margin-right: 65px;
  }
  
  .recruit_menu.col3 .recruit_menu_item_detail{
    margin-left: 47px;
    margin-right: 47px;
  }
  
  .recruit_menu_item_ttl_txt2 p{
    font-size: 20px;
    padding: 0 20px 3px 10px;
  }
  .recruit_menu_item_ttl .read_more{
    margin-top: 45px;
  }
}



/*******************************
*　
********************************/
.pg_xxx{
}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}
.pg_xxx .section.sec7{

}
.pg_xxx .section.sec8{

}

/* コンテンツ */
.recruit_contents{
  
}
* + .recruit_contents{
  margin-top: 30px;
}
.recruit_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit_contents_row + .recruit_contents_row{
  margin-top: 50px;
}
.recruit_contents_box1{
  width: 100%;
  margin-top: 40px;
  order: 2;
}
.recruit_contents_box2{
  width: 100%;
  order: 1;
}

.recruit_contents_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.recruit_contents_head_num{
  width: 60px;
}
.recruit_contents_head_ttl{
  width: calc(100% - 60px - 15px);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.4;
  padding-bottom: 6px;
  border-bottom: 5px solid #fff100;
}
.recruit_contents_txt1{
  font-size: 18px;
  font-weight: 700;
  color: #489a0b;
  letter-spacing: 0.075em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.recruit_contents_txt2{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: justify;
}
.recruit_contents_img{
  width: 540px;
  max-width: 100%;
  box-shadow: 10px 10px 0 #81d742;
}
.recruit_contents_img.img_fit:before{
  padding-top: 70.370%;
}


@media (max-width:767px){

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

  
  /* コンテンツ */
  .recruit_contents_row + .recruit_contents_row{
    margin-top: 70px;
  }
  .recruit_contents_head{
    margin-bottom: 28px;
  }
  .recruit_contents_head_num{
    width: 80px;
  }
  .recruit_contents_head_ttl{
    width: calc(100% - 80px - 28px);
    font-size: 26px;
  }
  .recruit_contents_txt1{
    font-size: 20px;
    margin-bottom: 12px;
  }
  .recruit_contents_txt2{
    font-size: 16px;
    line-height: 2.25;
  }
  
  .recruit_contents_img{
    margin: 0 auto;
  }

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

  /* コンテンツ */
  .recruit_contents{

  }
  * + .recruit_contents{
    margin-top: 50px;
  }
  .recruit_contents_row{
  }
  .recruit_contents_row + .recruit_contents_row{
    margin-top: 70px;
  }
  .recruit_contents_box1{
    width: 44.73%;
    margin-top: 0;
  }
  .recruit_contents_box2{
    width: 49.67%;
  }

  .recruit_contents_head{
    margin-bottom: 20px;
  }
  .recruit_contents_head_num{
    width: 70px;
  }
  .recruit_contents_head_ttl{
    width: calc(100% - 70px - 20px);
    font-size: 24px;
  }
  .recruit_contents_txt1{
    font-size: 21px;
    margin-bottom: 12px;
  }
  .recruit_contents_txt2{
    font-size: 16px;
    line-height: 1.875;
  }
  .recruit_contents_img{
    margin: 0 ;
  }

  .recruit_contents_row:nth-child(odd) .recruit_contents_box1{
    order: 1;
  }
  .recruit_contents_row:nth-child(odd) .recruit_contents_box2{
    order: 2;
  }
  .recruit_contents_row:nth-child(odd) .recruit_contents_img{
    margin-right: auto;
    box-shadow: 10px 10px 0 #81d742;
  }
  .recruit_contents_row:nth-child(even) .recruit_contents_box1{
    order: 2;
  }
  .recruit_contents_row:nth-child(even) .recruit_contents_box2{
    order: 1;
  }
  .recruit_contents_row:nth-child(even) .recruit_contents_img{
    margin-left: auto;
    box-shadow: -10px 10px 0 #81d742;
  }

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


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

  /* コンテンツ */
  .recruit_contents{

  }
  * + .recruit_contents{
    margin-top: 50px;
  }
  .recruit_contents_row{
  }
  .recruit_contents_row + .recruit_contents_row{
    margin-top: 70px;
  }
  .recruit_contents_box1{
    width: 44.73%;
    margin-top: 0;
  }
  .recruit_contents_box2{
    width: 49.67%;
  }

  .recruit_contents_head{
    margin-bottom: 28px;
  }
  .recruit_contents_head_num{
    width: 100px;
  }
  .recruit_contents_head_ttl{
    width: calc(100% - 100px - 28px);
    font-size: 30px;
  }
  .recruit_contents_txt1{
    font-size: 21px;
    margin-bottom: 12px;
  }
  .recruit_contents_txt2{
    font-size: 16px;
    line-height: 2.25;
  }
  
  .recruit_contents + .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1720px){

  /* コンテンツ */
  .recruit_contents_head{
    margin-bottom: 28px;
  }
  .recruit_contents_head_num{
    width: 120px;
  }
  .recruit_contents_head_ttl{
    width: calc(100% - 120px - 28px);
    font-size: 38px;
  }
  
  .recruit_contents + .read_more{
    margin-top: 90px;
  }
}



/*******************************
*　
********************************/
.body_work-place{
  background-color: #89c997;
}
.body_work-place .footre{
  margin-top: 0;
}
.pg_place{
  
}
.pg_place .section:not(.sec1){
  background-color: #FFF;
}
.pg_place .section.sec1{
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_place .section.sec2{
  padding-top: 75px;
  position: relative;
  z-index: 1;
}

.pg_place .section.sec2:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 50;
  background-image: url(/system_panel/uploads/images/bbt.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.pg_place .section.sec3{
  padding-top: 10px;
  /*position: relative;*/
  /*z-index: 2;*/
}
.pg_place .section.sec3 .container{
  position: relative;
  z-index: 2;
}
.pg_place .section.sec4{
  padding-top: 0;
  padding-bottom: 50px;
  /*position: relative;*/
  /*z-index: 2;*/
}
.pg_place .section.sec4 .container{
  position: relative;
  z-index: 2;
}

.place_body_bg1,
.place_body_bg2{
  position: absolute;
  z-index: -1;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.place_body_bg1{
  width: calc(345px * var(--body-bg-resize));
  aspect-ratio: 345 / 3206;
  background-image: 
    url(/system_panel/uploads/images/place_body_bg1.png);
  background-position: left top;
  top: 80%;
  left: 0;
}
.place_body_bg2{
  width: calc(333px * var(--body-bg-resize));
  aspect-ratio: 333 / 2828;
  background-image: 
    url(/system_panel/uploads/images/place_body_bg2.png);
  background-position: left top;
  top: 54%;
  right: 0;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .recruit_menu_item_ttl_txt1{
    width: auto;
  }
}
@media (min-width:768px){

  .pg_place{
  }
  .pg_place .section.sec1{
    padding-top: 75px;
    padding-bottom: 145px;
  }
  .pg_place .section.sec2{
    padding-top: 145px;
  }
  .pg_place .section.sec3{
    padding-top: 60px;
  }
  .pg_place .section.sec4{
    padding-top: 50px;
  }
  
  .pg_place .section.sec2 .recruit_menu_head{
    margin-bottom: 100px;
  }
  
  .place_body_bg1{
    top: 80%;
  }
  .place_body_bg2{
    top: 54%;
  }

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


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


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

  .pg_place{
  }
  .pg_place .section.sec1{
    padding-top: 75px;
    padding-bottom: 145px;
  }
  .pg_place .section.sec2{
    padding-top: 145px;
  }
  .pg_place .section.sec3{
    padding-top: 60px;
  }
  .pg_place .section.sec4{
    padding-bottom: 150px;
  }

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


}


/* 福利厚生 */
.place_befit{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}
.place_befit_item{
  width: calc((100% - 10px) / 2);
}

.benefit_head_illust{
  width: 55px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(-39%, -62%);
}

@media (min-width:768px){
  
  /* 福利厚生 */
  .place_befit{
    gap: 10px;
  }
  .place_befit_item{
    width: calc((100% - 40px) / 5);
  }
  .benefit_head_illust{
    width: 105px;
    transform: translate(-39%, -42%);
  }
  

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

  /* 福利厚生 */
  .place_befit{
    gap: 20px 20px;
  }
  .place_befit_item{
    width: calc((100% - 80px) / 5);
  }
  .benefit_head_illust{
    width: 140px;
    transform: translate(-39%, -55%);
  }
}
@media (min-width:1200px){


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

  .benefit_head_illust{
    width: 201px;
    transform: translate(-39%, -62%);
  }

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


}