@charset "UTF-8";

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

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

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


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

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

#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;
}
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: 20px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .header{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
  }
  .hdr1 {
    padding: 10px;
    justify-content: center;
  }

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

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    ;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 25px;
    padding: 15px 66px 15px 62px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    --logo-height: 25px;
  }
  /* ロゴ */
  .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:after{
  content: "";
  background: rgba(0,0,0,0.36);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  text-align: center;
}
.mv_txt_p1{
  font-size: 30px;
  font-weight: 700;
}
.mv_txt_p2{
  font-size: 20px;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-top: 10px;
}

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

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

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

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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{
    font-size: 40px;
  }
  .mv_txt_p2{
    font-size: 25px;
    margin-top: 10px;
  }

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


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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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

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

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

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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{
    font-size: 70px;
  }
  .mv_txt_p2{
    font-size: 40px;
  }

}


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

/* サイドバー */
.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;
  }

}






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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 10px;
}

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

.ftr_contact_wrap{
  background: #1ab100;
  padding: 50px 0;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1_en{
  font-size: 30px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box2_item{
  text-align: center;
  width: 100%;
}
.ftr_contact_box2_item_tel1{
  color: #fff;
  font-size: 28px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.ftr_contact_box2_item_tel1 strong{
  font-weight: 400;
  font-size: 22px;
}
.ftr_contact_box2_item_tel2{
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 0;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 380px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  transition: all .2s;
  padding: 14px;
  margin-inline:auto;
}
.link_1:hover{
  background: var(--sub-color);
  color: var(--main-color);
}
.link_1 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.link_1 p:before{
  content:"\f0e0";
  font-family: "FontAwesome";

  font-size: 20px;
  transition: all .2s;
  margin-right: 12px;
}

.ftr_1{
  background: #698d63;
  padding-top: 50px;
  margin-top: 23px;
  padding-bottom: 16px;
}
.ftr_1 a:hover{
  color: #1fe928;
}

.ftr_1_box{
  display: flex;
  ;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
}
.ftr_1_box1{
  width: 100%;
  color: #fff;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 30px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_item .ftr_add_txt{
  padding-right: 10px;
}
.ftr_add_item .ftr_add_txt:first-child{
  position: relative;
}
.ftr_add_item .ftr_add_txt:first-child:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_add_item .ftr_add_txt:last-child{
  padding-left: 10px;
}
.ftr_1_box2{

}
.ftr_links{

}
.ftr_link{

}
.ftr_link:after{

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

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

  body{
    padding-bottom: 56px;
	padding-top: 60px;
  }

  .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_box1_en{
    text-align: center;
  }
  .ftr_contact_box2{
    margin-top: 30px;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item:last-child{
    margin-top: 30px;
  }

  .ftr_1_box{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_item{
    width: 289px;
    margin: 0 auto;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{
    padding: 78px 0 69px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_en{
    font-size:70px;
  }
  .ftr_contact_box2{
    margin-top: 80px;
    ;
  }
  .ftr_contact_box2_item{
    position: relative;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item.first{
    width: 43.89%;
  }
  .ftr_contact_box2_item.second{
    width: 55.99%;
  }
  .ftr_contact_box2_item_tel1{
    font-size: 36px;
  }
  .ftr_contact_box2_item_tel1 strong{
    font-size: 30px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{
    width: 100%;
    max-width: 350px;
    font-size: 18px;
  }
  .link_1 p:before{

  }

  .ftr_1{
    padding-top: 70px;
    padding-bottom: 27px;
  }
  .ftr_1_box{
    padding-bottom: 50px;
  }
  .ftr_1_box1{
    width: 44.73%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 40px;
  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_item .ftr_add_txt:first-child{

  }
  .ftr_add_item .ftr_add_txt:last-child{

  }
  .ftr_1_box2{
    width: 100%;
    width: 37.21%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ftr_links{
    width: 100%;
  }
  .ftr_link{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #fff;
    position: relative;
    padding: 11px 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 8px;
  }
  .ftr_link p{
    letter-spacing: 0.025em;
  }
  .ftr_link:after{
    content:"\f105";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_contact_wrap{
    padding: 78px 0 69px;
  }
  .ftr_contact_box{
    align-items: center;
  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_en{
    font-size: 100px;
  }
  .ftr_contact_box2{

  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item.first{
    width: 43.89%;
  }
  .ftr_contact_box2_item.second{
    width: 55.99%;
  }
  .ftr_contact_box2_item_tel1{

  }
  .ftr_contact_box2_item_tel1 strong{

  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }
  .link_1 p:before{

  }

  .ftr_1{
    padding-top: 90px;
  }
  .ftr_1_box{
    padding-bottom: 72px;
  }
  .ftr_1_box1{
    width: 44.73%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_item .ftr_add_txt:first-child{

  }
  .ftr_add_item .ftr_add_txt:last-child{

  }
  .ftr_1_box2{
    width: 50.21%;
    position: relative;
  }
  .ftr_1_box2:before{
    content: "";
    width: 1px;
    border-right: 1px dashed #fff;
    height: 194px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_links{
    width: 39.42%;
  }
  .ftr_link{

  }
  .ftr_link:after{

  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{
    padding: 78px 0 69px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 41.444%;
  }
  .ftr_contact_box1_en{
    font-size:80px;
  }
  .ftr_contact_box2{
    width: 58.75%;
    width: 58%;
    margin-top: 0;
  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item.first{
    width: 43.89%;
  }
  .ftr_contact_box2_item.second{
    width: 55.99%;
  }
  .ftr_contact_box2_item_tel1{

  }
  .ftr_contact_box2_item_tel1 strong{

  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{
    width: 100%;
    max-width: 350px;
  }
  .link_1 p:before{

  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 44.73%;
    padding-top: 17px;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_item .ftr_add_txt:first-child{

  }
  .ftr_add_item .ftr_add_txt:last-child{

  }
  .ftr_1_box2{
    width: 34.21%;
  }
  .ftr_links{

  }
  .ftr_link{

  }
  .ftr_link:after{

  }
}

@media (min-width:1440px){
  .ftr_contact_box1_en{
    font-size: 100px;
  }
  .link_1{
    width: 100%;
    max-width: 380px;
  }
}
/*******************************
*　共通パーツ
********************************/


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  /*  background: var(--main-color);*/
  background: #1ab100;
  border-radius: 50px;
  color: #FFF !important;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
  letter-spacing: 0.075em;
}
.read_more a:after{
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/read_more_r.png);
  background-size: contain;
  background-repeat: no-repeat;
  /*font-family: 'FontAwesome';*/
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #000;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--sub-color);
  opacity: 1;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: -1.6em;
}


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

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

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

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

}


@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 130px;
  }
  .tt2_ja{
    font-size: 28px;
    margin-top: -1.6em;
  }


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

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

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

  /* ボタン */
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 20px 20px;
    margin: 5px 5px;
  }

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

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


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 240px;
  }
  .tt2_en.mid{
    font-size: 220px;
  }
  .tt2_ja{
    font-size: 34px;
    margin-top: -1.8em;
  }

}

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



/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 100px;
}
.pg_home .section.sec1{

}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


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


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


}





@media (max-width:374px){

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

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

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

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

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

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


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


}




/*******************************
*　事業内容
********************************/

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

}
.pg_business .section.sec1{

}
.pg_business .section.sec2{
  background: #1ab100;
  padding: 31px 30px;
  margin-top:50px;
}
.pg_business .section.sec3{
  padding-top: 50px;
}


.dots_inr{
  background-image: url(/system_panel/uploads/images/dots_bg.jpg);
  background-repeat: repeat;
  border-radius: 30px;
  padding: 54px 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_business .section.sec2{
    padding: 31px 12px;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_business{

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{
    margin-top: 114px;
  }
  .pg_business .section.sec3{
    padding-top: 84px;
  }

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


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

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{
    margin-top: 114px;
  }

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


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


}

/* メイン部分 */
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
}
.page_hdr_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
  ;
}
.page_hdr_box1_img img{
  border-radius: 20px;
}
.page_hdr_box1_img:before{
  padding-top: 70.76%;
}
.page_hdr_box2{
  width: 100%;
  order: 1;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.33em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc p{
  letter-spacing: 0.075em;
}
.page_hdr_box2 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.33em;
  text-align: justify;
  margin-top: 0;
}

/*capacity*/
.business_tt1{
  font-size: clamp(2.25rem, 1.125rem + 5.63vw, 7.875rem);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
  line-height: 1;
}
.business_tt1 p{
  letter-spacing: 0;
}
.business_tt2{
  font-size: 30px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.375em;
  text-align: center;
  margin-top: 12px;
  background-color: #ffd941;
  background-image: linear-gradient(45deg, #ae000080 25%, transparent 25%, transparent 75%, #ae000080 75%), linear-gradient(45deg, #ae000080 25%, transparent 25%, transparent 75%, #ae000080 75%);
  background-position: 5px 5px, 7px 7px;
  background-size: 4px 4px;
  -webkit-background-clip: text;
  color: transparent;
}
.business_tt2 p{

}

.business_capa_items{
  margin-top: 120px;
  position: relative;
}
.human_img{
  width: 41.34%;
  aspect-ratio:294 / 257;
  position: absolute;
  top: -13.92%;
  top: -100px;
  right: 12px;
}
.business_capa_item{
  background: #faf6f0;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px;
  position: relative;
}
.business_capa_item:nth-child(n+2){
  margin-top: 50px;
}
.business_capa_item:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #faf6f0;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.business_capa_item:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #4f9dc5;
  border-radius: 20px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 0;
}
.business_capa_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  order: 2;
}
.business_capa_item_en{
  font-size: 24px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  text-shadow: 1.231px 1.576px 6px rgba(161, 161, 161, 1);
  color: #fff;
}
.business_capa_item_tt{
  font-size: 18px;
  font-weight: 700;
  color: #24b30b;
  margin-top: 11px;
}
.sec_sub{
  font-size: 18px;
  font-weight: 700;
  margin-top: 22px;
}
.sec_sub p{
  letter-spacing: 0.075em;
}
.business_capa_box1 .content_desc{

}
.business_capa_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.business_capa_box2_img img{
  border-radius: 20px;
}
.business_capa_box2_img:before{
  padding-top: 80.59%;
}


.page_ftr_tt{
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.075em;
}
.page_ftr_wrap .content_desc{
  line-height: 2.1em;
}


@media (max-width:767px){

}
@media (min-width:768px){
  .human_img{
    width: 15.34%;
    aspect-ratio:294 / 257;
    position: absolute;
    top: -13.92%;
    top: -80px;
    right: 12px;
  }

  /* メイン部分 */
  .page_hdr_wrap{
    margin-top: 20px;
  }
  .page_hdr_box1{
    margin-top: 30px;
  }
  .page_hdr_box1_img img{

  }
  .page_hdr_box1_img:before{

  }
  .page_hdr_box2{

  }
  .content_desc{

  }
  .page_hdr_box2 .content_desc{

  }

  /*capacity*/
  .dots_inr{
    padding: 54px 0 71px;
  }
  .business_tt1{

  }
  .business_tt1 p{

  }
  .business_tt2{
    font-size: 45px;
  }
  .business_tt2 p{

  }

  .business_capa_items{
    margin-top: 64px;
  }
  .business_capa_item{
    padding: 35px;
  }
  .business_capa_item:nth-child(n+2){
    margin-top: 30px;
  }
  .business_capa_box1{
    margin-top: 20px;
  }
  .business_capa_item_en{
    font-size: 42px;
  }
  .business_capa_item_tt{
    font-size: 21px;
  }
  .sec_sub{
    font-size: 22px;
  }
  .business_capa_box1 .content_desc{
    font-size: 18px;
  }
  .business_capa_box2{

  }
  .business_capa_box2_img img{

  }
  .business_capa_box2_img:before{

  }

  .page_ftr_tt{
    font-size: 28px;
  }
  .page_ftr_wrap .content_desc{
    margin-top: 40px;
  }


}
@media (min-width:1024px){
  .human_img{
    width: 15.34%;
    aspect-ratio:294 / 257;
    position: absolute;
    top: -13.92%;
    top: -120px;
    right: 12px;
  }

}
@media (min-width:1200px){
  .human_img{
    width: 15.34%;
    aspect-ratio:294 / 257;
    position: absolute;
    top: -13.92%;
    top: -150px;
    right: 12px;
  }

  /* メイン部分 */
  .page_hdr_wrap{
    margin-top: 80px;
  }
  .page_hdr_box1{
    width: 42.76%;
    padding-top: 10px;
    order: 1;
    margin-top: 0;
  }
  .page_hdr_box1_img img{

  }
  .page_hdr_box1_img:before{

  }
  .page_hdr_box2{
    width: 49.01%;
    order: 2;
  }
  .content_desc{

  }
  .page_hdr_box2 .content_desc{
    font-size: 18px;
    margin-top: 0;
  }

  /*capacity*/
  .business_tt1{

  }
  .business_tt1 p{

  }
  .business_tt2{
    font-size: 60px;
  }
  .business_tt2 p{

  }

  .business_capa_items{
    margin-top: 64px;
  }
  .business_capa_item{
    padding: 24px 70px 46px 35px;
  }
  .business_capa_item:nth-child(n+2){
    margin-top: 30px;
  }
  .business_capa_box1{
    width: 67.49%;
    order: 1;
    margin-top: 0;
  }
  .business_capa_item_en{
    font-size: 70px;
  }
  .business_capa_item_tt{

  }
  .sec_sub{
    font-size: 24px;
  }
  .business_capa_box1 .content_desc{

  }
  .business_capa_box2{
    width: 29.68%;
    padding-top: 10px;
    order: 2;
  }
  .business_capa_box2_img img{

  }
  .business_capa_box2_img:before{

  }

  .page_ftr_tt{
    font-size: 38px;
  }
  .page_ftr_wrap .content_desc{
    font-size: 20px;
  }
  .content_desc.center{
    text-align: center;
  }


}
@media (min-width:1470px){
  .human_img{
    width: 15.34%;
    aspect-ratio:294 / 257;
    position: absolute;
    top: -13.92%;
    top: -180px;
    right: 12px;
  }
  .business_tt2{
    font-size: 80px;
  }

}
@media (min-width:1720px){
  .human_img{
    width: 19.34%;
    aspect-ratio:294 / 257;
    position: absolute;
    top: -13.92%;
    top: -235px;
    right: 12px;
  }
  
  .business_tt1{
    white-space: nowrap;
  }

}



/*******************************
*　設備
********************************/

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

}
.pg_equipment .section.sec1{

}
.pg_equipment .section.sec2{
  padding-top:0;
}


@media (max-width:374px){

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

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

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

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

  }
  .pg_equipment .section.sec1{

  }
  .pg_equipment .section.sec2{
    padding-top: 50px;
  }

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


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


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


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


}

/* メイン部分 */
/*設備　施設*/
.pg_equipment .page_hdr_wrap {
  border-bottom:1px solid #24b30b;
  padding-bottom: 50px;
}


.equipment_items{
  display: flex;
  flex-wrap:wrap;

}
.equipment_item{
  width: 100%;
}
.equipment_item:nth-child(n+2){
  margin-top: 40px;
  ;
}
.equipment_item_inner{

}
.equipment_item_img{

}
.equipment_item_img img{
  border-radius: 20px;
}
.equipment_item_img:before{
  padding-top: 70.58%;
}
.equipment_item_content{

}
.equipment_item_tt{
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.equipment_item_icon{
  min-width: 60px;
  margin-right: 16px;
}
.equipment_item_tt_sub{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.equipment_item_content .content_desc{
  line-height: 1.666em;
  margin-top: 11px;
}
.equipment_item_tbl{
  margin-top: 30px;
}
.equipment_item_tbl p{
  letter-spacing: 0.075em;
}
.equipment_item_tbl .table_rows_th,
.equipment_item_tbl .table_rows_td{
  border: 1px solid #c3bfbf;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 15px;
}
.equipment_item_tbl .table_rows_th{
  background: #dbefd8;
}
.equipment_item_tbl .table_rows_td{
  background: #faf6f0;
}
@media (max-width:767px){
  .equipment_item_tbl .table_rows_th,
  .equipment_item_tbl .table_rows_td{
    border-bottom: 0;
    width: 100%;
    display: block;
  }
  .equipment_item_tbl .table_rows_th{

  }
  .equipment_item_tbl .table_rows_td{

  }
  .equipment_item_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #c3bfbf;
  }
}
@media (min-width:768px){
  /*施設*/
  .pg_equipment .page_hdr_wrap{
    padding-bottom: 80px;
  }

  /*施設*/
  .equipment_items{
    margin-inline:-15px
  }
  .equipment_item{
    width: 50%;
    padding-inline:15px;
  }
  .equipment_item:nth-child(n+2){
    margin-top: 0;
  }
  .equipment_item:nth-child(n+3){
    margin-top: 87px;
  }
  .equipment_item_inner{

  }
  .equipment_item_img{

  }
  .equipment_item_img img{

  }
  .equipment_item_img:before{

  }
  .equipment_item_content{

  }
  .equipment_item_tt{

  }
  .equipment_item_icon{

  }
  .equipment_item_tt_sub{
    font-size: 30px;
  }
  .equipment_item_content .content_desc{

  }
  .equipment_item_tbl{
    margin-top: 40px;
  }
  .equipment_item_tbl .table_rows_th,
  .equipment_item_tbl .table_rows_td{

  }
  .equipment_item_tbl .table_rows_th{
    width: 100px;
    border-right: 0;
  }
  .equipment_item_tbl .table_rows_td{
    border-left: 0;
    padding-left: 26px;
  }
}
@media (min-width:1024px){
  .equipment_item_tbl .table_rows_th{
    width: 130px;
  }

}
@media (min-width:1200px){
  /*施設*/
  .pg_equipment .page_hdr_wrap{
    padding-bottom: 100px;
  }
  .equipment_items{
    margin-inline:-80px
  }
  .equipment_item{
    padding-inline:80px;
  }
  .equipment_item_inner{

  }
  .equipment_item_img{

  }
  .equipment_item_img img{

  }
  .equipment_item_img:before{

  }
  .equipment_item_content{

  }
  .equipment_item_tt{

  }
  .equipment_item_icon{

  }
  .equipment_item_tt_sub{
    font-size: 36px;
  }
  .equipment_item_content .content_desc{

  }
  .equipment_item_tbl{

  }
  .equipment_item_tbl .table_rows_th,
  .equipment_item_tbl .table_rows_td{

  }
  .equipment_item_tbl .table_rows_th{
    width: 205px;
  }
  .equipment_item_tbl .table_rows_td{

  }

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


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


}







/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}

/*テーブル*/
.copmany_tbl{

}
.copmany_tbl p{
  letter-spacing: 0.05em;
}
.copmany_tbl .table_rows_th,
.copmany_tbl .table_rows_td{
  font-size: 16px;
  border: 1px solid #24b30b;
  padding: 17.4px 16px;
}
.copmany_tbl .table_rows_th{
  background: #dbefd8;
  font-weight: 400;
  border-left: none;
}
.copmany_tbl .table_rows_td{
  background:#ffffff;
  font-weight: 500;
  border-right: none;
}

/*地図*/
.gmap{
  margin-top: 50px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}

.pg_contact .section.sec2 .contact_tt.head{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 22px;
}
.body_company .pg_contact .form.formWrap{
  margin-top: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*テーブル*/
  .copmany_tbl{

  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{
    width: 100%;
    display: block;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
  .copmany_tbl .table_rows_th{

  }
  .copmany_tbl .table_rows_td{

  }
  .copmany_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #24b30b;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

  /*テーブル*/
  .copmany_tbl{

  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{
    padding: 17.4px 28px;
  }
  .copmany_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .copmany_tbl .table_rows_td{
    border-left: 0;
    padding-left: 28px;
  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 450px;
  }

  .pg_contact .section.sec2 .contact_tt.head{
    font-size: 30px;
  }
}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

  /*テーブル*/
  .copmany_tbl{

  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{

  }
  .copmany_tbl .table_rows_th{
    width: 300px;
  }
  .copmany_tbl .table_rows_td{

  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{

  }

  .pg_contact .section.sec2 .contact_tt.head{
    font-size: 38px;
  }
  .pg_contact .form.formWrap{
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .pg_contact .form.formWrap{
    margin-top: 0;
  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
  border-left: none;
}
.company_tbl .table_rows_td{
  background: #FFF;
  border-right: none;
}

/* マップ */
.company_map{

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

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}


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

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

@media (max-width:767px){

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

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

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

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

  }

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}

/*新着情報*/
.pg_news{

}
.news_list{

}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #0d0d0d;
  padding: 20px 0;
  position: relative;
}
.news_list .webgene-item a:after{
  content: "＞";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.news_list .webgene-item .box1{
  width: 140px;
}
.news_list .webgene-item .img:before{
  padding-top: 75%;
}
.news_list .webgene-item .box2{
  width: calc(100% - 140px - 15px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
  ;
}
.news_list .webgene-item .meta{
  /*width: 100%;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.news_list .webgene-item .date{
  font-size: 18px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 100px;
  margin-bottom: 10px;
}
.news_list .webgene-item .date{

}
.news_list .webgene-item .category{
  width: 100px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  background: #dddddd;
  text-align: center;
}
.news_list .webgene-item .title{
  /*width: 100%;*/
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5em;
  padding-right: 50px;
  margin-top: 10px;
  -webkit-line-clamp: 2;
}

/*ブログ*/
.blog_list{

}
.blog_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -10px;
}
.blog_list .webgene-item {
  width: 50%;
  padding-inline: 10px;
}
.blog_list .webgene-item:nth-child(n+3){
  margin-top: 30px;

}
.blog_list .webgene-item a{

}
.blog_list .webgene-item .img{
  border-radius: 0 50px 0 0;
}
.blog_list .webgene-item .img:before{
  padding-top: 81.57%;
}
.blog_list .webgene-item .img img{
  border-radius: 0 50px 0 0;
}
.blog_list .webgene-item .box2{
  background: #faf6f0;
  border-radius: 0 0 0 50px;
  position: relative;
  padding: 46px 9px;
}
.blog_list .webgene-item .category{
  display: flex;
  align-items: center;
  /*  background: #1ab100;*/
  width: 150px;
  height: auto;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  top: -20px;
  left: -10px;
  position: absolute;
  z-index: 2;
  /*    padding: 10px 19px;*/
  background-image: url(/system_panel/uploads/images/bg_cate.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio:230 / 50;
  padding-bottom: 5px;
  padding-left: 27px;
}
.blog_list .webgene-item .category:before{

}
.blog_list .webgene-item .meta{
  margin-top: 0;
}
.blog_list .webgene-item .date{
  font-size: 15px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  ;
  line-height: 1;
}
.blog_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-top: 13px;
}
.blog_list .webgene-item .txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.666em;
}

/* サイド */
.posts_side_wrap{

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

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

/*ブログ*/
/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.pg_blog .posts_detail{
  border: none;
  border-bottom: 1px solid #b9b9b9;
  padding: 0 0 30px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom:none;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.pg_blog .posts_detail .meta{
  border-bottom:none;
  padding-bottom: 0;
}
.pg_blog .posts_detail .meta .category{
  margin-bottom: 2px;
  width: 120px;
  background: #24b30b;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border: none;
  padding: 2px 0;
  margin-bottom: 0;
}
.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;
}
.body_blogDetail .posts_detail .meta .date{
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  /*font-family: "Cardo", serif;*/
  font-family: var(--font-en);
  border-right: 1px solid #a7a7a7;
  margin-right: 16px;
}
.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;
}
.pg_blog .posts_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  letter-spacing: 0.075em;
}
.pg_blog .posts_detail .post_content h2{
  font-size: 1.3em;
  font-weight: 600;
  border-bottom: 2px solid #24b30b;
  padding-bottom: 5px;
  /*margin-bottom: 15px;*/
}
.posts_detail .thumb{
  margin-top: 30px;
  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{
  padding: 0 0 30px;
  border-bottom: 1px solid #b9b9b9;
}
.news_detail .meta{
  display: flex;
  align-items: center;
}
.news_detail .meta .category{
  margin-bottom: 2px;
  width: 120px;
  background: #24b30b;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border: none;
  padding: 2px 0;
  margin-bottom: 0;
}
.news_detail .meta .date{
  width: 90px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Cardo", serif;
  border-right: 1px solid #a7a7a7;
  margin-right: 16px;
}
.news_detail .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;
  border-bottom: 1px solid #b9b9b9;
  margin-top: 10px;
  padding-bottom: 10px;
}
.news_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  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;
  }

  /*新着情報*/
  .pg_news .posts_layout_box1{
    width: 100%;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .box1{
    width: 13.48%;
  }
  .news_list .webgene-item .img_before{

  }
  .news_list .webgene-item .box2{
    width: 83.95%;
    margin-top: 0;
  }
  .news_list .webgene-item .meta{
    width: 22.14%;
    justify-content: center;
  }
  .news_list .webgene-item .date{
    font-size: 20px;
    margin-right: 0;
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{
    margin-top: 10px;
  }
  .news_list .webgene-item .title{
    width: 74.98%;
    font-size: 18px;
    margin-top: 0;
  }

  /*ブログ*/
  .blog_list{

  }
  .blog_list .webgene-blog{
    margin-inline:-10px;
  }
  .blog_list .webgene-item{
    width: 50%;
    padding-inline:10px;
  }
  .blog_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .blog_list .webgene-item:nth-child(n+3){
    margin-top: 50px;
    ;
  }
  .blog_list .webgene-item a{

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

  }
  .blog_list .webgene-item .img img{

  }
  .blog_list .webgene-item .box2{
    margin-top: 0;
  }
  .blog_list .webgene-item .category{
    width: 230px;
  }
  .blog_list .webgene-item .meta{

  }
  .blog_list .webgene-item .date{

  }
  .blog_list .webgene-item .title{
    font-size: 20px;
  }
  .blog_list .webgene-item .txt{
    font-size: 18px;
  }

  /*ブログ*/
  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .pg_blog .posts_detail{
    padding: 0 0 35px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .pg_blog .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin-bottom: 8px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .pg_blog .posts_detail .meta .category{
    width: 120px;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }

  .posts_detail .meta .date{
    width: 107px;
  }
  .body_blogDetail .posts_detail .meta .date{
    margin-right: 54px;
  }

  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .body_blogDetail .posts_detail .title{
    font-size: 18px;
    width: 100%;
    padding-bottom: 13px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .pg_blog .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .pg_blog .read_more{
    margin-top: 45px;
  }


  .news_detail{
    padding: 0 0 50px;
  }
  .news_detail .meta .date{
    width: 105px;
    margin-right: 54px;
  }
  .news_detail .title{
    font-size: 18px;
    width: 100%;
    padding-bottom: 13px;
    margin-top: 10px;
  }
}
@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{

  }

  /*新着情報*/
  .pg_news{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    padding: 35px 0 40px;
  }
  .news_list .webgene-item .box1{
    padding: 0;
  }
  .news_list .webgene-item .img_before{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{
    justify-content: space-between;
  }
  .news_list .webgene-item .date{
    font-size: 16px;
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{
    margin-top: 0;
  }
  .news_list .webgene-item .title{
    font-size: 18px;
  }

  /*ブログ*/
  .blog_list{

  }

  .blog_list .webgene-item a{

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

  }
  .blog_list .webgene-item .img img{

  }
  .blog_list .webgene-item .box2{

  }
  .blog_list .webgene-item .category{

  }
  .blog_list .webgene-item .meta{

  }
  .blog_list .webgene-item .date{

  }
  .blog_list .webgene-item .title{

  }

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

  .pg_news{
    padding-top: 0;
  }

  /*ブログ*/
  .blog_list .webgene-blog{
    margin-inline:-20px;
  }
  .blog_list .webgene-item{
    width: 33.3333%;
    padding-inline:20px;
  }
  .blog_list .webgene-item:nth-child(n+3){
    margin-top: 0;
    ;
  }
  .blog_list .webgene-item:nth-child(n+4){
    margin-top: 34px;
  }

  /*レイアウト*/
  .body_blog .posts_layout_box1{
    width: 80.26%;
  }
  .body_blog .posts_layout_box2{
    width: 16.64%;
  }
  .body_blog .webgene-pagination{
    margin-top: 80px;
  }

  /*新着情報*/
  .news_list .webgene-item .box1{
    padding: 0 20px;
  }
  .news_list .webgene-item .date{
    font-size: 24px;
  }
  .news_list .webgene-item .title{
    font-size: 20px;
  }
}



/*******************************
*　ギャラリー（サムネ横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;
  }
  
  .equipment_item_tbl .table_rows_th, .equipment_item_tbl .table_rows_td{
   font-size:13px;
  }
}
@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;
}

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

@media only screen and (min-width: 1024px){
  .equipment_item_tbl .table_rows_th, .equipment_item_tbl .table_rows_td{
   font-size:16px;
  }
  
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


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

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

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

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

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .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;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

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

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

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}

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

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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #bfbfbf;
  background: #ffffff;
  color: #505050;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #bfbfbf;
}
.pg_contact .formTh {
  padding: 15px 13px 14px 21px;
  background: #dbefd8;
  letter-spacing: 0.025em;
  font-weight: 700;
}
.pg_contact .formTd.a_center{
  display:flex;
  align-items: center;
}
.pg_contact .formTh label{
  margin: 0;
  font-weight: 700;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
  ;
}
.pg_contact .formTd {
  font-size: 15px;
  font-weight: 500;
  padding: 15px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .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;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 44px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
  color: #353535;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pg_contact .privacyLabel a{
  color: #aca299;
  font-weight: 500;
}
.pg_contact .privacyLabel a:hover{
  border-bottom: none;
}

/* ボタン */
.pg_contact .formBtn.formSend{
  max-width: 280px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #fff;
  padding: 16px 20px;
  margin: 30px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
  border-radius: 27px;
}
.pg_contact .formBtn.formSend:after{
  content: "\f054";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  font-size: 10px;
}
.pg_contact .formBtn.formSend:hover{
  color: #FFF !important;
  background: #000;
}
.pg_contact .formBtn.formSend:hover:after{
  color: #FFF;
  margin-right: -5px;
}

.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 10px;
  letter-spacing: 0.025em;
  line-height: 2.25em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
}
.radioArea .d-inline-block{
  margin-right: 25px;
}
.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.8;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.privacy_item_box {
  padding: 30px 43px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #808080;
  margin-top: 0;
  color: #000000;
  margin-top: 100px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px){
  .pg_contact .section.sec1{
    padding-top: 29px;
    padding-bottom: 0;
  }

  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .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;
  }

  .pg_contact .formTd{
    padding: 11px 73px 8px 19px;
  }
  .privacy_item_box {
    margin-bottom: 0;
  }
}

@media (min-width:1200px){
  .pg_contact .form.formWrap{
    margin-top: 135px;
  }
  .pg_contact .formBtn.formSend{
    margin-top: 0;
  }
}

.privacy_item_box{
  padding: 30px 43px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #808080;
  margin-top: 0;
  color: #000000;
  margin-top: 56px;
  margin-bottom:0;
}
/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 44px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  border-left: 6px solid #bdae9f;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  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: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 46px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}

@media only screen and (max-width: 1023px){
  .pg_contact .section.sec1{
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .pg_contact .section.sec1{
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .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;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 14px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 195px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .pg_contact .section.sec1 .contact_tt {
    margin-bottom: 20px;
    font-size: 19px;
  }

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

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 8px 4px;
    line-height: 1.45;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

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


  .pg_contact .section.sec1 {
    padding: 60px 0 80px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

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

  .privacy_item_box{
    margin-top: 50px;
    padding: 30px 10px;
  }

  .body_thanks .tt3_ja{
    font-size: 19px;
  }
}


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

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 30px;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
/*.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.7);
  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%);
  color: #FFF;
}
.pg_header_title1{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  background: rgba(26, 177, 0, 0.95);
}
.pg_header_title_ja{
  font-size: 15px;
  letter-spacing: 0.075em;
  font-family: var(--font-en);
  font-weight: 900;
  text-align: center;
}
.pg_header_title_en{
  font-size: 60px;
  font-family: var(--font-en);
  letter-spacing: 0;
  /*margin-top: 5px;*/
  text-shadow:
    8px 3px 7px rgba(0, 8, 0, 0.2),  /* メイン影 */
    0px 0px 1px rgba(0, 0, 0, 0.1), /* 奥行き感 */
    0px 0px 35px rgba(0, 0, 0, 0.1)/* さらに遠くの影 */
}
.pg_header_title_en:after{
  background: var(--main-color);
  padding: 10px 0;
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}


@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_title_ja{
    font-size: 28px;
  }
  .pg_header_title_en{
    font-size: 120px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img {
    margin-left: 30px;
    margin-right: 30px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title_ja{
    font-size: 36px;
    padding: 3px;
  }
  .pg_header_title_en{
    font-size: 210px;
    /*margin-top: 10px;*/
  }
  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 120px;
  }
  .pg_header_mv_img{
    margin-left: 65px;
    margin-right: 65px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 580px;
  }
  .pg_header_title_ja{
    margin-left: 10px;
  }
  .pg_header_title_en{
    font-size: 250px;
    margin-top: -20px;
    font-weight: 700;

  }
  .pg_header_title_txt{

  }

}

/*******************************
*　私たちについて
********************************/

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

}
.pg_about .section.sec1{
  position: relative;
}
.pg_about .section.sec2{
  padding-top: 30px;
  padding-bottom: 0;
}
.pg_about .section.sec1:after{
  content: "";
  width: 56%;
  height: 100%;
  display: block;
  position: absolute;
  background-image: url(/system_panel/uploads/images/20251111191957157331.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  top: 8%;
  left: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(-50%, 0);
  transition: 0.2s all;
}
.pg_about .section.sec3{

}

/*モノづくりと幸せの追求*/
.pg_about .about_philosophy{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pg_about .section.sec1 .about_txt{
  padding-top: 130px;
}
.pg_about .about_phi_box1{
  margin: auto;
}
.pg_about .about_phi_box1 .tt2_ja{
  font-size: 22px;
  margin-top: -30px;
}
.pg_about .about_phi_box1 .tt2{
  margin-bottom: 39px;
}
.pg_about .about_phi_box2,
.pg_about .about_phi_box3{
  width: 48%;
}
.pg_about .about_phi_box2{
  margin-top: 60px;
}
.about_phi_box2 .about_phi_img,
.about_phi_box3 .about_phi_img{
  border-radius: 20px;
}
.about_phi_box2 .img_fit:before{
  padding-top: 133%;
}
.pg_about .about_phi_box3{
  margin-top: 30px;
}
.about_phi_box3 .img_fit:before{
  padding-top: 135%;
}

/*私たちの強み*/
.pg_about .section.sec2 .tt2_ja{
  margin-top: -15px;
  font-size: 22px;
}
.about_features_boxs{
  margin-top: 50px;
}
.about_features_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_features_box_content:nth-child(2n) .about_features_box{
  flex-direction: row-reverse;
}
.about_features_box_content:nth-child(2n+1) .about_features_box{
  flex-direction: row;
}
.about_features_box_content:nth-child(n+2){
  margin-top: 45px;
}
.about_features_box1{
  width: 100%;
  order: 2;
  margin-top: 40px;
}
.about_features_box2{
  width: 100%;
  position: relative;
  order: 1;
}
/*画像の背景*/
.about_features_box2:after,
.about_features_box_content:nth-child(3n) .about_features_box2:after{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #6d9bb0;
  transform: rotate(5deg);
  border-radius: 20px;
  margin: 20px 0px 0.5%;
}
.about_features_box_content:nth-child(2n) .about_features_box2:after,
.about_features_box_content:nth-child(4n) .about_features_box2:after{
  background: #986db0;
  transform: rotate(-5deg);
  margin: 20px 0px -0.5%;
}

/*人物*/
.about_features_person {
  content: "";
  width: 23%;
  height: 100%;
  display: block;
  position: absolute;
  /*background-image: url(/system_panel/uploads/images/20251111212640361659.png);*/
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  top: 47%;
  left: 8%;
  -webkit-transform: translate(0, -50%);
  transform: translate(-50%, 0%);
  transition: 0.2s all;
}
.about_features_box_content:nth-child(2) .about_features_person{
  content: "";
  width: 24%;
  height: 100%;
  display: block;
  position: absolute;
  /*background-image: url(/system_panel/uploads/images/20251111212640764240.png);*/
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  top: 47%;
  left: 80%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, 0%);
  transition: 0.2s all;
}
.about_features_box_content:nth-child(3) .about_features_person{
  content: "";
  width: 23%;
  height: 100%;
  display: block;
  position: absolute;
  /*background-image: url(/system_panel/uploads/images/20251114205958152378.png);*/
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  top: 47%;
  left: 80%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, 0%);
  transition: 0.2s all;
}
.about_features_box_content:nth-child(4) .about_features_person{
  content: "";
  width: 23%;
  height: 100%;
  display: block;
  position: absolute;
  /*background-image: url(/system_panel/uploads/images/20251111212640361659.png);*/
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  top: 47%;
  left: 8%;
  -webkit-transform: translate(0, -50%);
  transform: translate(-50%, 0%);
  transition: 0.2s all;
}

.about_features_box2 .about_features_img{
  border-radius: 30px;
  margin-top: 20px;
}
.about_features_box2 .about_features_img:before{
  padding-top: 71%;
}

.about_features_box1_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 25px;
}
.about_features_nbr{
  position: relative;
  color: #FFF;
  font-size: 22px;
  letter-spacing: 0;
  font-family: var(--font-en);
  align-items: center;
  padding: 10px;
}
.about_features_nbr:after{
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-image: url(/system_panel/uploads/images/20251111195758933954.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  top: 9%;
  left: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(-50%, 0);
  transition: 0.2s all;
}
.about_features_tt1{
  color: var(--main-color);
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 700;
  margin-left: 15px;
}
.about_features_tt2 h3{
  font-size: 24px;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  font-weight: 700;
}
.pg_about .section.sec2 .about_txt{
  padding-top: 25px;
}


/*未来をつくるのは、今を動かす若い力*/
.about_contents,
.flow_contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pg_about .section.sec3 .tt2_ja{
  margin-top: -20px;
  font-size: 22px;
  font-weight: 900;
}
.pg_about .section.sec3 .tt2{
  margin-bottom: 25px;
}
.about_content_box1,
.flow_content_box1{
  width: 100%;
  order: 2;
}
.about_content_box2,
.flow_content_box2{
  width: 100%;
  order: 1;
  padding-bottom: 25px;
}
.about_content_box2 .about_content_img,
.flow_content_box2 .flow_content_img{
  border-radius: 20px;
}
.about_content_img.img_fit:before,
.flow_content_img.img_fit:before{
  padding-top: 73%;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_about .section.sec1 .about_txt {
    padding-top: 140px;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_about .section.sec2{
    padding-top: 60px;
  }
  .pg_about .section.sec1:after{
    width: 46%;
    height: 100%;
    top: 11%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0);
    transition: 0.2s all;
  }
  .pg_about .section.sec3 {
    padding-top: 70px;
  }

  /*モノづくりと幸せの追求*/
  .pg_about  .tt2_en{
    font-size: 110px;
  }
  .pg_about .section.sec1 .about_txt{
    padding-top: 220px;
  }
  .pg_about .about_phi_box1 .tt2_ja{
    margin-top: -42px;
    font-size: 28px;
  }
  .pg_about .about_phi_box2{
    margin-top: 80px;
  }
  .about_phi_box2 .about_phi_img,
  .about_phi_box3 .about_phi_img{
    border-radius: 20px;
  }
  about_phi_box2 .img_fit:before,
  .about_phi_box3 .img_fit:before{
    padding-top: 120%;
  }
  .pg_about .about_phi_box3{
    margin-top: 40px;
  }

  /*私たちの強み*/
  .pg_about .section.sec2 .tt2_ja{
    margin-top: -40px;
    font-size: 28px;
  }
  .about_features_boxs{
    margin-top: 100px;
  }
  .about_features_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about_features_box1{
    margin-top: 50px;
  }
  .about_features_box_content:nth-child(n+2) {
    margin-top: 70px;
  }

  /*画像の背景*/
  .about_features_box2:after,
  .about_features_box_content:nth-child(3n) .about_features_box2:after{
    transform: rotate(5deg);
    margin: 20px 0px 0.6%;
  }
  .about_features_box_content:nth-child(2n) .about_features_box2:after,
  .about_features_box_content:nth-child(4n) .about_features_box2:after{
    transform: rotate(-5deg);
    margin: 20px 0px 0.6%;
  }

  /*人物*/
  .about_features_person{
    width: 19%;
    height: 100%;
    top: 46%;
    left: 5%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(2) .about_features_person{
    width: 18%;
    height: 100%;
    top: 50%;
    left: 95%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(3) .about_features_person{
    width: 18%;
    height: 100%;
    top: 50%;
    left: 95%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(4) .about_features_person{
    width: 19%;
    height: 100%;
    top: 46%;
    left: 5%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }

  .about_features_box2 .about_features_img{
    border-radius: 30px;
    margin-top: 20px;
  }
  .about_features_box2 .about_features_img:before{
    padding-top: 65%;
  }

  .about_features_box1_inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
  }
  .about_features_nbr{
    position: relative;
    color: #FFF;
    font-size: 38px;
    letter-spacing: 0;
    font-family: var(--font-en);
    align-items: center;
    padding: 0 15px;
  }
  .about_features_nbr:after{
    content: "";
    width: 72px;
    height: 76px;
    display: block;
    position: absolute;
    background-image: url(/system_panel/uploads/images/20251111195758933954.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_features_tt1{
    color: var(--main-color);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 700;
    margin-left: 29px;
  }
  .about_features_tt2 h3{
    font-size: 24px;
    font-family: var(--font-ja);
    letter-spacing: 0.075em;
    font-weight: 700;
  }
  .pg_about .section.sec2 .about_txt{
    padding-top: 25px;
  }

  /*未来をつくるのは、今を動かす若い力*/
  .about_contents,
  .flow_contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .pg_about .section.sec3 .tt2_ja{
    margin-top: -42px;
    font-size: 28px;
  }
  .pg_about .section.sec3 .tt2{
    margin-bottom: 50px;
  }
  .about_content_box1,
  .flow_content_box1{
    width: 100%;
  }
  .about_content_box2,
  .flow_content_box2{
    width: 100%;
  }
  .about_content_box2 .about_content_img,
  .flow_content_box2 .flow_content_img{
    border-radius: 20px;
  }
  .about_content_img.img_fit:before,
  .flow_content_img.img_fit:before{
    padding-top: 60%;
  }

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

  }
  .pg_about .section.sec1{
    position: relative;
  }
  .pg_about .section.sec1:after{
    width: 40%;
    height: 100%;
    top: 135%;
    left: 10%;
    -webkit-transform: translate(0, -50%);
    transform: translate(50%, -50%);
    transition: 0.2s all;
  }
  .pg_about .section.sec2{
    padding-top: 100px;
  }

  .pg_about .section.sec3 {
    padding-top: 50px;
  }

  /*モノづくりと幸せの追求*/
  .pg_about .tt2_en {
    font-size: 150px;
  }
  .pg_about .section.sec1 .about_txt {
    text-align: justify;
    padding-top: 0;
  }
  .pg_about .about_phi_box1 .tt2_ja{
    margin-top: -62px;
  }
  .pg_about .about_phi_box1 .tt2{
    margin-bottom: 39px;
  }
  .about_phi_box2 .about_phi_img,
  .about_phi_box3 .about_phi_img{
    border-radius: 20px;
  }
  .about_phi_box2 .img_fit:before,
  .about_phi_box3 .img_fit:before{
    padding-top: 120%;
  }

  /*私たちの強み*/
  .pg_about .section.sec2 .tt2_ja{
    margin-top: -30px;
    font-size: 30px;
  }
  .about_features_boxs{
    margin-top: 60px;
  }
  .about_features_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about_features_box_content:nth-child(2n) .about_features_box{
    flex-direction: row;
  }
  .about_features_box_content:nth-child(2n+1) .about_features_box{
    flex-direction: row-reverse;
  }
  .about_features_box_content:nth-child(n+2){
    margin-top: 50px;
  }
  .about_features_box1{
    width: 54.60%;
    order: 2;
    margin-top: 0;
  }
  .about_features_box2{
    width: 38.48%;
    position: relative;
    order: 1;
  }
  /*画像の背景*/
  .about_features_box2:after{
    margin: 20px 0px 95%;
  }
  .about_features_box_content:nth-child(2n) .about_features_box2:after{
    margin: 20px 0px 85%;
  }
  .about_features_box_content:nth-child(3n) .about_features_box2:after{
    margin: 20px 0px 108%;
  }
  .about_features_box_content:nth-child(4n) .about_features_box2:after{
    margin: 20px 0px 108%;
  }
  /*人物*/
  .about_features_person{
    width: 28%;
    height: 100%;
    top: 20%;
    left: 5%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(2) .about_features_person{
    width: 26%;
    height: 100%;
    top: 20%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(330%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(3) .about_features_person{
    width: 26%;
    height: 100%;
    top: 20%;
    left: 70%;
    -webkit-transform: translate(0, -50%);
    transform: translate(50%, 0);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(4) .about_features_person{
    width: 28%;
    height: 100%;
    top: 20%;
    left: 5%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }

  .about_features_box2 .about_features_img{
    border-radius: 30px;
    margin-top: 20px;
  }
  .about_features_box2 .about_features_img:before{
    padding-top: 71%;
  }

  .about_features_box1_inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
  }
  .about_features_nbr{
    position: relative;
    color: #FFF;
    font-size: 38px;
    letter-spacing: 0;
    font-family: var(--font-en);
    align-items: center;
    padding: 0 15px;
  }
  .about_features_nbr:after{
    content: "";
    width: 72px;
    height: 76px;
    display: block;
    position: absolute;
    background-image: url(/system_panel/uploads/images/20251111195758933954.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_features_tt1{
    color: var(--main-color);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 700;
    margin-left: 29px;
  }
  .about_features_tt2 h3{
    font-size: 24px;
    font-family: var(--font-ja);
    letter-spacing: 0.075em;
    font-weight: 700;
  }
  .pg_about .section.sec2 .about_txt{
    padding-top: 42px;
  }

  /*未来をつくるのは、今を動かす若い力*/
  .pg_about .section.sec3 .tt2_ja {
    margin-top: -30px;
  }
  .pg_about .section.sec3 .tt2{
    margin-bottom: 80px;
  }
  .about_content_box1,
  .flow_content_box1{
    width: 49.01%;
  }
  .about_content_box2,
  .flow_content_box2{
    width: 42.76%;
  }
  .about_content_box2 .about_content_img,
  .flow_content_box2 .flow_content_img{
    border-radius: 20px;
  }
  .about_content_img.img_fit:before,
  .flow_content_img.img_fit:before{
    padding-top: 73%;
  }


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

  }
  .pg_about .section.sec1{
    position: relative;
  }
  .pg_about .section.sec2{
    padding-top: 100px;
  }
  .pg_about .section.sec1:after{
    content: "";
    width: 29.5%;
    height: 100%;
    display: block;
    position: absolute;
    background-image: url(/system_panel/uploads/images/20251111191957157331.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    top: 139%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(50%, -50%);
    transition: 0.2s all;
  }
  .pg_about .section.sec3{

  }

  /*モノづくりと幸せの追求*/
  .pg_about .about_philosophy{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pg_about .section.sec1 .about_txt {
    text-align: center;
    font-size: 18px;
  }
  .pg_about .about_phi_box1{
    margin: auto;
  }
  .pg_about .about_phi_box1 .tt2_ja{
    margin-top: -50px;
    font-size: 34px;
  }
  .pg_about .about_phi_box1 .tt2{
    margin-bottom: 39px;
  }

  .pg_about .about_phi_box2{
    margin-top: 100px;
  }
  .about_phi_box2 .about_phi_img,
  .about_phi_box3 .about_phi_img{
    border-radius: 20px;
  }
  .about_phi_box2 .img_fit:before{
    padding-top: 120%;
  }
  .pg_about .about_phi_box3{
    margin-top: 50px;
  }
  .about_phi_box3 .img_fit:before{
    padding-top: 120%;
  }

  /*私たちの強み*/
  .pg_about .section.sec2 .tt2_ja{
    margin-top: -50px;
    font-size: 34px;
  }
  .about_features_boxs{
    margin-top: 80px;
  }
  .about_features_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about_features_box_content:nth-child(n+2){
    margin-top: 50px;
  }
  .about_features_box1{
    width: 54.60%;
  }
  .about_features_box2{
    width: 38.48%;
    position: relative
  }

  /*画像の背景*/
  .about_features_box2:after{
    margin: 20px 0px 70%;
  }
  .about_features_box_content:nth-child(2n) .about_features_box2:after{
    margin: 20px 0px 50%;
  }
  .about_features_box_content:nth-child(3n) .about_features_box2:after{
    margin: 20px 0px 78%;
  }
  .about_features_box_content:nth-child(4n) .about_features_box2:after{
    margin: 20px 0px 48%;
  }

  /*人物*/
  .about_features_person,
  .about_features_box_content:nth-child(4) .about_features_person{
    width: 29%;
    height: 100%;
    top: 20%;
    left: 10%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(2) .about_features_person,
  .about_features_box_content:nth-child(3) .about_features_person{
    width: 26%;
    height: 100%;
    top: 20%;
    left: 70%;
    -webkit-transform: translate(0, -50%);
    transform: translate(50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box2 .about_features_img{
    border-radius: 30px;
    margin-top: 20px;
  }
  .about_features_box2 .about_features_img:before{
    padding-top: 71%;
  }
  .about_features_box1_inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
  }
  .about_features_nbr{
    position: relative;
    color: #FFF;
    font-size: 38px;
    letter-spacing: 0;
    font-family: var(--font-en);
    align-items: center;
    padding: 0 15px;
  }
  .about_features_nbr:after{
    content: "";
    width: 72px;
    height: 76px;
    display: block;
    position: absolute;
    background-image: url(/system_panel/uploads/images/20251111195758933954.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_features_tt1{
    color: var(--main-color);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 700;
    margin-left: 29px;
  }
  .about_features_tt2 h3{
    font-size: 24px;
    font-family: var(--font-ja);
    letter-spacing: 0.075em;
    font-weight: 700;
  }
  .pg_about .section.sec2 .about_txt{
    padding-top: 42px;
  }

  /*未来をつくるのは、今を動かす若い力*/
  .about_contents,
  .flow_contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pg_about .section.sec3 .tt2_ja{
    margin-top: -45px;
    font-size: 34px;
  }
  .pg_about .section.sec3 .tt2{
    margin-bottom: 80px;
  }
  .about_content_box1,
  .flow_content_box1{
    width: 49.01%;
  }
  .about_content_box2,
  .flow_content_box2{
    width: 42.76%;
    padding-top: 10px;
  }
  .about_content_box2 .about_content_img,
  .flow_content_box2 .flow_content_img{
    border-radius: 20px;
  }
  .about_content_img.img_fit:before,
  .flow_content_img.img_fit:before{
    padding-top: 73%;
  }

}
@media (min-width:1470px){
  /*モノづくりと幸せの追求*/
  .pg_about .tt2_en{
    font-size: 200px;
  }
  .pg_about .section.sec1 .about_txt {
    font-size: 18px;
  }
  /*人物*/
  .about_features_person,
  .about_features_box_content:nth-child(4) .about_features_person{
    width: 29%;
    height: 100%;
    top: 30%;
    left: 10%;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(2) .about_features_person,
  .about_features_box_content:nth-child(3) .about_features_person{
    width: 26%;
    height: 100%;
    top: 35%;
    left: 70%;
    -webkit-transform: translate(0, -50%);
    transform: translate(50%, 0%);
    transition: 0.2s all;
  }
  /*画像の背景*/
  .about_features_box2:after{
    margin: 20px 0px 19%;
  }
  .about_features_box_content:nth-child(2n) .about_features_box2:after{
    margin: 20px 0px 25%;
  }
  .about_features_box_content:nth-child(3n) .about_features_box2:after{
    margin: 20px 0px 10%;
  }
  .about_features_box_content:nth-child(4n) .about_features_box2:after{
    margin: 20px 0px 10%;
  }
}
@media (min-width:1720px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{
    position: relative;
  }
  .pg_about .section.sec2{
    padding-top: 100px;
  }
  .pg_about .section.sec1:after{
    width: 29.5%;
    top: 125%;
    left: 49%;
    -webkit-transform: translate(0, -50%);
    transform: translate(50%, -50%);
    transition: 0.2s all;
  }
  .pg_about .section.sec3 {
    padding-top: 110px;
  }

  /*モノづくりと幸せの追求*/
  .pg_about .tt2_en{
    font-size: 240px;
  }
  .pg_about .about_philosophy{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pg_about .section.sec1 .about_txt{
    text-align: center;
  }
  .pg_about .about_phi_box1{
    margin: auto;
  }
  .pg_about .about_phi_box1 .tt2_ja{
    margin-top: -62px;
    font-size: 34px;
  }
  .pg_about .about_phi_box1 .tt2{
    margin-bottom: 39px;
  }
  .pg_about .about_phi_box2,
  .pg_about .about_phi_box3{
    width: 28.61%;
  }
  .pg_about .about_phi_box2{
    margin-top: -470px;
  }
  .about_phi_box2 .about_phi_img,
  .about_phi_box3 .about_phi_img{
    border-radius: 20px;
  }
  .about_phi_box2 .img_fit:before{
    padding-top: 133%;
  }
  .pg_about .about_phi_box3{
    margin-top: -610px;
  }
  .about_phi_box3 .img_fit:before{
    padding-top: 135%;
  }

  /*私たちの強み*/
  .pg_about .section.sec2 .tt2_ja{
    margin-top: -64px;
    font-size: 34px;
    margin-left: 20px;
  }
  .about_features_boxs{
    margin-top: 100px;
  }
  .about_features_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about_features_box_content:nth-child(n+2){
    margin-top: 130px;
  }
  .about_features_box1{
    width: 54.60%;
    margin-top: -10px;
  }
  .about_features_box2{
    width: 38.48%;
    position: relative
  }

  /*画像の背景*/
  .about_features_box2:after{
    margin: 22px 0px 0%;
  }
  .about_features_box_content:nth-child(2n) .about_features_box2:after{
    margin: 19px 0px 4.3%;
  }
  .about_features_box_content:nth-child(3n) .about_features_box2:after{
    margin: 21px 0px 4%;
  }
  .about_features_box_content:nth-child(4n) .about_features_box2:after{
    margin: 19px 0px 4%;
  }

  /*人物*/
  .about_features_person{
    content: "";
    width: 29%;
    height: 100%;
    display: block;
    position: absolute;
    /*background-image: url(/system_panel/uploads/images/20251111212640361659.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    top: 46%;
    left: 8px;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(2) .about_features_person{
    content: "";
    width: 26%;
    height: 100%;
    display: block;
    position: absolute;
    /*background-image: url(/system_panel/uploads/images/20251111212640764240.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    top: 47%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(316%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(3) .about_features_person{
    content: "";
    width: 26%;
    height: 100%;
    display: block;
    position: absolute;
    /*background-image: url(/system_panel/uploads/images/20251114205958152378.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    top: 47%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(30%, 0%);
    transition: 0.2s all;
  }
  .about_features_box_content:nth-child(4) .about_features_person{
    content: "";
    width: 29%;
    height: 100%;
    display: block;
    position: absolute;
    /*background-image: url(/system_panel/uploads/images/20251111212640361659.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    top: 50%;
    left: 61px;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, 0%);
    transition: 0.2s all;
  }

  .about_features_box2 .about_features_img{
    border-radius: 20px;
    margin-top: 20px;
  }
  .about_features_box2 .about_features_img:before{
    padding-top: 70.08%;
  }

  .about_features_box1_inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
  }
  .about_features_nbr{
    position: relative;
    color: #FFF;
    font-size: 38px;
    letter-spacing: 0;
    font-family: var(--font-en);
    align-items: center;
    padding: 0 15px;
  }
  .about_features_nbr:after{
    content: "";
    width: 72px;
    height: 76px;
    display: block;
    position: absolute;
    background-image: url(/system_panel/uploads/images/20251111195758933954.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_features_tt1{
    color: var(--main-color);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 700;
    margin-left: 29px;
  }
  .about_features_tt2 h3{
    font-size: 24px;
    font-family: var(--font-ja);
    letter-spacing: 0.075em;
    font-weight: 700;
  }
  .pg_about .section.sec2 .about_txt{
    padding-top: 42px;
  }

  /*未来をつくるのは、今を動かす若い力*/
  .about_contents,
  .flow_contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pg_about .section.sec3 .tt2_ja{
    margin-top: -62px;
    font-size: 34px;
    margin-left: 20px;
  }
  .pg_about .section.sec3 .tt2{
    margin-bottom: 80px;
  }
  .about_content_box1,
  .flow_content_box1{
    width: 49.01%;
  }
  .about_content_box2,
  .flow_content_box2{
    width: 42.76%;
  }
  .about_content_box2 .about_content_img,
  .flow_content_box2 .flow_content_img{
    border-radius: 20px;
  }
  .about_content_img.img_fit:before,
  .flow_content_img.img_fit:before{
    padding-top: 73%;
  }
}



/*******************************
*　依頼の流れ
********************************/
/* セクション設定 */
.pg_flow{

}
.pg_flow .section.sec1{

}
.pg_flow .section.sec2{

}

/*HOW WE WORK*/
.pg_flow .tt2{
  margin-bottom: 25px;
}
.pg_flow .section.sec1 .tt2_ja{
  margin-top: -25px;
  margin-right: -20px;
  font-size: 22px;
}
.pg_flow .flow_contents{
  flex-direction: row;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 50px;
  margin-bottom: 0;
}
.pg_flow .flow_content_items{

}
.pg_flow .flow_content_item{

}
.pg_flow .flow_content_box1{
  order: 1;
}
.pg_flow .flow_content_box2 {
  padding-top: 25px;
  order: 2;
}
.flow_content_img.img_fit:before {
  padding-top: 70.76%;
}

/*納品までの流れ*/
.pg_flow .flow_content_item_inner{
  background: var(--main-color);
  padding: 5px;
}
.pg_flow .flow_content_item_inner:nth-child(n+2){
  margin-top: 50px;
}
.pg_flow .section.sec2 .tt2_ja{
  text-align: center;
  font-size: 25px;
}
.pg_flow .flow_content_items{
  margin-top: 40px;

}
.pg_flow .flow_content_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px 15px;
  position: relative;
}
.pg_flow .business_capa_item:after{
  display: none;
}
.pg_flow .flow_box1{

}
.pg_flow .flow_box2{

}
.pg_flow .flow_box1_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
}
.pg_flow .about_features_nbr{

}
.pg_flow .about_features_nbr:after{

}
.pg_flow .about_features_tt1{
  font-size: 18px;
  margin-left: 8px;
}
.pg_flow .flow_box1_inner .about_features_tt1 p{
  letter-spacing: 0.075em ;
}
.pg_flow .cmn_txt{
  text-align: justify;
  font-weight: 500;
  line-height: 2.3;
}
.pg_flow .flow_box1 .cmn_txt p{
  letter-spacing: 0.075em;
}

/*TEL&CONTACT*/
.pg_flow .flow_contact_item{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 25px;
  align-items: center;
}
.pg_flow .flow_tel {
  font-size: 28px;
  font-family: "Outfit";
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}
.flow_tel a:hover {
  text-decoration: none;
  /*opacity: 0.7;*/
  color: var(--main-color);
}
.pg_flow .flow_tel p {
  letter-spacing: 0.020em;
}
.pg_flow .flow_tel strong{
  font-size: 24px;
  font-weight: 400;
}
.pg_flow .read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}
.pg_flow .read_more a{
  min-width: 285px;
  min-height: 55px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #c3bfbf;
  background: #FFF;
  border-radius: 50px;
  color: #181818 !important;
  padding: 16px 21px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  text-align: center;
}
.pg_flow .read_more a:hover{
  text-decoration: none;
  background: var(--main-color);
  color: #FFF !important;
}
.pg_flow .section.sec2 .read_more a:after{
  display: none;
}

/*画像*/
.flow_box2_img{

}

.flow_box2_img:before {
  padding-top: 80.59%;
}


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

  }

  /*HOW WE WORK*/
  .pg_flow .section.sec1 .tt2_en {
    font-size: 115px;
  }
  .pg_flow .tt2{
    margin-bottom: 25px;
  }
  .pg_flow .section.sec1 .tt2_ja{
    margin-top: -42px;
    margin-right: -20px;
    font-size: 28px;
  }

  /*納品までの流れ*/
  .pg_flow .flow_contents{
    flex-direction: row;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 75px;
    margin-bottom: 50px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_content_item{
    padding: 35px 25px;
  }
  .pg_flow .flow_content_box1{
    order: 1;
  }
  .pg_flow .flow_content_box2 {
    padding-top: 25px;
    order: 2;
  }
  .flow_content_img.img_fit:before {
    padding-top: 60%;
  }
  .pg_flow .flow_content_item_inner{
    padding: 20px 25px;
  }
  .pg_flow .flow_content_item_inner:nth-child(n+2){
    margin-top: 50px;
  }
  .pg_flow .section.sec2 .tt2_ja{
    font-size: 38px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_box1{
    margin-top: 25px;
  }
  .pg_flow .flow_box2{

  }
  .pg_flow .flow_box1_inner{
    margin-bottom: 30px;
  }
  .pg_flow .about_features_nbr{

  }
  .pg_flow .about_features_nbr:after{

  }

  .pg_flow .about_features_tt1{
    font-size: 22px;
    margin-left: 25px;
  }
  .pg_flow .cmn_txt{
  }

  /*TEL&CONTACT*/
  .pg_flow .flow_contact_item{

  }
  .pg_flow .flow_tel{
    font-size: 35px;
  }
  .pg_flow .flow_tel strong {
    font-size: 28px;
  }
  .pg_flow .read_more{
    margin-top: 0;
  }
  .pg_flow .read_more a{

  }
  .pg_flow .read_more a:after{

  }

  /*画像*/
  .flow_box2_img{

  }

  .flow_box2_img:before {
    padding-top: 60.59%;
  }
}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_flow{

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }

  /*HOW WE WORK*/
  .pg_flow .section.sec1 .tt2_en {
    font-size: 150px;
  }
  .pg_flow .tt2{
    margin-bottom: 45px;
  }
  .pg_flow .section.sec1 .tt2_ja{
    margin-top: -50px;
    font-size: 34px;
  }
  .pg_flow .flow_contents{
    flex-direction: row;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 75px;
    margin-bottom: 50px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_content_item{

  }
  .pg_flow .flow_content_box1{
    order: 2;
  }
  .pg_flow .flow_content_box2 {
    padding-top: 10px;
    order: 1;
  }
  .flow_content_img.img_fit:before {
    padding-top: 70.76%;
  }

  /*納品までの流れ*/
  .pg_flow .flow_content_item_inner{
    padding: 20px 30px;
  }
  .pg_flow .flow_content_item_inner:nth-child(n+2){
    margin-top: 50px;
  }
  .pg_flow .section.sec2 .tt2_ja{
    font-size: 38px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_box1{

  }
  .pg_flow .flow_box2{

  }
  .pg_flow .flow_box1_inner{
    margin-bottom: 30px;
  }
  .pg_flow .about_features_nbr{

  }
  .pg_flow .about_features_nbr:after{

  }

  .pg_flow .about_features_tt1{
    font-size: 24px;
  }

  /*TEL&CONTACT*/
  .pg_flow .flow_contact_item{

  }
  .pg_flow .flow_tel{
    margin-left: 0;
    margin-right: 0;
    font-size: 36px;
    margin-right: 35px;
  }
  .pg_flow .flow_tel strong{
    font-size: 30px;
  }
  .pg_flow .read_more{
    margin-left: 0;
    margin-right: 0;
  }
  .pg_flow .read_more a{
    min-width: 300px;
  }
  .pg_flow .read_more a:after{

  }

  /*画像*/
  .flow_box2_img{

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

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }

  /*HOW WE WORK*/
  .pg_flow .section.sec1 .tt2_ja{
    margin-top: -45px;
    margin-right: -20px;
  }
  .pg_flow .flow_contents{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 75px;
    margin-bottom: 50px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_content_item{
    padding: 25px 20px;
  }
  .pg_flow .flow_content_box1{
    order: 2;
  }
  .pg_flow .flow_content_box2 {
    padding-top: 10px;
    order: 1;
  }
  .flow_content_img.img_fit:before {
    padding-top: 70.76%;
  }

  /*納品までの流れ*/
  .pg_flow .flow_content_item_inner{
    padding: 20px 30px;
  }
  .pg_flow .flow_content_item_inner:nth-child(n+2){
    margin-top: 20px;
  }
  .pg_flow .section.sec2 .tt2_ja{
    font-size: 38px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_box1{

  }
  .pg_flow .flow_box2{

  }
  .pg_flow .flow_box1_inner{
    margin-bottom: 30px;
  }
  .pg_flow .about_features_nbr{

  }
  .pg_flow .about_features_nbr:after{

  }

  .pg_flow .about_features_tt1{

  }
  .pg_flow .cmn_txt{
    font-size: 18px;
  }

  /*TEL&CONTACT*/
  .pg_flow .flow_contact_item{

  }
  .pg_flow .flow_tel{

  }
  .pg_flow .read_more{

  }
  .pg_flow .read_more a{
    min-width: 300px;
  }
  .pg_flow .read_more a:after{

  }

  /*画像*/
  .flow_box2_img{

  }

  .flow_box2_img:before {
    padding-top: 70.59%;
  }

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

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }

  /*HOW WE WORK*/
  .pg_flow .section.sec1 .tt2_en {
    font-size: 200px;
  }
  .pg_flow .section.sec1 .tt2_ja{
    margin-top: -50px;
    margin-right: -20px;
  }
  .pg_flow .flow_contents{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 75px;
    margin-bottom: 50px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_content_item{

  }
  .pg_flow .flow_content_box1{

  }
  .pg_flow .flow_content_box2 {
    padding-top: 13px;
  }
  .flow_content_img.img_fit:before {
    padding-top: 70.76%;
  }

  /*納品までの流れ*/
  .pg_flow .flow_content_item_inner{
    padding: 20px 30px;
  }
  .pg_flow .flow_content_item_inner:nth-child(n+2){
    margin-top: 20px;
  }
  .pg_flow .section.sec2 .tt2_ja{

    font-size: 38px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_box1{

  }
  .pg_flow .flow_box2{

  }
  .pg_flow .flow_box1_inner{
    margin-bottom: 30px;
  }
  .pg_flow .about_features_nbr{

  }
  .pg_flow .about_features_nbr:after{

  }

  .pg_flow .about_features_tt1{

  }

  /*TEL&CONTACT*/
  .pg_flow .flow_contact_item{

  }
  .pg_flow .flow_tel{

  }
  .pg_flow .read_more{

  }
  .pg_flow .read_more a{
    min-width: 380px;
    min-height: 55px;
    margin-top: 2px;
    font-size: 18px;
  }
  .pg_flow .read_more a:after{

  }

  /*画像*/
  .flow_box2_img{

  }

  .flow_box2_img:before {
  }

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

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

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{

  }

  /*HOW WE WORK*/
  .pg_flow .section.sec1 .tt2_en {
    font-size: 240px;
  }
  .pg_flow .tt2{
    margin-bottom: 80px;
  }
  .pg_flow .section.sec1 .tt2_ja{
    margin-top: -62px;
    margin-right: -20px;
  }
  .pg_flow .flow_contents{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 75px;
    margin-bottom: 50px;
  }
  .pg_flow .flow_content_items{

  }
  .pg_flow .flow_content_item{
    padding: 30px 35px 30px 21px;
  }
  .pg_flow .flow_content_box1{

  }
  .pg_flow .flow_content_box2{
    padding-top: 13px;
  }
  .flow_content_img.img_fit:before {
    padding-top: 70.76%;
  }

  /*納品までの流れ*/
  .pg_flow .flow_content_item_inner{
    padding: 20px 30px;
  }
  .pg_flow .flow_content_item_inner:nth-child(n+2){
    margin-top: 15px;
  }
  .pg_flow .section.sec2 .tt2_ja{
    font-size: 38px;
  }
  .pg_flow .flow_content_items{
    padding-top: 27px;
    margin-top: 0;
  }
  .pg_flow .flow_box1{
    width: 59.86%;
    margin-top: 0;
  }
  .pg_flow .flow_box2{
    width: 27%;
    padding-top: 0;
  }
  .pg_flow .flow_box1_inner{
    margin-bottom: 30px;
  }
  .pg_flow .about_features_nbr{

  }
  .pg_flow .about_features_nbr:after{

  }

  .pg_flow .about_features_tt1{
    font-size: 24px;
    font-weight: 700;
    margin-left: 25px;
    margin-bottom: 2px;
  }
  .pg_flow .flow_box1_inner .about_features_tt1 p{
    letter-spacing: 0.075em ;
  }
  .pg_flow  .flow_box1 .cmn_txt{
    font-size: 18px;
    line-height: 1.88;
    text-align: justify;
  }
  .pg_flow .flow_box1 .cmn_txt p{
    letter-spacing: 0.075em;
  }

  /*TEL&CONTACT*/
  .pg_flow .flow_contact_item{
    margin-top: 20px;
  }
  .pg_flow .flow_tel {
    font-size: 36px;
    margin-right: 40px;
  }
  .pg_flow .flow_tel p {
    letter-spacing: 0.020em;
  }
  .pg_flow .flow_tel strong{
    font-size: 30px;
    font-weight: 400;
  }
  .pg_flow .read_more{
    margin-top: 0;
  }
  .pg_flow .read_more a{
    min-width: 380px;
    min-height: 60px;
    margin-top: 2px;
    font-size: 18px;

  }
  .pg_flow .read_more a:after{

  }

  /*画像*/
  .flow_box2_img{

  }

  .flow_box2_img:before {
    padding-top: 73.68%;
  }
}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

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


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


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


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


}






















/*******************************
*会社概要　
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{
}

.pg_company .ordermade_contents2_box2_img:before {
  padding-top: 75%;
}
.pg_company .home_contents3_box1_en {
  font-size: 20px;
  background: none;
  color: #194fb1;
  padding: 0;
  line-height: 1.25;
}
.pg_company .company_tbl .table_rows_td {
  font-weight: 400;
  line-height: 1.8em;
}
.pg_company .company_tbl .table_rows_td p{
  letter-spacing: 0.05em;
}
.pg_company .home_contents1_inner_tt {
  border-bottom: 0;
}

.pg_company .company_tbl .table_rows_th{
  font-weight: 500;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_company .company_tbl .table_rows_th,.company_tbl .table_rows_td {
    border: 1px solid #000000;
    border-left: 0;
    border-right: 0;
  }
}
@media (min-width:768px){

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }
  .pg_company .section.sec3{
    padding-top: 0;
  }
  .pg_company .ordermade_contents2_box1 {
    width: 53.24%;
    order: 1;
    margin-top: 0;
  }
  .pg_company .ordermade_contents2_box2 {
    width: 40.54%;
    order: 2;
  }
  .pg_company .ordermade_contents2_box2_img:before {
    padding-top: 100%;
  }
  .pg_company .home_contents3_box1_en {
    font-size: 30px;
  }
  .pg_company .company_tbl .table_rows_th,.company_tbl .table_rows_td {
    border: 1px solid #00152d;
    border-left: 0;
    border-right: 0;
  }

}
@media (min-width:1024px){
  .pg_company{
    /*    margin-top: 100px;*/
  }

  .pg_company .section.sec2{
    padding-top: 80px;
  }
  .pg_company .section.sec3{
    padding-top: 0;
  }
}
@media (min-width:1200px){
  .pg_company{
    /*    margin-top: 90px;*/
  }
  .pg_company .home_contents3_box1_en {
    font-size: 30px;
    background: none;
    color: #194fb1;
    padding: 0;
    line-height: 1.25;
  }
  .pg_company .home_contents1_inner_tt {
    font-size: 30px;
    padding-bottom: 23px;
  }
  .pg_company .home_contents1_inner_tt:before {
    content: "";
    display: block;
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #b21d43;
    margin-right: 14px;
  }
  .pg_company .company_tbl .table_rows_th {
    width: 300px;
  }
  .pg_company .company_tbl .table_rows_th{
    padding: 16px 28px 20px;
    font-weight: 500;
  }
  .pg_company .company_tbl .table_rows_td,
  .pg_company .company_tbl .table_rows_th{
    padding: 15px 29px 15px;
    font-weight: 400;
  }
}
@media (min-width:1470px){

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

}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #2c2c2c;
  /*  border-color: #000;*/
  padding: 12px 15px;
}
.company_tbl .table_rows_th{
  background: #f2f2f2;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/*マップと画像*/
.pg_company .company_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
.company_box1{
  width: 100%;
  margin-bottom: 35px;
}
.company_box2{
  width: 100%;
}
.company_box2 .img_fit:before{
  content: "";
  display: block;
  padding-top: 70%;
}

/* マップ */
.company_map{

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

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){
  .pg_company .table_rows.resp .table_rows_th{
    border-top: 1px solid #000;
  }
}
@media (min-width:768px){
  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 15px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /*マップと画像*/
  .company_box2 .img_fit:before{
    padding-top: 60%;
  }

  /* マップ */
  .company_map iframe{
    height: 400px;
  }

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

}
@media (min-width:1024px){
  /*マップと画像*/
  .company_box1{
    width: 62.16%;
  }
  .company_box2{
    width: 36.03%;
  }
  .company_box2 .img_fit:before{
    padding-top: 120%;
  }
  .pg_company .company_box {
    margin-top: 60px;
  }
  /* マップ */
  * + .company_map{
    margin-top: 60px;
  }
  .company_map iframe{
    height: 400px;
  }

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 20px 16px 20px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
  }

  /*マップと画像*/
  .company_box2 .img_fit:before{
    padding-top: 100%;
  }

  /* マップ */
  * + .company_map{
    margin-top: 30px;
  }
  .company_map iframe{
    height: 400px;
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 55px;
  }
  .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{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li 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 li 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 li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

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

  }

  .cmn_cat_nav.col2 li{
    width: 50%;
  }
  .cmn_cat_nav.col3 li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 li{
    width: 25%;
  }
  .cmn_cat_nav.col5 li{
    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: #FFF;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 15px 15px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 68.5%;
}
.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: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #6a715f;
  color: #FFF;
  padding: 3px 34px;
  margin: 5px 0;
  /*  margin-right: 10px;*/
}
.news_list_thumb .webgene-item .meta .category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #FFF;
  color: #666666;
  border: 1px solid #b3b3b3;
  padding: 2px 14px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-family: var(--font-en);
  font-weight: 500;
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

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


@media (max-width:767px){

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

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

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -15px;
    margin-right: -15px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 15px;
  }
  .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{

  }
  .news_list_thumb .webgene-item .meta {
    margin-bottom: 14px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 12px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--font-en);
    margin: 5px 0;
    margin-right: 20px;
  }
  .news_list_thumb .webgene-item .title{

  }

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

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

  /* 一覧（サムネあり） */
  .news_list_thumb .webgene-item .box2 {
    padding: 10px 10px 15px;
  }

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

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

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

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

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

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

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

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



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
}
.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: #181818;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 22px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 10px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.25;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #000;
}

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

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin-bottom: 12px;
  border-bottom:none;
  padding-bottom: 5px;
}
.posts_detail .meta .category{
  width: 120px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  background: #FFF;
  color: #666666;
  border: 1px solid #b3b3b3;
  border-radius: 0;
  padding: 1px 0;
  margin-bottom: 0;
  margin: 0;
  margin-right: 10px;
}
.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{
  width: 105px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  /*border-right: 1px solid #a7a7a7;*/
}
.posts_detail .title{
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 12px;
}
.posts_detail .post_content{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.42em;
  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;
}

/*ボタン*/
*.pg_news .read_more{

}
.pg_news .read_more a{

}
/*.pg_news .read_more a p{
  letter-spacing: 0;
}*/
.pg_news .read_more a:after{

}
.pg_news .read_more a:hover{

}
.pg_news .read_more a:hover:after{

}

.pg_news .read_more a.wh{

}
.pg_news .read_more a.wh:hover{

}


/* 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{
  }
  .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: 35px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 0 0 69px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .posts_detail .meta .category{
    width: 80px;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 108px;
    font-size: 16px;
  }
  .posts_detail .title{
    font-size: 20px;
    padding-bottom: 15px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 39px;
  }

  /* ボタン */
  .pg_news .read_more{
    margin-top: 45px;
  }
  .pg_news .read_more.center{
    justify-content: center;
  }
  .pg_news .read_more.left{
    justify-content: flex-start;
  }
  .pg_news .read_more.right{
    justify-content: flex-end;
  }
  .pg_news .read_more a{
    min-width: 280px;
  }
  .pg_news .read_more a:after{
    top: 50%;
    right: 18px;

  }
  .pg_news .read_more a:hover:after{
    color: #FFF;
    margin-right: -5px;
  }

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

  /* リスト */
  .posts_list{

  }
  .posts_layout{
  }
  .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{

  }

  /*ボタン*/
  .pg_news .read_more {
    margin-top: 35px;
  }

}
@media (min-width:1200px){
  .pg_news{
    padding-top: 0;
  }
  /*ボタン*/
  .pg_news .read_more {
    margin-top: 45px;
  }

}



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


}

/*******************************
*　取引実績（一覧）
********************************/
/* カテゴリボタン */
.works_cate_box{
  background: #eeeeed;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.works_cate_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  /*  margin: 0 -5px 30px;*/

}
.works_cate_box .webgene-item{
  width: 100%;
  padding: 0 5px;
}
.works_cate_box .webgene-item:nth-child(n+2){
  margin-top: 10px;
}

.works_cate_box .webgene-item a{
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #000;
  background: var(--main-color);
  background: #fff;
  border-radius: 5px;
  color: #000;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.works_cate_box .webgene-item a p{
  letter-spacing: 0.2em;
}
.works_cate_box .webgene-item a:after{
  content: "\f138";
  font-size: 22px;
  font-family: 'FontAwesome';
  position: absolute;
  color: #000;
  z-index: 1;
  top: 50%;
  right: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.works_cate_box .webgene-item a:hover{
  color: #FFF;
  background: #000;
}
.works_cate_box .webgene-item a:hover:after{
  color: #FFF;
  margin-right: -5px;
}

.cmn_cat_nav.col4 .cmn_cat_nav_item{
  width: 50%;
}
.cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+2){
  margin-top: 0;
}
.cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
  margin-top: 10px;
}



@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_company .section.sec3{
    padding-top: 0;
  }

  .works_cate_box {
    display: none;
  }

  .company_tbl.table_rows.resp{
    border: none;
  }
}
@media (min-width:768px){

  /* カテゴリボタン */
  .cmn_cat_nav{
    margin: 0 -5px 30px;
  }
  .cmn_cat_nav_item{
    width: 50%;
    padding: 0 5px;
  }

  .works_cate_box .webgene-item a{
    font-size: 16px;
    /*letter-spacing: 0.2em;*/
    /*padding: 12px 5px 12px;*/
  }
  .works_cate_box .webgene-item a.on{
    color: #FFF;
    background: #000;
  }
  .works_cate_box .webgene-item a:after {
    right: 20px;
  }
  .works_cate_box .webgene-item a.on:after{
    color: #FFF;
  }
  .works_cate_box{
    margin-bottom: 58px;
  }
  .works_cate_box .webgene-item{
    width: 50%;
  }
  .works_cate_box .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .works_cate_box .webgene-item:nth-child(n+3){
    margin-top: 10px;
  }

  .cmn_cat_nav.col3 .cmn_cat_nav_item{
    width: 33.333%;
  }
  .cmn_cat_nav.col3 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col3 .cmn_cat_nav_item:nth-child(n+4){
    margin-top: 10px;
  }

  .cmn_cat_nav.col4 .cmn_cat_nav_item{
    width: 50%;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 10px;
  }

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

  /* カテゴリボタン */
  .cmn_cat_nav{
    margin: 0 -10px 100px;
  }
  .cmn_cat_nav_item{
    width: 50%;
    padding: 0 10px;
  }
  .cmn_cat_nav_item_a{
    padding: 13px 5px;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item{
    width: 50%;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 15px;
  }

  .works_cate_box{
    margin-bottom: 80px;
  }
  .works_cate_box .webgene-blog{
    /*    margin: 0 -15px 80px;*/
    /*    margin-bottom: 80px;*/
    margin-inline:-5px;
  }
  .works_cate_box .webgene-item{
    width: 33.33%;
    padding: 10px 5px;
  }
  .works_cate_box .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .works_cate_box .webgene-item:nth-child(n+6){
    margin-top: 15px;
  }

  .cmn_cat_nav.col4 .cmn_cat_nav_item{
    width: 25%;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 0;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+5){
    margin-top: 20px;
  }


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

  /* カテゴリボタン */
  .works_cate_box{
    margin-bottom: 60px;
  }
  .works_cate_box{
    /*margin: 0 0px 100px;*/
    margin-bottom: px;
  }
  .works_cate_box .webgene-item{
    width: 17.5%;
    padding: 0 5px;
  }
  /*
  .works_cate_box .webgene-item a{
    font-size: 15px;
  }*/
  .cmn_cat_nav.col2 .cmn_cat_nav_item{
    width: 17%;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 20px;
  }

  /*  .works_cate_box .webgene-item{
      width: 25%;
    }
    .works_cate_box .webgene-item:nth-child(n+3){
      margin-top: 0;
    }
    .works_cate_box .webgene-item:nth-child(n+5){
      margin-top: 20px;
    }*/


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

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

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

}

/*一覧*/
.body_worksDetail .pg_works .section.sec1{
  position: relative;
}
.pg_works .section.sec1 {
  padding-top: 15px;
}
.works_list{
}
.works_list .webgene-blog .inner{
  display: block;
  position: relative;
  z-index: 1;
  background: #FFF;
  height: 100%;
  border-radius: 10px;
}
.works_list .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.works_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.works_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.works_list .webgene-item .img.img_fit{
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.works_list .webgene-item .img.img_fit:before{
  padding-top: 72%;
}
.works_list .webgene-item .box2{
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 20px;
}
.works_list .webgene-item .meta{
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.works_list .webgene-item .category,
.works_list .webgene-item .date{

}
.works_list .webgene-item .category{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #FFF;
  color: #666666;
  border: 1px solid #b3b3b3;
  /*  padding: 2px 10px;*/
  margin: 5px 0;
  margin-right: 10px;
  line-height: 1.5;
  padding: 2px 17px;
}
.works_list .webgene-item .date{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--main-color);
  border-left: 0;
  margin-right: 10px;
}
.works_list .webgene-item .title{
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
  padding-bottom: 0;
}

.works_cate_box .webgene-item a:hover:after{
  right: 10px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_news .section.sec1{

  }

  /*一覧*/
  .works_list{

  }
  .works_list .webgene-blog{
    margin: 0 -10px;
  }
  .works_list .webgene-item{
    width: 33.333%;
    padding: 0 10px;
  }
  .works_list .webgene-item:nth-child(n+3) {
    margin-top: 0;
  }
  .works_list .webgene-item:nth-child(n+4) {
    margin-top: 40px;
  }
  /*  .works_list .webgene-item:nth-child(n+5){
      margin-top: 30px;
    }*/
  .works_list .webgene-item .img.img_fit{

  }
  .works_list .webgene-item .box2{
    /*    margin-left: 15px;
        margin-right: 15px;*/
    margin-inline:0;
    padding-inline: 25px;
    padding-bottom: 20px;
  }
  .works_list .webgene-item .meta{
    margin-top: 9px;
  }
  .works_list .webgene-item .category,
  .works_list .webgene-item .date{
    /*    font-size: 14px;*/
  }
  .works_list .webgene-item .category{

  }
  .works_list .webgene-item .date{
    margin-left: 0;
    padding-left: 0;
  }
  .works_list .webgene-item .title{
    margin-top: 10px;
    font-size: 20px;
  }

}
@media (min-width:1024px){
  .works_cate_box .webgene-item a {
    font-size: 13px;
  }

  /*一覧*/
  .works_list{

  }
  .works_list:before {
    top: 63%;
    height: 150%;
  }
  .works_list .webgene-blog{
    margin: 0 -20px;
  }
  .works_list .webgene-item{
    padding: 0 20px;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 40px;
  }
  .works_list .webgene-item .img.img_fit{

  }
  .works_list .webgene-item .meta{
    margin-top: 21px;
  }
  .works_list .webgene-item .category{

  }
  .works_list .webgene-item .date{

  }
  .works_listlist .webgene-item .title{
    margin-top: 9px;
  }


}
@media (min-width:1200px){
  .works_cate_box .webgene-item a:after{
    width: 30px;
  }
  .works_cate_box .webgene-item a:after{
    right: 5px;
  }
  .pg_works .section.sec1 .works_list .webgene-item .title{
    font-size: 20px;
  }
}
@media (min-width:1440px){
  .works_list .webgene-item .date{
    margin-left: 0;
    padding-left: 0;
  }

}
@media (min-width:1536px){
  .works_cate_box .webgene-item a {
    font-size: 16px;
  }
}
/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

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

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

/* メイン */
.gallery_main{

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

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

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

/* 詳細 */
.gallery_detail{

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

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

.works_detail .post_content{
  border: 0;
  background: #FFF;
  padding: 30px 16px;
  margin-top: 30px;
}
.works_detail .post_content .title{
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
.works_detail .post_content .post_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05em;
  padding-top: 18px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .gallery_wrap{
    width: 82.88%;
    margin:0 auto;
  }
}
@media (min-width:768px){
  .pg_xxx{

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

  /* 詳細 */
  .gallery_wrap{
    width: 82.88%;
    margin:0 auto;
  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 9px;

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

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

  }

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

  .gallery_slide_prev{
    left: -54px;
  }
  .gallery_slide_next{
    right: -54px;
  }

  .works_detail .post_content{
    margin-top: 60px;
  }
  .works_detail .post_content .title{
    font-size: 22px;
  }
  .post_content .post_txt{
    font-size: 18px;
  }
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 35px;
  }

  /*ボタン*/
  .works_detail .read_more{
    margin-top: 60px;
  }
}
@media (min-width:1024px){
  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 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;
  }

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

  }
}
@media (min-width:1200px){
  .works_detail .post_content{
    padding: 55px 65px;
  }
  .works_detail .post_content .title {
    padding-bottom: 14px;
  }
  .works_detail .post_content .post_txt {
    padding-top: 26px;
  }
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 54px;
  }
  .gallery_slide_next{
    right: -80px;
  }
  .gallery_slide_prev{
    left: -80px;
  }
}

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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

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


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


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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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

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

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

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

.posts_back_list{

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

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

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

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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

}



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


}


/*******************************
*　メインビジュアル
********************************/
:root{
  --mv-person-resize: 0.5;
}
body{
  padding-top: 60px;
}

.mv{
  padding: 0 15px;
}
.mv:after{
  display: none;
}
.mv_img{
  border-radius: 10px 10px;
}
.mv_img.img_fit:before{
  padding-top: calc(100vh - 60px);
}

.mv_catch{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_catch_en{
  font-size: 100px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #FFF;
  text-shadow: 2px 3.464px 3.6px rgba(24, 24, 24, 0.4);
}
.mv_catch_en p{
  letter-spacing: 0;
  padding: 0 0.1em;
}
.mv_catch_ja{
  background: rgba(26, 177, 0, 0.95);
  padding: 3px 0 5px;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_catch_ja_txt{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: #FFF;
}
.mv_person{
  position: absolute;
  z-index: 3;
  bottom: 0;
}
.mv_person.pos1{
  width: calc(288px * var(--mv-person-resize));
  left: 20px;
}
.mv_person.pos2{
  width: calc(268px * var(--mv-person-resize));
  right: 20px;
}


@media (min-width:768px){
  
  :root{
    --mv-person-resize: 0.45;
  }
  body{
    padding-top: 80px;
  }
  
  .mv{
    padding: 0 30px;
  }
  .mv_img{
    border-radius: 20px 20px;
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 90px);
    padding-top: 500px;
  }

  .mv_catch{
  }
  .mv_catch_en{
    font-size: 160px;
    text-shadow: 2px 3.464px 3.6px rgba(24, 24, 24, 0.4);
  }
  .mv_catch_ja{
    top: 54%;
    padding: 1px 0 5px;
  }
  .mv_catch_ja_txt{
    font-size: 30px;
  }
  .mv_person{
  }
  .mv_person.pos1{
  width: calc(308px * var(--mv-person-resize));
  left: 40px;
}
.mv_person.pos2{
  width: calc(298px * var(--mv-person-resize));
  right: 40px;
}

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

  
  :root{
    --mv-person-resize: 0.45;
  }
  
  

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

  :root{
    --mv-person-resize: 0.7;
  }
  .mv{
    padding: 0 40px;
  }
  .mv_img{
    border-radius: 30px 30px;
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 90px);
  }
  .mv_catch{
  }
  .mv_catch_en{
    font-size: 200px;
  }
  .mv_catch_ja{
    /*top: 50%;*/
    /*padding: 1px 0 5px;*/
  }
  .mv_catch_ja_txt{
    font-size: 30px;
  }
  .mv_person{
  }
  .mv_person.pos1{
    left: 92px;
  }
  .mv_person.pos2{
    right: 110px;
  }
  
  

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

  :root{
    --mv-person-resize: 0.7;
  }
  
  .mv{
    padding: 0 65px;
  }
  .mv_img{
    border-radius: 30px 30px;
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 90px);
  }
  .mv_catch{
  }
  .mv_catch_en{
    font-size: 250px;
  }
  .mv_catch_ja{
    /*top: 50%;*/
    /*padding: 1px 0 5px;*/
  }
  .mv_catch_ja_txt{
    font-size: 36px;
  }
  .mv_person{
  }
  .mv_person.pos1{
    left: 92px;
  }
  .mv_person.pos2{
    right: 110px;
  }

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

  :root{
    --mv-person-resize: 1.0;
  }
  

}





/*******************************
*　HOME
********************************/

:root{
  --home-service-person-resize: 0.3;
}

.pg_home{
  padding-top: 0;
}
.pg_home .section.sec1{
  padding-top: 50px;
  padding-bottom: 165px;
}
.pg_home .section.sec2{
  background: #69b0b8;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec3{
  background: #1ab100;
  padding: 31px 30px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec4{
  padding-top: 50px;
}
.pg_home .section.sec5{
  padding-top: 0;
}

@media (min-width:768px){

  .pg_home .section.sec1{
    padding-bottom: 105px;
  }
  .pg_home .section.sec2{
    padding-top: 85px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec3{
    padding: 31px 30px;
  }
  .pg_home .section.sec4{
    padding-top: 110px;
  }
  .pg_home .section.sec5{
    padding-top: 125px;
  }

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


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


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


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


}


/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}
.home_about_title{
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.home_about_title_en{
  font-size: 110px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  white-space: nowrap;
  color: #effcec;
  position: relative;
  z-index: 1;
}
.home_about_title_ja{
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, -13%);
  transform: translate(0, -13%);
}
.home_about_title_ja_txt{
  font-size: 20px;
  font-weight: 900;
  /*line-height: 1.764;*/
  line-height: 1.4;
}

.home_about_img_box{
  width: 56.129%;
  left: 28.387%;
  position: relative;
  z-index: 1;
}
.home_about_img_box:before,
.home_about_img_box:after{
  content: "";
  position: absolute;
  
  inset: 0;
  border-radius: 20px;
}
.home_about_img_box:before{
  background: #69b89f;
  transform: rotate(-12deg) translate(-10%, 2%);
  z-index: 0;
}
.home_about_img_box:after{
  background: #84b37c;
  transform: rotate(14deg) translate(15%, 4%);
  z-index: -1;
}

.home_about_img{
  border-radius: 20px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.home_about_img.img_fit:before{
  padding-top: 133.333%;
}


.home_about_parts{
  position: absolute;
}
.home_about_parts.pos1{
  width: 71.95%;
  z-index: 4;
  bottom: -170px;
  left: -27%;
}
.home_about_parts.pos2{
  width: 42.98%;
  right: -30%;
  top: -14%;
}
.home_about_parts.pos3{
  width: 63.21%;
  left: -50%;
  bottom: 0;
}
.home_about_parts.pos4{
  width: 56.55%;
  right: -15%;
  bottom: -28%;
}


/* BLOG */
.home_blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_blog_box1{
  width: 250px;
  width: 100%;
}
.home_blog_box2{
  width: calc(100% - 250px);
  width: 100%;
  margin-top: 35px;
}
.home_blog_head{
  display: block;
  position: relative;
  z-index: 1;
}
.home_blog_head_ja{
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
  text-shadow: 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF;
  
  position: absolute;
  z-index: 1;
  /*top: 10px;*/
  /*right: 0;*/
  /*-ms-writing-mode: tb-rl;*/
  /*writing-mode: vertical-rl;*/
}
.home_blog_head_en{
  font-size: 100px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  color: #effcec;
  /*-ms-writing-mode: tb-rl;*/
  /*writing-mode: vertical-rl;*/
}

.home_blog_list_wrap{
  margin-right: var(--margin-for-device-side-w);
}
.blog_list_slider .webgene-item{
  width: 250px;
  padding-left: 20px;
  padding-right: 20px;
}
.blog_list_slider .webgene-item:nth-child(n+2),
.blog_list_slider .webgene-item:nth-child(n+3),
.blog_list_slider .webgene-item:nth-child(n+4){
  margin-top: 0;
}

.blog_slider_btns{
  display: flex;
  margin-top: 30px;
}
.blog_slider_next,
.blog_slider_prev{
  width: 50px;
  cursor: pointer;
}
.blog_slider_next{
  
}
.blog_slider_prev{
  margin-right: 12px;
}

.blog_slider_next.swiper-button-disabled,
.blog_slider_prev.swiper-button-disabled{
  /*cursor: none;*/
  opacity: 0.2;
  pointer-events: none;
}


/* サービス */
.home_service{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
* + .home_service{
  margin-top: 65px;
}
.home_service_item{
  width: 100%;
  padding: 0 20px;
}
.home_service_item:nth-child(n+2){
  margin-top: 30px;
}
.home_service_item_inner{
  display: block;
  border-radius: 30px;
  color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home_service_item_img{
  position: relative;
  z-index: 1;
}
.home_service_item_img.img_fit:before{
  padding-top: 150%;
}
.home_service_item_img:after{
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
}
.home_service_item_en{
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  top: 40%;
  left: -2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_service_item_head{
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 0;
  right: 0;
  padding: 0 25px;
  font-size: 20px;
}
.home_service_item_head_num{
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 70px;*/
  width: 1.8421em;
  aspect-ratio: 70 / 76;
  margin-right: 10px;
  font-size: 1em;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #181818;
  background-image: url('/system_panel/uploads/images/home_service_item_head_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.home_service_item_head_title{
  width: calc(100% - 50px);
  font-size: 18px;
  font-weight: 900;
  
  text-shadow: 1.5px 2.598px 2.7px rgba(24, 24, 24, 0.4);
}
.home_service_item_txt{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
  padding: 20px 20px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  
  text-shadow: 1.5px 2.598px 2.7px rgba(24, 24, 24, 0.4);
}

.home_service_person{
  position: absolute;
  z-index: 2;
}
.home_service_person.pos1{
  width: calc(203px * var(--home-service-person-resize));
  top: 100px;
  left: 0;
  -webkit-transform: translate(10%, 43%);
  transform: translate(10%, 43%);
}
.home_service_person.pos2{
  width: calc(168px * var(--home-service-person-resize));
  top: 0;
  right: 0;
  -webkit-transform: translate(-30%, -10%);
  transform: translate(-30%, -10%);
}

/* 設備 */
.home_equip{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 45px;
  position: relative;
  z-index: 1;
}
.home_equip_en{
  font-size: 55px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  white-space: nowrap;
  color: #effcec;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_equip_box1{
  width: 100%;
}
.home_equip_box2{
  width: 100%;
  margin-top: 50px;
}
.home_equip_imgs{
  position: relative;
  z-index: 1;
}
.home_equip_imgs_item{
  
}
.home_equip_imgs_item img{
  width: 100%;
}
.home_equip_imgs_item.pos1{
  width: 100%;
}
.home_equip_imgs_item.pos2{
  width: 91.46%;
  position: absolute;
  z-index: 1;
  top: 15%;
  right: 0;
}
.home_equip_imgs_item.pos3{
  width: 74.52%;
  position: absolute;
  z-index: 2;
  bottom: -10%;
  left: 0;
}
.home_equip_title{
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
.home_equip_txt{
  
}

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

@media (max-width:767px){
  
  .home_blog_head_en{
    text-align: center;
  }
  .home_blog_head_ja{
    font-size: 20px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .blog_slider_btns{
    justify-content: center;
  }
  
}
@media (min-width:768px){

  :root{
    --home-service-person-resize: 0.6;
  }
  
  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    /*width: 44.73%;*/
  }
  .home_about_box2{
    /*width: 50.98%;*/
    margin-top: 50px;
  }
  .home_about_title{
    margin-bottom: 12px;
  }
  .home_about_title_en{
    font-size: 200px;
  }
  .home_about_title_ja{
    -webkit-transform: translate(0, -13%);
    transform: translate(0, -13%);
  }
  .home_about_title_ja_txt{
    font-size: 26px;
    line-height: 1.764;
  }

  .home_about_img_box{
    width: 56.129%;
    left: 28.387%;
  }

  .home_about_parts{
  }
  .home_about_parts.pos1{
    /*width: 71.95%;*/
    bottom: -245px;
    /*left: -27%;*/
  }
  .home_about_parts.pos2{
    /*width: 42.98%;*/
    /*right: -30%;*/
    /*top: -14%;*/
  }
  .home_about_parts.pos3{
    /*width: 63.21%;*/
    /*left: -50%;*/
    /*bottom: 0;*/
  }
  .home_about_parts.pos4{
    /*width: 56.55%;*/
    /*right: -15%;*/
    /*bottom: -28%;*/
  }
  
  
  
  /* BLOG */
  .home_blog{
  }
  .home_blog_box1{
    width: 160px;
  }
  .home_blog_box2{
    width: calc(100% - 160px);
    margin-top: 35px;
  }
  .home_blog_head{
    display: inline-block;
  }
  .home_blog_head_ja{
    font-size: 20px;
    text-shadow: 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 4px #FFF;
    top: 10px;
    right: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_blog_head_en{
    font-size: 160px;
    line-height: 0.9;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .home_blog_list_wrap{
    margin-right: var(--margin-for-device-side-w);
  }
  .blog_list_slider .webgene-item{
    width: 320px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog_slider_btns{
    margin-top: 40px;
  }
  .blog_slider_next,
  .blog_slider_prev{
    width: 60px;
  }
  .blog_slider_next{

  }
  .blog_slider_prev{
    margin-right: 12px;
  }
  
  /* サービス */
  .home_service{
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .home_service{
    margin-top: 65px;
  }
  .home_service_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_service_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_service_item:nth-child(n+3){
    margin-top: 35px;
  }
  .home_service_item_inner{
    border-radius: 30px;
  }
  .home_service_item_en{
    font-size: 40px;
    top: 50%;
    left: -2px;
  }
  .home_service_item_head{
    top: 15px;
    padding: 0 15px;
    font-size: 25px;
  }
  .home_service_item_head_num{
    width: 1.8421em;
    margin-right: 10px;
  }
  .home_service_item_head_title{
    width: calc(100% - 55px);
    font-size: 20px;
  }
  .home_service_item_txt{
    /*font-size: 16px;*/
    /*line-height: 1.875;*/
    padding: 20px 20px;
  }
  
  .home_service_person.pos1{
    top: 0;
    left: 0;
    -webkit-transform: translate(10%, 43%);
    transform: translate(10%, 43%);
  }
  .home_service_person.pos2{
    top: 0;
    right: 0;
    -webkit-transform: translate(-30%, -10%);
    transform: translate(-30%, -10%);
  }

  

  /* 設備 */
  .home_equip{
    padding-top: 45px;
  }
  .home_equip_en{
    font-size: 110px;
  }
  .home_equip_box1{
    width: 45.72%;
  }
  .home_equip_box2{
    width: 49.01%;
    margin-top: 85px;
  }
  .home_equip_imgs_item.pos1{
    width: 100%;
  }
  .home_equip_imgs_item.pos2{
    width: 91.46%;
    top: 15%;
  }
  .home_equip_imgs_item.pos3{
    width: 74.52%;
    bottom: -10%;
  }
  .home_equip_title{
    font-size: 26px;
    margin-bottom: 20px;
  }
  .home_equip .read_more{
    margin-top: 20px;
  }

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

  :root{
    --home-service-person-resize: 0.7;
  }
  
  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 44.73%;
  }
  .home_about_box2{
    width: 50.98%;
    margin-top: 15px;
  }
  .home_about_title{
    margin-bottom: 12px;
  }
  .home_about_title_en{
    font-size: 140px;
  }
  .home_about_title_ja_txt{
    font-size: 20px;
  }
  .home_about_img_box{
    /*width: 56.129%;*/
    /*left: 28.387%;*/
  }
  .home_about_parts.pos1{
    bottom: -245px;
  }
  
  /* サービス */
  .home_service{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .home_service{
    margin-top: 65px;
  }
  .home_service_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_service_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_service_item:nth-child(3n+1),
  .home_service_item:nth-child(3n){
    margin-top: 65px;
  }
  .home_service_item_en{
    font-size: 30px;
    top: 43%;
    left: -2px;
  }
  .home_service_item_head{
    padding: 0 15px;
    font-size: 25px;
  }
  .home_service_item_head_num{
  }
  .home_service_item_head_title{
    width: calc(100% - 55px);
    font-size: 20px;
  }
  .home_service_item_txt{
    /*font-size: 16px;*/
    /*line-height: 1.875;*/
    /*padding: 20px 20px;*/
  }
  
  /* 設備 */
  .home_equip{
    padding-top: 95px;
  }
  .home_equip_en{
    font-size: 145px;
  }
}
@media (min-width:1200px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    /*width: 44.73%;*/
  }
  .home_about_box2{
    /*width: 50.98%;*/
    margin-top: 15px;
  }
  .home_about_title_en{
    font-size: 180px;
  }
  .home_about_title_ja_txt{
    font-size: 26px;
  }
  .home_about_parts.pos1{
    bottom: -245px;
  }
  
  /* サービス */
  .home_service_item_en{
    font-size: 35px;
    top: 43%;
    left: -2px;
  }
  .home_service_item_head{
    padding: 0 15px;
    font-size: 25px;
  }
  .home_service_item_head_num{
  }
  .home_service_item_head_title{
    width: calc(100% - 55px);
    font-size: 24px;
  }
  .home_service_item_txt{
    font-size: 16px;
    line-height: 1.5;
    padding: 20px 20px;
  }
  
  
}
@media (min-width:1470px){

  :root{
    --home-service-person-resize: 0.7;
  }
  
   /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    /*width: 44.73%;*/
  }
  .home_about_box2{
    /*width: 50.98%;*/
    margin-top: 15px;
  }
  .home_about_title_en{
    font-size: 240px;
  }
  .home_about_title_ja_txt{
    font-size: 34px;
  }
  .home_about_parts.pos1{
    bottom: -245px;
  }
  
  /* BLOG */
  .home_blog{
  }
  .home_blog_box1{
    width: 250px;
  }
  .home_blog_box2{
    width: calc(100% - 250px);
    margin-top: 35px;
  }
  .home_blog_head{
    display: inline-block;
  }
  .home_blog_head_ja{
    font-size: 30px;
  }
  .home_blog_head_en{
    font-size: 240px;
  }

  .blog_list_slider .webgene-item{
    width: 420px;
  }

  .blog_slider_btns{
    margin-top: 60px;
  }
  .blog_slider_next,
  .blog_slider_prev{
    width: 86px;
  }
  
  /* サービス */
  .home_service{
    margin-left: -20px;
    margin-right: -20px;
  }
  * + .home_service{
    margin-top: 65px;
  }
  .home_service_item{
    width: 33.333%;
    padding: 0 20px;
  }
  .home_service_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_service_item:nth-child(3n+1),
  .home_service_item:nth-child(3n){
    margin-top: 65px;
  }
  .home_service_item_en{
    font-size: 42px;
    top: 50%;
    left: -2px;
  }
  .home_service_item_head{
    padding: 0 15px;
    font-size: 38px;
  }
  .home_service_item_head_num{
  }
  .home_service_item_head_title{
    width: calc(100% - 80px);
    font-size: 27px;
  }
  .home_service_item_txt{
    font-size: 16px;
    line-height: 1.875;
    padding: 20px 20px;
  }
  
  .home_service_person.pos1{
    top: 0;
    left: 0;
    -webkit-transform: translate(10%, 43%);
    transform: translate(10%, 43%);
  }
  .home_service_person.pos2{
    top: 0;
    right: 0;
    -webkit-transform: translate(-30%, -10%);
    transform: translate(-30%, -10%);
  }
  
  /* 設備 */
  .home_equip{
    padding-top: 135px;
  }
  .home_equip_en{
    font-size: 210px;
  }
  .home_equip_box1{
    width: 45.72%;
  }
  .home_equip_box2{
    width: 49.01%;
    margin-top: 85px;
  }
  .home_equip_imgs_item.pos1{
    width: 100%;
  }
  .home_equip_imgs_item.pos2{
    width: 91.46%;
    top: 15%;
  }
  .home_equip_imgs_item.pos3{
    width: 74.52%;
    bottom: -10%;
  }
  .home_equip_title{
    font-size: 34px;
    margin-bottom: 25px;
  }
  .home_equip .read_more{
    margin-top: 40px;
  }
  
}
@media (min-width:1720px){

  :root{
    --home-service-person-resize: 1.0;
  }
  
  /* サービス */
  .home_service_item_en{
    font-size: 65px;
    top: 50%;
    left: -2px;
  }
  .home_service_item_head{
    padding: 0 0px 0 15px;
    font-size: 38px;
  }
  .home_service_item_head_num{
  }
  .home_service_item_head_title{
    width: calc(100% - 80px);
    font-size: 27px;
  }
  .home_service_item_txt{
    font-size: 16px;
    line-height: 1.875;
    padding: 20px 20px;
  }
  
  /* 設備 */
  .home_equip{
    padding-top: 175px;
  }
  .home_equip_en{
    font-size: 240px;
  }

  .home_service_person.pos1{
    -webkit-transform: translate(10%, 43%);
    transform: translate(10%, 43%);
  }
  .home_service_person.pos2{
    top: 0;
    right: 0;
    -webkit-transform: translate(-30%, -10%);
    transform: translate(-30%, -10%);
  }
}



/* NEWS */
.home_news_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
}
.home_news_head_box1{
  
}
.home_news_head_box2{
  
}
.home_news_head_box2 .read_more{
  margin-top: 0;
  margin-bottom: 10px;
}
.home_news_head_tt{
  display: flex;
  align-items: flex-end;
}
.home_news_head_tt_en{
  font-size: 100px;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.home_news_head_tt_ja{
  font-size: 24px;
  font-weight: 700;
  margin-left: 32px;
  padding-bottom: 10px;
}
.home_news_head_tt{
  
}

/* 新着情報 */
.news_list_home{
  
}
.news_list_home .webgene-item{
  border-bottom: 1px solid;
}
.news_list_home .webgene-item .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 20px 0px;
  position: relative;
  z-index: 1;
}
.news_list_home .webgene-item .inner:after{
  content: "\f054";
  font-family: "FontAwesome";
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.news_list_home .webgene-item .inner:hover{
  color: var(--main-color);
}
.news_list_home .webgene-item .inner:hover:after{
  margin-right: -10px;
}
.news_list_home .webgene-item .box1{
  width: 140px;
}
.news_list_home .webgene-item .box2{
  width: calc(100% - 140px - 15px);
}
.news_list_home .webgene-item .meta{
  display: flex;
  align-items: center;
}
.news_list_home .webgene-item .date{
  width: 100px;
  font-size: 14px;
  font-family: var(--font-en);
}
.news_list_home .webgene-item .category{
  width: 135px;
  width: 100%;
}
.news_list_home .webgene-item .category span{
  display: inline-block;
  background: var(--wh-color);
  border: 1px solid #dddddd;
  background: #dddddd;
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  min-width: 80px;
  padding: 2px 5px;
  text-align: center;
}
.news_list_home .webgene-item .title{
  width: calc(100% - 180px - 135px);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.875;
}
.news_list_home .webgene-item .img{
  /*border-radius: 10px;*/
  overflow: hidden;
}
.news_list_home .webgene-item .img.img_fit:before{
  padding-top: 75%;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  
  
  /* NEWS */
  .home_news_head{
    
  }
  .home_news_head_box1{
    
  }
  .home_news_head_box2{
    display: none;
  }
  
  .home_news_head_tt{
    
  }
  .home_news_head_tt_en{
    font-size: 50px;
  }
  .home_news_head_tt_ja{
    font-size: 20px;
  }
  
  .news_list_home .webgene-item .meta{
    flex-wrap: wrap;
  }
  .news_list_home .webgene-item .date{
    /*width: 100px;*/
    margin-bottom: 5px;
  }
  .news_list_home .webgene-item .category{
    /*width: 100px;*/
  }
  .news_list_home .webgene-item .category span{
    min-width: 80px;
  }
  .news_list_home .webgene-item .title{
    width: 100%;
    margin-top: 5px;
  }
  
}
@media (min-width:768px){
  
  

  /* NEWS */
  .home_news_head{
    margin-bottom: 40px;
  }
  .home_news_head_box1{

  }
  .home_news_head_box2{

  }
  .home_news_head_box2 .read_more{
    margin-bottom: 10px;
  }
  .home_news_head_tt{
  }
  .home_news_head_tt_en{
    font-size: 70px;
  }
  .home_news_head_tt_ja{
    font-size: 20px;
    margin-left: 32px;
    padding-bottom: 10px;
  }
  .home_news_head_tt{

  }

  /* 新着情報 */
  .news_list_home{

  }
  .news_list_home .webgene-item .inner{
    padding: 40px 60px 40px 20px;
  }
  .news_list_home .webgene-item .inner:after{
    right: 20px;
  }
  .news_list_home .webgene-item .inner:hover:after{
    margin-right: -10px;
  }
  .news_list_home .webgene-item .box1{
    width: 160px;
  }
  .news_list_home .webgene-item .box2{
    width: calc(100% - 160px - 30px);
  }
  .news_list_home .webgene-item .meta{
  }
  .news_list_home .webgene-item .date{
    width: 110px;
    font-size: 20px;
  }
  .news_list_home .webgene-item .category{
    width: 110px;
  }
  .news_list_home .webgene-item .category span{
    font-size: 13px;
    min-width: 80px;
    padding: 2px 5px;
  }
  .news_list_home .webgene-item .title{
    width: calc(100% - 110px - 110px);
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
  }
  

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


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


  /* NEWS */
  .home_news_head{
    margin-bottom: 40px;
  }
  .home_news_head_box1{

  }
  .home_news_head_box2{

  }
  .home_news_head_box2 .read_more{
    margin-bottom: 10px;
  }
  .home_news_head_tt{
  }
  .home_news_head_tt_en{
    font-size: 100px;
  }
  .home_news_head_tt_ja{
    font-size: 24px;
    margin-left: 32px;
    padding-bottom: 10px;
  }
  .home_news_head_tt{

  }

  /* 新着情報 */
  .news_list_home{

  }
  .news_list_home .webgene-item .inner{
    padding: 40px 100px 40px 20px;
  }
  .news_list_home .webgene-item .inner:after{
    right: 20px;
  }
  .news_list_home .webgene-item .inner:hover:after{
    margin-right: -10px;
  }
  .news_list_home .webgene-item .box1{
    width: 160px;
  }
  .news_list_home .webgene-item .box2{
    width: calc(100% - 160px - 60px);
  }
  .news_list_home .webgene-item .meta{
  }
  .news_list_home .webgene-item .date{
    width: 180px;
    font-size: 24px;
  }
  .news_list_home .webgene-item .category{
    width: 135px;
  }
  .news_list_home .webgene-item .category span{
    font-size: 13px;
    min-width: 80px;
    padding: 2px 5px;
  }
  .news_list_home .webgene-item .title{
    width: calc(100% - 180px - 135px);
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
  }
  

}




/*isnta*/
.insta_list{
  
}
* + .insta_list{
  margin-top: 20px;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_list .webgene-item a{
  background: #FFF;
  background-image: url('/system_panel/uploads/images/noimage.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.insta_list_item_inner:before{
  padding-top: 133.69%;
}
.insta_list_item_inner video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .insta_list{
    margin-top: 55px;
  }
  .insta_list .webgene-blog{
    margin-inline:-3px;
  }
  .insta_list .webgene-item{
    padding-inline:3px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

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

  /*isnta*/

  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 20%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top:6px;;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }

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

}

