@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: "Shippori Mincho B1", 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;
}


body{

}

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: inherit;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

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

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

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

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


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo{
    width: 65px;
    display: block;
  }

  .hdr_link{
    display: none;
  }
  .hdr_contact_btn{
    display: none;
  }

  .gnav_item_en{
    display: none!important;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 16px 16px;
  }
  .hdr_logo {
    position: relative;
    top: 10px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    width: 75px;
    /*height: var(--logo-height);*/
  }

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

  }
  .header.slim .hdr_logo img{
    width: 112px;
    width: auto;
    height: calc(var(--logo-height) * 0.87);
  }

  /* TELボタン */
  .hdr_tel{

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

  /*ボタン*/
  .hdr_link{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    height: 50px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 258px;
    background: #fff;
    color: #32333d;
    /* border-radius: 27px; */
    padding: 0 10px;
    ;
    margin: 5px 5px;
    position: relative;
    z-index: 1;
    transition: 0.2s all;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  }
  .hdr_link:hover{
    transform: scale(1.02);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.3);
  }
  .hdr_link p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
  }
  .hdr_link.bg_bl{
    color: #fff;
    border: 1px solid #fff;
    background: linear-gradient(180deg,rgba(32, 183, 236, 1) 2%, rgba(49, 88, 163, 1) 100%);
  }
  .hdr_link p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 11px;
  }

  /* お問い合わせ */
  .hdr_contact_btn {
    display: block;
    width: 154px;
    background: var(--sub-color);
    color: #fff !important;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-ja);
    font-weight: 500;
    padding: 24px 0;
    border: 1px solid transparent;
  }
  .hdr_contact_btn p{
    letter-spacing: 0.075em;
  }
  .hdr_contact_btn p:before {
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 8px;
    color: #fff;
  }
  .hdr_contact_btn.recruit {
    background: var(--main-color);
    margin-left: 20px;
  }
  .hdr_contact_btn.recruit p:before {
    content: "\f0c0";
    font-family: "fontAwesome";
    margin-right: 8px;
    color: #fff;
  }

  .gnav_item_en{
    font-size: 1.2em;
    letter-spacing: 0;
    border-bottom: 1px solid #181818;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
    padding: 0px 0px 34px 30px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  /* お問い合わせ */
  .hdr_contact_btn {
    width: 184px;
    font-size: 16px;
    padding: 24px 0;
  }
  .hdr_contact_btn p:before {
    margin-right: 8px;
  }
  .hdr_contact_btn.recruit {
    margin-left: 20px;
  }
  .hdr_contact_btn.recruit p:before {
    margin-right: 8px;
  }
}
@media (min-width:1200px){

  .header{
    --logo-height: 129px;
  }
  /* ロゴ */
  .hdr_logo{
    position: relative;
    top: 15px;
  }
  .hdr_logo img{
    width: 112px;
  }

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

  }
  .header.slim .hdr_logo img{
  }

}

@media (min-width:1720px){
  /* ロゴ */
  .hdr_logo{
    position: relative;
    top: 30px;
  }
  .hdr_logo img{
    width: 132px;
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  /*overflow: hidden;*/
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

.mv_img_boxs{

}
.mv_img_box1{

}
.mv_img_box1_img{

}
.mv_img_box2{

}
.mv_img_box2_img{

}
.mask_img img {
  width: 100%;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
}
.mv_img_box2_img img {
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
  aspect-ratio: 309 / 245;
}


/* スライド */
.mv_slides_clip{
  margin-left: 370px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.mv_slides{
  display: flex;
  margin-left: -185px;
  position: relative;
  z-index: 1;
}
.mv_slides .swiper-slide{
  width: 920px;
}
.mv_slides_item{
  width: 100%;
  padding: 0 10px;
}
.mv_slides_img{
  border-radius: 20px;
}
.mv_slides_img.img_fit:before{
  padding-top: 83.333%;
}

.gjs-dashed .mv_slides{
  margin-left: 0;
}

/* キャッチコピー */
.mv_txt_wrap{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 95px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_txt1{

}
.mv_txt1_line{
  display: flex;
}
.mv_txt1_line + .mv_txt1_line{
  margin-top: 26px;
}
.mv_txt1_line p{
  font-size: 120px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 0.9;
  background: #f3f3f6;
  color: #32333d;
  border-radius: 5px;
  padding: 12px 15px 0px 15px;
}

.mv_txt2{

}
* + .mv_txt2{
  margin-top: 60px;
}
.mv_txt2_line{
  display: flex;
}
.mv_txt2_line + .mv_txt2_line{
  margin-top: 10px;
}
.mv_txt2_line_txt{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  background: #f3f3f6;
  color: #32333d;
  border-radius: 5px;
  padding: 5px 0px 7px 15px;
}

/* SCROLL DOWN */
.mv_scr_down{
  width: 180px;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 1;
  left: 120px;
  bottom: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.mv_scr_down:before{
  content: "";
  width: 17px;
  aspect-ratio: 17 / 25;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url('https://sit-9533296.sibloo.com/system_panel/uploads/images/scroll_down_arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.mv_scr_down:after{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url('https://sit-9533296.sibloo.com/system_panel/uploads/images/scroll_down.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: rotateCircle 10s linear infinite;
}

.mv_inner{
  position: relative;
}
.mv_inner:after{
  content: "";
  display: block;
  width: 35.62%;
  ;
  ;
  aspect-ratio:684 / 788;
  background-image: url(/system_panel/uploads/images/kikai1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -17%;
  right: 2.1%;
}
.mv_box1{
  width: 100%;

}

.mv_box1_inner{
  width: 57.23%;
  position: relative;
  padding-top: 80px;
}
.mv_box1_inner:before{
  content: "";
  display: block;
  width: 1070px;
  ;
  aspect-ratio:1070 / 1648;
  background-image: url(/system_panel/uploads/images/mask_img1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.mv_box1_txt{
  font-family: "Shippori Mincho B1", serif;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 1), 2px 2px 5px rgba(255, 255, 255, 1), 2px 2px 5px rgba(255, 255, 255, 1), 2px 2px 1px rgba(255, 255, 255, 1);
  position: relative;
  z-index: 2;
}
.mv_box1_txt1{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.05em;

}
.mv_box1_txt2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing:0.075em;
  margin-top: 16px;
}
.mv_box1_txt3{
  font-size: 20px;
  font-weight: 400;
  letter-spacing:0.075em;
  margin-top: 16px;
}
.mv_box2{
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 1545 / 1225;
  margin-top: 30px;
  ;
}
.mv_box2_inner{
  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/mvmask.png);
}
.mv_box2_img{

}



/* 回転アニメーション */
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/**/
.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:767px){
  .mv_box1{
    position: relative;
    z-index: 1;
  }
  .mv_box1_inner{
    width: 100%;
  }
  .mv_box1_inner:before{
    width: 800px;
    right: 30px;
  }
}
@media (min-width:768px){

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

  .mv_inner{

  }
  .mv_box1{
    width: 100%;
    position: absolute;
    top: 40px;
    left: 50%;
    transform:translateX(-50%);
    z-index: 2;
  }
  .mv_box1_inner{
    width: 54.23%;
    padding-top:75px;
  }
  .mv_box1_inner:before{
    content: "";
    display: block;
    width: 122.98%;
    ;
  }
  .mv_box1_txt{

  }
  .mv_box1_txt1{
    font-size: 32px;
  }
  .mv_box1_txt2{
    font-size: 18px;
    margin-top: 35px;
  }
  .mv_box1_txt3{
    font-size: 28px;
    margin-top: 29px;
  }
  .mv_box2{
    width: 90.88%;
    margin-top: 0;
  }
  .mv_box2_inner{

  }
  .mv_box2_img{

  }

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


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

  .mv_inner{

  }
  .mv_box1{
    top: 60px;
  }
  .mv_box1_inner{
    width: 57.23%;
    padding-top: 100px;
  }
  .mv_box1_inner:before{
    content: "";
    display: block;
    width: 122.98%;
    ;
  }
  .mv_box1_txt{

  }
  .mv_box1_txt1{
    font-size: 32px;
  }
  .mv_box1_txt2{
    font-size: 20px;
  }
  .mv_box1_txt3{
    font-size: 28px;
  }
  .mv_box2{
    width: 80.88%;
  }
  .mv_box2_inner{

  }
  .mv_box2_img{

  }

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

  body{
    padding-top: 0;
  }

  .mv_inner{

  }
  .mv_box1{
    top: 106px;
  }
  .mv_box1_inner{
    padding-top: 100px;
  }
  .mv_box1_inner:before{
    content: "";
    display: block;
    width: 122.98%;
    ;
  }
  .mv_box1_txt{

  }
  .mv_box1_txt1{
    font-size: 40px;
  }
  .mv_box1_txt2{
    font-size: 24px;
  }
  .mv_box1_txt3{
    font-size: 36px;
  }
  .mv_box2{
    width: 80.88%;
  }
  .mv_box2_inner{

  }
  .mv_box2_img{

  }
}
@media (min-width:1366px){
  .mv_box1_inner:before{
    content: "";
    display: block;
    width: 122.98%;
    ;
  }
}
@media (min-width:1470px){
  .mv_box1_inner{
    padding-top: 201px;
  }
  .mv_box1_txt1{
    font-size: 40px;
  }
  .mv_box1_txt2{
    font-size: 24px;
  }
  .mv_box1_txt3{
    font-size: 36px;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){
  .mv_box1_txt1{
    font-size: 54px;
  }
  .mv_box1_txt2{
    font-size: 28px;
  }
  .mv_box1_txt3{
    font-size: 48px;
  }
}

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

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

  position: absolute;
  top: 90px;
  right: 0;
  left: 0;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
  width: 90.89%;
  margin-left: auto;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 0px;
  height: 100%;
}
/*.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: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_ja{
  font-size: 22px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.5;
  position: relative;
}
.pg_header_title_ja:after{
  content: "";
  display: block;
  width: 135px;
  height: 1px;
  background: #000;
  margin-top: 9px;
  margin-bottom: 17px;
}
.pg_header_title_en{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}


.pg_header_mv_img img {
  -webkit-mask-image: url(/system_panel/uploads/images/about_mask1.png);
  aspect-ratio: 1515 / 581;
}



@media (min-width:768px){
  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 84.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 55%;
    left: 35px;
  }
  .pg_header_title_ja{
    font-size: 30px;
  }
  .pg_header_title_ja:after{
    width: 180px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 20px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    left: 25px;
  }
  .pg_header_title_ja{
    font-size: 30px;
  }
  .pg_header_title_ja:after{
    width: 190px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 22px;
  }

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

  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    left: 60px;
  }
  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_ja:after{
    width: 205px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 24px;
  }
}

@media (min-width:1470px){

  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    left: 70px;
  }
  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_ja:after{
    width: 205px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 24px;
  }
}

@media (min-width:1720px){

  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    top: 49%;
    left: 195px;
  }
  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_ja:after{
    width: 205px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 24px;
  }
}

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

.footer{
  margin-top: 50px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #002e73;
  padding: 7px;
  margin-top: 40px;
}
.ftr_copy p{
  letter-spacing: 0;
}

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

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

.ftr_contact_wrap{
  background: #002e73;
  padding-bottom: 30px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1{
  width: 100%;
  color: #fff;
  padding-top: 40px;
}
.ftr_contact_box1_tt{

}
.ftr_contact_box1_tt1.home_sec2_slide_tt2{
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.ftr_contact_box1_tt2.tt2_ja{
  font-size: 16px;
  letter-spacing: 0;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  line-height: 2.125em;
  margin-top: 37px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  padding: 17px 25px;
  margin-inline:auto;
  transition: all .2s;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0.075em;
}
.link_0.line p:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.link_0.mail p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  font-size: 20px;
  margin-right: 5px;
}
.link_0.item1:hover{
  background:var(--sub-color);
  color: #fff;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;

}
.link_0.item1:hover{
  border: 1px solid #fff;
}
.link_0.line:hover{
  background: #06C755;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background: var(--main-color);
}

.link_0.item1{
  background: #fff;
  border: 1px solid transparent;
  color: #181818;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #183663;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #183663;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  color: #fff;
  padding: 12px 13px 12px 25px;
}
.link_0.item2:hover{
  background: #fff;
  color: #000;
}
.link_0.item2:hover{
  color: var(--sub-color);
}
.link_0 + .link_0{
  margin-top: 19px;
}
.link_0 .tel{
  font-size: 20px;
  font-weight: 600;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 40px;
}
.ftr_contact_box2_inner{

}
.ftr_contact_box2_img:before{
  padding-top: 81.01%;
  padding-top: 636px;
}


.ftr_1{
  background: #fff;
  padding-top: 65px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 50px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  letter-spacing: 0.025em;
  position: relative
}
.ftr_add_txt.left:after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_txt.left{
  position: relative;
  padding-right: 9px;
  margin-right: 19px;
}
.ftr_add_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.link_num:hover,
.ftr_add_txt a:hover,
.ftr_link:hover{
  color: var(--main-color);
}

.ftr_1 a:hover{
  color: var(--sub-color);
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }

  .ftr_add_item{
    width: 185px;
    margin-inline: auto;
  }

  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
  }

  .ftr_contact_box2_img:before{
    padding-top: 250px;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding-top: 54px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{

  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

    margin-top: 41px;
  }
  .link_0{

  }
  .link_0.line,
  .link_0.mail{
    font-size: 24px;
  }
  .link_0 .tel{
    font-size: 28px;
  }
  .ftr_contact_box2{
    margin-top: 60px;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_img:before{

  }

  .ftr_1{
    padding-top: 155px;
  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 48.23%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_1_box2{
    width: 50%;
  }
  .ftr_links {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -40px;
    position: relative;
  }
  .ftr_link {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 40px;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 20px;
    ;
  }

  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/arrr2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .ftr_copy{
    margin-top: 75px;
  }
  .ftr_copy a:hover{
    opacity: 0.5;
    color: #fff;
  }

}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }
  .body_home .footer{
    margin-top: 310px;
  }


  .ftr_1_box1{
    width: 36.51%;
  }
  .ftr_1_box2{
    width: 50.53%;
  }
  .ftr_link {
    width: 50%;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }

  .ftr_copy{
    margin-top: 147px;
  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{
    padding: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 61.51%;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

  }
  .link_0{
    max-width: 585px;
    margin-left: 0;
  }
  .link_0 .tel{
    font-size: 32px;
  }
  .link_0.item1{
    font-size: 24px;
  }
  .link_0.item2{
    font-size: 20px;
  }
  .ftr_contact_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .ftr_contact_box2_inner{
    /*    margin-right: var(--margin-for-device-side-w);*/
    margin-right: calc(960px - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .ftr_contact_box2_img:before{
    padding-top: 636px;
  }

  .ftr_1_box2{
    width: 63.22%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 23px;
    padding-top: 160px;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    width: 33.333%;
    padding-inline: 40px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 25px;
  }
  .ftr_link p:after {
    width: 100%;
  }
}
@media (min-width:1366px){
  .ftr_1_box2{
    width: 58.22%;
  }
}

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


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  display: block;
  width:332px;
  height: auto;
  overflow: visible;
  color: #fff;
  background: linear-gradient(90deg, #1f4f7a, #8a6f7f, #1f4f7a);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 0.5s ease;
  border-bottom: none;
  padding: 9px 0;
}
.read_more a:hover {
  background-position: 100% 0;
}
/* 右上カット */
.read_more a::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  ;
  width: 17px;
  height: 105%;
  background: #fff;
  clip-path: polygon(98% 0, 0 0, 100% 100%);
  z-index: 1;
}

.read_more.bg_gr a::before{
  background:#f6f6f6;
}
.read_more.bg_gr a::after{
  background:#f6f6f6;
}

/* 左下カット */
.read_more a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 17px;
  height: 105%;
  background: #fff;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  z-index: 1;
}

/* 斜線（pに持たせる） */
.read_more a p {
  position: relative;
  z-index: 1;
  letter-spacing: 0.075em;
  padding-left: 57px;
}

/* 斜線（pの疑似要素で生成） */
.read_more a p::before {
  content: "";
  position: absolute;
  top: -34%;
  left: 23px;
  width: 2px;
  height: 190%;
  background: #fff;
  opacity: 0.7;

  transform: skewX(23deg);

  box-shadow: 16px 0 0 rgba(255,255,255,1);

  z-index: -1;
}
.read_more a p:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -23px;
  left: 0;
}


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


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

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

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

}


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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{

  }
  .read_more a:after{

  }

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

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


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

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

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

}
@media (min-width:1200px){
  .home_sec3_wrap .read_more.bg_gr a::after{
    background: #e0e0e0
  }
  .home_sec3_wrap .read_more.bg_gr a::before{
    background: #f1f1f1;
  }

}


@media (min-width:1366px){

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

}

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



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

}
.pg_home .section.sec1{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec2{
  background: #396e95;
  position: relative;
  padding-bottom: 53px;
}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  width: 21.777%;
  aspect-ratio:418 / 437;
  background-image: url(/system_panel/uploads/images/il1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 906px);
}
.pg_home .section.sec3{
  padding-top: 0;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 78.95%;
  ;
  aspect-ratio:1516 / 780;
  background-image: url(/system_panel/uploads/images/13.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z
  -1;
}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{
  overflow: hidden;
  padding-top: 0;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}


/*台形*/
.daikei{

}
.trg1{
  position: relative;
}
.trg1:before{
  content: "";
  display: block;
  width: 1639px;
  aspect-ratio:1639 / 1271;
  background-image: url(/system_panel/uploads/images/daikei1.png);
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -127px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

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

  .pg_home .section.sec1{
    padding-bottom: 124px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 116px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{

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

  }
  .pg_home .section.sec8{

  }


  .trg1:before{
    content: "";
    display: block;
    width: 1639px;
    top: -127px;
    left: 50%;

  }


}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-bottom: 124px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 116px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 180px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec6{
    padding-top: 0;
    padding-bottom: 200px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  .trg1:before{
    content: "";
    display: block;
    width: 1639px;
    top: -127px;
    left: 50%;
  }

}
@media (min-width:1200px){
  .trg1:before{
    content: "";
    display: block;
    width: 1639px;
    top: -127px;
    left: 1000px;
  }

  .pg_home .section.sec1{
    padding-bottom: 124px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 116px;
    padding-bottom: 180px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 250px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec6{
    padding-top: 0;
    padding-bottom: 283px;
  }
}
@media (min-width:1470px){
  .trg1:before{
    content: "";
    display: block;
    width: 1639px;
    top: -127px;
    left: 1200px;
  }
}
@media (min-width:1720px){


}

/*main*/
.naname_tt{
  font-size: 24px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 30px;
  ;
}
.naname_tt:before{
  content: "";
  display: block;
  width: 10000px;
  height: 1px;
  background: #396e95;
  /*  left: 50%;
    transform: translateX(-50%);*/
}
.naname_tt p{
  letter-spacing: 0.075em;
  padding-top: 13px;
}

.naname_tt.left{
  left: 0;
}
.naname_tt.left p{
  text-align: left;
}
/*.naname_tt.right{
transform: rotate(62deg);
    transform-origin: top right;
    right: 0;
}
.naname_tt.right p{
  text-align: right;
}*/

/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec1_box1_inner{

}
.home_sec1_box1_img_inside{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 887 / 854;
}
.home_sec1_box1_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/home_mask1.png);
}
.home_sec1_box2{
  width: 100%;
  order: 1;
  padding-top: 60px;
}
.en_tt{
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
}
.sec_tt{
  font-size: 22px;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.38em;
}
.sec_tt p{
  letter-spacing: 0.075em;
}
.home_sec1_box2 .sec_tt{
  margin-top: 12px;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
}
.home_sec1_box2 .content_desc{
  margin-top: 17px;
}


/*sec2*/
.home_sec2_wrap{

}
.home_sec2_tt{
  text-align:center;
  font-size: 18px;
  font-weight: 500;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.075em;
  color: #fff;
}
.home_sec2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item:nth-child(n+2){
  margin-top: 20px;
}
.home_sec2_item_inner{
  background: #e9e9e9;
  font-size: 16px;
  font-weight: 500;
  padding: 21px 7px;
  position: relative
}
.home_sec2_item_inner:after{
  content: "";
  display:block;
  width:97.777%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 5px;
  ;
  left: 50%;
  transform:translateX(-50%);
}
.home_sec2_item_inner p{
  letter-spacing: 0;
  position: relative;
  padding-left: 56px;
}
.home_sec2_item_inner p:before{
  content: "";
  display: block;
  width: 45px;
  aspect-ratio:45 / 40;
  background-image: url(/system_panel/uploads/images/mark1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -5px;
}
.home_sec2_wrap .content_desc{
  color: #fff;
  margin-top: 20px;
}

/*sec3*/
.mask{
  width: 65.51%;
  aspect-ratio:684 / 625;
  background-image: url(/system_panel/uploads/images/mask11.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -31.2%;
  left: 0;
  z-index: 1;
}
.home_sec3_wrap .home_sec3_head_box1 .mask{
  bottom: -25.2%;
}
.home_sec3_wrap{
  position: relative;
}
.home_sec3_head{
  display: flex;
  flex-wrap: wrap;
}
.home_sec3_head_box1{
  width: 100%;
}
.home_sec3_head_box1_inner{
  position: relative;
}
.home_sec3_head_box1_img_inside{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 1040 / 740;
}
.home_sec3_head_box1_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/14.png);
}
.home_sec3_head_box2{
  width: 100%;
  margin-top: 100px;
}
.home_sec3_head_box2_tt{
  font-size: 17px;
  font-weight: 700;
  background: #192a43;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 3px 52px;
  margin-bottom: 7px;
}
.home_sec3_head_box2 .sec_tt{

}
.home_sec3_head_box2 .content_desc{
  margin-top: 27px;
}
/*.home_sec3_wrap .naname_tt.right{
  right: 159px;
  top: 146px;
}
.home_sec3_wrap .naname_tt.right:before{
  position: absolute;
}*/

.home_sec3_main{
  margin-top: 30px;
}
.home_sec3_main_items{
  display: flex;
  flex-wrap: wrap;

}
.home_sec3_main_item{

}
.home_sec3_main_item:nth-child(n+2){
  margin-top: 50px;
  ;
}
.home_sec3_main_item_inner{

}
.home_sec3_main_item_img_outer{

}

.home_sec3_main_item_img_inside{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 747 / 273;
}
.home_sec3_main_item_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/mask23.png);
}
.home_sec3_main_item .home_sec3_head_box2_tt{
  margin-bottom: 0;
  position: relative;
  top: -20px;
}
.sec_tt.sm{

}
.home_sec3_main_item .sec_tt{
  position: relative;
}
.home_sec3_main_item .sec_tt:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #326f9d;
  position: absolute;
  right: 5px;
  top: 16px;
  transform: rotate(60deg);
  transform-origin: right bottom;

}
.home_sec3_main_item .content_desc{
  line-height: 1.875em;
  margin-top: 13px;
  padding-right: 30px;
}
.home_sec3_main_item .read_more{

}

/*sec4*/
.home_sec4_wrap{
  position: relative
}
.home_sec4_wrap:after{
  content: "";
  display: block;
  width: 1910px;
  ;
  ;
  aspect-ratio:1910 / 780;
  background-image: url(/system_panel/uploads/images/bg3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -95px;
  left: 0;
  z-index: -1;
}
.home_sec4_wrap .naname_tt.left{

}
.home_sec4_wrap .naname_tt.left p{

}
.home_sec4_box{

}
.home_sec4_box_head{

}
.home_sec4_box_head .sec_tt{

}
.home_sec4_box_head .sec_tt p{
  letter-spacing: 0;
}
.home_sec4_box_head .content_desc{
  line-height: 1.875em;
  margin-top: 11px;
}
.home_sec4_wrap .works_list{
  margin-top: 53px;
}
.home_sec4_wrap .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.home_sec4_wrap .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.home_sec4_wrap .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.home_sec4_wrap .webgene-item a{

}
.home_sec4_wrap .webgene-item .img:before{
  padding-top: 74.19%;
}
.home_sec4_wrap .webgene-item .box1{
  position: relative
}
.home_sec4_wrap .webgene-item .box2{
  margin-top: 12px;
}
.home_sec4_wrap .webgene-item .category{
  display: inline-block;
  background: #192a43;
  padding: 3px 5px;
  font-size: 12px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.home_sec4_wrap .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

/*sec5*/
.home_sec5_wrap{

}
.sec_tt_en{
  font-size: 30px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  position: relative;
  padding-left: 38px;
  margin-bottom: 30px;
}
.sec_tt_en:before{
  content: "";
  display: block;
  width: 275px;
  width: 18.09%;
  aspect-ratio:275 / 407;
  background-image: url(/system_panel/uploads/images/as.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news_list{

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

}
.news_list .webgene-item .img:before{
  padding-top: 80%;
}
.news_list .webgene-item .box2{
  margin-top: 16px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
}

/*sec6*/
.mask.recruit{
  background-image: url(/system_panel/uploads/images/maaaa4.png);
  aspect-ratio:504 / 527;
  width: 50.45%;
  bottom: -5.61%;
  left: -0.5%;
}
.home_sec6_wrap{

}
.home_sec3_wrap.home_sec6_wrap{

}
.home_sec6_wrap .home_sec3_head_box1_img{
  aspect-ratio: 999 / 689;
}
.home_sec6_wrap .home_sec3_head_box1_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/mas2.png);
}

/*insta*/
.home_sec7_wrap .sec_tt{
  margin-bottom: 46px;
}
.insta_list{

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

}
.insta_list .webgene-item .img:before{
  padding-top: 132.17%;
}
.insta_list video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

.home_sec3_main_item_img img{
  width: 100%;
}
@media (max-width:374px){

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

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


  .naname_tt{
    position: relative;
  }
  .naname_tt:before{
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
  }
  .home_sec3_head_box2_tt{
    padding: 3px 20px;
  }


  .home_sec6_wrap .home_sec3_head_box2{
    margin-top: 44px;
  }

  .home_sec4_wrap:after{
    width: 2000px;
    top: -114px;
    left: -43px;
  }
}
@media (min-width:768px){
  /*main*/
  .naname_tt{
    font-size: 30px;
    position: absolute;
    top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .naname_tt:before{
    content: "";
    display: block;
    width: 10000px;
    height: 1px;
    background: #396e95;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }
  .naname_tt p{
    letter-spacing: 0.075em;
    padding-top: 13px;
  }

  .naname_tt.left{
    left: 0;
  }
  .naname_tt.left p{
    text-align: left;
  }
  .naname_tt.right{
    transform: rotate(62deg);
    transform-origin: top right;
    right: 0;
  }
  .naname_tt.right p{
    text-align: right;
  }

  .naname_tt.left{
    transform: rotate(-62deg);
    transform-origin: top left;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{

    margin-top: 40px;

  }
  .home_sec1_box1_inner{

  }
  .home_sec1_box1_img{

  }
  .home_sec1_box2{
    width: 70%;
    margin-left: auto;
    padding-top: 80px;
  }
  .en_tt{
    font-size: 24px;
  }
  .sec_tt{
    font-size:36px;
  }
  .home_sec1_box2 .sec_tt{

  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }
  .home_sec1_box2 .read_more{
    margin-top: 49px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_tt{
    font-size: 28px;
  }
  .home_sec2_items{
    margin-top: 51px;
  }

  .home_sec2_item_inner{
    font-size: 18px;
    padding: 17px 7px;
  }
  .home_sec2_item_inner p{

  }
  .home_sec2_item_inner p:before{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_head{

  }
  .home_sec3_head_box1{

  }
  .home_sec3_head_box1_inner{

  }
  .home_sec3_head_box1_img{

  }
  .home_sec3_head_box2{
    margin-top: 180px;
  }
  .home_sec3_head_box2_tt{
    font-size: 18px;
  }
  .home_sec3_head_box2 .sec_tt{

  }
  .home_sec3_head_box2 .content_desc{

  }
  .home_sec3_head_box2 .read_more{
    margin-top: 51px;
  }
  .home_sec3_wrap .naname_tt.right{
    right: 159px;
    top: 146px;
  }
  .home_sec3_wrap .naname_tt.right:before{
    position: absolute;
  }
  .home_sec3_wrap .naname_tt.right {
    right: 50px;
    top: 146px;
  }

  .home_sec3_main{

  }
  .home_sec3_main_items{

  }
  .home_sec3_main_item{

  }
  .home_sec3_main_item_inner{

  }
  .home_sec3_main_item_img_outer{

  }
  .home_sec3_main_item_img{

  }
  .home_sec3_main_item_img img{

  }
  .home_sec3_main_item .home_sec3_head_box2_tt{

  }
  .sec_tt.sm{
    font-size: 28px;
  }
  .home_sec3_main_item .sec_tt{

  }
  .home_sec3_main_item .sec_tt:after{
    width: 250px;
    right: -6px;
    top: 147px;
  }
  .home_sec3_main_item .content_desc{
    padding-right: 95px;
  }
  .home_sec3_main_item .read_more{

  }

  /*sec4*/
  .home_sec4_wrap{
    display: flex;
    justify-content: flex-end;
  }
  .home_sec4_wrap:after{
    width: 1910px;
    ;
    ;
    top: -50px;
    ;
  }
  .home_sec4_wrap .naname_tt.left{

  }
  .home_sec4_wrap .naname_tt.left p{

  }
  .home_sec4_box{
    width: 86.51%;
  }
  .home_sec4_box_head{
    padding-left: 120px;
  }
  .home_sec4_box_head .sec_tt{

  }
  .home_sec4_box_head .content_desc{

  }
  .home_sec4_wrap .works_list{

  }
  .home_sec4_wrap .webgene-blog{
    margin-inline:-12.5px;
  }
  .home_sec4_wrap .webgene-item{
    width: 50%;
    padding-inline:12.5px;
  }
  .home_sec4_wrap .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_sec4_wrap .webgene-item a{

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

  }
  .home_sec4_wrap .webgene-item .box1{

  }
  .home_sec4_wrap .webgene-item .box2{

  }
  .home_sec4_wrap .webgene-item .category{
    font-size: 13px;
    padding: 6px 10px;
  }
  .home_sec4_wrap .webgene-item .title{

  }
  .home_sec4_wrap .naname_tt.left{
    top: 106px;
    left: 91px;
  }
  .naname_tt.left:before{
    position: absolute;
    left: auto;
    right: 0;
    transform: none;
  }
  .home_sec4_wrap .read_more{
    margin-top: 65px;
  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .sec_tt_en{
    font-size: 40px;
    margin-bottom: 51px;
  }
  .home_sec5_wrap .sec_tt_en{
    padding-left: 25px;
  }
  .sec_tt_en:before{
    left: -83px;
    left: -4%;
    bottom: 0;
  }
  .news_list{

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

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

  }
  .news_list .webgene-item .title{

  }
  .home_sec5_wrap .read_more{
    margin-top: 55px;
  }

  /*insta*/
  .insta_list .webgene-blog{
    margin-inline:-8px;
  }
  .insta_list .webgene-item{
    width: 33.333%;
    padding-inline:8px;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    display: block;
    margin-top: 16px;
  }
  .home_sec7_wrap.home_sec4_wrap .naname_tt.left {
    top: 106px;
    left: 0;
  }

  .content_desc.center{
    text-align: center;
  }
}
@media (min-width:1024px){
  /*sec2*/
  .home_sec2_items{
    margin-inline:-15px;
  }
  .home_sec2_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_item:nth-child(n+3){
    margin-top: 19px;
  }

  /*sec3*/
  .home_sec3_wrap .naname_tt.right {
    right: 159px;
    top: 146px;
  }
  .home_sec3_main{

  }
  /*  .home_sec3_main_items{
      margin-inline:-15px;
    }
    .home_sec3_main_item{
      width: 50%;
      padding-inline:15px;
    }
    .home_sec3_main_item:nth-child(n+2){
      margin-top: 0; 
    }*/

  .home_sec4_wrap .webgene-blog{

  }
  .home_sec4_wrap .webgene-item{
    width: 25%;
  }
  .home_sec4_wrap .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sec4_wrap .webgene-item:nth-child(n+5){
    margin-top: 30px;
  }

  /*sec4*/
  .home_sec4_box_head{
    padding-left: 90px;
  }

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

  /*sec6*/
  .home_sec3_wrap.home_sec6_wrap .naname_tt.right{
    right: 0;
    top: 234px;
  }
}
@media (min-width:1200px){
  /*main*/
  .naname_tt{
    font-size: 38px;
  }
  .naname_tt.left{

  }
  .naname_tt.right{

  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 47.36%;
    order: 1;
    margin-top: 0;

  }
  .home_sec1_box1_inner{
    width: 100%;
    margin-left: var(--margin-for-device-side-w);
    margin-left: calc(960px - 50vw - 400px);
    position: relative;
    right: -43px;
  }
  .home_sec1_box1_img{

  }
  .home_sec1_box2{
    width: 49.01%;
    padding-top: 204px;
    order: 2;
    margin-left: 0;
  }
  .en_tt{
    font-size: 38px;
  }
  .sec_tt{
    font-size: 36px;
  }
  .home_sec1_box2 .sec_tt{

  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_tt{
    font-size: 42px;
  }
  .home_sec2_items{

  }
  .home_sec2_items{

  }
  .home_sec2_item{

  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_inner p{

  }
  .home_sec2_item_inner p:before{

  }
  .home_sec2_wrap .content_desc{
    font-size: 18px;
    line-height: 2em;
    margin-top: 26px;
  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_head{

  }
  .home_sec3_head_box1{
    width: 44.73%;
  }
  .home_sec3_head_box1_inner{

    margin-left: calc(760px - 50vw - 250px);
  }
  .home_sec3_head_box1_img{

  }
  .home_sec3_head_box2{
    width: 41.77%;
    padding-top: 120px;
    margin-top: 0;
  }
  .home_sec3_head_box2_tt{
    font-size: 20px;
  }
  .home_sec3_head_box2 .sec_tt{

  }
  .home_sec3_head_box2 .content_desc{

  }

  .home_sec3_main{

  }
  .home_sec3_main_items{
    margin-inline:-15px;
  }
  .home_sec3_main_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sec3_main_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_main_item_inner{

  }
  .home_sec3_main_item_img_outer{

  }
  .home_sec3_main_item_img{

  }
  .home_sec3_main_item_img img{

  }
  .home_sec3_main_item .home_sec3_head_box2_tt{

  }
  .sec_tt.sm{
    font-size: 28px;
  }
  .home_sec3_main_item .sec_tt{

  }
  .home_sec3_main_item .content_desc{

  }
  .home_sec3_main_item .read_more{

  }

  /*sec4*/
  .home_sec4_wrap{
    display: flex;
    justify-content: flex-end;
  }
  .home_sec4_wrap:after{
    width: 1910px;
    ;
    ;
    top: -95px;
  }
  .home_sec4_wrap .naname_tt.left{

  }
  .home_sec4_wrap .naname_tt.left p{

  }
  .home_sec4_box{
    width: 86.51%;
  }
  .home_sec4_box_head{
    padding-left: 64px;
  }
  .home_sec4_box_head .sec_tt{

  }
  .home_sec4_box_head .content_desc{

  }
  .home_sec4_wrap .works_list{

  }
  .home_sec4_wrap .webgene-blog{

  }
  .home_sec4_wrap .webgene-item{
    width: 25%;
  }
  .home_sec4_wrap .webgene-item a{

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

  }
  .home_sec4_wrap .webgene-item .box1{

  }
  .home_sec4_wrap .webgene-item .box2{

  }
  .home_sec4_wrap .webgene-item .category{
    font-size: 13px;
    padding: 6px 19px;
  }
  .home_sec4_wrap .webgene-item .title{

  }

  .home_sec7_wrap.home_sec4_wrap .naname_tt.left {
    top: 106px;
    left: 0;
  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .sec_tt_en{
    font-size: 65px;
  }
  .sec_tt_en:before{
    left: -4%;
    ;
    top: auto;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .title{

  }

  /*sec6*/
  .home_sec3_wrap.home_sec6_wrap .naname_tt.right{
    right: 100px;
    top: 234px;
  }
  .home_sec6_wrap .home_sec3_head_box1_inner{
    margin-left: calc(760px - 50vw - 250px);
  }
  .home_sec6_wrap .home_sec3_head_box2{
    width: 37.5%;
    margin-left: 4%;
    padding-top: 169px;
  }

  /*insta*/
  .insta_list{

  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 20%;
  }
  .insta_list .webgene-item:nth-child(n+4){
    display: block;
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    display: block;
    margin-top: 10px;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .sec_tt{
    font-size: 48px;
  }
  .home_sec1_box1_inner{
    width: 100%;
    margin-left: calc(960px - 50vw - 200px);
  }

  .home_sec3_head_box1_inner{
    margin-left: calc(760px - 50vw - 165px);
  }

  /*sec4*/
  .home_sec4_wrap .webgene-item .category{
    font-size: 16px;
  }

  /*sec6*/
  .home_sec3_wrap.home_sec6_wrap .naname_tt.right{
    right: 120px;
    top: 205px;
  }
  .home_sec6_wrap .home_sec3_head_box1_inner{
    margin-left: calc(760px - 50vw - 120px);
  }

  .home_sec7_wrap.home_sec4_wrap .naname_tt.left {
    top: 106px;
    left: 91px;
  }
}
@media (min-width:1720px){
  /*sec1*/
  .sec_tt{
    font-size: 52px;
  }
  .home_sec1_box1_inner{
    width: 122.06%;
  }

  .sec_tt_en:before{
    left: -83px;
    top: auto;
  }

  /*sec6*/
  .home_sec3_wrap.home_sec6_wrap .naname_tt.right{
    right: 182px;
    top: 234px;
  }
}





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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{
  overflow: hidden;
}
.pg_recruit .section.sec3{
  background: #396e95;
}
.pg_recruit .section.sec4{
  overflow: hidden;
}
.pg_recruit .section.sec5{
  position: relative;
}
.pg_recruit .section.sec5:before{
  content: "";
  display: block;
  width: 1920px;
  /*    width: 18.09%;*/
  aspect-ratio: 1920 / 1189;
  background-image: url(/system_panel/uploads/images/gtt.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: auto;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width:374px){

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

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

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

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

  }
  .pg_recruit .section.sec3{
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec4{
    padding-top: 300px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec5{
    padding-top: 90px;
  }
  .pg_recruit .section.sec6{
    padding-top: 100px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_recruit .section.sec1{
    padding-bottom: 126px;
  }
  .pg_recruit .section.sec2{

  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{
    padding-top: 306px;
    padding-bottom: 186px;
  }
  .pg_recruit .section.sec6{
    padding-top: 203px;
  }
}
@media (min-width:1470px){


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


}

/* メイン部分 */
/*sec1*/
.home_sec3_head.recruit1{
  justify-content: space-between;
}
.home_sec3_head.recruit1 .home_sec3_head_box1{
  order: 2;
  margin-top: 30px;
}
.home_sec3_head.recruit1 .home_sec3_head_box1_img_outer{
  aspect-ratio: 999 / 689;
  position: relative;
}
.home_sec3_head.recruit1 .home_sec3_head_box1_img_outer .mask{
  width: 50.19%;
  aspect-ratio:504 / 527;
  background-image: url(/system_panel/uploads/images/s2.png);
  bottom: -5.9%;
  z-index: 2;
}
.home_sec3_head.recruit1 .home_sec3_head_box1_img{
  -webkit-mask-image:url(/system_panel/uploads/images/fg.png);
}
.home_sec3_head.recruit1 .home_sec3_head_box2{
  order: 1;
  margin-top: 0;
}
.home_sec3_head.recruit1 .sec_tt{

}
.home_sec3_head.recruit1 .content_desc{

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

.recruit_cate_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.recruit_cate_item{
  width: 100%;
}
.recruit_cate_item:nth-child(n+2){
  margin-top: 10px;
}
.recruit_cate_item_inner{
  display: block;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #989898;
  padding: 24px;
  position: relative
}
.recruit_cate_item_inner:after{
  content:"\f0a9";
  font-size: 20px;
  font-family: "fontAwesome";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/*sec2*/
.recruit_sec1_items_outer{
  margin-top: 40px;
}
.recruit_sec1_wrap{
  position: relative;
}
.recruit_sec1_wrap:after{
  content: "";
  display: block;
  width: 107.82%;
  ;
  aspect-ratio:1639 / 1271;
  background-image: url(/system_panel/uploads/images/daikei2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 43%;
  left: 60%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.recruit_sec1_wrap .recruit_sec1_head{

}
.recruit_sec1_head .sec_tt{

}
.recruit_sec1_head .content_desc{
  margin-top: 20px;
}
.recruit_sec1_items{
  display: flex;
  flex-wrap: wrap;
}
.recruit_sec1_items:nth-child(n+2){
  margin-top: 30px;
}
.recruit_sec1_item{
  width: 100%;
}
.recruit_sec1_item:nth-child(n+2){
  margin-top: 50px;
}
.recruit_sec1_item_inner{

}
.recruit_sec1_item_img img{
  width: 100%;
}


.recruit_sec1_item_img_outer{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 585 / 213;
}
.recruit_sec1_item_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/sec3.png);
}
.recruit_sec1_item_tt{
  font-size: 20px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-top: 16px;
}
.recruit_sec1_item_tt_sub{
  font-size: 17px;
  font-weight: 500;
  margin-top: 16px;
}
.recruit_sec1_item .content_desc{
  line-height: 1.875em;
  margin-top: 9px;
}

/*sec3*/
.recruit_sec2_wrap{

}
.recruit_sec2_head{
  color: #fff;
  position: relative;
}
.recruit_sec2_head.bk{
  color: #181818;
}
.recruit_sec2_head:before{
  content: "";
  display: block;
  width: 275px;
  width: 18.09%;
  aspect-ratio: 275 / 407;
  background-image: url(/system_panel/uploads/images/as.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -100px;
  bottom: auto;
}
.side_tt{
  display: flex;
  align-items: baseline;
}
.side_tt_en{
  font-size: 24px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-right: 36px;
}
.side_tt_ja{
  font-size: 16px;
  font-weight: 500;
}
.recruit_sec2_head .sec_tt{
  margin-top: 20px;
}
.recruit_sec2_head .content_desc{
  line-height: 1.875em;
  margin-top: 20px;
}
.recruit_sec2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.recruit_sec2_item{
  width: 100%;
}
.recruit_sec2_item:nth-child(n+2){
  margin-top: 16px;
}
.recruit_sec2_item_inner{
  background: #e9e9e9;
  padding: 16px 5px;
}
.recruit_sec2_item_tt{
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid #313131;
  position: relative;
  padding-left: 59px;
  padding-bottom: 11px;
}
.recruit_sec2_item_tt:before{
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 45 / 40;
  background-image: url(/system_panel/uploads/images/mark1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -5px;
}
.recruit_sec2_item_desc.content_desc{
  line-height: 1.875em;
  margin-top:20px;
  padding-inline: 5px;
}

/*sec4*/
.naname_tt.block{

}
.naname_tt.block p{
  position: relative;
}
.naname_tt.block p:before{

}
.about_reason.recruit_sec3_wrap{
  position: relative;
}
.recruit_sec3_items_outer{
  padding:40px 16px;
  background: #f6f6f6;
  margin-top: 40px;
}
.recruit_sec3_items{

}
.recruit_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit_sec3_item_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.recruit_sec3_item_box1_tt{
  display: flex;
  align-items: center;
}
.recruit_sec3_item_box1_tt_en{
  font-size:17px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 20px;
}
.recruit_sec3_item_box1_tt_en strong{
  font-size: 20px;
  font-weight: 500;
}
.recruit_sec3_item_box1_tt_ja{
  font-size:24px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
.recruit_sec3_item_box1_h4{
  font-size:18px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: 10px;
  margin-top: 16px;
}
.recruit_sec3_item_box1 .content_desc{
  margin-top: 20px;
}
.recruit_sec3_item_box2{
  width: 100%;
  order: 1;
}
.recruit_sec3_item_img:before{
  padding-top: 70%;
}

/*sec5*/
.recruit_sec4_items{
  margin-top:50px;
}
.recruit_sec4_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 16px;
}
.recruit_sec4_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  order: 2;
}
.recruit_sec4_box1_block{

}
.recruit_sec4_box1_block:nth-child(n+2){
  margin-top: 30px;
}
.recruit_sec4_box1_tt{
  font-size: 18px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  background: #181818;
  color: #fff;
  padding: 6px 18px;
}
.recruit_sec4_box1 .content_desc{
  line-height: 2;
  margin-top: 18px;
}
.recruit_sec4_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.recruit_sec4_box2_img:before{
  padding-top: 63.06%;
}
.recruit_sec4_box2_name{
  font-size: 16px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  background: #415e93;
  color: #fff;
}

/*sec6*/
.recruit_sec5_wrap .side_tt{
  position: relative;
}
.recruit_sec5_wrap .side_tt:before {
  content: "";
  display: block;
  width: 275px;
  width: 18.09%;
  aspect-ratio: 275 / 407;
  background-image: url(/system_panel/uploads/images/as.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -10px;
  top: -95px;
  top: -110px;
  bottom: auto;
}
.company_tbl_items{
  margin-top: 40px;
}
.company_tbl_item{

}
.company_tbl_item:nth-child(n+2){
  margin-top: 50px;
}
.company_tbl{

}
.company_tbl_items .company_tbl_item .table_rows_th,
.company_tbl_items .company_tbl_item .table_rows_td{
  font-weight: 500;
}
.company_tbl_items .company_tbl_item .table_rows_th{
  background: #f3f1f1;
}
.company_tbl_items .company_tbl_item .table_rows_td{
  line-height: 1.88em;
}
.td_item{
  display: inline-block;
  margin-right: 36px;
}
.company_tbl_item .read_more{

}
.tbl_hosok{
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top:30px;
}
@media (max-width:767px){
  .recruit_sec1_wrap:after{
    content: "";
    display: block;
    width: 1500px;
    ;
    aspect-ratio:1639 / 1271;
    background-image: url(/system_panel/uploads/images/daikei2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 300px;
    left: 60%;
    transform: translateY(-50%) translateX(-50%);
    z-index: -1;
    pointer-events: none;
  }

  .recruit_sec3_wrap .about_reason_box2{
    margin-top: 0;
  }

  .side_tt{
    display: block;
  }
  .side_tt_ja{
    margin-top: 5px;
  }

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

  .td_item{
    display: inline-block;
    margin-right: 0;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec3_head.recruit1{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box1{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box1_img{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box1_img img{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box2{
    margin-top: 0;
  }
  .home_sec3_head.recruit1 .sec_tt{

  }
  .home_sec3_head.recruit1 .content_desc{
    margin-top: 33px;
  }
  .content_block:nth-child(n+2){
    margin-top: 36px;
  }

  .recruit_cate_items{
    margin-inline:-15px;
    margin-top: 80px;
  }
  .recruit_cate_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_cate_item_inner{

  }

  /*sec2*/
  .recruit_sec1_items_outer{
    margin-top: 50px;
  }
  .recruit_sec1_wrap{

  }
  .recruit_sec1_wrap .recruit_sec1_head{
    width: 67.76%;
  }
  .recruit_sec1_head .sec_tt{

  }
  .recruit_sec1_head .content_desc{
    margin-top: 30px;
  }
  .recruit_sec1_items{

  }
  .recruit_sec1_items:nth-child(n+2){
    margin-top: 60px;
  }
  .recruit_sec1_item{

  }
  .recruit_sec1_item:nth-child(n+2){
    margin-top: 60px;
  }
  .recruit_sec1_item_inner{

  }
  .recruit_sec1_item_img{

  }
  .recruit_sec1_item_img img{

  }
  .recruit_sec1_item_tt{
    font-size: 20px;
  }
  .recruit_sec1_item_tt_sub{
    font-size: 18px;
  }
  .recruit_sec1_item .content_desc{

  }
  .recruit_sec1_wrap .naname_tt.right{
    top: 350px;
    right: 0;
  }

  /*sec3*/
  .recruit_sec2_wrap{

  }
  .recruit_sec2_head{

  }
  .recruit_sec2_head:before{
    left: -100px;
    bottom: 250px;
  }
  .side_tt{

  }
  .side_tt_en{
    font-size: 30px;
  }
  .side_tt_ja{
    font-size: 18px;
  }
  .recruit_sec2_head .sec_tt{

  }
  .recruit_sec2_head .content_desc{
    margin-top: 10px;
  }
  .recruit_sec2_items{
    margin-top: 86px;
  }
  .recruit_sec2_item{

  }
  .recruit_sec2_item:nth-child(n+2){
    margin-top: 16px;
  }
  .recruit_sec2_item_inner{

  }
  .recruit_sec2_item_tt{
    font-size: 18px;
    padding-left: 59px;
  }
  .recruit_sec2_item_desc.content_desc{
    margin-top: 12px;
  }

  /*sec4*/
  .recruit_sec3_wrap .naname_tt.left:before{
    right: -1000px;
  }
  .naname_tt.block p{
    position: relative;
  }
  .naname_tt.block p:before{
    content: "";
    display: block;
    width: 406px;
    /*    width: 18.09%;*/
    aspect-ratio: 406 / 275;
    background-image: url(/system_panel/uploads/images/sb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: auto;
    left: -461px;
    top: -102px;
    transform: rotate(-28deg);
  }

  .recruit_sec3_items_outer{
    padding: 50px;
    margin-top: 69px;
  }
  .recruit_sec3_items{

  }
  .recruit_sec3_item{

  }
  .recruit_sec3_item:nth-child(n+2){
    margin-top: 97px;
  }
  .recruit_sec3_item_box1{
    margin-top: 30px;
  }
  .recruit_sec3_item_box1_tt{

  }
  .recruit_sec3_item_box1_tt_en{
    font-size:18px;
    margin-right: 33px;
  }
  .recruit_sec3_item_box1_tt_en strong{
    font-size: 24px;
  }
  .recruit_sec3_item_box1_tt_ja{
    font-size:30px;
  }
  .recruit_sec3_item_box1_h4{
    font-size:30px;
    padding-bottom: 23px;
  }
  .recruit_sec3_item_box1 .content_desc{
    margin-top: 16px;
  }
  .recruit_sec3_item_box2{

  }
  .recruit_sec3_wrap .about_reason_box2{
    width: 86.51%;
    margin-left: auto;
    margin-top: 0;
  }
  .recruit_sec3_item_img:before{

  }

  /*sec5*/
  .recruit_sec4_wrap{
    position: relative;
  }

  .recruit_sec4_items{
    margin-top: 100px;
  }
  .recruit_sec4_item{
    padding: 50px 0 40px;
  }
  .recruit_sec4_box1{
    margin-top: 30px;
  }
  .recruit_sec4_box1_block{

  }
  .recruit_sec4_box1_block:nth-child(n+2) {
    margin-top: 41px;
  }
  .recruit_sec4_box1_tt{
    font-size: 22px;
  }
  .recruit_sec4_box1 .content_desc{

  }
  .recruit_sec4_box2{

  }
  .recruit_sec4_box2_img:before{

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

  /*sec6*/
  .recruit_sec5_wrap .side_tt:before {
    left: -80px;
    top: -151px;
  }
  .recruit_sec5_wrap .recruit_cate_items{
    margin-top: 56px;
  }
  .company_tbl_items{
    margin-top: 100px;
  }
  .company_tbl_item{

  }
  .company_tbl_item:nth-child(n+2){
    margin-top: 50px;
  }
  .company_tbl{

  }
  .company_tbl_items .company_tbl_item .table_rows_th,
  .company_tbl_items .company_tbl_item .table_rows_td{
    font-size: 17px;
    padding: 17px 12px 17px;
  }
  .company_tbl_item .table_rows_th{

  }
  .company_tbl_item .table_rows_td{
    padding-left: 18px;
  }
  .td_item{

  }
  .company_tbl_item .read_more{
    margin-top: 60px;
  }
  .tbl_hosok{
    margin-top: 39px;
  }
}
@media (min-width:1024px){
  /*sec2*/
  .recruit_sec1_wrap .naname_tt.right{
    top: 350px;
    right: 69px;
  }

  /*sec3*/
  .recruit_sec2_head:before{
    left: -100px;
    bottom: 105px;
    top: auto;
  }
  .recruit_sec2_items{
    margin-inline:-15px;
  }
  .recruit_sec2_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_sec2_item:nth-child(n+3){
    margin-top: 22px;
  }

  /*sec6*/
  .recruit_sec5_wrap .side_tt:before {
    left: -110px;
    top: -151px;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec3_head.recruit1{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box1{
    width: 52.96%;
    order: 1;
    margin-top: 0;
  }
  .home_sec3_head.recruit1 .home_sec3_head_box1_inner{
    margin-left:var(--margin-for-device-side-w);
  }
  .home_sec3_head.recruit1 .home_sec3_head_box1_img{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box1_img img{

  }
  .home_sec3_head.recruit1 .home_sec3_head_box2{
    width:42.76%;
    order: 2;
    padding-top: 50px;
  }
  .home_sec3_head.recruit1 .sec_tt{
    font-size: 38px;
  }
  .home_sec3_head.recruit1 .content_desc{

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

  }

  .recruit_cate_items{
    margin-top: 100px;
  }
  .recruit_cate_item{

  }
  .recruit_cate_item_inner{

  }

  /*sec2*/
  .recruit_sec1_wrap{

  }
  .recruit_sec1_wrap .recruit_sec1_head{
    width: 67.76%;
  }
  .recruit_sec1_head .sec_tt{

  }
  .recruit_sec1_head .content_desc{

  }
  .recruit_sec1_items{
    justify-content: space-between;
    width: 86.51%;
  }
  .recruit_sec1_items:nth-child(n+2){
    margin-top: 48px;
  }
  .recruit_sec1_items:nth-child(odd){
    margin-left: 0;
    margin-right: auto;
  }
  .recruit_sec1_items:nth-child(even){
    margin-left: auto;
    margin-right: 0;
  }
  .recruit_sec1_item{
    width: 44.48%;
  }
  .recruit_sec1_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_sec1_item:nth-child(n+2){
    margin-top: 104px;
  }
  .recruit_sec1_item_inner{

  }
  .recruit_sec1_item_img{

  }
  .recruit_sec1_item_img img{

  }
  .recruit_sec1_item_tt{
    font-size: 24px;
  }
  .recruit_sec1_item_tt_sub{

  }
  .recruit_sec1_item .content_desc{

  }

  /*sec3*/
  .recruit_sec2_wrap{

  }
  .recruit_sec2_head{

  }
  .recruit_sec2_head:before{
    left: -200px;
    bottom: 10px;
  }
  .side_tt{

  }
  .side_tt_en{
    font-size: 38px;
  }
  .side_tt_ja{

  }
  .recruit_sec2_head .sec_tt{

  }
  .recruit_sec2_head .content_desc{

  }
  .recruit_sec2_items{

  }
  .recruit_sec2_item{

  }
  .recruit_sec2_item_inner{
    height: 100%;
  }
  .recruit_sec2_item_tt{

  }
  .recruit_sec2_item_desc.content_desc{

  }

  /*sec4*/
  .recruit_sec3_wrap .naname_tt.block{
    top: 127px;
    left: 0;
  }

  .recruit_sec3_wrap .about_reason_box2{
    width: 86.51%;
  }
  .recruit_sec3_items_outer{
    padding: 41px 100px;
  }
  .recruit_sec3_items{

  }
  .recruit_sec3_item{

  }
  .recruit_sec3_item:nth-child(n+2){
    margin-top: 97px;
  }
  .recruit_sec3_item:nth-child(odd) .recruit_sec3_item_box1{
    order: 1;
  }
  .recruit_sec3_item:nth-child(odd) .recruit_sec3_item_box2{
    order: 2;
  }
  .recruit_sec3_item:nth-child(even) .recruit_sec3_item_box1{
    order: 2;
  }
  .recruit_sec3_item:nth-child(even) .recruit_sec3_item_box2{
    order: 1;
  }
  .recruit_sec3_item_box1{
    width: 57.76%;
    margin-top: 0;
  }
  .recruit_sec3_item_box1_tt{

  }
  .recruit_sec3_item_box1_tt_en{

  }
  .recruit_sec3_item_box1_tt_ja{
    font-size:36px;
  }
  .recruit_sec3_item_box1_h4{
    font-size:28px;
  }
  .recruit_sec3_item_box1 .content_desc{

  }
  .recruit_sec3_item_box2{
    width:38.02%;
    padding-top: 10px;
  }
  .recruit_sec3_item_img:before{

  }

  /*sec5*/
  .recruit_sec4_items{

  }
  .recruit_sec4_item{
    position: relative;
    margin-top: 127px;
  }
  .recruit_sec4_item:before{
    content: "";
    display: block;
    width: 86.51%;
    height: 100%;
    position: absolute;
    top: 0;
  }
  .recruit_sec4_item:nth-child(odd):before{
    background: #fff;
    left: 0;
  }
  .recruit_sec4_item:nth-child(even):before{
    background: #f7f7f7;
    right: 0;
  }

  .recruit_sec4_item:nth-child(n+2){
    margin-top: 126px;
  }
  .recruit_sec4_item:nth-child(odd) .recruit_sec4_box1{
    order: 1;
    padding-left: 50px;
  }
  .recruit_sec4_item:nth-child(odd) .recruit_sec4_box2{
    order: 2;
  }
  .recruit_sec4_item:nth-child(even) .recruit_sec4_box1{
    order: 2;
    padding-right: 50px;
  }
  .recruit_sec4_item:nth-child(even) .recruit_sec4_box2{
    order: 1;
  }
  .recruit_sec4_box1{
    width: 57.23%;
    margin-top: 0;
    ;
  }
  .recruit_sec4_box1_block{

  }
  .recruit_sec4_box1_tt{
    font-size: 22px;
  }
  .recruit_sec4_box1 .content_desc{

  }
  .recruit_sec4_box2{
    width: 36.51%;
  }
  .recruit_sec4_box2_img{
    margin-top: -100px;
  }
  .recruit_sec4_box2_img:before{

  }
  .recruit_sec4_box2_name{

  }

  /*sec6*/
  .recruit_sec5_wrap .side_tt:before {
    left: -200px;
    top: -151px;
  }
  .company_tbl_items{
    margin-top: 148px;
  }
  .company_tbl_item{

  }
  .company_tbl_item:nth-child(n+2){
    margin-top: 151px;
  }
  .company_tbl{

  }
  .company_tbl_item .table_rows_th,
  .company_tbl_item .table_rows_td{

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

  }
  .td_item{

  }
  .company_tbl_item .read_more{

  }
  .tbl_hosok{

  }
}
@media (min-width:1470px){
  /*sec4*/
  .recruit_sec3_wrap .naname_tt.block{
    top: 127px;
    left: 28px;
  }

  /*sec6*/
  .recruit_sec5_wrap .side_tt:before {
    left: -200px;
    top: -151px;
  }
}
@media (min-width:1720px){
  .home_sec3_head.recruit1 .sec_tt{
    font-size: 52px;
  }
  .home_sec3_head.recruit1 .home_sec3_head_box1_inner{
    margin-left:calc(760px - 50vw);
  }

}
@media (max-width:1199px){
  .recruit_sec4_item{
    position: relative;
    padding-inline:0;
  }
  .recruit_sec4_item:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .recruit_sec4_item:nth-child(odd):before{
    background: #fff;
    left: 0;
  }
  .recruit_sec4_item:nth-child(even):before{
    background: #f7f7f7;
    left: 0;
  }
}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}
@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 0;
}
.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: 80%;
}
.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: 10px 0;
  }
  .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: 70px;
  }

  /* 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: -26.5px;
    margin-right: -26.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 26.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 12px 0;
  }

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: var(--main-color);
  color: #FFF;
  padding: 12px 10px;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 16px;
}

.posts_cat_item{

}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
  margin-top: 0;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  line-height: 1.875;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}
.posts_cat_item a:hover{
  color: var(--sub-color);
}

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

}
.posts_detail .meta{
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
  margin-bottom: 14px;
}
.posts_detail .meta .category span{
  display: inline-block;
  border: 1px solid #181818;
  background: #FFF;
  color: #181818;
  min-width: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  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;
  border-bottom: 1px solid #181818;
  padding-bottom: 12px;
}
.posts_detail .post_content{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0;
  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;
}
.posts_detail .post_content img{
  margin-bottom: 44px;
}
.posts_detail h3{
  font-size: 17px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  color: #FFF;
  background: var(--main-color);
  padding: 10px 13px 18px;
  margin-bottom: 40px;
  position: relative;
}
.posts_detail h3::after{
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: calc(100% - 10px);
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}
.posts_detail h3:nth-child(n+2){
  margin-top: 30px;
}

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

  .posts_detail h3{
    margin-bottom: 25px;
  }
  .posts_detail .post_content img {
    margin-bottom: 25px;
  }
}
@media (min-width:768px){

  .pg_news{
    /*padding-top: 50px;*/
  }
  .posts_layout_box1{
    width: 75.98%;
  }
  .posts_layout_box1_1{
    width: 74.01%;
  }
  .posts_layout_box2{
    width: 19.73%;
    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;
    margin-top: 53px;
  }

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

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 12px;
    padding: 5px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: 100%;
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0;
    line-height: 2.25em;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .posts_detail h3:nth-child(n+2){
    margin-top: 45px;
  }

  .pg_news .read_more{
    margin-top: 60px;
  }
}
@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{

  }

  /* 詳細 */
  .posts_detail .meta{
    padding: 0 0 5px;
    margin-bottom: 55px;
  }

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

  .pg_news{
    /*padding-top: 100px;*/
  }

}


/*******************************
*　施工実績
********************************/
.pg_works{

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

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

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

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

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 50px;
  }
}
@media (min-width:1024px){


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


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

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 150px;
    padding-top: 155px;
  }
}
@media (min-width:1720px){


}



/*カテゴリ*/
.works_cate_list{
  margin-top: 45px;
}
.works_cate_list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
}
.works_cate_list .webgene-blog .webgene-item a{
  display: block;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #FFF;
  text-align: center;
  padding: 14px 10px;
  background: linear-gradient(90deg, #014d82, #617db6, #d4b2bb);
  /*border: 1px solid var(--main-color);*/
  position: relative;
}
/*.works_cate_list .webgene-blog .webgene-item a:after {
    content: "\f138";
    font-family: "FontAwesome";
    font-size: 18px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--main-color);
    transition: all .2s;
}*/
.works_cate_list .webgene-blog .webgene-item a:hover {
  color: #FFF;

}
/*.works_cate_list .webgene-blog .webgene-item a:hover:after{
    color: #FFF;
    margin-right: -5px;
}*/


.pg_works .news_list_thumb .webgene-item .box1{
  position: relative;
}
.pg_works .news_list_thumb .webgene-item .box1 .category span{
  display: inline-block;
  background: #192a43;
  min-width: 80px;
  padding: 3px 5px;
  font-size: 12px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.pg_works .webgene-pagination li.selected {
  border: 0;
  background: #192a43;
  color: #FFF;
}

@media (max-width:374px){

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

}
@media (max-width: 767px) {
  .works_cate_list {
    display: none;
  }
}
@media (min-width:768px){
  .works_cate_list .webgene-blog {
    margin-inline: -5px;
  }
  .works_cate_list .webgene-blog .webgene-item{
    width: 50%;
    padding-inline: 5px;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .works_cate_list .webgene-blog .webgene-item a{
    font-size: 15px;
  }

  .pg_works .news_list_thumb .webgene-item .box1 .category span{
    min-width: 230px;
    padding: 6px 10px;
    font-size: 16px;

    min-width: 110px;
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media (min-width:1024px){
  .works_cate_list{
    margin-top: 75px;
  }
  .works_cate_list .webgene-blog {
    margin-inline: -15px;
  }
  .works_cate_list .webgene-blog .webgene-item{
    width: 25%;
    padding-inline: 15px;
  }
  .works_cate_list .webgene-blog .webgene-item a {
    font-size: 15px;
    padding: 12px 10px;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

  .pg_works .news_list_thumb .webgene-item .img.img_fit:before{
    padding-top: 75%;
  }
  .pg_works  .news_list_thumb .webgene-blog {
    margin-left: -13.5px;
    margin-right: -13.5px;
  }
  .pg_works .news_list_thumb.col4 .webgene-item {
    width: 25%;
    padding-inline: 13.5px;
  }
  .pg_works .news_list_thumb.col4 .webgene-item:nth-child(n+5) {
    margin-top: 32px;
  }
  .pg_works .webgene-pagination {
    margin-top: 63px;
  }
}
@media (min-width:1200px){

}
@media (min-width:1470px){
  .works_cate_list .webgene-blog {
    margin-inline: -15px;
  }
  .works_cate_list .webgene-blog .webgene-item{
    width: 25%;
    padding-inline: 15px;
  }

  .works_cate_list .webgene-blog .webgene-item:nth-child(n+3),
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+5){
    margin-top: 0;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+6){
    margin-top: 15px;
  }
}
@media (min-width:1720px){
  .works_cate_list .webgene-blog .webgene-item a {
    font-size: 18px;
    padding: 12px 28px;
  }
  .pg_works .news_list_thumb .webgene-item .box1 .category span{
    min-width: 230px;
    padding: 6px 10px;
    font-size: 16px;
  }
}

/*******************************
*　ギャラリー（サムネ横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%;
  position: relative;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.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: 67.85%;
}
.gallery_thumb .img.img_fit img{

}
.gallery_slide_prev .fa{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  width: 20px;
  aspect-ratio:1 / 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.gallery_slide_prev{
  background-image: url(/system_panel/uploads/images/left.png);
  left: -30px;
}
.gallery_slide_next{
  background-image: url(/system_panel/uploads/images/right.png);
  right: -30px;
}
.gallery_slide_prev:hover,
.gallery_slide_next:hover{
  cursor: pointer;
  transition: all 0.4s ease;
}
.gallery_slide_next .fa{
  display: none;
}

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

.works_detail .post_content{
  border: 1px solid #878787;
  background: #FFF;
  color: #181818;
  padding: 30px 16px;
  margin-top: 30px;
}
.works_detail .post_content .title{
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #361130;
  padding-bottom: 16px;
}
.works_detail .post_content .post_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  padding-top: 18px;
}
.works_detail .post_content .post_txt h1,
.works_detail .post_content .post_txt h2,
.works_detail .post_content .post_txt h2,
.works_detail .post_content .post_txt h3,
.works_detail .post_content .post_txt h4,
.works_detail .post_content .post_txt h5,
.works_detail .post_content .post_txt h6{
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
.works_detail .post_content .post_txt h2{
  font-size: 1.5em;
  color: var(--main-color);
  background: #FFF;
  border-left: 5px solid var(--main-color);
  padding: 10px 12px 12px;
}
.works_detail .post_content .post_txt h3{
  font-size: 1.3em;
  color: #FFF;
  background: var(--main-color);
  /*border-left: 5px solid var(--main-color);*/
  padding: 3px 12px 4px;

}
.works_detail .post_content .post_txt h4{

}

.works_detail .post_content .post_txt p{

}
.works_detail .post_content .post_txt p+p{
  margin-top: 10px;
}

.pg_works .read_more a:after{

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

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

}
@media (max-width:767px){
  .body_worksDetail .pg_works .section.sec1{
    padding-top: 60px;
  }
  .gallery_wrap{
    width: 82.88%;
    margin:0 auto;
  }
}
@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{
    width: 82.88%;
    margin:0 auto;
  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 10px;

    position: relative;
    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;
  }

  .gallery_slide_prev{
    left: -54px;
  }
  .gallery_slide_next{
    right: -54px;
  }
  .works_detail{
    padding-top: 6px;
  }
  .works_detail .post_content{
    margin-top: 60px;
  }
  .works_detail .post_content .title{
    font-size: 22px;
  }
  .post_content .post_txt{
    font-size: 16px;
  }
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 35px;
  }

  /*ボタン*/
  .works_detail .read_more{
    margin-top: 60px;
  }
}
@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: 23px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

  .works_detail .post_content{
    padding: 30px 62px;
    margin-top: 100px;
  }
  .works_detail .post_content .title{
    font-size: 30px;
  }
  .post_content .post_txt{

  }
}
@media (min-width:1200px){
  .works_detail .post_content{
    padding: 48px 56px 60px;
  }
  .works_detail .post_content .title {
    padding-bottom: 23px;
  }
  .works_detail .post_content .post_txt {
    padding-top: 33px;
  }
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 30px;
  }
  .gallery_slide_next{
    right: -60px;
  }
  .gallery_slide_prev{
    left: -60px;
  }
}




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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
