@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: "Jost", sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family: "Zen Kaku Gothic New", 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{
  background-image: url(/system_panel/uploads/images/bg-beige-texture-256.jpg);
  background-repeat: repeat;
  background-position: top left;
}*/

/*背景グレー*/
body{
  background-image: url(/system_panel/uploads/images/gr_bg.jpg);
  background-repeat: repeat;
  background-position: top left;
}

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



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

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: 130px;
  height: inherit;
  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;
}

.hdr_lang{
  width: 150px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  background: #fff;
  color: #181818;
  border-radius: 5px;
  padding: 8px 21px 8px 13px;
  position: relative;
  transition: all .2s;
  border: 1px solid #181818;
  margin-right: 0;
  margin-left: auto;
  margin-top: 20px;
}
.hdr_lang:hover{
  border: 1px solid #1c1c1c;
  background: #ccc;
  color: #181818;
}
.hdr_lang:after{
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background-image: url(/system_panel/uploads/images/cc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}
.hdr_lang_select{
  display: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  background: #333;
  color: #FFF;
  padding: 5px 0;
  transition: 0.2s all;
}
.hdr_lang_select p{
  padding: 5px 10px;
  cursor: pointer;
}
.hdr_lang:hover .hdr_lang_select{
  display: block;
}
@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    width: 199px;
    aspect-ratio:199 / 73;
    position: absolute;
    top: 30px;
    left: 2.08%;
    transition: all .2s;
  }
  .hdr_logo img{
    width: 140px;
  }

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.6);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
    height: auto;
  }

  .header.slim .hdr_logo{
    top: 10px;
    width: 140px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    display: block;
    background: #e2824a;
    color: #fff;
    width: 200px;
    text-align: center;
    border-radius: 0 0 0 10px;
    border: 1px solid transparent;
    padding: 26px 0;
    font-size: 15px;
    font-weight: 700;
    margin-left: 41px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    color: #e2824a;
    border: 1px solid #e2824a;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    transition: all .2s;
  }
  .hdr_contact_btn p:before{
    content:"\f003";
    font-family: "FontAwesome";
    margin-right: 16px;
  }

  .var_gr .hdr_contact_btn{
    background: #393a57;
  }
  .var_gr .hdr_contact_btn:hover{
    color: #fff;
    border: 1px solid #393a57;
    background: #393a57;
    color: #fff;
  }
  .var_gr .hdr_contact_btn:hover p{
    transform: scaleX(1.06);
  }

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr_lang{
    width: 250px;
    margin-top: 30px;
  }
}
@media (min-width:1024px){

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

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

  /* ヘッダースリム */
  .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 img{
    /*width: 420px;*/
  }

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  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テキスト */
.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_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mv_box1{
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.mv_box1_txt1{
  font-size: clamp(3.75rem, 2.5rem + 6.25vw, 10rem);
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.08em;
  color: #fff;
  /*filter: drop-shadow(0px 0px 2px #181818);*/
  text-shadow: 1.721px 2.457px 18px rgba(48, 21, 8, 0.36);
}
.mv_box1_txt1 p{
  white-space: nowrap;
  letter-spacing: 0;
}
.mv_box1_txt2{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
  color: #77632c;
}
.mv_box1_txt3{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  color: #fff;
  /* filter: drop-shadow(0px 0px 2px #181818);*/
  text-shadow: 1.721px 2.457px 18px rgba(48, 21, 8, 0.36);
  line-height: 1;
  margin-top: 10px;
  margin-right: -20px;
}
.mv_box2{
  width: 90%;
  margin-inline:auto;
  margin-top: 20px;
  position: relative;
}
.mv_box2:before{
  content: "";
  display: block;
  width: 21.49%;;
  aspect-ratio:175 / 173;
  background-image: url(/system_panel/uploads/images/mv_left_img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.mv_box2:after{
  content: "";
  display: block;
  width: 17.88%;;
  aspect-ratio:144 / 198;
  background-image: url(/system_panel/uploads/images/mv_right_img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.mv_box2_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 802 / 723;

}
.mv_box2_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mv_bg.png);
}
.circle{

  width: 20.81%;
  display: block;
  position: relative;
  margin-top: 38px;
  margin-left: auto;
}
.circle:before{
  content: "↓";
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.circle_img{

}
.circle_img{
  animation: rotation-r 12s linear infinite;
}
@keyframes rotation-r {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

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

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

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

  /* MV */
  .mv{
    padding-top: 95px;
  }
  .mv_inner{

  }
  .mv_box1{
    text-align: left;
    width: 48.91%;
  }
  .mv_box1_txt1{

  }
  .mv_box1_txt2{
    font-size: 18px;
    margin-top: 16px;
  }
  .mv_box1_txt3{
    font-size: 16px;
    margin-top: 20px;
  }
  .mv_box2{
    width: 50.96%;
    padding-top: 12px;
    margin-inline:0;
    margin-top: 0;
  }
  .mv_box2_img{

  }
  .mv_box2_img img{

  }
  .circle{
    width: 13.81%;
    display: inline-block;
    margin-left: 0;
  }
  .circle:before{
    font-size: 20px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
    padding-top: 95px;
  }
  .mv_inner{

  }
  .mv_box1{
    width: 50.91%;
  }
  .mv_box1_txt1{

  }
  .mv_box1_txt2{
    font-size: 18px;
    margin-top: 25px;
  }
  .mv_box1_txt3{
    font-size: 24px;
    margin-top: 38px;
  }
  .mv_box2{
    width: 52.96%;
    margin-right: -4.5%;
  }
  .mv_box2:before{
    bottom: -1em;;
  }
  .mv_box2:after{
    bottom: -1em;;
  }
  .mv_box2_img{

  }
  .mv_box2_img img{

  }

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

  /* MV */
  .mv{
    padding-top: 95px;
  }
  .mv_inner{

  }
  .mv_box1{

  }
  .mv_box1_txt1{

  }
  .mv_box1_txt2{
    font-size: 20px;
  }
  .mv_box1_txt3{
    font-size: 28px;
  }
  .mv_box2{

  }
  .mv_box2:before{
    bottom: -100px;;
  }
  .mv_box2:after{
    bottom: -100px;;
  }
  .mv_box2_img{

  }
  .mv_box2_img img{

  }
  .circle{

  }
  .circle:before{
    font-size: 30px;
  }
}
@media (min-width:1470px){

  .mv_box1_txt2{
    font-size: 22px;
  }
  .mv_box1_txt3{
    font-size: 30px;
  }
  .mv_box2:before{
    bottom: -155px;;
    left: -4.5em;
  }
  .mv_box2:after{
    bottom: -142px;
    right: 1em;
  }
  .circle{
    width: auto;
  }
  .circle:before{
    font-size: 45px;
  }
}
@media (min-width:1720px){
  .mv_box1_txt2{
    font-size: 28px;
  }
  .mv_box1_txt3{
    font-size: 40px;
  }

  .mv_box2:after{
    right: -2em;
  }
}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.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_inner{
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.pg_header_box1{
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.pg_header_tt{

}
.pg_header_tt_en{
  font-size: clamp(2.5rem, 1rem + 7.5vw, 10rem);
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.018em;
  text-shadow: 1.721px 2.457px 18px rgba(48, 21, 8, 0.36);
  color: #fff;
}
.pg_header_tt_h1{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #77632c;
  text-shadow: 1px 1px 0px #e8e8e7, -1px 1px 0px #e8e8e7, 1px -1px 0px #e8e8e7, -1px -1px 0px #e8e8e7, 1px 0px 0px #e8e8e7, 0px 1px 0px #e8e8e7, -1px 0px 0px #e8e8e7, 0px -1px 0px #e8e8e7;
}
.pg_header_box2{
  width: 82.23%;
}
.pg_header_box2_inner{
  margin-right: var(--margin-for-device-side-w);
}
.pg_header_box2_img{

}
.pg_header_box2_img img{
  border-radius: 20px 0 0 20px;
}
.pg_header_box2_img:before{
  padding-top: 180px;
}

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

  .pg_header_title_txt{

  }

  .pg_header_inner{

  }
  .pg_header_box1{

  }
  .pg_header_tt{

  }
  .pg_header_tt_en{

  }
  .pg_header_tt_h1{
    font-size: 18px;
    margin-top: 24px;
  }
  .pg_header_box2{

  }
  .pg_header_box2_inner{

  }
  .pg_header_box2_img{

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

  .pg_header_title_txt{

  }

  .pg_header_inner{

  }
  .pg_header_box1{

  }
  .pg_header_tt{

  }
  .pg_header_tt_en{

  }
  .pg_header_tt_h1{
    font-size: 24px;
  }
  .pg_header_box2{

  }
  .pg_header_box2_inner{

  }
  .pg_header_box2_img{

  }
  .pg_header_box2_img img{

  }
  .pg_header_box2_img:before{
    padding-top: 500px;
  }
}
@media (min-width:1200px){

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

  .pg_header_title_txt{

  }

  .pg_header_box2_img:before{
    padding-top: 600px;
  }
  .pg_header_tt_h1{
    font-size: 28px;
  }
}



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

.footer{
  margin-top: 80px;
}

.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: 600;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  background: #242435;
  color: #fff;
  padding: 8px;
  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: #e2824a;
  color: #fff;
  text-decoration: none;
  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: #bcbcbc;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{

}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2_en{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #181818;
}
.ftr_contact_box1 .content_desc{
  font-size: 15px;
  font-weight: 500;
  line-height: 2em;
  margin-top: 20px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tt{
  position: relative; 
  text-align: center;
}
.ftr_contact_box2_item_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #bfbfbf;
  margin: 25px auto 0;
}
.ftr_contact_box2_item_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 24px;
  margin-inline:auto;
  margin-bottom: 16px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 24;
  background-image: url(/system_panel/uploads/images/tel.png);

}
.var_gr .ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  background-image: url(/system_panel/uploads/images/tel_bl.png);
}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 18;

  background-image: url(/system_panel/uploads/images/mail.png);
}
.var_gr .ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  background-image:  url(/system_panel/uploads/images/mail_bl.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_link{
  margin-top: 26px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  line-height: 1;
}
.ftr_contact_box2_ite_tel1 a:hover{
  color: #77632c;
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 202px;
  background: #e2824a;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid transparent;
  margin-inline:auto;
  padding: 13px 0;
}
.link_1:hover{
  background: #fff;
  color: #181818;
  border: 1px solid #e2824a;
}
.link_1 p{
  letter-spacing: 0;
}
.var_gr .link_1{
  background: #242435;
}
.var_gr .link_1:hover{
  background: #fff;
  border: 1px solid #242435;
}

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

}
.ftr_add{
  margin-top: 14px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}
.ftr_add_txt a:hover{
  color:#77632c;
}
.ftr_add_items{

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

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
    margin-top: 0!important;
  }

  .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 #bfbfbf;
    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: 175px;
    margin-inline:auto;
  }

  .ftr_add_tel{
    width: 215px;
    margin-inline: auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }
  .ftr_copy{
    margin-top: 91px;
  }

  .ftr_contact_box1 .tt2_en{
    font-size: 36px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    position: relative;
    padding: 44px 0 40px;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #bfbfbf;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #bfbfbf;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_ite_tel2{

  }
  .link_1{

  }

  .ftr_1_box1{
    width: 44.23%;
  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_add{
    margin-top: 40px;
  }

  .ftr_1_box2{
    width: 45.01%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ftr_link{

  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 16px;
  }
  .ftr_link:nth-child(odd){
    width: 48.49%;
    position: relative;
  }
  .ftr_link:nth-child(odd):after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #959088;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_link:nth-child(even){
    width: 40.87%;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }

  .ftr_contact_box1{
    width: 46.23%;
    text-align: left;
    /*    padding-top: 40px;*/
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 42px;
    display: block
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top:0;
  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_ite_tel2{

  }
  .link_1{

  }

  .ftr_1_box2{
    width: 30.01%;
    padding-top: 117px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ftr_link{

  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 16px;
  }
  .ftr_link:nth-child(odd){
    width: 48.49%;
    position: relative;
  }
  .ftr_link:nth-child(odd):after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #959088;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_link:nth-child(even){
    width: 40.87%;
  }

  .ftr_contact_box2_item:last-child:after{
    display: none;
  }
}
@media (min-width:1200px){

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

}
@media (min-width:1536px){
  .ftr_1_box2{
    width: 24.01%;
  }
  .ftr_link:nth-child(even){
    width: 33.87%;
  }
}
@media (min-width:1720px){
  .ftr_link:nth-child(even){
    width: 33.87%;
  }
}

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


/* テーブル用 */
.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 #393a57;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #393a57;
  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: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  border-bottom: 1px solid #2e2e2e;
  background: none;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 16px 50px 16px 0;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  text-align: left;
}
.read_more a p{
  letter-spacing: 0.1em;
}
.read_more a:after{
  content: "";
  width: 25px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/cc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 7px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #181818;
  background: none;
}
.read_more a:hover:after{
  margin-right: 0;
  right: 0;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  line-height: 1;
  color: #e2824a;
}
.tt2_en{

}
.var_gr .tt2_en{
  color: #393a57;
}
.tt2_en:before{
  content: "";
  display: block;
  width: 20px;;
  aspect-ratio:20 / 48;
  background-image: url(/system_panel/uploads/images/left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 9px;
}
.tt2_en:after{
  content: "";
  display: block;
  width: 20px;;
  aspect-ratio:20 / 48;
  background-image: url(/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 9px;
}

.var_gr .tt2_en:before{
  background-image: url(/system_panel/uploads/images/bb_left.png);
}
.var_gr .tt2_en:after{
  background-image: url(/system_panel/uploads/images/bb_right.png);
}

.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: 0.2em;
  color: #e2824a;
  margin-top: 5px;
}
.var_gr .tt2_ja{
  color: #77632c;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.tt2.news .tt2_en{
  display: flex;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;

}
.tt2.news .tt2_en:before{
  content: "";
  display: block;
  width: 60px;;
  aspect-ratio:92 / 80;
  background-image: url(/system_panel/uploads/images/left_icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.tt2.news .tt2_en:after{
  content: "";
  display: block;
  width: 36px;;
  aspect-ratio:62 / 82;
  background-image: url(/system_panel/uploads/images/right_icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}
.tt2.news .tt2_ja{
  color: #77632c;
}

.tt2.sm .tt2_en{
  align-items: center;
}

.tt2_en.noimg:before,
.tt2_en.noimg:after{
  display: none;
}

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

}

.lg_desc{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.lg_desc p{
  letter-spacing: 0.1em;
}
@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: inherit;
    font-size: 18px;
    padding: 11px 50px 11px 0;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 7px;
  }

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

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }
  .tt2.news .tt2_en{
    font-size: 80px;
  }
  .tt2.news .tt2_en:before{
    width: 92px;;
    margin-right: 20px;
  }
  .tt2.news .tt2_en:after{
    width: 62px;;
    margin-left: 20px;
  }

  .lg_desc{
    font-size: 28px;
  }
}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .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){
  .tt2.news .tt2_en{
    font-size: 100px;
  }

  .lg_desc{
    font-size: 35px;
  }

  .tt2.sm .tt2_en{
    font-size:22px;
  }
}


@media (min-width:1366px){

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


  .tt2.news .tt2_en{
    font-size: 100px;
  }
  .tt2.news .tt2_ja{
    margin-top: 7px;
  }

  .tt2.sm .tt2_en{
    font-size:28px;
  }
  .tt2.sm .tt2_ja{

  }
}

.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{
  padding-top: 50px;;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 0;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 102px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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

  }
  .pg_home .section.sec4{
    padding-top: 120px;
  }
  .pg_home .section.sec5{
    padding-top: 129px;
  }
  .pg_home .section.sec6{
    padding-top: 130px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*main*/

/*sec1*/
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
  border-right: 1px solid #7c7c7c;
  padding-bottom: 10px;
  position: relative;
}
.news_list .webgene-item:nth-child(2n){
  border-right: none;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item a:hover{
  color:#77632c;
}
.news_list .webgene-item .img{
  overflow: hidden;
  border-radius: 10px;
}
.news_list .webgene-item .img img{
  border-radius: 10px;
}
.news_list .webgene-item .img:before{
  padding-top: 75.71%;
}
.news_list .webgene-item .box2{
  margin-top: 10px;
}
.news_list .webgene-item .box2 .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 4px 26px;
  margin-top: 10px;
}
.news_list .webgene-item .date{
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875em;
  margin-top: 10px;
}

/*sec2*/
.home_sec2_box{
  display: flex;
  flex-wrap: wrap;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item:nth-child(n+2){
  margin-top: 60px;;
}
.home_sec2_item_inner{
  background-image: url(/system_panel/uploads/images/bg2.jpg);
  background-repeat: repeat;
  background-position: top left;
  border-radius: 20px;
  padding: 20px;
}
.var_gr .home_sec2_item_inner{
  background-image: url(/system_panel/uploads/images/vv.jpg);
}
.home_sec2_item_img_outer{
  position: relative;
}
.home_sec2_item_img_outer:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform:translateX(-50%);
  top: -45px;
  z-index: 2;
}
.home_sec2_item:first-child .home_sec2_item_img_outer:before{
  width: 15.16%;
  aspect-ratio:113 / 95;
  background-image: url(/system_panel/uploads/images/op1.png);
}
.home_sec2_item:last-child .home_sec2_item_img_outer:before{

  width: 19.28%;
  aspect-ratio:108 / 109;
  background-image: url(/system_panel/uploads/images/op2.png);

}
.home_sec2_item_img:before{
  padding-top: 80.96%;
}
.home_sec2_item_img img{
  border-radius: 15px;
}
.home_sec2_item_box2{
  margin-top: 20px;
}
.home_sec2_item_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #b51d3f;
  display: flex;
  justify-content: center;
}
.var_gr .home_sec2_item_tt{
  color: #393a57;
}
.home_sec2_item_tt:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:27 / 42;
  background-image: url(/system_panel/uploads/images/mae.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.var_gr .home_sec2_item_tt:before{
  background-image: url(/system_panel/uploads/images/var2_bl.png);
}
.home_sec2_item_tt:after{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:27 / 42;
  background-image: url(/system_panel/uploads/images/ushiro.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}
.var_gr .home_sec2_item_tt:after{
  background-image: url(/system_panel/uploads/images/var2_bl_right.png);
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height:2.25em;
  text-align: justify;
}
.home_sec2_item .content_desc{
  margin-top: 20px;
}
.home_sec2_item .read_more{
  margin-top: 0;
}

/*sec3*/
.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}
.home_sec3_item{
  width: 100%;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 30px;
}
.home_sec3_item_inner{
  background: #fff;
  border-radius: 15px;
  padding: 30px 16px;
}
.home_sec3_item_img{
  text-align: center;
}
.ploblem_desc{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65em;
  text-align: center;
  margin-top: 20px;
}
.home_sec3_wrap .content_desc.center{
  margin-bottom: 30px;
}

.lg_desc.icon{
  position: relative;
}
.lg_desc.icon:before{
  content: "";
  display: block;
  width: 30px;
  aspect-ratio:76 / 132;
  background-image: url(/system_panel/uploads/images/left01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}
.lg_desc.icon:after{
  content: "";
  display: block;
  width: 40px;
  aspect-ratio:115 / 130;
  background-image: url(/system_panel/uploads/images/right01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}

/*sec4*/
.home_sec4_wrap{

}
.home_sec4_box1{
  width: 50%;
}
.home_sec4_box1_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 524 / 470;
}
.home_sec4_box1_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/left_bg.png)
}
.home_sec4_box2{
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 50px;
  z-index: 0;
  padding: 40px 16px;
}
.home_sec4_box2 .tt2{

}
.sub_tt{
  font-size: 18px;
  font-weight: 600;
  line-height: 2em;
} 
.sub_tt p{
  letter-spacing: 0.1em;
}
.home_sec4_box2 .sub_tt{
  text-align: center;
}
.home_sec4_box2 .content_desc{
  margin-top: 20px;
}
.content_block:nth-child(n+2){
  margin-top: 20px;
} 
.home_sec4_box3{
  width: 50%;
  margin-left: auto;
  margin-top: -20px;
}
.home_sec4_box3_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 584 / 495;
}
.home_sec4_box3_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/right_bg.png)
}

/*sec5*/
.home_sec5_items{
  margin-top: 40px;
}
.home_sec5_item{
  display: flex;
  flex-wrap: wrap;
}
.home_sec5_item:nth-child(n+2){
  margin-top: 50px;
}
.home_sec5_item_box1{
  width: 100%;
}
.home_sec5_item_box1_img{

}
.home_sec5_item_box1_img img{
  border-radius: 20px 20px 0 0;
}
.home_sec5_item_box1_img:before{
  padding-top: 86%;
}
.home_sec5_item_box2{
  width: 100%;
  background: #f4f1eb;
  border-radius:0 0 20px 20px;
  padding: 30px 16px;;
}
.home_sec5_item.meeting .home_sec5_item_box2{
  border-radius:0;
}
.var_gr .home_sec5_item_box2{
  background: rgba(255,255,255,0.6);
}
.home_sec5_item_num{
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-en);
  color: #7a6738;
}
.home_sec5_item_box3{
  width: 100%;
  order: 3;
}
.home_sec5_item_box3 .link_2{
  margin-top: 0;
  border-radius: 0 0 20px 20px;
  background: #e3d7b6;
  color: #393a57;
}
.home_sec5_item_box3 .link_2:hover{
  background: #fff;
}
.home_sec5_item_box3 .link_2 p:before{
  background-image: url(/system_panel/uploads/images/down_1.svg);
}
.var_gr .home_sec5_item_num{
  color: #393a57;
}
.home_sec5_item_box2 .sub_tt{

}
.sub_tt strong{
  color: #e2824a;
  font-weight: 600;
}
.home_sec5_item_box2 .content_desc{
  margin-top: 20px;
}

/*sec6*/
.home_sec6_item{
  display: flex;
  flex-wrap: wrap;
}
.home_sec6_item:nth-child(n+2){
  margin-top: 50px;
}
.home_sec6_box1{
  width: 100%; 
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 30px 16px;
  order: 2;
}
.home_sec6_box1_tt{
  display: flex;
  display: block;
  align-items: flex-start;
}
.home_sec6_box1_tt_left{
  position: relative;
  margin-right: 20px;
}
.home_sec6_box1_tt_left:after{

}
.home_sec6_item.process .home_sec6_box1_tt_left:after{

}
.home_sec6_item.faq .home_sec6_box1_tt_left:after{

}
.home_sec6_box1_tt_left .tt2_en{
  display: block;
  position: relative;
}
.home_sec6_box1_tt_left .img_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_sec6_box1_tt_left .tt2_en:after{

}
.home_sec6_box1_tt_left .tt2_ja{
  margin-top: 10px;
}
.home_sec6_box1 .content_desc{
  margin-top: 20px;
}
.home_sec6_box1 .read_more{

}
.home_sec6_box2{
  width: 100%; 
  order: 1;
}
.home_sec6_box2_img{

}
.home_sec6_box2_img img{
  border-radius: 20px 20px 0 0;
}
.home_sec6_box2_img:before{
  padding-top: 72.2%;
}


/*インスタ*/
.home_info_box{
  display: flex;
  flex-wrap: wrap;
}
.home_info_item{
  width: 100%;
}
.home_info_item:nth-child(n+2){
  margin-top: 40px;;
}
.home_info_item_inner{

}

.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 a{

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

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

}
@media (max-width:767px){
  /*sec6*/
  .home_sec6_box1_tt{
    flex-wrap: wrap;
  }
  .tt_icon{
    margin-left: auto;
    margin-top: 10px;
  }
  .home_sec6_box1_tt_left .tt2_en{
    width: 100%;
  }

  .sub_tt{
    font-size: 18px;
  }
  .sub_tt p{
    letter-spacing: 0;
  }

  .lg_desc{
    font-size: 18px; 
  }

  .tt2_en{
    font-size: 24px;
    align-items: center;
  }

  .home_sec2_item:first-child .home_sec2_item_img_outer:before{
    width: 20.16%;
  }
}
@media (min-width:768px){
  .news_list .webgene-item .category{
    margin-top: 0;
  }

  /*sec2*/
  .home_sec2_box{
    margin-inline:-15px;
  }
  .home_sec2_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_item_inner{
    padding: 30px;
  }
  .home_sec2_item_img_outer{

  }
  .home_sec2_item_img_outer:before{
    top: -40px;
  }
  .home_sec2_item:first-child .home_sec2_item_img_outer:before {
    width: 19.28%;
  }
  .home_sec2_item:last-child .home_sec2_item_img_outer:before{
    width: 20.17%;
  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_box2{
    margin-top: 33px;
  }
  .home_sec2_item_tt{
    font-size: 26px;
  }
  .home_sec2_item_tt:before{

  }
  .home_sec2_item_tt:after{

  }
  .content_desc{

  }
  .home_sec2_item .read_more{

  }

  /*sec3*/
  .home_sec3_items{
    margin-inline:-15px;
    margin-top: 60px;
    margin-bottom: 56px;
  }
  .home_sec3_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .home_sec3_item_inner{
    padding: 46px 10px;
  }
  .home_sec3_item_img{

  }
  .ploblem_desc{
    font-size: 18px;
    margin-top: 28px;
  }
  .lg_desc.icon:before{
    width: 5%;
    left: 0;
    top: 20%;
  }
  .lg_desc.icon:after{
    width: 7.56%;
    right: 0;
    top: 20%;
  }

  /*sec4*/
  .home_sec4_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_sec4_box1{
    width: 50%;
  }
  .home_sec4_box1_img{

  }

  .home_sec4_box2{
    width: 100%;
    padding: 70px 20px;
  }
  .home_sec4_box2 .tt2{

  }
  .sub_tt{
    font-size: 20px;
  } 
  .home_sec4_box2 .sub_tt{

  }
  .home_sec4_box2 .content_desc{
    margin-top: 35px;
  }
  .content_block:nth-child(n+2){
    margin-top: 35px;
  } 
  .home_sec4_box3{
    width: 50%;
    margin-left: auto;
    margin-top: -20px;
  }
  .home_sec4_box3_img{

  }

  /*sec5*/
  .home_sec5_items{
    margin-top: 70px;
  }
  .home_sec5_item{

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

  }
  .home_sec5_item_box1_img{

  }
  .home_sec5_item_box1_img img{

  }
  .home_sec5_item_box1_img:before{
    padding-top: 90%;
  }
  .home_sec5_item_box2{
    padding: 50px;
  }
  .home_sec5_item_num{
    font-size: 60px;
  }
  .home_sec5_item_box2 .sub_tt{

  }
  .home_sec5_item_box2 .sub_tt strong{

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

  /*sec6*/
  .home_sec6_item{

  }
  .home_sec6_item:nth-child(n+2){
    margin-top: 50px;
  }
  .home_sec6_box1{
    padding: 50px 30px;
  }
  .home_sec6_box1_tt{

  }
  .home_sec6_box1_tt_left{

  }
  .home_sec6_box1_tt_left:after{

  }
  .home_sec6_item.process .home_sec6_box1_tt_left:after{

  }
  .home_sec6_item.faq .home_sec6_box1_tt_left:after{

  }
  .home_sec6_box1_tt_left .img_box .tt2_en{
    display: flex;
    flex-wrap: wrap;
    margin-right: 20px;
  }
  .home_sec6_box1_tt_left .tt2_en:after{

  }
  .home_sec6_box1_tt_left .tt2_ja{

  }
  .home_sec6_box1 .content_desc{
    margin-top: 46px;
  }
  .home_sec6_box1 .read_more{

  }
  .home_sec6_box2{

  }
  .home_sec6_box2_img{

  }
  .home_sec6_box2_img img{

  }
  .home_sec6_box2_img:before{

  }

  /*インスタ*/
  /*  .home_info_box{
      margin-inline:-10px;
    }
    .home_info_item{
      width: 50%;
      padding-inline:10px;
    }*/

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

  }

  .home_info_item .news_list .webgene-item{
    width: 50%;
  }


  .insta_list{

  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{

  }
  .insta_list .webgene-item a{

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

  }
}
@media (min-width:1024px){
  /*sec1*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:20px;
    padding-bottom: 18px;
    padding-top: 8px;
  }
  .news_list .webgene-item:nth-child(2n){
    border-right: 1px solid #7c7c7c;
  }
  .news_list .webgene-item:nth-child(3n){
    border-right: none;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 20px;;
  }
  .news_list .webgene-item .meta{
    padding-right: 10px;
  }
  .news_list .webgene-item .title{
    margin-top: 13px;
  }

  /*sec2*/
  .home_sec2_item_img_outer:before{
    top: -59px;
  }
  .home_sec2_item:first-child .home_sec2_item_img_outer:before {
    width: 19.28%;
  }
  .home_sec2_item:last-child .home_sec2_item_img_outer:before{
    width: 20.17%;
  }

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


  .home_info_item_inner .news_list .webgene-item:nth-child(2n){
    border-right: none;
  }

  .home_info_box{
    margin-inline:-20px;
  }
  .home_info_item{
    width: 50%;
    padding-inline:20px;
  }
  .home_info_item:nth-child(n+2){
    margin-top: 0;
  }

  .insta_list{

  }
  .insta_list .webgene-blog{
    margin-inline:-20px;
  }
  .insta_list .webgene-item{
    padding-inline:20px;
  }
  .insta_list .webgene-item a{

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

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

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    width: 25%;
  }
  .news_list .webgene-item:nth-child(3n){
    border-right: 1px solid #7c7c7c;
  }
  .news_list .webgene-item:nth-child(4n){
    border-right: none;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /*sec2*/
  .home_sec2_box{

  }
  .home_sec2_item{

  }
  .home_sec2_item_inner{
    padding: 30px;
  }
  .home_sec2_item_img_outer{

  }
  .home_sec2_item_img_outer:before{
    top: -72px;
  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_box2{

  }
  .home_sec2_item_tt{
    font-size: 35px;
  }
  .home_sec2_item_tt:before{

  }
  .home_sec2_item_tt:after{

  }
  .content_desc{

  }
  .home_sec2_item .read_more{

  }

  /*sec3*/
  .home_sec3_items{
    margin-bottom: 56px;
  }
  .home_sec3_item{
    width: 25%;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_img{

  }
  .ploblem_desc{
    font-size: 17px;
  }
  .lg_desc.sm{
    font-size: 30px; 
  }
  .lg_desc.icon:before{
    left: 0;
    top: 20%;
  }
  .lg_desc.icon:after{
    right: 0;
    top: 20%;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_box1{
    width: 19.73%;
    position: relative;
  }
  .home_sec4_box1_img{
    width: 174.66%;
    position: absolute;
    top: 7%;
    right: 1%;
  }
  .home_sec4_box1_img img{

  }
  .home_sec4_box2{
    width: 60.52%;
    padding: 90px 0 98px;
  }
  .home_sec4_box2 .tt2{

  }
  .sub_tt{
    font-size: 25px;
  } 
  .home_sec4_box2 .sub_tt{

  }
  .home_sec4_box2 .content_desc{
    font-size: 15px;
    /*   text-align: justify; */
  }
  .home_sec4_box2 .content_desc p{
    letter-spacing: 0;
  }
  .content_block:nth-child(n+2){

  } 
  .home_sec4_box3{
    width: 19.73%;
    position: relative;
    margin-left: 0;
    margin-top: 0;
  }
  .home_sec4_box3_img{
    width: 194.6%;
    position: absolute;
    bottom: -4%;
    left: -10%;
  }
  .home_sec4_box3_img img{

  }

  /*sec5*/
  .home_sec5_items{
    margin-top: 67px;
  }
  .home_sec5_items.biz{
    margin-top: 67px;
  }
  .home_sec5_item{

  }
  .home_sec5_item:nth-child(n+2){
    margin-top: 61px;
  }
  .home_sec5_item_box1{
    width: 42.76%;
  }
  .home_sec5_item_box1_img{

  }
  .home_sec5_item_box1_img img{
    border-radius: 20px 0 0 20px;
  }
  .home_sec5_item_box1_img:before{
    padding-top: 650px;
  }
  .home_sec5_item_box2{
    width: 57.23%;
    border-radius: 0 20px 20px 0;
    padding: 50px;
  }
  .home_sec5_item_num{
    font-size: 82px;
  }
  .home_sec5_item_box2 .sub_tt{

  }
  .home_sec5_item_box2 .sub_tt strong{

  }
  .home_sec5_item_box2 .content_desc{

  }
  .pg_home .section.sec5 .read_more{
    margin-top: 60px;
  }

  .flow .home_sec5_item.meeting .home_sec5_item_box1{

  }
  .flow .home_sec5_item.meeting .home_sec5_item_box1_img img{
    border-radius: 0 20px 0 0;
  }
  .flow .home_sec5_item.meeting .home_sec5_item_box2{
    border-radius:20px 0 0 0;
  }

  /*sec6*/
  .home_sec6_item{

  }
  .home_sec6_item:nth-child(n+2){
    margin-top: 57px;
  }
  .home_sec6_item:nth-child(odd) .home_sec6_box1{
    order: 1;
  }
  .home_sec6_item:nth-child(odd) .home_sec6_box2{
    order: 2;
  }
  .home_sec6_item:nth-child(even) .home_sec6_box1{
    order: 2;
  }
  .home_sec6_item:nth-child(even) .home_sec6_box2{
    order: 1;
  }
  .home_sec6_box1{
    width: 63.48%;
  }
  .home_sec6_item:nth-child(odd) .home_sec6_box1{
    border-radius: 20px 0 0 20px;
    padding: 30px 16px 30px 30px;
  }
  .home_sec6_item:nth-child(even) .home_sec6_box1{
    border-radius: 0 20px 20px 0;
    padding: 30px 16px 30px 30px;
  }
  .home_sec6_box1_tt{

  }
  .home_sec6_box1_tt_left{

  }
  .home_sec6_box1_tt_left:after{

  }
  .home_sec6_item.process .home_sec6_box1_tt_left:after{

  }
  .home_sec6_item.faq .home_sec6_box1_tt_left:after{

  }
  .home_sec6_box1_tt_left .tt2_en{

  }
  .home_sec6_box1_tt_left .tt2_ja{

  }
  .home_sec6_box1 .content_desc{

  }
  .home_sec6_box1 .read_more{
    margin-top: 18px;
  }
  .home_sec6_box2{
    width:36.44%;
  }
  .home_sec6_box2_img{

  }
  .home_sec6_box2_img img{

  }
  .home_sec6_item:nth-child(odd) .home_sec6_box2_img img{
    border-radius: 0 20px 20px 0;
  }
  .home_sec6_item:nth-child(even) .home_sec6_box2_img img{
    border-radius: 20px 0 0 20px;
  }
  .home_sec6_box2_img:before{
    padding-top: 450px;
  }

  /*インスタ*/
  .home_info_box{

  }
  .home_info_item{

  }
  .home_info_item_inner{

  }
}
@media (min-width:1366px){
  /*  .home_sec4_box2 .content_desc.center{
     text-align: center; 
    }*/
  .home_sec4_box2 .content_desc{
    font-size: 16px;
  }
  .home_sec4_box2 .content_desc p{
    letter-spacing: 0.075em;
  }

  .home_sec2_item_img_outer:before{
    top: -80px;
  }

  /*sec5*/
  .home_sec5_item_box1_img:before{
    padding-top: 700px;
  }

  /*sec6*/
  .home_sec6_item:nth-child(odd) .home_sec6_box1{
    border-radius: 20px 0 0 20px;
    padding: 57px 60px 57px 101px;
  }
  .home_sec6_item:nth-child(even) .home_sec6_box1{
    border-radius: 0 20px 20px 0;
    padding: 57px 16px 57px 91px;
  }
  .home_sec6_box2_img:before{
    padding-top: 500px;
  }
}
@media (min-width:1470px){
  /*sec2*/
  .home_sec2_item_img_outer:before{
    top: -70px;
  }
  .home_sec2_item:last-child .home_sec2_item_img_outer:before{
    top: -88px;
  }
  .home_sec2_item_inner{
    padding: 3.5em 5.8em;
  }

  /*sec3*/
  .ploblem_desc{
    font-size: 20px;
  }

  .lg_desc.icon:before{
    left: 8.5%;
    top: 20%;
  }
  .lg_desc.icon:after{
    right: 6.5%;
    top: 20%;
  }

  /*sec4*/
  .home_sec4_box1_img{
    width: 174.66%;
    position: absolute;
    top: 7%;
    right: 5.3%;
  }
  .home_sec4_box3_img{
    width: 194.6%;
    position: absolute;
    bottom: -4%;
    left: -10%;
  }

  /*sec5*/
  .home_sec5_item_box1_img:before{
    padding-top: 700px;
  }
  .home_sec5_item_box2{
    width: 57.23%;
    border-radius: 0 20px 20px 0;
    padding: 70px 107px 70px 95px;
  }

  /*sec6*/
  .home_sec6_item:nth-child(odd) .home_sec6_box1{
    padding: 57px 60px 57px 101px;
  }
  .home_sec6_item:nth-child(even) .home_sec6_box1{
    padding: 57px 16px 57px 91px;
  }
  .home_sec6_box2_img:before{
    padding-top: 500px;
  }


}
@media (min-width:1720px){
  .home_sec2_item_img_outer:before{
    top: -81px;
  }
  .home_sec2_item:last-child .home_sec2_item_img_outer:before{
    top: -90px;
  }

  /*sec3*/
  .ploblem_desc{
    font-size: 23px;
  }

  /*sec4*/
  .home_sec4_box1_img{
    width: 174.66%;
    position: absolute;
    top: 7%;
    right: 13.3%;
  }
  .home_sec4_box3_img{
    width: 194.6%;
    position: absolute;
    bottom: -4%;
    left: -10%;
  }

  /*sec5*/
  .home_sec5_item_box1_img:before{
    padding-top: 590px;
  }

  /*sec6*/
  .home_sec6_box2_img:before{
    padding-top: 400px;
  }
  .home_sec6_item:nth-child(odd) .home_sec6_box1{
    padding: 57px 16px 57px 101px;
  }
}




/*******************************
*　about
********************************/

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}
.pg_about .section.sec4{

}

.about .pg_hdr_icon{
  width: 15.13%;
  aspect-ratio:230 / 197; 
  bottom: -16.66%;;
}
@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 67px;
  }
  .pg_about .section.sec3{
    padding-top: 100px;
  }
  .pg_about .section.sec4{

  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{

  }

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


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


}

/* メイン部分 */

/*見出し*/
.pg_hdr_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pg_hdr_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.pg_hdr_box1_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 661 / 544;
}
.pg_hdr_box1_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/dd.png);
}
.pg_hdr_box2{
  width: 100%;
  order: 1;
}
.lg_desc.left{
  text-align: left;
}
.lg_desc.mid{
  line-height: 1.666em;
}
.pg_hdr_box2 .lg_desc{

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

/*sec2*/
.about_sec2_wrap{
  background: #fff;
  position: relative;
  border-radius: 50px;
  padding: 80px 16px;
}
.about_sec2_wrap:before{
  content: "";
  display: block;
  width: 100px;;
  aspect-ratio:268 / 243;
  background-image: url(/system_panel/uploads/images/down.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -40px;
}
.about_sec2_wrap:after{
  content: "";
  display: block;
  width: 80px;;
  aspect-ratio:167 / 230;
  background-image: url(/system_panel/uploads/images/up.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  right: 0;
  top: -70px;;
}
.about_sec2_box{

}
.about_sec2_box .sub_tt{

}
.about_sec2_box .content_desc{
  margin-top: 20px;
}
@media (max-width:767px){

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

  }
  .pg_hdr_box1{
    margin-top: 30px;
  }
  .pg_hdr_box1_img{

  }
  .pg_hdr_box1_img img{

  }
  .pg_hdr_box2{

  }
  .lg_desc.left{

  }
  .pg_hdr_box2 .lg_desc{

  }
  .pg_hdr_box2 .content_desc{
    margin-top: 36px;
  }

  /*sec2*/
  .about_sec2_wrap{
    padding: 95px 20px 112px;
  }
  .about_sec2_wrap:before{
    width: 17.63%;
    z-index: 2;
    left: 0;
    bottom: -60px;;
  }
  .about_sec2_wrap:after{
    width: 10.98%;;
    aspect-ratio:167 / 230;
    right: 0;
    top: -80px;;
  }
  .about_sec2_box{

  }
  .about_sec2_box .sub_tt{

  }
  .about_sec2_box .content_desc{
    margin-top: 56px;
  }

  .about_sec3_wrap .read_more a{
    margin-inline: 17px;
  }
}
@media (min-width:1024px){
  /*sec2*/
  .about_sec2_wrap:before{
    width: 17.63%;
    z-index: 2;
    left: 0;
    bottom: -85px;;
  }
  .about_sec2_wrap:after{
    width: 10.98%;;
    aspect-ratio:167 / 230;
    right: 36px;
    top: -80px;;
  }

}
@media (min-width:1200px){
  /*見出し*/
  .about_sec1_wrap .tt2{
    margin-bottom: 40px;
  }
  .pg_hdr_box{

  }
  .pg_hdr_box1{
    width: 43.76%;
    order: 1;
    margin-top: 0;
    padding-top: 15px;
  }
  .pg_hdr_box1_img{

  }
  .pg_hdr_box1_img img{

  }
  .pg_hdr_box2{
    width: 50.98%;
    order: 2;
  }
  .lg_desc.left{

  }
  .lg_desc.mid{
    font-size: 30px;
  }
  .pg_hdr_box2 .lg_desc{

  }
  .pg_hdr_box2 .content_desc{

  }

  /*sec2*/
  .about_sec2_wrap{
    padding: 95px 20px 112px;
  }
  .about_sec2_wrap:before{
    width: 17.63%;
    z-index: 2;
    left: 0;
    bottom: -85px;;
  }
  .about_sec2_wrap:after{
    width: 10.98%;;
    aspect-ratio:167 / 230;
    right: 36px;
    top: -100px;;
  }
  .about_sec2_box{
    width: 100%;
    max-width: 1110px;
    margin-inline:auto;
  }
  .about_sec2_box .sub_tt{

  }
  .content_desc{

  }

  /*sec3*/
  .about_sec3_wrap{

  }

  .about_sec3_wrap .home_sec5_items{
    margin-top: 123px;
  }

  .about_sec3_wrap .home_sec5_item:nth-child(odd) .home_sec5_item_box1{
    order: 2;
  }
  .about_sec3_wrap .home_sec5_item:nth-child(odd) .home_sec5_item_box2{
    order: 1;
  }
  .about_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box1{
    order: 1;
  }
  .about_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box2{
    order: 2;
  }

  .about_sec3_wrap .home_sec5_item:nth-child(odd) .home_sec5_item_box1_img img{
    border-radius: 0 20px 20px 0;;
  }
  .about_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box1_img img{
    border-radius: 20px 0 0 20px;
  }

  .about_sec3_wrap .home_sec5_item:nth-child(odd) .home_sec5_item_box2{
    border-radius: 20px 0 0 20px;
  }
  .about_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box2{
    border-radius: 0 20px 20px 0;;
  }
}
@media (min-width:1470px){
  .about_sec2_wrap{
    padding: 95px 0 112px;
  }
  .about_sec2_wrap:before{
    width: 17.63%;
    z-index: 2;
    left: -30px;
    bottom: -85px;;
  }
  .about_sec2_wrap:after{
    width: 10.98%;;
    aspect-ratio:167 / 230;
    right: 36px;
    top: -160px;;
  }
  .about_sec2_box{
    width: 100%;
    max-width: 1110px;
    margin-inline:auto;
  }

}
@media (min-width:1720px){
  .home_sec5_item_box1_img:before{
    padding-top: 563px;
  }
  .pg_home .section.sec5 .home_sec5_item_box1_img:before{
    padding-top: 600px;
  }
  .pg_about .section.sec3 .home_sec5_item_box1_img:before{
    padding-top: 590px;
  }

  .about_sec2_wrap:before{
    width: 17.63%;
    z-index: 2;
    left: -122px;
    bottom: -85px;;
  }
}



/*******************************
*　外国の方
********************************/

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

}
.pg_workers .section.sec1{

}
.pg_workers .section.sec2{

}
.pg_workers .section.sec3{
  position: relative;
}


@media (max-width:374px){

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

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

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

  }
  .pg_workers .section.sec1{

  }
  .pg_workers .section.sec2{

  }
  .pg_workers .section.sec3{
    padding-top: 100px;
  }

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


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

  }
  .pg_workers .section.sec1{

  }
  .pg_workers .section.sec2{
    padding-top: 80px;
  }
  .pg_workers .section.sec3{
    padding-top: 124px;
  }

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


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


}

/* メイン部分 */

/*sec1*/
.workers_sec1_wrap{

}
.workers_sec1_wrap .tt2{
  margin-bottom: 42px;
}
.workers_sec1_wrap .pg_hdr_box1{
  order: 2;
}
.workers_sec1_wrap .pg_hdr_box2{
  order: 1;
}

/*sec3*/
.workers_sec3_wrap{
  position: relative; 
}
.workers_sec3_wrap:before{
  content: "";
  display: block;
  width: 9.1%;;
  aspect-ratio:139 / 220;
  background-image: url(/system_panel/uploads/images/left_work.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 4%;
  top: -1%;
}
.workers_sec3_wrap:after{
  content: "";
  display: block;
  width: 14.73%;
  aspect-ratio:224 / 156;
  background-image: url(/system_panel/uploads/images/right_work.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1%;
  top: -1%;
}

.workers_sec2_wrap .lg_desc{
  margin-top: 32px;
}
@media (max-width:767px){

}
@media (min-width:768px){
  .workers_sec3_wrap:before{
    width: 9.1%;;
    left: 4%;
    top: -1.6%;
  }
  .workers_sec3_wrap:after{
    width: 14.73%;
    right: 1%;
    top: -1.6%;
  }
}
@media (min-width:1024px){
  .workers_sec3_wrap:before{
    width: 9.1%;;
    left: 4%;
    top: -1.6%;
  }
  .workers_sec3_wrap:after{
    width: 14.73%;
    right: 1%;
    top: -1.6%;
  }

}
@media (min-width:1200px){
  .workers_sec2_wrap .home_sec3_items{
    margin-bottom: 100px;
  }
  .workers_sec2_wrap .home_sec3_item{
    width: 20%;
  }
  .workers_sec2_wrap .lg_desc{
    margin-top: 32px;
  }


  /*sec3*/
  .workers_sec3_wrap{

  }
  .workers_sec3_wrap:before{
    width: 9.1%;;
    left: 4%;
    top: -4.6%;
  }
  .workers_sec3_wrap:after{
    width: 14.73%;
    right: 1%;
    top: -5.6%;
  }
  .workers_sec3_wrap .home_sec5_item:nth-child(odd) .home_sec5_item_box1{
    order: 1;
  }
  .workers_sec3_wrap .home_sec5_item:nth-child(odd) .home_sec5_item_box2{
    order: 2;
  }
  .workers_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box1{
    order: 2;
  }
  .workers_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box2{
    order: 1;
    border-radius: 20px 0 0 20px;
  }

  .workers_sec3_wrap .home_sec5_item:nth-child(even) .home_sec5_item_box1 .home_sec5_item_box1_img img{
    border-radius: 0 20px 20px 0;
  }

  .workers_sec3_wrap .read_more{
    margin-top: 57px;
  }
}
@media (min-width:1470px){
  .workers_sec3_wrap .home_sec5_item_box2{
    padding: 70px 86px 70px 95px;
  }

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


}







/*******************************
*faq
********************************/

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

}
.pg_faq .section.sec1{

}
.pg_faq .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_faq .section.sec1{

  }
  .pg_faq .section.sec2{

  }

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


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

  }
  .pg_faq .section.sec1{

  }
  .pg_faq .section.sec2{

  }

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


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


}

/* メイン部分 */
.content_desc.lg{
  font-weight: 700;
  line-height: 2;
}
.content_desc.lg p{
  letter-spacing: 0.1em;
}
.faq_head .content_desc.lg{

}

/*質問*/
.faq_items{
  margin-top: 40px;
}  
.faq_item{

}
.faq_item:nth-child(n+2){
  margin-top: 30px;
}
.faq_item_q{
  background: #fff;
  border-radius: 15px;
  display: flex;
  padding: 16px 40px 16px 0;
  cursor: pointer;
  position: relative;
}
.faq_item_q.active {
  opacity: 0.8;
}
/* ＋ */
.faq_item_q::after{
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: bold;
  transition: 0.3s;
}

/* − */
.faq_item_q.active::after{
  content: "−";
}
.faq_item_q_left{
  width: 11.26%;
  position: relative
}
.faq_item_q_left:before{
  content: "Q";
  font-size: 34px;
  font-family: var(--font-en);
  font-weight: 700;
  background: #393a57;
  border-radius: 50%;
  width: 53px;
  aspect-ratio:1;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 56%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.faq_item_tt{
  width: calc(100% - 11.26%);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.faq_item_a{

}
.faq_item_a .content_desc{
  font-weight: 500;
  width: calc(100% - 11.26%);
  margin-left: auto;
  margin-top: 21px;
}
.faq_item_a .content_desc p{

}
@media (max-width:767px){
  .faq_item_q_left{
    width: 15.26%
  }
  .faq_item_q_left:before{
    font-size: 20px;
    width: 34px;
    top: 13px;
  }
  .faq_item_tt,
  .faq_item_a .content_desc{
    width: calc(100% - 15.26%);
  }
}
@media (min-width:768px){
  .content_desc.lg{

  }
  .faq_head .content_desc.lg{

  }

  /*質問*/
  .faq_items{
    margin-top: 70px;
  }  
  .faq_item{

  }
  .faq_item:nth-child(n+2){
    margin-top: 70px;
  }
  .faq_item_q{
    padding: 32px 70px 32px 10px;
  }
  /* ＋ */
  .faq_item_q::after{

    right: 45px;
  }
  .faq_item_q_left{

  }
  .faq_item_tt{
    font-size: 20px;
  }
  .faq_item_a{

  }
  .faq_item_a .content_desc{
    line-height: 2.2em;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .content_desc.lg{
    font-size: 20px;
  }
  .faq_head .content_desc.lg{

  }


  /*質問*/
  .faq_items{
    margin-top: 90px;
  }  
  .faq_item{

  }
  .faq_item_q{
    padding: 32px 0;
  }
  .faq_item_q_left{

  }
  .faq_item_tt{
    font-size: 25px;
  }
  .faq_item_a{

  }
  .faq_item_a .content_desc{
    font-size: 18px;
  }
}
@media (min-width:1470px){


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


}




/*******************************
*　入国フロー
********************************/

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

}
.pg_flow .section.sec1{

}
.pg_flow .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_flow .section.sec1{

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


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

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }

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


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


}

/* メイン部分 */
.flow .home_sec5_items{
  margin-top: 0;
}
.flow .home_sec5_item{
  position: relative;
}
.flow .home_sec5_item:after{
  content: "";
  display: block;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 30px solid #393a57;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.flow .home_sec5_item:last-child:after{
  display: none;
}
.flow .home_sec5_item .home_sec5_item_box1{

} 
.flow .home_sec5_item .home_sec5_item_box2{

} 

.link_2{
  display: block;
  background: #fff;
  border-radius: 20px;
  color: #e2824a;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
  margin-top: 40px;
  transition: all .2s;
}
.link_2:hover{
  transform: scale(1.02);
  color: #e2824a;
}
.link_2 p{
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link_2 p:before{
  content: "";
  display: block;
  width: 18px;
  aspect-ratio:10 / 20;
  background-image: url(/system_panel/uploads/images/down.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.home_sec5_item_box3 .link_2:hover{
  transform: none;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .flow .home_sec5_items{
    margin-top: 0;
  }
  .flow .home_sec5_item{

  }
  .flow .home_sec5_item .home_sec5_item_box1{

  } 
  .flow .home_sec5_item .home_sec5_item_box2{

  } 

  .link_2{
    font-size: 18px;
    padding: 30px 0;
    margin-top: 91px;
  }
  .link_2 p{

  }
  .link_2 p:before{
    margin-right: 20px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /* メイン部分 */
  .flow .home_sec5_items{
    margin-top: 0;
  }
  .flow .home_sec5_item{

  }
  .flow .home_sec5_item .home_sec5_item_box1{
    order: 2;
  } 
  .flow .home_sec5_item .home_sec5_item_box2{
    order: 1;
    border-radius:20px 0 0 20px;
  } 

  .flow .home_sec5_item_box1_img img{
    border-radius: 0 20px 20px 0;
  }
  .flow .home_sec5_item .home_sec5_item_box1_img:before{
    padding-top: 497px;
  }

  .flow .home_sec5_item .home_sec5_item_box2 .sub_tt{
    font-size: 30px;
  }

  .flow .home_sec5_item_box2 .content_desc{
    margin-top: 25px;
  }

  .link_2{
    font-size: 25px;
  }
  .link_2 p{

  }
  .link_2 p:before{
    margin-right: 30px;
  }

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


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


}


/*******************************
*　企業の方
********************************/

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

}
.pg_business .section.sec1{

}
.pg_business .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_business{

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{
    padding-top: 100px;
  }
  .pg_business .section.sec3{
    padding-top: 104px;
  }
  .pg_business .section.sec4{
    padding-top: 86px;
  }
  .pg_business .section.sec5{
    padding-top: 90px;
  }
  .pg_business .section.sec6{
    padding-top: 106px;
  }
  .pg_business .section.sec7{
    padding-top: 98px;
  }

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


}

@media (min-width:1200px){

  .pg_business{

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{
    padding-top: 100px;
  }
  .pg_business .section.sec4{
    padding-top: 86px;
  }

}

.bg_gr_img{
  background-image: url(/system_panel/uploads/images/vv.jpg);
  background-repeat: repeat;
  background-size: 300px 300px;
}
/*sec2*/
.business_sec2_wrap{
  border-radius: 50px;
  padding: 40px 0;
}
.business_sec2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 16px 0;
}
.business_sec2_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.business_sec2_box1 .sub_tt{

}
.business_sec2_box1 .content_desc{
  margin-top: 20px;
}
.business_sec2_box2{
  width: 100%;
  order: 1;
}
.business_sec2_box2_img img{
  border-radius: 20px;
}
.business_sec2_box2_img:before{
  padding-top: 81.48%;
}

.sub_tt.lg{
  line-height: 1.42em;
}

/*sec3*/
.business_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.business_sec3_item{
  width: 100%;
}
.business_sec3_item:nth-child(n+2){
  margin-top: 30px;
}
.business_sec3_item_inner{

}
.business_sec3_item_img img{
  border-radius: 15px;
}
.business_sec3_item_img:before{
  padding-top: 84.03%;
}
.business_sec3_item_box2{
  margin-top: 16px;
}
.business_sec3_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.business_sec3_item_box2 .content_desc{

}
.business_sec3_item_box2 .content_desc p{
  letter-spacing: 0.075em;
}

/*sec5*/
.business_sec2_wrap.ginou .business_sec2_box2_img img{
  border-radius: 15px;
}
.business_sec2_wrap.ginou .business_sec2_box2_img:before{
  padding-top: 96.78%;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*sec2*/
  .business_sec2_wrap{
    padding: 50px 0;
  }
  .business_sec2_inner{
    padding: 30px 40px 0;
  }
  .business_sec2_box1{
    margin-top: 30px;
  }
  .business_sec2_box1 .sub_tt{
    text-align: center;
  }
  .business_sec2_box1 .content_desc{
    margin-top: 20px;
  }
  .business_sec2_box2{

  }
  .business_sec2_box2_img img{

  }
  .business_sec2_box2_img:before{

  }

  /*sec3*/
  .business_sec3_items{
    margin-inline:-15px;
    margin-top: 55px;
  }
  .business_sec3_item{
    width: 50%;
    padding-inline:15px;
  }
  .business_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .business_sec3_item:nth-child(n+3){
    margin-top: 30px;
  }
  .business_sec3_item_inner{

  }
  .business_sec3_item_img img{

  }
  .business_sec3_item_img:before{

  }
  .business_sec3_item_box2{
    margin-top: 24px;
  }
  .business_sec3_item_tt{
    font-size: 20px;
  }
  .business_sec3_item_box2 .content_desc{
    margin-top: 12px;
  }

  .business_sec3_wrap .read_more{
    margin-top: 66px;
  }
}
@media (min-width:1024px){


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

  }
  .business_sec1_wrap .tt2{
    margin-bottom: 38px;
  }

  /*sec2*/
  .business_sec2_wrap{
    padding: 74px 0;
  }
  .business_sec2_inner{
    padding: 30px 40px 0;
  }
  .business_sec2_box1{
    width: 51.51%;
    order: 1;
    margin-top: 0;
  }
  .business_sec2_box1 .sub_tt{

  }
  .business_sec2_box1 .sub_tt{
    text-align: justify;
  }
  .business_sec2_box1 .content_desc{
    margin-top: 46px;
  }
  .business_sec2_box2{
    width: 41.74%;
    padding-top: 10px;
    order: 2;
  }
  .business_sec2_box2_img img{

  }
  .business_sec2_box2_img:before{

  }
  .sub_tt.lg{
    font-size: 28px;
  }

  /*sec3*/
  .business_sec3_items{

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

  }
  .business_sec3_item_img img{

  }
  .business_sec3_item_img:before{

  }
  .business_sec3_item_box2{

  }
  .business_sec3_item_tt{
    font-size: 23px;
  }
  .business_sec3_item_box2 .content_desc{

  }

  /*sec3*/
  .workers_sec2_wrap.biz{

  }
  .workers_sec2_wrap.biz .home_sec3_items{
    margin-bottom: 70px;
  }

  /*sec5*/
  .business_sec2_wrap.ginou .business_sec2_box1{
    order: 2;
  }
  .business_sec2_wrap.ginou .business_sec2_box2{
    order: 1;
  }

  .home_sec5_items.biz .home_sec5_item:nth-child(odd) .home_sec5_item_box1{
    order: 2;
  }
  .home_sec5_items.biz .home_sec5_item:nth-child(odd) .home_sec5_item_box2{
    order: 1;
    border-radius: 20px 0 0 20px;
  }
  .home_sec5_items.biz .home_sec5_item:nth-child(even) .home_sec5_item_box1{
    order: 1;
  }
  .home_sec5_items.biz .home_sec5_item:nth-child(even) .home_sec5_item_box2{
    order: 2;
  }

  .home_sec5_items.biz .home_sec5_item:nth-child(odd) .home_sec5_item_box1_img img{
    border-radius: 0 20px 20px 0;
  }

  .home_sec5_items.biz2 .home_sec5_item:nth-child(odd) .home_sec5_item_box1{
    order: 1;
  }
  .home_sec5_items.biz2 .home_sec5_item:nth-child(odd) .home_sec5_item_box2{
    order: 2;
    border-radius: 0 20px 20px 0;
  }
  .home_sec5_items.biz2 .home_sec5_item:nth-child(even) .home_sec5_item_box1{
    order: 2;
  }
  .home_sec5_items.biz2 .home_sec5_item:nth-child(even) .home_sec5_item_box2{
    order: 1;
    border-radius: 20px 0 0 20px;
    padding: 70px 87px 70px 95px;
  }
  .home_sec5_items.biz2 .home_sec5_item:nth-child(odd) .home_sec5_item_box1_img img{
    border-radius: 20px 0 0 20px;
  }
  .home_sec5_items.biz2 .home_sec5_item:nth-child(even) .home_sec5_item_box1_img img{
    border-radius: 0 20px 20px 0;
  }
}
@media (min-width:1470px){
  /*sec2*/
  .business_sec2_wrap{
    padding: 74px 0 60px;
  }
  .business_sec2_inner{
    padding: 46px 30px 0;
  }
  .sub_tt.lg{
    font-size: 35px;
  }

}
@media (min-width:1720px){
  /*sec2*/
  .business_sec2_inner{
    padding: 46px 100px 0;
  }

  .business_sec2_wrap.ginou{
    padding: 79px 0 84px;
  }
  .business_sec2_wrap.ginou .business_sec2_inner{
    padding: 44px 118px 0;
  }
}


/*******************************
*　詳細
********************************/

@media (max-width:374px){

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

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

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

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


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


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


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


}





/* メイン部分 */
.pg_header.contact .pg_hdr_icon{
  width: 14.01%;
  aspect-ratio:213 / 157;
  bottom: -16.66%;
}


.pg_header.company .pg_hdr_icon{
  width:  16.71%;
  aspect-ratio:254 / 116;
  bottom: -16.66%;
}
/* 会社概要 */
.company_tbl{

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

/* マップ */
.company_map{

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

.gmap{
  margin-top: 40px;
}
.access_map iframe{
  border: none;
  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){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #888888;
    border-bottom: 0;

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }
}
@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{
    padding-left: 20px;
  }

  /* マップ */
  .company_map{

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

  .gmap{
    margin-top: 80px;
  }
  .access_map iframe{
    height: 450px;
  }


  /* ギャラリー */
  .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: 19px 14px 20px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}



/* カテゴリNav */
.cmn_cat_nav{

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

.body_news .news_list .webgene-item{
  padding-top: 0;
}
.body_news .news_list .webgene-item .img::before{
  padding-top: 73.68%;
}
.body_news .news_list .webgene-item .box2{
  margin-top: 16px;
}

@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

}
@media (min-width:1200px){
  .body_news .posts_layout_box1{
    width: 80.26%;
  }
  .body_news .posts_layout_box2{
    width: 16.777%;
  }

  .body_news .webgene-blog{
    margin-inline:-20px;
  }
  .body_news .webgene-item{
    width: 33.333%;
    padding-inline:20px;
  }
  .body_news .webgene-item:nth-child(4n){
    border-right: 1px solid #7c7c7c;
  }
  .body_news .webgene-item:nth-child(3n){
    border-right: none;
  }
  .body_news .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }

  .body_news .posts_side_wrap .webgene-item{
    width: auto;
  }

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

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

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #7a6738;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}
.var_gr .posts_side_title{
  background: #393a57;
}

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

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

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

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

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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


.news_detail{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 37px;
}
.news_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news_detail .date{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: 14px;
}
.news_detail .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 4px 26px;
}
.news_detail .title{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 10px;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 7px;
}
.news_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height:2.125em;
  padding-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;
  }
}
@media (min-width:768px){

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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

  .news_detail{

  }
  .news_detail .meta{

  }
  .news_detail .date{

  }
  .news_detail .category{

  }
  .news_detail .title{
    font-size: 18px;
  }
  .news_detail .post_content{
    padding-top: 50px;
  }
}
@media (min-width:1024px){

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 15px 15px 15px 21px;
  background: #e4e6e4;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 55px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #393a57;
}
.formBtn.formSend {
  display: block;
  width: 100%;
  max-width: 202px;
  background: #393a57;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid transparent;
  margin-inline: auto;
  padding: 13px 0;
  cursor: pointer;
  transition: all .2s;
}
.formBtn.formSend:hover{
  background: #fff;
  border: 1px solid #e2824a;
  color: #e2824a;
}

.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 26px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

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

  .thanks_text{
    text-align: center;
  }
}


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

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

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 46px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_box {
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

  .privacy_box{
    padding: 30px 10px;
  }
}

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

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
    margin-top: 20px;
  }
}
/*******************************
*　
********************************/
/* ボーダー用 */
.body_news .news_list .webgene-item{
  position: relative;
  border-right: none;
}
.body_news .news_list .webgene-item:before,
.body_news .news_list .webgene-item:after{
  background: #c3bfbf;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.body_news .news_list .webgene-item:before{
  width: 1px;
  height: 100000px;
}
.body_news .news_list .webgene-item:after{
  height: 1px;
}

.body_news .news_list{
  overflow: hidden;
}
.body_news .webgene-blog{
  overflow: hidden;
}

.webgene-pagination{
  background-position: center center;
  background-repeat: repeat;
  background-size: 300px 300px;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 50px;
}
.be .webgene-pagination{
  background-image: url(/system_panel/uploads/images/bg-beige-texture-256.jpg);
}
.gr .webgene-pagination{
  background-image: url(/system_panel/uploads/images/gr_bg.jpg);
}

.pg_header.news .pg_hdr_icon{
  width: 16.71%;
  aspect-ratio:254 / 166;
  bottom: -16%;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /* 横 */
  .body_news .news_list .webgene-item{
    border-top: none;
  }
  /* 縦 */
  .body_news .news_list .webgene-item:nth-child(2):before{
    content: "";
  }
  .body_news .news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }

  .body_news .webgene-item:nth-child(n+3){
    margin-top: 0;
    padding-top: 30px;
  }
}
@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{

  }

  .body_news .news_list .webgene-item{
    padding-bottom: 25px;
  }

  .webgene-pagination{
    padding-top: 80px;
  }
}
@media (min-width:768px) and (max-width:1023px){
  /* 縦 */
  .body_news .news_list .webgene-item:nth-child(2):before{
    content: "";
  }
  /* 横 */
  .body_news .news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }

  .body_news .webgene-item:nth-child(n+3){
    margin-top: 0;
    padding-top: 30px;
  }
}
@media (min-width:1024px){
  /* 縦 */
  .body_news .news_list .webgene-item:nth-child(2):before,
  .body_news .news_list .webgene-item:nth-child(3):before{
    content: "";
  }
  /* 横 */
  .body_news .news_list .webgene-item:nth-child(3n+1):not(:first-child):after{
    content: "";
    width: 300%;
  }
  .body_news .webgene-item:nth-child(n+3){
    margin-top: 0;
    padding-top: 0;
  }
  .body_news .webgene-item:nth-child(n+4){
    margin-top: 0;
    padding-top: 30px;
  }

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


}

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

#gt-nvframe{
  display: none!important;
}
.pg_hdr_box1.workers{

}
.pg_hdr_box1.workers .pg_hdr_box1_img{
  aspect-ratio:none;
}
.pg_hdr_box1.workers .pg_hdr_box1_img img{
  -webkit-mask-image: none;
}
@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){


}
