@charset "UTF-8";

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

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

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


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  /*letter-spacing: 0.075em;*/
  letter-spacing: inherit;
}
p{

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_right{
    display: none;
  }

  .gnav_sub_inner{
    margin-top: 8px;
  }
  .gnav_item a p:first-child{
    border-bottom: 1px solid #000;
  }
  .gnav_item:nth-child(3),
  .gnav_item:nth-child(4){
    width: 100%;
  }
  .gnav_sub_item_a p{
    display: flex!important;
    align-items: center;
    padding: 5px 0;
  }
  .gnav_sub_item_a p:before{
    content: "■";
    display: block;
    margin-right: 10px;
  }

  .hdr_logo {
    mix-blend-mode: difference;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: 120px;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 48px;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 31px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }
  .hdr_logo_outer{
    display: none;
  }
  /* ヘッダースリム */
  .header.slim{

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_center{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbdbdb;
    background: #fff;
    border-radius: 10px;
    padding: 11px 39px;
    margin: 0 auto;
  }

  .hdr_contact_btn{
    display: block;
    width: 200px;
    border-radius: 5px;
    background: #008bd5;
    color: #fff;
    border: 1px solid transparent;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    padding: 16px 0;
    position: relative;
  }
  .hdr_contact_btn:after{
    content: "→";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    transition: 0.2s all;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    border: 1px solid #008bd5;
  }

  .hdr_right{
    display: flex;
    align-items: center;
  }
  .hdr_logo_outer{
    width: 249px;
  }
  
  .header{
    left: 250px;
  }
  .hdr_logo {
    mix-blend-mode: difference;
    position: fixed;
    z-index: 4;
    top: 10px;
    left: 20px;
  }
  .hdr_logo img{
    width: 200px;
  }
}
@media (min-width:1024px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_btn{
    display: block;
    width: 240px;
  }
}
@media (min-width:1470px) {
  .header {
        left: 275px;
    }
  .hdr_sns{
    margin-left: 33px;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 8px solid #eeeeee;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

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

}
.mv_txt_p2{

}

/* スライダーの場合 */
.mv_slider{
  /*overflow: visible;*/
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.mv_slider .swiper-slide{
  width: 100%;
  /*height: 413px;*/
  padding: 34px 0;
  /*height: calc(324px + 68px);*/
  transition: 0.2s all;
  /*margin-left: auto;*/
}
.mv_slider .swiper-slide{
  transform: none;
  transform-origin: left center;
}

.mv_slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  /*transition-timing-function: ease;*/
}

.mv_slider_item{
  height: auto;
  transition: 0.8s all ease;
  transform-origin: left center;
  /*transform: translateX(125px);*/
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.mv_slider_item_img{
  border-radius: 10px;
}
.mv_slider_item_img.img_fit:before{
  padding-top: 70.962%;
}
.mv_slider .swiper-slide.swiper-slide-active{
}

/* 縦表示の場合のみ */
.mv_slider.swiper-vertical .swiper-slide{
  width: 457px;
  height: calc(324px + 68px);
}
.mv_slider.swiper-vertical .mv_slider_item{
  transform: translateX(125px);
  margin-left: auto;
  padding: 0;
}
.mv_slider.swiper-vertical .swiper-slide:not(.swiper-slide-active){
  margin-left: 125px;
}
.mv_slider.swiper-vertical .swiper-slide.swiper-slide-active .mv_slider_item{
  transform: translateX(0) scale(1.28);
}


.mv_slider_item_num{
  font-size: 40px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 10px;
  transition: 0.2s all;
  transform: translate(0, -100%);
  text-shadow    :
    1px  1px 0px #ffffff,
    -1px  1px 0px #ffffff,
    1px -1px 0px #ffffff,
    -1px -1px 0px #ffffff,
    1px  0px 0px #ffffff,
    0px  1px 0px #ffffff,
    -1px  0px 0px #ffffff,
    0px -1px 0px #ffffff;
}


/* 縦表示の場合のみ */
.mv_slider.swiper-vertical .mv_slider_item_num{
  transform: translate(-100%, 0);
  top: auto;
  left: 0;
}
.mv_slider.swiper-vertical .swiper-slide.swiper-slide-prev .mv_slider_item_num{
  bottom: 0;
}
.mv_slider.swiper-vertical .swiper-slide.swiper-slide-next .mv_slider_item_num{
  top: 0;
}
.mv_slider.swiper-vertical .swiper-slide.swiper-slide-active .mv_slider_item_num{
  display: none;
}

.gjs-dashed .mv_inner{
  height: auto;
}


.mv_slider_item_ttl{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  border-radius: 17px;
  border: 1px solid #c9c9c9;
  font-size: 16px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

/* 縦表示の場合のみ */
.mv_slider.swiper-vertical .mv_slider_item_ttl{
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  padding: 10px 1px 10px 3px;
  height: 254px;
  margin-bottom: 0;
}


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

.mv_outer{

}
.mv_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
  padding-bottom: 50px;
}
.mv_inner_left{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 26%;
}
.mv_inner_left:before{
  content: "";
  display: block;
  width: 600px;
  aspect-ratio:1198 / 920;
  background-image: url(https://futurelink-global.com/system_panel/uploads/images/µv_ledfft.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right:30px;
  pointer-events: none;
}
.mv_inner_left_ttx{
  width: 85%;
  position: relative;
  z-index: 1;
}
.mv_inner_left_btn{
  position: relative;
  z-index: 1;
  display: block;
  width: 300px;
  max-width: 100%;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 35px;
  margin-top: 0;
  /*margin-top: 10px;*/
}
.mv_inner_left_btn p{
  letter-spacing: 0;
}
.mv_inner_left_btn:hover{
  background: #008bd5;
  color: #fff;
}
.mv_inner_left_btn:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.mv_inner_right{
  width: 100%;
  margin-top: 20px;
}

.mv_slider_btns{
  width: 100%;
  margin-top: 10px;
}

@media (min-width:768px){

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

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

  }
  .mv_txt_p2{

  }

  .mv_outer{

  }
  .mv_inner{
    height: auto;
    padding-bottom: 100px;
  }
  .mv_inner_left:before{
    content: "";
    display: block;
    width: 1198px;
    right: -8em;
  }
  .mv_inner_left{

    padding-top: 22%;
  }
  .mv_inner_left_ttx{
    width: 80%;
  }
  .mv_inner_left_btn{
    font-size: 16px;
    /*margin-top: 10%;*/
    padding: 33px 35px;
  }
  .mv_slider_btns{
    margin-top: 10%;
  }
  .mv_inner_right{

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


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

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

  }
  .mv_txt_p2{

  }

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

  /* MV */
  .mv{
    overflow: visible;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }
  .mv_inner_left_btn{
    font-size: 24px;
  }
  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_outer{

  }
  .mv_inner{
    height: 920px;
    padding-bottom: 0;
  }
  .mv_inner_left{
    width: 57.23%;
    padding-top: 16%;
  }
  .mv_inner_left_ttx{
    width: auto;
  }
  .mv_inner_left_btn{
    font-size: 28px;
    /*margin-top: 18%;*/
    width: 745px;
  }
  .mv_inner_left_btn:after{
    right: 70px;
  }
  .mv_slider_btns{
    margin-top: 18%;
    ;
  }
  .mv_inner_right{
    width:38.48%;
    height: 100%;
    margin-top: 0;
  }
  .mv_slider{
    height: 100%;
  }

  /* スライダーの場合 */
  .mv_slider{
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }
  .mv_slider .swiper-slide{
    padding: 34px 0;
  }

  .mv_slider_item{
    padding: 0 10px;
  }
  .mv_slider_item_img{
    border-radius: 20px;
  }

  /* 縦表示の場合のみ */
  .mv_slider.swiper-vertical .swiper-slide{
    width: 350px;
    height: calc(250px + 40px);
  }
  .mv_slider.swiper-vertical .mv_slider_item{
    transform: translateX(125px);
  }
  .mv_slider.swiper-vertical .swiper-slide:not(.swiper-slide-active){
    margin-left: 125px;
  }
  .mv_slider.swiper-vertical .swiper-slide.swiper-slide-active .mv_slider_item{
    transform: translateX(0) scale(1.28);
  }


  .mv_slider_item_num{
    font-size: 84px;
  }

  .mv_slider_item_ttl{
    border-radius: 17px;
    font-size: 21px;
  }

  /* 縦表示の場合のみ */
  .mv_slider.swiper-vertical .mv_slider_item_ttl{
    padding: 10px 1px 10px 3px;
    height: 254px;
  }

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

}
@media (min-width:1536px){
  
  /* 縦表示の場合のみ */
  .mv_slider.swiper-vertical .swiper-slide{
    width: 400px;
    height: calc(300px + 40px);
  }
  
}
@media (min-width:1720px){

  /* 縦表示の場合のみ */
  .mv_slider.swiper-vertical .swiper-slide{
    width: 457px;
    height: calc(324px + 68px);
  }
  .mv_slider.swiper-vertical .mv_slider_item{
    transform: translateX(125px);
  }
  .mv_slider.swiper-vertical .swiper-slide:not(.swiper-slide-active){
    margin-left: 125px;
  }
  .mv_slider.swiper-vertical .swiper-slide.swiper-slide-active .mv_slider_item{
    transform: translateX(0) scale(1.28);
  }


  .mv_slider_item_num{
    font-size: 84px;
  }

  .mv_slider_item_ttl{
    border-radius: 17px;
    font-size: 21px;
  }

  /* 縦表示の場合のみ */
  .mv_slider.swiper-vertical .mv_slider_item_ttl{
    padding: 10px 1px 10px 3px;
    height: 254px;
  }
  
}


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

/* サイドバー */
.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;
}
.pg_header:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 588;
  background-image: url( https://futurelink-global.com/system_panel/uploads/images/MV.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

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


.pg_header_box{
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

}
.pg_header_left{
  width: 100%;
  color: #fff;
}
.pg_header_left_h1{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.pg_header_left_p{
  font-size: 30px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.pg_header_box .content_desc{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8em;
}
.pg_header_box .content_desc p{
  letter-spacing: 0.075em;
}

@media (min-width:768px){
  .pg_header{
    height: 580px;
    margin-bottom: 40px;
  }
  .pg_header .container{
    height: 100%;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }



  .pg_header_box_outer{
    height: 100%;
    position: relative;
  }
  .pg_header_box{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .pg_header_left{
    width: 45.23%;
  }
  .pg_header_left_h1{
    font-size: 18px;
  }
  .pg_header_left_p{
    font-size: 40px;

  }
  .pg_header_box .content_desc{
    width: 54.26%;
    font-size: 15px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  
  .pg_header_box .content_desc{
  font-size:18px;
  }

  .pg_header_title_txt{

  }

  .pg_header_box{

  }
  .pg_header_left{

  }
  .pg_header_left_h1{
    font-size: 21px;
  }
  .pg_header_left_p{
    font-size: 60px;
  }
  .pg_header_box .content_desc{
    font-size: 20px;
  }
}
@media (min-width:1470px){
  .pg_header_box .content_desc{
    width: 31.26%;
  }
  .body_english .pg_header_box .content_desc,
  .body_blogDetail .pg_header_box .content_desc,
  .body_blog .pg_header_box .content_desc,
  .body_topics .pg_header_box .content_desc,
  .body_company .pg_header_box .content_desc,
  .body_forJobSeekers .pg_header_box .content_desc,
  .body_forNetworks .pg_header_box .content_desc{
    width: 44.73%;
  }

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

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

}


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

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

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #171d2e;
  color: #fff;
  padding: 8px 0;
}
.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: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #171d2e;
}
.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{
  position: relative;
}
.ftr_contact_wrap:before{
  content: "";
  display: block;
  width: 18.75%;
  ;
  aspect-ratio: 360 / 312;
  background-image: url(https://futurelink-global.com/system_panel/uploads/images/po.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1px;
  left:0;
  z-index: 0;
  pointer-events: none;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ftr_contact_box1{
  width: 100%;
  padding-top: 60px;
}
.ftr_contact_box1 .home_sec3_tt_ja{
  border-bottom: none;
  letter-spacing: 0.05em;
}
.ftr_contact_box1 .home_sec3_tt{

}
.ftr_contact_box1 .content_desc{
  font-weight: 500;
  margin-top: 41px;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 30px;
  ;
}
.ftr_contact_box2_inner{

}
.ftr_contact_box2_img:before{
  padding-top: 250px;
}

.ftr_contact_box1 .home_sec3_tt_en{
  font-weight: 400;
}

.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: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 19px 25px;
  margin-inline:auto;
  transition: all .2s;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  position: relative;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
/*.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{
  display: none;
}
.link_0.mail:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.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{
  color: #fff;
  background: var(--main-color);
}

.link_0.item1{
  background: #fff;
  border: 1px solid #d9d9d9;
  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 #d9d9d9;
  color: #000;
  padding: 12px 53px 12px 25px;
}
.link_0.item2 p{
  letter-spacing: 0;
}
.link_0.item2 p.tel{
  letter-spacing: 0.075em;
}
.link_0.item2:hover{
  background: #fff;
  color: #000;
}
.link_0.item2:hover{
  background: var(--main-color);
  color: #fff;
}
.link_0 + .link_0{
  margin-top: 25px;
}
.link_0 .tel{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-family: "Oswald", sans-serif;
}

.ftr_1{
  border-top: 1px solid #313131;
  margin-top: 30px;
  padding-top: 40px;
  padding-bottom: 50px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 30px;
}
.ftr_add p{
  letter-spacing: 0;
}
.namae{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_box1_bnr{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.ftr_box1_bnr_item{

}
.ftr_1_box2{
  width: 100%;
}
.ftr1_links{

}
.ftr1_links .read_more{
  margin: 0;
}
.ftr1_links .read_more a{
  font-size:15px;
  font-weight: 500;
  margin: 0;
  padding: 14px 22px;
}
.ftr1_links .read_more a p{
  letter-spacing: 0;
}
.ftr_links{

}
.ftr_link{

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

}
@media (max-width:767px){
  .mv_slider{
    overflow: visible;
  }

  .pg_header{
    height: 260px;
    height: 336px;
  }
  .pg_header:before{
    width: 1100px;
    left: 22%;
  }
  .pg_header_box{
    position: relative;
    z-index: 1;
    padding-top: 65px;
  }
  .pg_header_left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pg_header_left_h1,
  .pg_header_left_p{
    background: #171d2e;
    padding: 3px 10px 5px;
  }
  .pg_header_left_p{
    margin-top: 5px;
  }
  .pg_header_box .content_desc{
    margin-top: 20px;
    text-shadow    :
      2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
      2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
      2px  0px 1px #ffffff,
      0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
      0px -2px 1px #ffffff;
  }
  .pg_header_box .content_desc{
    font-size: 12px;
  }
  


  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);
  }
  
  .link_0.item2 p{
    width:100%;
    text-align:center;
  }

  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 30px;
  }

  .ftr_logo{
    display: block;
    width: 250px;
    margin-inline: auto;
  }
  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_box1_bnr{
    justify-content: center;
  }
  .ftr_box1_bnr_item{
    margin-bottom: 10px;
  }

  .ftr_contact_wrap:before{
    top: 0;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 0;
  }
  .body_home .footer{
    margin-top: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding-top: 80px;
  }
  .ftr_contact_box1 .home_sec3_tt{

  }
  .ftr_contact_box1 .content_desc{
    margin-top: 41px;
  }
  .ftr_contact_box2{
    margin-top: 40px;
    ;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_img:before{
    padding-top: 660px;
  }

  .link_items{

    margin-top: 41px;
  }
  .link_0{

  }
  .link_0.line,
  .link_0.mail{
    font-size: 20px;
  }
  .link_0 .tel{
    font-size: 20px;
  }

  .ftr_1{
    padding-top: 74px;
    margin-top: 40px;
    padding-bottom: 104px;
  }

  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 45.51%;
  }
  .ftr_logo{

  }
  .ftr_add{
    font-size: 18px;
    margin-top: 43px;
  }
  .ftr_box1_bnr{

  }
  .ftr_box1_bnr_item{
    display: block;
    width: 160px;
    margin-right: 10px;
  }
  .ftr_box1_bnr_item + .ftr_box1_bnr_item{
    margin-top: 0;
  }
  .ftr_1_box2{
    width: 50.52%;
  }
  .ftr1_links{

  }
  .ftr1_links .read_more{

  }
  .ftr1_links .read_more a{
    width: 100%;
  }
  .ftr1_links .read_more a + a{
    margin-top: 10px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-inline:0;
    margin-top: 30px;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 400;
    padding: 0 5px;
    border-right: 1px solid #676767;
    line-height: 1;
    width: 50%;
    text-align: center;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 10px;
  }
  .ftr_link:last-child{
    border-right: none;
  }
  .ftr_link p{
    letter-spacing: 0;
  }
  .namae{
    font-size: 20px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 0;
  }

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


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

  }
  .ftr_contact_box1{
    width: 50.99%;
  }
  .ftr_contact_box1 .home_sec3_tt_ja{
    font-size: 56px;
  }
  .ftr_contact_box1 .home_sec3_tt{

  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .ftr_contact_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .ftr_contact_box2_img:before{

  }

  .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_1{
    margin-top: 0;
    padding-bottom: 104px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 36.51%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_box1_bnr{

  }
  .ftr_box1_bnr_item{
    width: 150px;
    margin-right: 10px;
  }
  .ftr_box1_bnr_item + .ftr_box1_bnr_item{
    margin-top: 0;
  }
  .ftr_1_box2{
    width: 60.52%;
    padding-top: 128px;
  }
  .ftr1_links{

  }
  .ftr1_links .read_more{
    justify-content: space-between;
  }
  .ftr1_links .read_more a{
    width: 100%;
    max-width: inherit;
  }

  .ftr_links{
    justify-content: flex-end;
    margin-inline: -33px;
  }
  .ftr_link{
    text-align: left;
    width: auto;
    padding: 0 33px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
}
@media (min-width:1470px){
  .ftr1_links .read_more a{
    width: auto;
    min-width: 250px;
    max-width: inherit;
  }
  .ftr1_links .read_more a + a{
    margin-top: 0;
  }
}
@media (min-width:1536px){
  .ftr_box1_bnr_item{
    width: auto;
  }
}
@media (min-width:1720px){
  .ftr1_links .read_more a{
    min-width: 300px;
  }
}

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


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

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

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

}


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #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: #FFF;
  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 #171d2e;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #171d2e;
  color: #fff;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 270px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #cbcbcb;
  background:#ffffff;
  border-radius: 5px;
  color: #000;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--main-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


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

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

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



@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 285px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }

  /* 見出し */



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

  }


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

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


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


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


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

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



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

}
.pg_home .section.sec1{
  position: relative;
  padding-bottom: 80px;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 2450;
  background-image: url(https://futurelink-global.com/system_panel/uploads/images/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -14%;
  left: 50%;
  transform:translateX(-50%);
  pointer-events: none;
}
.pg_home .section.sec2{
  background: #171d2e;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3{
  position: relative;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 43.38%;
  aspect-ratio:833 / 722;
  background-image: url(https://futurelink-global.com/system_panel/uploads/images/sec3_kado.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top:0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}
.pg_home .section.sec4{
  position: relative;
  z-index: 1;
  border-top: 1px solid #313131;
}
.pg_home .section.sec5{
  background: #171d2e;
}
.pg_home .section.sec6{
  background: #171d2e;
  padding-bottom: 80px;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec2{
    padding: 149px 0;
  }
  .pg_home .section.sec3{
    padding: 139px 0 80px;
  }
  .pg_home .section.sec4{
    padding: 133px 0 50px;
  }
  .pg_home .section.sec5{

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

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec3{
    padding: 139px 0 0;
  }
   .pg_home .section.sec4{
    padding: 133px 0;
  }

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

  .pg_home .section.sec1{
    padding-top: 105px;
    padding-bottom: 261px;
  }
  .pg_home .section.sec2{
    padding: 149px 0 100px;
  }
  .pg_home .section.sec3{
    padding: 139px 0 0;
  }
  .pg_home .section.sec4{
    padding: 133px 0;
  }
  .pg_home .section.sec5{

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

  }
  .pg_home .section.sec8{

  }

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


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


}

/*main*/
/*sec1*/
.home_sec1_wrap{
  position: relative;
  z-index: 1;
}
.flowing_letters_box{
  text-align: center;
  margin-bottom: 30px;
}
.flowing_letters{
  font-size: clamp(3.75rem, 3.125rem + 3.13vw, 6.875rem);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #e5e5e5;
  display: flex!important;
  align-items: center;
  margin-left: 30px;
}
.flowing_letters p{
  letter-spacing: 0;
}
.flowing_letters_ttx{
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
}
.flowing_letters_img{
  width: 174px;
  margin-inline:10px;
}
.flowing_letters_img img{
  border-radius: 15px;
}
.flowing_letters_img:before{
  padding-top: 70.85%;
}
.home_sec1_msg{
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_sec1_msg p{
  background: #171d2e;
  padding: 3px 10px;
  letter-spacing: 0;
}
.home_sec1_msg p + p{
  margin-top: 10px;
}
.link_1{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  position: relative;
  z-index: 1;
  pointer-events: all;
  text-decoration: none;
  filter: drop-shadow(20px 20px 30px rgba(27, 87, 148, 0.19));
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}
.link_1 p{
  letter-spacing: 0;
}
.link_1:before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: auto;
  background: linear-gradient(176deg,rgba(0, 43, 83, 1) 0%, rgba(1, 133, 205, 1) 100%);
  border-radius: 50%;
  transition: scale .3s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.link_1:hover{
  color: #fff;
}
.link_1:hover:before{
  scale: 1.13;
  transition: scale .5s cubic-bezier(0, 0.7, 0.32, 1.28);
}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box1{
  width: 100%;
}
.home_sec2_box1_tt{

}
.home_sec2_box1_tt1{
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.home_sec2_box1_tt2{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.home_sec2_box1_tt_en{
  font-size:18px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-align: right;
  margin-top: 10px;
  margin-right: 13px;
}
.home_sec2_box1_links{
  font-size: 16px;
  font-weight: 500;
  margin-top: 41px;
  text-align: right;
}
.home_sec2_box1_links p{
  letter-spacing: 0;
  color: #7f7f7f;
}
.home_sec2_box1_links p+p{
  margin-top: 10px;
}
.home_sec2_box1_links p.on{
  color: #FFF;
}
.home_sec2_box2{
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 0;
  margin-top: 30px;
}
.home_sec2_box2_items{

}
.home_sec2_box2_item{
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}
.home_sec2_box2_item:last-child{
  border-bottom: none;
}
.home_sec2_box2_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  pointer-events: all;
}
.home_sec2_box2_item_inner:hover {

}
.home_sec2_box2_item_right_img img{
  transition: 0.2s all;
}
.home_sec2_box2_item_inner:hover .home_sec2_box2_item_right_img img{
  transform: scale(1.03);
}
.home_sec2_box2_item:nth-child(1) .home_sec2_box2_item_inner:hover .home_sec2_box2_item_right_h3{
  color: #008bd5;
}
.home_sec2_box2_item:nth-child(2) .home_sec2_box2_item_inner:hover .home_sec2_box2_item_right_h3{
  color: #01a20c;
}
.home_sec2_box2_item:nth-child(3) .home_sec2_box2_item_inner:hover .home_sec2_box2_item_right_h3{
  color: #a28601;
}

.home_sec2_box2_item_left{
  width: 100%;
}
.home_sec2_box2_item_left_img{

}
.home_sec2_box2_item_left_img img{
  border-radius: 20px;
}
.home_sec2_box2_item_left_img:before{
  padding-top: 75.09%;
}
.home_sec2_box2_item_right{
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  ;
}
.home_sec2_box2_item_right_tt{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}
.home_sec2_box2_item_right_img{
  min-width: 53px;
}
.home_sec2_box2_item_right_h3{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  padding-left: 16px;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
}
.home_sec2_box2_item_right .content_desc{
  margin-top: 20px;
}
.home_sec2_box2_item_right_en{
  font-size: 18px;
  font-weight: 200;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  margin-top: 30px;
}

/*sec3*/
.home_sec3_tt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_sec3_tt_ja{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #aeaeae;
}
.home_sec3_tt_ja.wh{
  color: #fff;
}
.home_sec3_tt_en{
  font-size: 18px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #aeaeae;
  padding-top: 9px;
}
.home_sec3_items{
  margin-top: 40px;
}
.home_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec3_items .swiper-slide{
  width: 300px;
}
.home_sec3_box1{
  width: 100%;
}
.home_sec3_box1_img img{

}
.home_sec3_box1_img:before{
  padding-top: 78.26%;
}
.home_sec3_box2{
  width: 100%;
  margin-top: 20px;
}
.home_sec3_box2_tt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #aeaeae;
  padding-bottom: 13px;
}
.home_sec3_box2_tt_en{
  font-size: 18px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.home_sec3_box2_tt_num{
  font-size: 18px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.home_sec3_box2_tt_sub{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.home_sec3_box2 .content_desc{
  font-weight: 500;
  margin-top: 20px;
}

/*sec4*/
.home_sec4_wrap{
  border-radius: 30px;
}
.home_sec4_tt{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
.home_sec4_wrap .content_desc.center{
  font-weight: 500;
  margin-top: 28px;
}
.home_sec4_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 53px;
  margin-bottom:30px;
}
.home_sec4_box1{
  width: 100%;
  margin-top: 20px;
  order: 2;
}
.home_sec4_box1_tt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #aeaeae;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.home_sec4_box1_items{
  display: flex;
  flex-wrap: wrap;
  gap:16px 0;
  margin-top:40px;
}
.home_sec4_box1_item{
  width: 100%;
  cursor: pointer;
}
.home_sec4_box1_item_inner{
  display: block;
  text-align: center;
  background: #f2f2f2;
  border: 1px solid #aeaeae;
  padding: 10px;
  transition: all .2s;
}
.home_sec4_box1_item_inner:hover,
.home_sec4_box1_item.on .home_sec4_box1_item_inner{
  background: #c7cbd5;
}
.home_sec4_box1_item_txt1{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #2e2e2b;
  padding-bottom: 10px;
}
.home_sec4_box1_item_txt2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  padding-top: 16px;
}
.home_sec4_box2{
  width: 100%;
  order: 1;
}
.home_sec4_box2_img{
  border-radius: 20px;
}
.home_sec4_box2_img:before{
  padding-top: 128.97%;
}

.gjs-dashed .home_sec4_box1{
  width: 100%;
}
.gjs-dashed .home_sec4_box2{
  width: 100%;
  margin-top: 20px;
}
.gjs-dashed .home_sec4_box1_items,
.gjs-dashed .home_sec4_box2_imgs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.gjs-dashed .home_sec4_box1_item,
.gjs-dashed .home_sec4_box2_img{
  width: calc((100% - 90px) / 4);
}
.home_flags_wrap .swiper-slide{
  border-radius: 30px;
}
.home_flags_main_imgs{
  border-radius: 30px;
}

/* 国籍 */
.home_flags_wrap{
  position: relative;
  z-index: 1;
  border-radius: 30px;
}
.home_flags_main_imgs{

}
.home_flags_main_img{
  width: 100%;
  margin-left: auto;
}
.home_flags_main_img,
.home_flags_main_img img{
  border-radius: 30px;
}
.home_flags_main_img.img_fit:before{
  padding-top: 52.171%;
  /*padding-top: 793px;*/
  padding-top: 690px;
}
.home_flags_list{
  
  padding: 10px 0;
  /*position: absolute;*/
  /*z-index: 1;*/
  /*bottom: 50px;*/
  /*left: var(--margin-for-device-side-w);*/
  /*right: var(--margin-for-device-side-w);*/
  margin-top: 20px;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  
}
.home_flags_list .swiper-slide{
  width: 120px;
  padding: 0 10px;
  cursor: pointer;
}
.home_flags_list_item{
  background: #f7f7f7;
  border-radius: 10px;
  padding: 15px 10px 10px;
  padding: 10px 10px 5px;
  text-align: center;
  transition: 0.2s all;
  position: relative;
  z-index: 1;
}
.home_flags_list_item_img{

}
.home_flags_list_item_img img{
  height: 30px;
}
.home_flags_list_item_txt{
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin-top: 5px;
}
.home_flags_list_item_txt_en{
  font-size: 52px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #171d2e;
  paint-order: stroke fill;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 2;
  
}

.gjs-dashed .home_flags_list_item_txt_en{
  width: auto;
  font-size: 16px;
  color: #000;
  -webkit-text-stroke: none;
  paint-order: none;
  position: static;
}



.home_flags_list{
  padding: 30px 0;
}
.home_flags_list:after{
  content: "";
  background: #1b1b1b;
  position: absolute;
  z-index: -1;
  inset: 20px 0 20px 0;
}
.home_flags_list .swiper-wrapper{

}
.home_flags_list .swiper-slide.swiper-slide-active .home_flags_list_item{
  transform: scale(1.5);
  box-shadow: 0 0 2px #666;
}


.gjs-dashed .home_flags_main_imgs,
.gjs-dashed .home_flags_list{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px;
  padding: 30px;
}
.gjs-dashed .home_flags_main_img,
.gjs-dashed .home_flags_list_item{
  width: calc((100% - 90px) / 4);
}
.gjs-dashed .home_flags_main_img.img_fit:before{
  padding-top: 52.171%;
}
.gjs-dashed .home_flags_main_img{
  border: 10px solid #CCC;
  border-radius: 10px;
}

.gjs-dashed .home_flags_list{
  position: static;

}

@media (min-width:768px){
  .home_flags_list{
    /*bottom: 25px;*/
    bottom: 100px;
  }
  .home_flags_list_item_txt_en{
    font-size: 80px;
  }
  .home_flags_main_img.img_fit:before{
    padding-top: 500px;
  }
}
@media (min-width:1024px){
  
  .home_flags_list_item_txt_en{
    font-size: 80px;
  }
  
  .home_flags_list .swiper-slide{
    width: 200px;
    padding: 0 15px;
  }
  .home_flags_list_item_img img{
    height: 50px;
  }
  .home_flags_list_item_txt{
    font-size: 15px;
  }
}
@media (min-width:1200px){
  
  .home_flags_main_img{
    width: 46%;
  }
  .home_flags_main_img.img_fit:before{
    padding-top: 350px;
  }
  
  .home_flags_list{
    bottom: 110px;
  }
  .home_flags_list_item_txt_en{
    width: 550px;
    text-align: right;
    font-size: 100px;
  }
  
  .home_flags_list .swiper-slide{
   width: 200px;
    padding: 0 30px;
  }
  .home_flags_list_item_img img{
    height: 40px;
  }
  .home_flags_list_item_txt{
    font-size: 14px;
  }
}
@media (min-width:1470px){
  .home_flags_main_img{
    width: 50%;
  }
  .home_flags_main_img.img_fit:before{
    padding-top: 500px;
  }
  
  .home_flags_list{
  }
  .home_flags_list .swiper-slide{
    width: 180px;
  }
  .home_flags_list_item_txt_en{
    font-size: 120px;
  }
}
@media (min-width:1536px){
  .home_flags_list_item_txt_en{
    font-size: 120px;
  }
}
@media (min-width:1720px){
  .home_flags_list_item_txt_en{
    width: 650px;
    text-align: right;
    font-size: 120px;
  }
  
  .home_flags_list{
    bottom: 110px;
  }
  .home_flags_list .swiper-slide{
    width: 200px;
  }
  .home_flags_list_item_img img{
    height: 50px;
  }
  .home_flags_list_item_txt{
    font-size: 15px;
  }
}


/*sec5*/
.section_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.circle_bg{
  position: relative;
  top: 66px;
}
.circle_bg:before{
  content: "";
  display: block;
  width: 1920px;
  ;
  aspect-ratio:1920 / 2183;
  background-image: url(https://futurelink-global.com/system_panel/uploads/images/circle2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.cmn_list{
  overflow: hidden;
}
.cmn_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  position: relative;
}
.cmn_list .webgene-item{
  width: 50%;
  padding-inline:5px;
  border-right: 1px solid #cbcbcb;
  border-top: 1px solid #cbcbcb;
  padding-top:20px;
  padding-bottom: 20px;
}
.cmn_list .webgene-item a{
  color: #fff;
}
.cmn_list .webgene-item a .img:before{
  padding-top: 67.13%;
}
.cmn_list .webgene-item a .img,
.cmn_list .webgene-item a .img img{
  border-radius: 20px;
}
.cmn_list .webgene-item a .box2{

  margin-top: 17px;
}
.cmn_list .webgene-item a .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cmn_list .webgene-item a .date{
  font-size: 18px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 20px;
}
.cmn_list .webgene-item a .category{
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  background: #171d2e;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 2px 16px;
}
.cmn_list .webgene-item a .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 10px;
}

.cmn_list.top .webgene-blog{


}
.cmn_list.top .webgene-blog:before{

}
.cmn_list .webgene-item:last-child{
  border-right: none;
}

.cmn_list.btm .webgene-blog{

}
.cmn_list.btm .webgene-item{
  border-bottom: 1px solid #cbcbcb;
}
.cmn_list.btm .webgene-item:nth-child(n+3){
  /*display: none;*/
  ;
}
.cmn_list.btm .webgene-item:nth-child(n+1),
.cmn_list.btm .webgene-item:nth-child(n+2){
  display: none;
}

/*sec6*/
.home_sec6_wrap{

}
.home_sec6_wrap .cmn_list .webgene-item{
  border-top: none;
  border-bottom: none;
  border-right: none;
  padding-top: 0;
  padding-bottom: 0;
}
.home_sec6_wrap .cmn_list .webgene-item a{
  display: block;
  border:1px solid #cbcbcb;
  border-radius: 20px;
  padding: 10px;
}
.home_sec6_wrap .cmn_list.top .webgene-blog{

}
.home_sec6_wrap .cmn_list.top .webgene-item{

}
.home_sec6_wrap .cmn_list.btm .webgene-blog{

}
.home_sec6_wrap .cmn_list.btm .webgene-item{

}
.home_sec6_wrap .cmn_list.btm{
  margin-top: 10px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*sec5*/
  .cmn_list .webgene-item a .category{
    margin-top: 10px;
  }

  .content_desc{
    line-height: 1.6em;
  }
  
    .home_flags_list_item_txt_en{
        font-size: 28px;
        top: 42px;
    left: 17px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .flowing_letters_box{
    margin-bottom: 100px;
  }
  .flowing_letters{

  }
  .flowing_letters_ttx{
    font-size: 50px;
  }
  .flowing_letters_img{
    width: 174px;
    margin-inline:20px;
  }
  .home_sec1_msg{
    font-size: 17px;
  }
  .home_sec1_msg p{
    padding: 3px 24px;
  }
  .home_sec1_msg p + p{
    margin-top: 30px;
  }
  .link_1{
    width: 10rem;
    height: 10rem;
    margin-top: -1rem;
    margin-right: 20%;
    margin-left: auto;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 40%;
  }
  .home_sec2_box1_tt{

  }
  .home_sec2_box1_tt1{
    font-size: 50px;
  }
  .home_sec2_box1_tt2{
    font-size: 42px;
  }
  .home_sec2_box1_tt_en{
    font-size: 30px;
  }
  .home_sec2_box2{
    padding: 57px 0;
    margin-top: 48px;
  }
  .home_sec2_box2_items{

  }
  .home_sec2_box2_item{
    padding-bottom: 62px;
  }
  .home_sec2_box2_item_left{
    width:43.72%;
  }
  .home_sec2_box2_item_left_img{

  }
  .home_sec2_box2_item_left_img img{

  }
  .home_sec2_box2_item_left_img:before{

  }
  .home_sec2_box2_item_right{
    width: 50.64%;
    margin-top: 0;
  }
  .home_sec2_box2_item_right_tt{

  }
  .home_sec2_box2_item_right_img{

  }
  .home_sec2_box2_item_right_h3{
    font-size: 22px;
    padding-left: 24px;
  }
  .content_desc{

  }
  .home_sec2_box2_item_right .content_desc{
    margin-top: 40px;
  }
  .home_sec2_box2_item_right_en{
    font-size: 20px;
  }

  /*sec3*/
  .home_sec3_tt{

  }
  .home_sec3_tt_ja{
    font-size: 30px;
  }
  .home_sec3_tt_en{
    font-size: 20px;
  }
  .home_sec3_items{
    margin-top: 68px;
  }
  .home_sec3_item{

  }
  .home_sec3_items .swiper-slide{
    width: 600px;
  }
  .home_sec3_box1{

  }
  .home_sec3_box1_img img{

  }
  .home_sec3_box1_img:before{

  }
  .home_sec3_box2{
    margin-top: 30px;
    ;
  }
  .home_sec3_box2_tt{

  }
  .home_sec3_box2_tt_en{
    font-size: 20px;
  }
  .home_sec3_box2_tt_num{
    font-size: 20px;
  }
  .home_sec3_box2_tt_sub{
    font-size: 20px;
    margin-top: 51px;
  }
  .home_sec3_box2 .content_desc{
    margin-top: 32px;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_tt{
    font-size: 32px;
  }
  .home_sec4_wrap .content_desc.center{

  }
  .home_sec4_box{
    margin-top: 62px;
  }
  .home_sec4_box1{
    margin-top: 30px;
  }
  .home_sec4_box1_tt{
    font-size: 22px;
    padding-bottom: 29px;

  }
  .home_sec4_box1_items{
    gap: 23px 32px;
    margin-top: 50px;
  }
  .home_sec4_box1_item{
    width: calc(50% - 21.33px);
  }
  .home_sec4_box1_item_inner{
    padding: 14px 23px;
  }
  .home_sec4_box1_item_txt1{
    font-size: 20px;
    padding-bottom: 14px;
  }
  .home_sec4_box1_item_txt2{
    padding-top: 16px;
  }
  .home_sec4_box2{

  }
  .home_sec4_box2_img:before{

  }

  /*sec5*/
  .section_head{
    margin-bottom: 50px;
  }

  .cmn_list{

  }
  .cmn_list .webgene-blog{

  }
  .cmn_list .webgene-item{

  }
  .cmn_list .webgene-item a{

  }
  .cmn_list .webgene-item a .img:before{

  }
  .cmn_list .webgene-item a .box2{

  }
  .cmn_list .webgene-item a .date{

  }
  .cmn_list .webgene-item a .category{

  }
  .cmn_list .webgene-item a .title{

  }
  /*ブログ上*/
  .cmn_list.top .webgene-blog{
    /*  gap:0 92px;*/
    margin-inline:-46px;
  }

  .cmn_list.top .webgene-item{
    width: 50%;
    /*  width: calc(50% - 46px);*/
    padding: 48px 46px;
  }
  /*ブログ下*/
  .cmn_list.btm .webgene-blog{
    /*  gap:0 94px;*/
    margin-inline:-47px;
  }
  .cmn_list.btm .webgene-item{
    width: 50%;
    /*  width: calc(33.333% - 62.66px);*/
    padding-inline:47px;
    padding: 48px 47px;
  }

  /*sec6*/
  .home_sec6_wrap .cmn_list .webgene-blog{
    margin-inline:-15px;
  }
  .home_sec6_wrap .cmn_list .webgene-item{
    padding-top: 0;
    padding-bottom: 0;
    padding-inline:15px;
  }
  .home_sec6_wrap .cmn_list.btm{
    margin-top: 37px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_msg{
    font-size: 22px;
  }

  /*sec3*/
  .home_sec2_box1{
    width: 30%;
  }
  .home_sec2_box2{
    width: 100%;
    margin-top: 48px;
  }

  /*sec3*/
  .home_sec3_items .swiper-slide{
    width: 1030px;
  }
  .home_sec3_item{
    width:auto;
  }
  .home_sec3_box1{
    width: 44.66%;
  }
  .home_sec3_box2{
    width: 52.42%;
    margin-top: 0;
  }
  .home_sec3_items_outer{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_sec3_items .swiper-slide{
    width: 700px;
  }

  /*sec4*/
  .home_sec4_box1_items{
    gap: 23px 32px;
    margin-top: 50px;
  }
  .home_sec4_box1_item{
    width: calc(33.333% - 21.33px);
  }

  /*sec5*/
  /*ブログ下*/
  .cmn_list.btm .webgene-blog{
    /*  gap:0 94px;*/
    margin-inline:-47px;
  }
  .cmn_list.btm .webgene-item{
    width: 33.333%;
    /*  width: calc(33.333% - 62.66px);*/
    padding-inline:47px;
    padding: 48px 47px;
  }
  .cmn_list.btm .webgene-item:nth-child(n+3){
    display: block;
    border-right: none;
  }
  .cmn_list.btm .webgene-item:nth-child(n+4){
    /*display: none;*/
  }

  /*sec6*/
  .home_sec6_wrap .cmn_list .webgene-item a{
    padding: 22px;
  }
  .home_sec6_wrap .cmn_list.top .webgene-blog{
    margin-inline:-15px;
  }
  .home_sec6_wrap .cmn_list.top .webgene-item{
    padding-inline:15px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .home_sec6_wrap .cmn_list.btm .webgene-blog{
    margin-inline:-11px;
  }
  .home_sec6_wrap .cmn_list.btm .webgene-item{
    padding-inline:11px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .flowing_letters_box{

  }
  .flowing_letters{

  }
  .flowing_letters_ttx{
    font-size: 110px;
  }
  .home_sec1_msg{
    font-size: 38px;
  }


  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 19.73%;
  }
  .home_sec2_box1_tt{

  }
  .home_sec2_box1_tt1{
    font-size: 40px;
  }
  .home_sec2_box1_tt2{
    font-size: 31px;
  }
  .home_sec2_box1_tt_en{
    font-size: 40px;
  }
  .home_sec2_box2{
    width: 75.98%;
    margin-top: 48px;
  }
  .home_sec2_box2_items{

  }
  .home_sec2_box2_item{

  }
  .home_sec2_box2_item_left{

  }
  .home_sec2_box2_item_left_img{

  }
  .home_sec2_box2_item_left_img img{

  }
  .home_sec2_box2_item_left_img:before{

  }
  .home_sec2_box2_item_right{

  }
  .home_sec2_box2_item_right_tt{

  }
  .home_sec2_box2_item_right_img{

  }
  .home_sec2_box2_item_right_h3{
    font-size: 28px;
  }
  .content_desc{

  }
  .home_sec2_box2_item_right .content_desc{

  }
  .home_sec2_box2_item_right_en{
    font-size: 24px;
    margin-top: 0;
  }

  /*sec3*/
  .home_sec3_tt{

  }
  .home_sec3_tt_ja{
    font-size: 42px;
  }
  .home_sec3_tt_en{
    font-size: 28px;
  }
  .home_sec3_items{

  }
  .home_sec3_item{

  }
  .home_sec3_items .swiper-slide{
    width: 900px;
  }
  .home_sec3_box1{

  }
  .home_sec3_box1_img img{

  }
  .home_sec3_box1_img:before{

  }
  .home_sec3_box2{

  }
  .home_sec3_box2_tt{

  }
  .home_sec3_box2_tt_en{

  }
  .home_sec3_box2_tt_num{

  }
  .home_sec3_box2_tt_sub{
    font-size: 24px;
  }
  .home_sec3_box2 .content_desc{

  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_tt{
    font-size: 52px;
  }
  .home_sec4_wrap .content_desc.center{
    text-align: center;
  }
  .home_sec4_box{

  }
  .home_sec4_box1{
    width: 61.51%;
    order: 1;
    margin-top: 0;
  }
  .home_sec4_box1_tt{
    font-size: 25px;
  }
  .home_sec4_box1_items{

  }
  .home_sec4_box1_item{

  }
  .home_sec4_box1_item_inner{
    padding: 14px 5px;
  }
  .home_sec4_box1_item_txt1{

  }
  .home_sec4_box1_item_txt2{
    font-size: 12px;
  }
  .home_sec4_box2{
    width: 32.23%;
    padding-top: 10px;
    order: 2;
  }
  .home_sec4_box2_img:before{

  }

  /*sec5*/
  .section_head{

  }

  .cmn_list{

  }
  .cmn_list .webgene-blog{

  }
  .cmn_list .webgene-item{

  }
  .cmn_list .webgene-item a{

  }
  .cmn_list .webgene-item a .img:before{

  }
  .cmn_list .webgene-item a .box2{

  }
  .cmn_list .webgene-item a .date{

  }
  .cmn_list .webgene-item a .category{

  }
  .cmn_list .webgene-item a .title{

  }
  /*ブログ上*/
  .cmn_list.top .webgene-blog{

  }
  .cmn_list.top .webgene-item{

  }
  /*ブログ下*/
  .cmn_list.btm .webgene-blog{

  }
  .cmn_list.btm .webgene-item{

  }
}
@media (min-width:1470px){
  /*sec2*/
  .home_sec2_box1_tt1{
    font-size: 46px;
  }
  .home_sec2_box1_tt2{
    font-size: 35px;
  }

  /*sec3*/
  .home_sec3_items .swiper-slide{
    width: 1030px;
  }
  .home_sec3_box2_tt_sub{
    font-size: 28px;
  }


  /*sec4*/
  .home_sec4_box1_item_txt2{
    font-size: 14px;
  }
}
@media (min-width:1720px){
  /*sec2*/
  .home_sec2_box1_tt1{
    font-size: 56px;
  }
  .home_sec2_box1_tt2{
    font-size: 46px;
  }

  /*sec4*/
  .home_sec4_box1_item_inner{
    padding: 14px 23px;
  }
  .home_sec4_box1_item_txt2{
    font-size: 16px;
  }
}


.home_sec4_box2_imgs{

}
/*.home_sec4_box2_imgs .home_sec4_box2_img{
  display: none;
}
.home_sec4_box2_imgs .home_sec4_box2_img.on{
  display: block;
}
.gjs-dashed .home_sec4_box2_imgs .home_sec4_box2_img{
  display: block;
}*/



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




/*******************************
*　求職者
********************************/

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

}
.pg_forJobSeekers .section.sec1{

}
.pg_forJobSeekers .section.sec2{

}
.pg_forJobSeekers .section.sec3{
  padding-bottom: 80px;
}
.pg_forJobSeekers .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}
.pg_forJobSeekers .section:last-child{
  position: relative;
}
.pg_forJobSeekers .section:last-child:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 1696;
  background-image: url(https://futurelink-global.com/system_panel/uploads/images/20260701224524209823.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 49%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_forJobSeekers .section:last-child:before{
    width: 837px;
  }
}
@media (min-width:768px){
  .pg_forJobSeekers{

  }
  .pg_forJobSeekers .section.sec1{

  }
  .pg_forJobSeekers .section.sec2{

  }
  .pg_forJobSeekers .section.sec3{
    padding-bottom: 100px;
  }
  .pg_forJobSeekers .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  }
  .pg_forJobSeekers .section.sec1{

  }
  .pg_forJobSeekers .section.sec2{

  }
  .pg_forJobSeekers .section.sec3{
    padding-bottom: 200px;
  }
  .pg_forJobSeekers .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.seekers_sec1_wrap{

}
.seekers_bnr{
  text-align: right;
  display: block;
}
.seekers_sec1_items{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:20px 0;
  margin-top: 30px;
}
.seekers_sec1_item{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seekers_sec1_item.right .seekers_sec1_item_left{
  order: 2;
}
.seekers_sec1_item.right .seekers_sec1_item_right{
  order: 1;
}
.seekers_sec1_item_left{
  width: 14%;

}

.seekers_sec1_item_left_en{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  font-size: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #fff;
  -webkit-text-stroke: 2px #171d2e;
  paint-order: stroke fill;
}
.seekers_sec1_item_left_en p{

}
.seekers_sec1_item_right{
  width: 85.7%;
  border-left:2px solid #000000;
}
.seekers_sec1_item.right .seekers_sec1_item_right{
  border-right: 2px solid #000000;
  border-left:none;
}
.seekers_sec1_item_right_inner{
  padding: 19px 16px;
}
.seekers_sec1_item_right_img:before{
  padding-top: 70.68%;
}
.seekers_sec1_item_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.38em;
}
.seekers_sec1_item_tt p{
  letter-spacing: 0.05em;
}
.seekers_sec1_item_right .content_desc{

}
.seekers_sec1_item_lists{
  margin-top: 28px;
}
.seekers_sec1_item_list{

}
.seekers_sec1_item_list + .seekers_sec1_item_list{
  margin-top: 20px;
}
.seekers_sec1_item_lists_tt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  text-align: center;
  background: #000000;
  border-radius: 12px;
  color: #fff;
  padding: 0 10px 0 11px;
}
.seekers_sec1_item_list .content_desc{
  margin-top: 10px;
}

/*sec2*/
.seekers_sec1_item_left_en.yoko{
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  border-bottom: 1px solid #000000;
}
.seekers_sec2_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seekers_sec2_head_box1{
  width: 100%;
}
.seekers_sec2_head_box1_img:before{
  padding-top: 122.13%;
}
.seekers_sec2_head_box2{
  width: 100%;
  padding: 19px 0;
}
.seekers_sec2_head_box2_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.388em;
}
.seekers_sec2_head_box2_tt p{
  letter-spacing: 0.05em;
}
.seekers_sec2_head_box2_items{
  display: flex;
  flex-wrap: wrap;
  gap:20px 0;
  margin-top: 30px;
}
.seekers_sec2_head_box2_item{
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap:10px 0;

}
.seekers_sec2_head_box2_item_left{
  width: 94.38%;
  background: #eeeeee;
  padding: 13px 6px;
}
.seekers_sec1_item_lists_tt{
  text-align: left;
  display: inline-block;
}
.seekers_sec2_head_box2_item_left .content_desc{
  line-height: 1.875em;
  padding: 13px 5px;
}
.seekers_sec2_head_box2_item_right{
  font-size: 16px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #000;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*sec3*/
.seekers_sec3_wrap{

}
.seekers_sec3_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seekers_sec3_head_left{
  width: 100%;
}
.seekers_sec3_head_left .content_desc{
  margin-top: 23px;
}
.seekers_sec1_item_right{

}
.seekers_sec1_item_right_img:before{

}
.seekers_sec3_head_right{
  width: 100%;
  margin-top: 30px;
}
.seekers_sec3_items{

}
.seekers_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seekers_sec3_item + .seekers_sec3_item{
  margin-top: 40px;
}
.seekers_sec3_item_left{
  width: 100%;
}
.seekers_sec3_item_left_img:before{
  padding-top: 111.74%;
}
.seekers_sec3_item_right{
  width: 100%;
  margin-top: 20px;
  ;
}
.seekers_sec3_item_name{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.seekers_sec3_item_catch{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #000000;
  color: #fff;
  padding: 11px 13px;
  margin-top: 5px;
}
.seekers_sec3_item_right .content_desc{
  margin-top: 20px;
}

.seekers_sec3_btm{
  margin-top: 40px;
}
.seekers_sec3_btm .seekers_sec3_items{

}
.seekers_sec3_btm .seekers_sec3_item{

}
@media (max-width:767px){
  .seekers_sec1_item_lists_tt{
   font-size:14px;
  }
  .seekers_sec1_item_tt{
    font-size:17px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .seekers_sec1_wrap{

  }
  .seekers_bnr{
    margin-left: auto;
  }
  .seekers_sec1_items{
    margin-top: 50px;
  }
  .seekers_sec1_item{

  }
  .seekers_sec1_item_left{
    width: auto;
  }
  .seekers_sec1_item_left_en{

  }
  .seekers_sec1_item_left_en p{

  }
  .seekers_sec1_item_right{

  }
  .seekers_sec1_wrap .seekers_sec1_item.right{
    margin-top: 0;
  }
  .seekers_sec1_item_right_inner{
    padding: 19px 41px;
  }
  .seekers_sec1_item_right_img:before{

  }
  .seekers_sec1_item_tt{
    font-size: 24px;
  }
  .seekers_sec1_item_right .content_desc{

  }

  .seekers_sec1_item_lists{

  }
  .seekers_sec1_item_list{

  }
  .seekers_sec1_item_lists_tt{

  }
  .seekers_sec1_item_list .content_desc{

  }

  /*sec2*/
  .seekers_sec2_head{

  }
  .seekers_sec2_head_box1{

  }
  .seekers_sec2_head_box1_img:before{

  }
  .seekers_sec2_head_box2{

  }
  .seekers_sec2_head_box2_tt{
    font-size: 28px;
  }
  .seekers_sec2_head_box2_items{
    gap: 29px 50px;
  }
  .seekers_sec2_head_box2_item{
    width: calc(50% - 25px);
  }
  .seekers_sec2_head_box2_item_left{

  }
  .seekers_sec1_item_lists_tt{

  }
  .seekers_sec2_head_box2_item_left .content_desc{

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

  /*sec3*/
  .seekers_sec3_wrap{

  }
  .seekers_sec3_head{

  }
  .seekers_sec3_head_left{

  }
  .seekers_sec3_head_left .content_desc{
    margin-top: 23px;
  }
  .seekers_sec1_item_right{
    margin-top: 0;
  }
  .seekers_sec1_item_right_img:before{

  }
  .seekers_sec3_head_right{
    margin-top: 50px;
  }
  .seekers_sec3_head .seekers_sec1_item.right{
    justify-content: space-between;
  }
  .seekers_sec3_items{

  }
  .seekers_sec3_item{

  }
  .seekers_sec3_item_left{
    width: 42.28%;
  }
  .seekers_sec3_item_left_img:before{

  }
  .seekers_sec3_item_right{
    width: 54.36%;
  }
  .seekers_sec3_item_name{

  }

  .seekers_sec3_item_catch{
    font-size: 20px;
  }
  .seekers_sec3_item_right .content_desc{

  }
  .seekers_sec3_btm .seekers_sec3_items{

  }
  .seekers_sec3_btm .seekers_sec3_item{

  }

  .seekers_sec3_btm{
    margin-top: 30px;
  }

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


}
@media (min-width:1200px){
  /*sec1*/
  .seekers_sec1_wrap{

  }
  .seekers_bnr{

  }
  .seekers_sec1_items{
    gap:0 30px;
    margin-top: -50px;
  }
  .seekers_sec1_item{
    width: calc(50% - 15px);
  }
  .seekers_sec1_item_left{
    width: 14%;
  }
  .seekers_sec1_item_left_en{

  }
  .seekers_sec1_item_left_en p{

  }
  .seekers_sec1_item_right{

  }
  .seekers_sec1_wrap .seekers_sec1_item.right{
    margin-top: 217px;
  }
  .seekers_sec1_item_right_inner{
    padding: 19px 16px 19px 41px;
  }
  .seekers_sec1_item.right .seekers_sec1_item_right_inner{
    padding: 19px 41px 19px 0;
  }
  .seekers_sec1_item_right_img:before{

  }
  .seekers_sec1_item_tt{
    font-size: 30px;
  }
  .seekers_sec1_item_right .content_desc{

  }

  .seekers_sec1_item_lists{

  }
  .seekers_sec1_item_list{

  }
  .seekers_sec1_item_lists_tt{

  }
  .seekers_sec1_item_list .content_desc{

  }

  /*sec2*/
  .seekers_sec2_head{

  }
  .seekers_sec2_head_box1{
    width:32.23%;
  }
  .seekers_sec2_head_box1_img:before{

  }
  .seekers_sec2_head_box2{
    width:61.51%;
  }
  .seekers_sec2_head_box2_tt{
    font-size: 36px;
  }
  .seekers_sec2_head_box2_items{

  }
  .seekers_sec2_head_box2_item{

  }
  .seekers_sec2_head_box2_item_left{

  }
  .seekers_sec1_item_lists_tt{

  }
  .seekers_sec2_head_box2_item_left .content_desc{

  }
  .seekers_sec2_head_box2_item_right{

  }

  /*sec3*/
  .seekers_sec3_wrap{

  }
  .seekers_sec3_head{

  }
  .seekers_sec3_head_left{
    width: 46.05%;
  }
  .seekers_sec3_head .seekers_sec1_item.right{
    width: 100%;
  }
  .seekers_sec1_item_right_img:before{

  }
  .seekers_sec3_head_right{
    width: 49.01%;
    margin-top: 0;
  }
  .seekers_sec3_items{

  }
  .seekers_sec3_item{

  }
  .seekers_sec3_head .seekers_sec3_item + .seekers_sec3_item{
    margin-top: 92px;
  }
  .seekers_sec3_item_left{

  }
  .seekers_sec3_item_left_img:before{

  }
  .seekers_sec3_item_right{

  }
  .seekers_sec3_item_name{

  }

  .seekers_sec3_item_catch{
    font-size: 18px;
  }
  .seekers_sec3_item_right .content_desc{

  }
  .seekers_sec3_head .seekers_sec1_item_right{
    width: 83.57%;
  }


  .seekers_sec3_btm{
    margin-top: 59px;
  }
  .seekers_sec3_btm .seekers_sec3_items{
    display: flex;
    flex-wrap: wrap;
    gap:30px;
  }
  .seekers_sec3_btm .seekers_sec3_item{
    width: calc(50% - 15px);
  }
  .seekers_sec3_btm .seekers_sec3_item + .seekers_sec3_item{
    margin-top: 0;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .seekers_sec1_items{
    gap:0 160px;
  }
  .seekers_sec1_item{
    width: calc(50% - 80px);
  }

  .seekers_sec3_item_catch{
    font-size: 20px;
  }

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

  .seekers_sec1_item_tt{
    font-size: 36px;
  }
}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



/* カテゴリ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;
}

.body_english .pg_forJobSeekers .content_desc{
  text-align: left;
}
@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;
  }

  .home_flags_main_img.img_fit:before{
    padding-top: 250px;
  }

  .home_flags_wrap{
    margin-top: 30px;
  }
  .home_sec4_box_sub{
    margin-top: 30px;
  }
}
@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%;
  }

}





@media (min-width:1200px){

  body:not(.gjs-dashed) .pg_home .section.sec2{
    /*display: flex;
    align-items: center;*/
    /*height: 100vh;*/
    padding: 0;
  }
  body:not(.gjs-dashed) .home_sec2_box2{
    margin-top: 0;
  }
  body:not(.gjs-dashed) .home_sec2_wrap{

    padding: 100px 0;
  }

  /* PCのみで使う想定：ピン中にパネルを重ねる */
  body:not(.gjs-dashed) .home_sec2_box2_items{
    position: relative;
    will-change: transform;
    height: calc(100vh - 80px - 20px);
  }

  /* パネルは重ねる */
  body:not(.gjs-dashed) .home_sec2_box2_item {
    background: #171d2e;
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    opacity: 0.15;
    transition: opacity .2s ease;
    padding-top: 48px;
  }

  /* アクティブだけ触れる */
  .home_sec2_box2_item .is-active{
    pointer-events: auto;
    opacity: 1;
  }

  /* 画像などがはみ出す場合の保険 */
  .home_sec2_box2_items{
    overflow: hidden;
  }

  /* GSAP有効時だけ重ねる */
  .home_sec2_box2_item.is-gsap-panels .home_sec2_box2_items{
    position: relative;
    overflow: hidden;
  }

  /* パネルを重ねる（pin中だけ） */
  .home_sec2_box2_item.is-gsap-panels .home_sec2_box2_item {
    position: absolute;
    inset: 0;
    width: 100%;
  }
}

@media (min-width:1200px) and (min-height:600px){
  body:not(.gjs-dashed) .home_sec2_box2_items{
    height: 600px;
  }
}
@media (min-width:1470px) and (min-height:600px){
  body:not(.gjs-dashed) .home_sec2_box2_items{
    height: 570px;
  }
}
@media (min-width:1720px) and (min-height:600px){
  body:not(.gjs-dashed) .home_sec2_box2_items{
    height: 700px;
  }
}



.bisiness_sec3_wrap_bg {
  background: #f2f2f2;
  margin-top: 60px;
  padding-top: 0;
}
.bisiness_sec3_item {
  background: #f2f2f2;
}

@media (min-width:1200px){


  /* PCのみで使う想定：ピン中にパネルを重ねる */
  body:not(.gjs-dashed) .bisiness_sec3_items{
    position: relative;
    will-change: transform;
    height: calc(100vh - 80px - 20px);
  }

  /* パネルは重ねる */
  body:not(.gjs-dashed) .bisiness_sec3_item {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    opacity: 0.15;
    transition: opacity .2s ease;

  }

  /* アクティブだけ触れる */
  .bisiness_sec3_item .is-active{
    pointer-events: auto;
    opacity: 1;
  }

  /* 画像などがはみ出す場合の保険 */
  .bisiness_sec3_items{
    overflow: hidden;
  }

  /* GSAP有効時だけ重ねる */
  .partner_service.is-gsap-panels .bisiness_sec3_items{
    position: relative;
    overflow: hidden;
  }

  /* パネルを重ねる（pin中だけ） */
  .partner_service.is-gsap-panels .bisiness_sec3_item {
    position: absolute;
    inset: 0;
    width: 100%;
  }
}

@media (min-width:1200px) and (min-height:600px){
  body:not(.gjs-dashed) .bisiness_sec3_items{
    height: 600px;
  }
}
@media (min-width:1470px) and (min-height:600px){
  body:not(.gjs-dashed) .bisiness_sec3_items{
    height: 570px;
    height: 100vh;
  }
}
@media (min-width:1720px) and (min-height:600px){
  body:not(.gjs-dashed) .bisiness_sec3_items{
    height: 900px;
    height: calc(100vh - 150px);
  }
}



.bisiness_sec5_box_panel{

}
.bisiness_sec5_box_panel:after{
  transition: 0.2s all;
}
.bisiness_sec5_box_panel:hover:after{
  background: rgba(0,0,0,0.4);
}

.contact_items,
.contact_item,
.contact_box {
  overflow-anchor: none;
}

.mv_inner_left_ttx{
  width: 840px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.mv_inner_left_ttx_thumbs{
  width: 20.95%;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}
.mv_inner_left_ttx_thumbs_item{
  border-radius: 15px;
  overflow: hidden;
}


/* 横スクロール */

.pg_home .section.sec3 {
  overflow: hidden;
}

.scroll_container {
  overflow: hidden;
}

@media (min-width:1024px){

  /* 選ばれる理由 */
  .scroll{
    padding-top: 100px;
  }

  .scroll_container{
    position: relative;
    z-index: 1;
    height: calc(100vh - 100px - 103px - 35px);
    margin-top: 35px;
  }
  .scroll_wrap{
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-right: 200px;
  }

  .gjs-dashed .scroll_container{
    height: auto;
  }
  .gjs-dashed .scroll_wrap{
    display: block;
    position: static;
    height: auto;
  }
  .gjs-dashed .home_sec3_item + .home_sec3_item{
    margin-top: 50px;
    margin-left: 0;
  }



  .home_sec3_item{
    width: 1030px;
  }
  .home_sec3_item + .home_sec3_item{
    margin-top: 0;
    margin-left: 60px;
  }

}

@media (min-width:1200px){

  /* 選ばれる理由 */
  .scroll{
    /*    padding-top: 175px;*/
    padding-top: 0;
    padding-bottom: 180px;
  }
  .scroll_container{
    height: calc(100vh - 175px - 110px - 35px);
    margin-top: 58px;
  }
  .home_sec3_item{
    width: 1030px;
  }

}
@media (min-width:1470px){
  .scroll_wrap{
    padding-right: 500px;
    padding-right: 0;
  }

  .home_sec3_item + .home_sec3_item{
    margin-top: 0;
    margin-left: 95px;
  }
}

