@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap');
/* ******************************
   変数設定など
   ****************************** */
:root {

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

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


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--txt-color);
  background: #0d0d0d;
  -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{
  background: #0d0d0d;
  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: 40px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{
  position: relative;
  z-index: 1;
}
.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;
  margin-left: auto;
}

/* 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: #dddddd;
  color: #181818;
  width: 208px;
  padding: 8px 5px;
  border-radius: 23px;
  text-align: center;
  font-size: 20px;
  font-family: var(--font-en);
  transition: 0.2s all;
}
.hdr_contact a p{
  letter-spacing: 0;
}
.hdr_contact a.email p:before{
  content:"\f003";
  font-family: "fontAwesome";
  margin-right: 5px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 106px;
  }
  .gjs-dashed body{
    padding-top: 0;
  }
  .header{
    --logo-height: 50px;
    background: #0d0d0d;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 10px 20px 10px 0;
    padding-left: calc(var(--margin-for-device-side-w) * -1);
  }

  /* ロゴ */
  .hdr_logo{
    margin-left: -10px;
    bottom: -35px;
    transition: 0.2s all;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }
  .hdr_logo:after{
    content: "";
    background: #0d0d0d;
    width: 210px;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: -15px;
    left: 0;
    transition: 0.2s all;
    transition: 0s all;
  }
  
  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.7);
  }
  .header.slim .hdr_logo{
    bottom: auto;
  }
  .header.slim .hdr_logo:after{
    /*bottom: 100%;*/
    width: 0;
    bottom: 100%;
    /*opacity: 0;*/
  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  
 
  
  .header{
    --logo-height: 50px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }
  .hdr_logo:after{
    content: "";
    background: #0d0d0d;
    width: 310px;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: -15px;
    left: 0;
    transition: 0.2s all;
    transition: 0s all;
  }
  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    --logo-height: 75px;
  }
  /* ロゴ */
  .hdr_logo{
    bottom: -45px;
    margin-left: -40px;
  }
  .hdr_logo:after{
    width: 520px;
  }
  .hdr_logo img{
    /*width: 420px;*/
  }

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

  }
  .header.slim .hdr_logo img{
  }
  
}

@media (min-width:1366px){
  .hdr_logo{
    margin-left: 0;
  }
}

@media (min-width:1536px){
  
   /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 135px;
  }
  
  .header{
    --logo-height: 117px;
  }
  
  /* ロゴ */
  .hdr_logo{
    /*bottom: -45px;*/
    margin-left: -35px;
  }
  
}

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

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

}
.mv_txt_p2{

}

.mv_catch_img1,
.mv_catch_img2{
  position: absolute;
  z-index: 2;
  height: 100%;
}
.mv_catch_img1 img,
.mv_catch_img2 img{
  max-width: none;
  height: 100%;
}
.mv_catch_img1{
  bottom: -1px;
  left: 0;
  transform-origin: left bottom;
}
.mv_catch_img2{
  top: 0;
  right: 0;
  transform-origin: right top;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:767px){
  .mv_catch_img1,
  .mv_catch_img2{
    width: 100%;
    height: auto;
    /*transform: scale(0.7);*/
  }
  .mv_catch_img1 img,
  .mv_catch_img2 img{
    width: 100%;
    height: auto;
  }
  
}
@media (min-width:768px){

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

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

  }
  .mv_txt_p2{

  }

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


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

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

  }
  .mv_txt_p2{

  }

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

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

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

  }
  .mv_txt_p2{

  }

}


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

/* サイドバー */
.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: 70px;
  background: #262626;
  /*background-image: url(https://s-9921328.smooooth.jp/system_panel/uploads/images/footer_bg.jpg);*/
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer:before{
  
  /*content: "";
  background: rgba(0,0,0,0.75);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;*/
}
.footer .container{
  position: relative;
  z-index: 2;
}

.ftr1{
  border-top: none;
  border-bottom: none;
  padding: 35px 0 10px;
  position: relative;
  z-index: 1;
}
.ftr1:before{
  content: "";
  background: var(--sub-color);
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.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: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_box1{

}
.ftr_contact_box2{

}

.ftr_contact_items{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_items_item{

}

.ftr_contact_tt_en{
  font-size: 100px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;

}
.ftr_contact_tel{

}
.ftr_contact_tel_txt1{
  
}
.ftr_contact_tel_txt2{

}

.ftr_contact_email{

}
.ftr_contact_email a{

}
.ftr_contact_email a{

}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  width: 100%;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--wh-color);
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding: 10px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--sub-color);;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix > a:hover{
  color: #FFF;
}
.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: var(--sub-color);;
}
.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: #696969;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact{
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_tt_en{
  font-size:30px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #fff;

}
.ftr_contact_right{

}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr_contact_items_item{
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.ftr_contact_tel{
  text-align: center;
}
.ftr_contact_tel_txt1{
  font-size: 34px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.025em;
  line-height: 1;
  
}
.ftr_contact_tel_txt1 strong{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
}
.ftr_contact_tel_txt1 a:hover{
  color: var(--bk-color)
}
.ftr_contact_tel_txt2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.ftr_contact_email{

}
.ftr_contact_email a{
  display: block;
  max-width:380px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  margin-inline:auto;
  transition: all .2s;
}
.ftr_contact_email a:hover{
  background: #fff;
  color: #000;
}
.ftr_contact_email a p{
  letter-spacing: 0.05em;
}
.ftr_contact_email a p:before{
  content: "\f0e0";
  font-size: 18px;
  font-family: 'FontAwesome';
  margin-right: 10px;
}

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 105px 0 50px;
}
.ftr2:before{
  content: "";
  background: #0d0d0d;
  width: 100vw;
  height: 20px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.ftr2_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.ftr_logo{

}
.ftr2_box2{
  width: 100%;
  position: relative;
  z-index: 1;
}
.ftr_add{
  margin-top: 30px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
  white-space: nowrap;
}
.ftr_add_txt a:hover{
  color: var(--sub-color);
}
.ftr_add_item{
  display: flex;
  align-items: center;
  width: 280px;
  margin-inline: auto;
}
.ftr_add_item_txt1{
  text-align: left;
  position: relative;
  padding-right: 10px;
}
.ftr_add_item_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: var(--wh-color);
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}

.ftr_add_item_txt2{
  padding-left: 16px;
}
.ftr2_box2{

}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr2_box2{
    display: none;
  }
  .ftr_add_item{
    width: 280px;
  }
  
  .ftr_add_txt{
    font-size: 14px;
  }
    .ftr_add_item_txt2{
    text-align: left;
  }
  .ftr_contact_tt_en{
    text-align: center;
  }


}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr1{
    padding: 75px 0;
  }
  .ftr_contact{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt_en{
    font-size:40px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    margin-top: 80px;
  }
  .ftr_contact_items_item{
    position: relative;
    padding: 0 9px;
    border-top:none;
  }
  .ftr_contact_items_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left:0;
    transform: translateY(-50%);
  }
  .ftr_contact_items_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_contact_items_item.tel{
    width: 44.13%;
  }
  .ftr_contact_items_item.mail{
    width: 55%;
  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{

  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{
    font-size: 18px;
  }

  .ftr2{
    padding: 105px 0 50px;
  }
  .ftr2_box1{
    padding-top: 18px;
  }
  .ftr_logo{

  }
  .ftr2_box2{
    position: relative;
  }
  .ftr2_box2:after{
    content: "";
    display: block;
    height: 210px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_add{
    margin-top: 39px;
  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_item_txt1{
    padding-right: 10px;
  }
  .ftr_add_item_txt2{
    padding-left: 16px;
    text-align: left;
  }
  .ftr2_box2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    ;
    width: 85%;
    margin-inline:auto;
    ;
    margin-top: 30px;
  }
  .ftr_links{

  }
  .ftr_link{
    width: 205px;
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--wh-color);
    position: relative;
    padding: 10px 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 10px;
  }
  .ftr_link:after{
    content: "\f105";
    font-size: 18px;
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .2s;
  }
  .ftr_link:hover{
    color: var(--sub-color);;
  }
  .ftr_link:hover:after{
    right: -5px;
  }

  .ftr_copy{
    margin-top: 73px;
  }



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

  .ftr_contact{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt_en{
    font-size:70px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    margin-top: 100px;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_tel_txt1 strong{
    font-size: 24px;
  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }

  .ftr2{
  }
  .ftr2_box1{
    width: 38.87%;
    text-align: left;
  }
  .ftr_logo{

  }
  .ftr2_box2{
    width: 50.92%;
    margin-inline:0;
    margin-top: 0;
  }
  .ftr2_box2:after{
    top: 47%;
  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{
    width: auto;
    margin-inline: 0;
  }
  .ftr_add_item_txt1{

  }
  .ftr_add_item_txt2{

  }
  .ftr2_box2{

  }
  .ftr_links{

  }
  .ftr_link{


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

  }
  .ftr_contact_box1{
    width: 41.11%;
  }
  .ftr_contact_tt_en{
    font-size:80px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    width: 58.88%;
    margin-top: 0;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{
    font-size: 36px;
  }
  .ftr_contact_tel_txt1 strong{
    font-size: 30px;
  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }
  
  .ftr2_box2{
    width: 42.92%;
  }
  .ftr2_box2:after{
    height: 210px;
    top: 46%;
  }
}
@media (min-width:1360px){
  .ftr_contact_tt_en{
    font-size:100px;
  }

  .ftr2_box2{
    width: 40%;
  }
}
@media (min-width:1470px){
  .ftr_contact_tt_en{
    font-size:100px;
  }

  .ftr2_box2{
    width: 33.5%;
  }
}


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


/* テーブル用 */
.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 #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 280px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--wh-color);
  border-radius: 23px;
  color: var(--bk-color);
  padding: 13px 20px 14px ;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #000;
  color: var(--wh-color);
  border-radius: 50%;
  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.external:after{
  content: "";
  background-image: url('https://light-art.co.jp/system_panel/uploads/images/icon_external.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.read_more a:hover{
  color: #FFF;
  border-color: var(--sub-color);
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


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

.cmn_txt{
  font-size: 16px;
  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;
  }
  
  .read_more a:after{
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .read_more a.external:after{
    content: "";
  }

}
@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: 350px;
    font-size: 16px;
    padding: 13px 20px 14px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*right: 18px;*/
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

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

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


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

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

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

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


}


@media (min-width:1366px){

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

}

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



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

}
.pg_home .section.sec1{

}
.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){
  .pg_home .section.sec1{
    padding-top: 50px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 170px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 120px;
  }
  .pg_home .section.sec6{
    padding-top: 80px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


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


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


}

:root{
  --home-about-parts-resize: 0.5;
  --home-gallery-img-resize: 0.35;
}

/* About */
.home_about{
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
.home_about_title{
  font-size: 22px;
  text-align: center;
}
.home_about_title_en{
  font-size: 2.279em;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 0.8387;
  color: #393939;
}
.home_about_title_ja{
  font-size: 1em;
  font-weight: 900;
  line-height: 1.3235;
  letter-spacing: 0;
  margin-top: -1.5441em;
  margin-right: -0.7352em;
  position: relative;
  z-index: 1;
}
.home_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.888;
  text-align: justify;
  margin-top: 20px;
  margin-top: 35px;
}

.home_about_parts{
  position: absolute;
  z-index: -1;
}
.home_about_parts.pos1{
  width: calc(467px * var(--home-about-parts-resize));
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_about_parts.pos2{
  width: calc(389px * var(--home-about-parts-resize));
  top: 33%;
  right: 0;
  -webkit-transform: translate(24%, 0);
  transform: translate(24%, 0);
}
.home_about_parts.pos3{
  width: calc(278px * var(--home-about-parts-resize));
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-35%, 90%);
  transform: translate(-35%, 90%);
}
.home_about_parts img{
  transform-origin: center;
}

.home_about_imgs{
  aspect-ratio: 1520 / 800;
  position: relative;
  z-index: 1;
}
* + .home_about_imgs{
  margin-top: 30px;
}
.home_about_imgs_item{
  
}
.home_about_imgs_item.pos1{
  width: 69.73%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.home_about_imgs_item.pos2{
  width: 36.51%;
  margin-left: auto;
}
.home_about_imgs_item.pos1.img_fit:before{
  padding-top: 60.377%;
}
.home_about_imgs_item.pos2.img_fit:before{
  padding-top: 108.108%;
}

.home_about.world{
  /*padding-top: 120px;*/
}
.home_about.world .home_about_title_ja{
  margin-top: -0.6617em;
}
  
/* Artist */
.home_artist{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_artist_box1{
  width: 100%;
}
.home_artist_box2{
  width: 90%;
  margin-left: auto;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.home_artist_title{
  font-size: 25px;
  font-size: 6.666vw;;
  font-weight: 900;
  line-height: 1.3235;
  margin-bottom: 0;
}
.home_artist_imgs{
  aspect-ratio: 665 / 606;
  margin-top: -95px;
  margin-left: 15px;
  position: relative;
  z-index: 1;
}
* + .home_artist_imgs{
  /*margin-top: 30px;*/
}
.home_artist_imgs_item{
  
}
.home_artist_imgs_item.pos1{
  width: 42.85%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.home_artist_imgs_item.pos2{
  width: 42.85%;
  margin-left: auto;
}
.home_artist_imgs_item.pos1.img_fit:before{
  padding-top: 133.333%;
}
.home_artist_imgs_item.pos2.img_fit:before{
  padding-top: 133.333%;
}

.home_artist_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  border-bottom: 1px solid var(--wh-color);
  padding-bottom: 30px;
}
.home_artist_catch_en{
  font-size: 100px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: #393939;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transform: translate(-57%, 5%);
  transform: translate(-57%, 5%);
}

/* 代表インタビュー */
.home_interview{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.home_interview_box1{
  width: 100%;
  order: 2;
  margin: 40px 0;
  position: relative;
  z-index: -1;
}
.home_interview_box2{
  width: 100%;
  order: 1;
  
}
.home_interview_box3{
  width: 100%;
  order: 3;
}
.home_interview_title{
  font-size: 28px;
  position: relative;
  z-index: 1;
}
.home_interview_title_txt1{
  font-size: 1em;
  font-weight: 900;
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-45.5%, -50%);
  transform: translate(-45.5%, -50%);
}
.home_interview_title_txt2{
  font-size: 1em;
  font-weight: 900;
  font-family: var(--font-mincho);
  color: #857c4b;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0 auto;
}
.home_interview_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

.home_interview + .read_more{
  margin-top: 70px;
}

/* GALLERY */
.home_gallery{
  position: relative;
  z-index: 1;
  padding: 145px 0 335px;
}
.home_gallery_inner{
  
}
.home_gallery_title{
  text-align: center;
  margin-bottom: 10px;
}
.home_gallery_title_en{
  font-size: 65px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: #393939;
}
.home_gallery_title_ja{
  font-size: 24px;
  font-weight: 900;
  margin-top: 3px;
}
.home_gallery_txt{
  text-align: justify;
}


.home_gallery_img{
  position: absolute;
  z-index: -1;
}
.home_gallery_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_gallery_img.pos1{
  width: calc(285px * var(--home-gallery-img-resize));
  top: 0;
  right: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-38%, 16%);
}
.home_gallery_img.pos2{
  width: calc(381px * var(--home-gallery-img-resize));
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(28%, 0);
}
.home_gallery_img.pos3{
  width: calc(490px * var(--home-gallery-img-resize));
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
}
.home_gallery_img.pos4{
  width: calc(395px * var(--home-gallery-img-resize));
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, 82%);
  transform: translate(0%, 82%);
}
.home_gallery_img.pos5{
  width: calc(410px * var(--home-gallery-img-resize));
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(8%, 0);
  transform: translate(8%, 0);
}

.home_gallery_img.img_fit.pos1:before{
  padding-top: 127.368%;
}
.home_gallery_img.img_fit.pos2:before{
  padding-top: 127.297%;
}
.home_gallery_img.img_fit.pos3:before{
  padding-top: 138.571%;
}
.home_gallery_img.img_fit.pos4:before{
  padding-top: 114.177%;
}
.home_gallery_img.img_fit.pos5:before{
  padding-top: 117.073%;
}


/* Instagram */
.home_insta_tt{
  font-size: 45px;
  font-weight: 700;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  color: #393939;
  text-align: center;
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  :root{
    --home-about-parts-resize: 0.62;
    --home-gallery-img-resize: 0.6;
  }

  /* About */
  .home_about{
    padding-top: 60px;
  }
  .home_about_title{
    font-size: 40px;
    text-align: center;
  }
  .home_about_title_en{
    font-size: 2.279em;
  }
  .home_about_title_ja{
    font-size: 1em;
  }
  .home_about_txt{
    font-size: 18px;
    line-height: 1.888;
    text-align: center;
    margin-top: 35px;
  }
  
  .home_about_parts{
  }
  .home_about_parts.pos1{
  }
  .home_about_parts.pos2{
    top: 33%;
    -webkit-transform: translate(24%, 0);
    transform: translate(24%, 0);
  }
  .home_about_parts.pos3{
    -webkit-transform: translate(17%, 41%);
    transform: translate(17%, 41%);
  }



  /* Artist */
  .home_artist{
  }
  .home_artist_box1{
    width: 100%;
  }
  .home_artist_box2{
    width: 90%;
    /*margin-top: -10px;*/
  }
  .home_artist_title{
    font-size: 45px;
    font-size: 5.859vw;
    /*margin-bottom: 70px;*/
  }
  .home_artist_imgs{
    margin-top: -175px;
    /*margin-left: 0;*/
  }
  * + .home_artist_imgs{
    /*margin-top: 30px;*/
  }
  .home_artist_imgs_item{

  }
  .home_artist_imgs_item.pos1{
    width: 42.85%;
  }
  .home_artist_imgs_item.pos2{
    width: 42.85%;
  }

  .home_artist_txt{
    font-size: 18px;
    line-height: 2.4;
  }
  .home_artist_catch_en{
    font-size: 120px;
    -webkit-transform: translate(-57%, 5%);
    transform: translate(-57%, 5%);
  }
  
  
  
  /* 代表インタビュー */
  .home_interview{
  }
  .home_interview_box1{
    
  }
  .home_interview_box2{
  }
  .home_interview_box3{
    width: auto;
    margin-left: auto;
  }
  .home_interview_title{
    font-size: 42px;
  }
  .home_interview_title_txt1{
    -webkit-transform: translate(-45.5%, -50%);
    transform: translate(-45.5%, -50%);
  }
  .home_interview_title_txt2{
  }
  .home_interview_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  .home_interview + .read_more{
    margin-top: 70px;
  }
  

  /* GALLERY */
  .home_gallery{
    padding: 200px 0 500px;
    text-align: center;
  }
  .home_gallery_inner{
    display: inline-block;
  }
  .home_gallery_title{
    margin-bottom: 10px;
  }
  .home_gallery_title_en{
    font-size: 120px;
  }
  .home_gallery_title_ja{
    font-size: 32px;
    margin-right: -0.7em;
  }
  .home_gallery_txt{
    text-align: center;
  }


  .home_gallery_img.pos1{
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-38%, 16%);
  }
  .home_gallery_img.pos2{
    -webkit-transform: translate(-50%, 0);
    transform: translate(28%, 0);
  }
  .home_gallery_img.pos3{
    -webkit-transform: translate(0%, 24%);
    transform: translate(0%, 24%);
  }
  .home_gallery_img.pos4{
    -webkit-transform: translate(0%, 56%);
    transform: translate(0%, 56%);
  }
  .home_gallery_img.pos5{
    -webkit-transform: translate(-27%, 0);
    transform: translate(-27%, 0);
  }
  
  
  /* Instagram */
  .home_insta_tt{
    font-size: 80px;
  }


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

  /* Artist */
  .home_artist{
  }
  .home_artist_box1{
    width: 44.73%;
    width: 44%;
  }
  .home_artist_box2{
    width: 42%;
    margin-top: -10px;
  }
  .home_artist_title{
    font-size: 50px;
    margin-bottom: 40px;
  }
  .home_artist_imgs{
    margin-top: 0;
    margin-left: 15px;
  }
  * + .home_artist_imgs{
    /*margin-top: 30px;*/
  }
  .home_artist_imgs_item{

  }

  .home_artist_txt{
    /*font-size: 18px;*/
    /*line-height: 3.6111;*/
  }
  .home_artist_catch_en{
    /*font-size: 155px;*/
  }
  
  /* 代表インタビュー */
  .home_interview{
    padding: 120px 0;
  }
  .home_interview_box1{
    
  }
  .home_interview_box2{
    width: 44%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .home_interview_box3{
    width: 44%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
  }
  .home_interview_title{
    font-size: 60px;
  }
  .home_interview_txt{
  }
  .home_interview + .read_more{
    margin-top: 70px;
  }
  
  /* GALLERY */
  .home_gallery{
    /*padding: 440px 0 515px;*/
  }
  .home_gallery_inner{

  }
  .home_gallery_title{
    /*margin-bottom: 10px;*/
  }
  .home_gallery_title_en{
    /*font-size: 155px;*/
  }
  .home_gallery_title_ja{
    /*font-size: 56px;*/
  }
  .home_gallery_txt{
    text-align: center;
  }
  .home_gallery_img.pos1{
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-38%, 16%);
  }
  .home_gallery_img.pos2{
    -webkit-transform: translate(-50%, 0);
    transform: translate(28%, 0);
  }
  .home_gallery_img.pos3{
    -webkit-transform: translate(0%, -31%);
    transform: translate(0%, -31%);
  }
  .home_gallery_img.pos4{
    -webkit-transform: translate(0%, -31%);
    transform: translate(0%, -31%);
  }
  .home_gallery_img.pos5{
    -webkit-transform: translate(-27%, 0);
    transform: translate(-27%, 0);
  }

  
  /* Instagram */
  .home_insta_tt{
    font-size: 100px;
  }
}
@media (min-width:1200px){

  :root{
    --home-about-parts-resize: 0.8;
    --home-gallery-img-resize: 0.6;
  }

  /* About */
  .home_about{
    padding-top: 60px;
  }
  .home_about_title{
    font-size: 50px;
    text-align: center;
  }
  .home_about_txt{
    font-size: 18px;
    margin-top: 35px;
  }
  

  /* Artist */
  .home_artist{
  }
  
  .home_artist_title{
    font-size: 56px;
    margin-bottom: 50px;
  }
  
  /* GALLERY */
  .home_gallery{
    padding: 200px 0 360px;
  }
  
  /* Instagram */
  .home_insta_tt{
    /*font-size: 155px;*/
  }
  
}
@media (min-width:1470px){

  :root{
    --home-about-parts-resize: 1.0;
    --home-gallery-img-resize: 0.9;
  }

  /* About */
  .home_about{
    padding-top: 60px;
  }
  .home_about_title{
    font-size: 68px;
    text-align: center;
  }
  .home_about_txt{
    font-size: 18px;
    margin-top: 35px;
  }
  
  .home_about.world{
    padding-top: 120px;
  }
  .home_about.world .home_about_title_ja{
    margin-top: -0.6617em;
  }
  .home_about.world .home_about_txt{
    margin-top: 45px;
  }

  /* Artist */
  .home_artist{
  }
  .home_artist_box1{
    /*width: 44.73%;*/
  }
  .home_artist_box2{
    /*width: 40.13%;*/
    /*margin-top: -10px;*/
  }
  .home_artist_title{
    font-size: 68px;
    margin-bottom: 70px;
  }
  .home_artist_imgs{
    margin-top: 0;
    margin-left: 15px;
  }
  * + .home_artist_imgs{
    /*margin-top: 30px;*/
  }
  .home_artist_imgs_item{

  }

  .home_artist_txt{
    font-size: 18px;
    line-height: 3.6111;
  }
  .home_artist_catch_en{
    font-size: 155px;
  }
  
  /* 代表インタビュー */
  .home_interview{
    padding: 0;
  }
  .home_interview_box1{
    
  }
  .home_interview_box2{
    width: auto;
    /*top: 15px;*/
    /*left: 25px;*/
  }
  .home_interview_box3{
    width: auto;
    /*bottom: 15px;*/
    /*right: 20px;*/
  }
  .home_interview_title{
    font-size: 60px;
  }
  .home_interview_txt{
  }
  .home_interview + .read_more{
    margin-top: 50px;
  }
  
  
  /* GALLERY */
  .home_gallery{
    padding: 375px 0 515px;
  }
  .home_gallery_inner{

  }
  .home_gallery_title{
    margin-bottom: 10px;
  }
  .home_gallery_title_en{
    font-size: 120px;
  }
  .home_gallery_title_ja{
    font-size: 38px;
  }
  .home_gallery_txt{
    text-align: center;
  }


  .home_gallery_img.pos1{
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-38%, 16%);
  }
  .home_gallery_img.pos2{
    -webkit-transform: translate(-50%, 0);
    transform: translate(28%, 0);
  }
  .home_gallery_img.pos3{
    -webkit-transform: translate(0%, -31%);
    transform: translate(0%, -31%);
  }
  .home_gallery_img.pos4{
    -webkit-transform: translate(0%, -31%);
    transform: translate(0%, -31%);
  }
  .home_gallery_img.pos5{
    -webkit-transform: translate(-27%, 0);
    transform: translate(-27%, 0);
  }
  
  /* Instagram */
  .home_insta_tt{
    font-size: 155px;
  }
}
@media (min-width:1720px){

  :root{
    --home-about-parts-resize: 1.0;
    --home-gallery-img-resize: 1.0;
  }
  
  /* Artist */
  .home_artist{
  }
  .home_artist_box1{
    width: 44.73%;
  }
  .home_artist_box2{
    width: 40.13%;
    width: 41.0%;
  }
  
  /* 代表インタビュー */
  .home_interview{
    padding: 0;
  }
  .home_interview_box1{
    
  }
  .home_interview_box2{
    top: 45px;
    left: 25px;
  }
  .home_interview_box3{
    bottom: 35px;
    right: 20px;
  }
  .home_interview_title{
    font-size: 70px;
  }
  
  /* GALLERY */
  .home_gallery{
    padding: 440px 0 515px;
  }
  .home_gallery_title_en{
    font-size: 155px;
  }
  .home_gallery_title_ja{
    font-size: 56px;
  }
}



/* NEWS */
.home_news_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.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: var(--font-en);
  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-top: 1px solid;
}
.news_list_home .webgene-item:last-child{
  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(--sub-color);
}
.news_list_home .webgene-item .inner:hover:after{
  margin-right: -10px;
}
.news_list_home .webgene-item .inner:hover .category span{
  background: var(--sub-color);
  border-color: var(--sub-color);
  color: #fff;
}
.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 #b3b3b3;
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  min-width: 80px;
  padding: 2px 5px;
  text-align: center;
  transition: 0.2s all;
}
.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;
  }
  

}


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

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


}

/* メイン部分 */


/* 概要 */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_about_box1{
  width: 100%;
}
.cmn_about_box2{
  width: 90%;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.cmn_about_title_ja{
  font-size: 25px;
  font-size: 6.666vw;;
  font-weight: 900;
  line-height: 1.3235;
  margin-bottom: 15px;
}
.cmn_about_imgs{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*aspect-ratio: 665 / 606;*/
  margin-left: 15px;
  position: relative;
  z-index: 1;
}
* + .cmn_about_imgs{
  /*margin-top: 30px;*/
}
.cmn_about_imgs_item{
  
}
.cmn_about_imgs_item.pos1{
  width: 48.52%;
  margin-top: 45px;
}
.cmn_about_imgs_item.pos2{
  width: 41.91%;
}

.cmn_about_imgs_item.pos1.img_fit:before{
  padding-top: 131.915%;
}
.cmn_about_imgs_item.pos2.img_fit:before{
  padding-top: 133.333%;
}

.cmn_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
.cmn_about_title_en{
  font-size: 100px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: #393939;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transform: translate(-57%, 5%);
  transform: translate(-57%, 5%);
}


@media (max-width:767px){

  .cmn_about_box2{
    margin-left: auto;
  }
  
}
@media (min-width:768px){

  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 100%;
  }
  .cmn_about_box2{
    width: 90%;
    margin-left: auto;
    /*margin-top: -10px;*/
  }
  .cmn_about_title_ja{
    font-size: 45px;
    font-size: 5.859vw;
    /*margin-bottom: 70px;*/
  }
  .cmn_about_imgs{
    /*margin-left: 0;*/
  }
  * + .cmn_about_imgs{
    /*margin-top: 30px;*/
  }
  .cmn_about_imgs_item{

  }
  .cmn_about_imgs_item.pos1{
    width: 48.52%;
  }
  .cmn_about_imgs_item.pos2{
    width: 42.85%;
  }

  .cmn_about_txt{
    font-size: 18px;
    line-height: 2.4;
  }
  .cmn_about_title_en{
    font-size: 120px;
    -webkit-transform: translate(-57%, 5%);
    transform: translate(-57%, 5%);
  }
  
}
@media (min-width:1024px){

  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 44.73%;
    width: 44%;
  }
  .cmn_about_box2{
    width: 45%;
    margin-top: -10px;
    margin-left: 0;
  }
  .cmn_about_title_ja{
    font-size: 42px;
    margin-bottom: 40px;
  }
  .cmn_about_imgs{
    margin-top: 0;
    margin-left: 15px;
  }
  * + .cmn_about_imgs{
    /*margin-top: 30px;*/
  }
  .cmn_about_imgs_item{

  }

  .cmn_about_txt{
    /*font-size: 18px;*/
    /*line-height: 3.6111;*/
  }
  .cmn_about_title_en{
    /*font-size: 155px;*/
  }
  
  .cmn_about.right{
  
  }
  .cmn_about.right .cmn_about_box1{
    order: 2;
  }
  .cmn_about.right .cmn_about_box2{
    order: 1;
  }
  .cmn_about.right .cmn_about_title_en{
    left: auto;
    right: 0;
    -webkit-transform: translate(52%, 3%);
    transform: translate(52%, 3%);
  }

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

  /* 概要 */
  .cmn_about{
  }
  
  .cmn_about_title{
    font-size: 56px;
    margin-bottom: 50px;
  }
      .cmn_about_box2 {
        width: 42%;
        margin-top: -10px;
        margin-left: 0;
    }

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

  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    /*width: 44.73%;*/
  }
  .cmn_about_box2{
    /*width: 40.13%;*/
    /*margin-top: -10px;*/
  }
  .cmn_about_title_ja{
    font-size: 64px;
    margin-bottom: 70px;
  }
  .cmn_about_imgs{
    margin-top: 0;
    margin-left: 15px;
  }
  * + .cmn_about_imgs{
    /*margin-top: 30px;*/
  }
  .cmn_about_imgs_item{

  }

  .cmn_about_txt{
    font-size: 18px;
    line-height: 3.6111;
  }
  .cmn_about_title_en{
    font-size: 155px;
  }

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

  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 44.73%;
  }
  .cmn_about_box2{
    width: 40.13%;
    /*width: 41.0%;*/
  }
  .cmn_about_title_ja{
    font-size: 68px;
    margin-bottom: 70px;
  }
}



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

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

}
.pg_world .section.sec1{

}
.pg_world .section.sec2{

}
.pg_world .section.sec3{

}
.pg_world .section.sec4{

}
.pg_world .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_world .section.sec2{
    padding-top: 0;
  }
}
@media (min-width:768px){

  .pg_world{

  }
  .pg_world .section.sec1{

  }
  .pg_world .section.sec2{

  }
  .pg_world .section.sec3{
    padding-top: 125px;
  }
  .pg_world .section.sec4{
    padding-top: 135px;
  }
  .pg_world .section.sec5{

  }

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


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


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


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


}

/* メイン部分 */

/* About */
.world_about{
  padding-top: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.world_about_title{
  font-size: 22px;
  text-align: center;
}
.world_about_title_en{
  font-size: 2.279em;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 0.8387;
  color: #393939;
}
.world_about_title_ja{
  font-size: 1em;
  font-weight: 900;
  line-height: 1.3235;
  letter-spacing: 0;
  /*margin-top: -1.5441em;*/
  margin-top: -0.7058em;
  margin-right: -0.7352em;
  position: relative;
  z-index: 1;
}
.world_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.888;
  text-align: justify;
  margin-top: 20px;
}

/* 照明について */
.world_light{
  display: flex;
  flex-wrap: wrap;
  margin-left: -35px;
  margin-right: -35px;
  position: relative;
  z-index: 1;
}
* + .world_light{
  margin-top: 100px;
}
.world_light_item{
  width: 100%;
  padding-left: 35px;
  padding-right: 35px;
}
.world_light_item:nth-child(n+2){
  margin-top: 40px;
}
.world_light_item:nth-child(3n+2){
  /*margin-top: 250px;*/
}
.world_light_item:nth-child(3n){
  /*margin-top: 535px;*/
}
.world_light_item_inner{
  
}
.world_light_title{
  font-size: 28px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.world_light_title_en{
  font-size: 1.3392em;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: #393939;
}
.world_light_title_ja{
  font-size: 1em;
  font-weight: 900;
  line-height: 1.4;
  margin-top: -0.835em;
}
.world_light_title2{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
.world_light_txt{
  
}
.world_light_img{
  
}
.world_light_img.img_fit:before{
  padding-top: 119.565%;
}

.world_light_parts{
  position: absolute;
  z-index: -1;
}
.world_light_parts.pos1{
  width: calc(389px * var(--home-about-parts-resize));
  top: 0;
  right: 0;
  -webkit-transform: translate(-8%, 21%);
  transform: translate(-8%, 21%);
}
.world_light_parts.pos2{
  width: calc(278px * var(--home-about-parts-resize));
  bottom: 0;
  left: 0;
  -webkit-transform: translate(19%, -55%);
  transform: translate(19%, -55%);
}
.world_light_parts.pos3{
  width: calc(278px * var(--home-about-parts-resize));
  bottom: 0;
  left: 0;
  -webkit-transform: translate(61%, 29%);
  transform: translate(61%, 29%);
}

/* 融合 */
.world_fusion{
  
}
.world_fusion_title{
  text-align: center; 
}
.world_fusion_title_en{
  font-size: 45px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 0.8387;
  color: var(--sub-color);;
}
.world_fusion_title_ja{
  font-size: 28px;
  font-weight: 900;
  margin-top: 25px;
}
.world_fusion_txt{
  margin-top: 15px;
}

/* シーン */
.world_scene{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.world_scene_box1{
  width: 100%;
  /*width: 49.01%;*/
}
.world_scene_box2{
  width: 100%;
  /*width: 44.73%;*/
  margin-top: 10px;
}
.world_scene_title_en{
  font-size: 54px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 0.8387;
  color: #393939;
}
.world_scene_title_ja{
  font-size: 34px;
  font-weight: 900;
}
.world_scene_txt{
  margin-top: 10px;
}

/* シーンリスト */
.world_scene_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .world_scene_list{
  margin-top: 50px;
}
.world_scene_list_item{
  width: 50%;
  padding-left: 5px;
  padding-right: 5px;
}
.world_scene_list_item:nth-child(even){
  margin-top: 50px;
}
.world_scene_list_item_inner{
  position: relative;
  z-index: 1;
}
.world_scene_list_item_img{
  
}
.world_scene_list_item_img.img_fit:before{
  padding-top: 65.608%;
}
.world_scene_list_item_title{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: rgba(0,0,0,0.8);
}

@media (max-width:767px){

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


  /* About */
  .world_about{
    padding-top: 60px;
    margin-bottom: 30px;
  }
  .world_about_title{
    font-size: 40px;
    text-align: center;
  }
  .world_about_title_en{
    font-size: 2.279em;
  }
  .world_about_title_ja{
    font-size: 1em;
  }
  .world_about_txt{
    font-size: 18px;
    line-height: 1.888;
    text-align: center;
    margin-top: 35px;
  }
  
  

  /* 照明について */
  .world_light{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
  .world_light_item{
    width: 33.333%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .world_light_item:nth-child(3n+2){
    margin-top: 100px;
  }
  .world_light_item:nth-child(3n){
    margin-top: 200px;
  }
  .world_light_item_inner{

  }
  .world_light_title{
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .world_light_title_en{
    font-size: 1.3392em;
  }
  .world_light_title_ja{
    font-size: 1em;
    margin-top: -0.835em;
  }
  .world_light_title2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  /* 融合 */
  .world_fusion{

  }
  .world_fusion_title{
    text-align: center; 
  }
  .world_fusion_title_en{
    font-size: 90px;
  }
  .world_fusion_title_ja{
    font-size: 40px;
    margin-top: 25px;
  }
  .world_fusion_txt{
    margin-top: 15px;
    text-align: center;
  }
  
  /* シーン */
  .world_scene{
  }
  .world_scene_box1{
    /*width: 49.01%;*/
  }
  .world_scene_box2{
    /*width: 44.73%;*/
    /*margin-top: -12px;*/
  }
  .world_scene_title_en{
    font-size: 64px;
  }
  .world_scene_title_ja{
    font-size: 36px;
  }
  .world_scene_txt{
    margin-top: 10px;
  }

  /* シーンリスト */
  .world_scene_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .world_scene_list{
    margin-top: 50px;
  }
  .world_scene_list_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .world_scene_list_item:nth-child(even){
    margin-top: 100px;
  }
  .world_scene_list_item_title{
    font-size: 16px;
    padding: 15px 10px;
  }
  
}
@media (min-width:1024px){

  /* 照明について */
  .world_light{
    margin-left: -15px;
    margin-right: -15px;
  }
  .world_light_item{
    width: 33.333%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .world_light_item:nth-child(3n+2){
    margin-top: 250px;
  }
  .world_light_item:nth-child(3n){
    margin-top: 535px;
  }
  .world_light_item_inner{

  }
  .world_light_title{
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .world_light_title2{
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* 融合 */
  .world_fusion{

  }
  .world_fusion_title{
    text-align: center; 
  }
  .world_fusion_title_en{
    font-size: 105px;
  }
  .world_fusion_title_ja{
    font-size: 45px;
    margin-top: 25px;
  }
  .world_fusion_txt{
    margin-top: 15px;
    text-align: center;
  }
  
  /* シーン */
  .world_scene{
  }
  .world_scene_box1{
    /*width: 49.01%;*/
  }
  .world_scene_box2{
    /*width: 44.73%;*/
    /*margin-top: -12px;*/
  }
  .world_scene_title_en{
    font-size: 90px;
  }
  .world_scene_title_ja{
    font-size: 42px;
  }
  .world_scene_txt{
    margin-top: 20px;
  }

  /* シーンリスト */
  .world_scene_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .world_scene_list{
    margin-top: 100px;
  }
  .world_scene_list_item{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .world_scene_list_item:nth-child(even){
    margin-top: 150px;
  }
  .world_scene_list_item_title{
    font-size: 18px;
    padding: 15px 10px;
  }
  .world_scene_list + .read_more{
    margin-top: 75px;
  }
  
}
@media (min-width:1200px){

  /* About */
  .world_about{
    padding-top: 60px;
    margin-bottom: 50px;
  }
  .world_about_title{
    font-size: 50px;
    text-align: center;
  }
  .world_about_txt{
    font-size: 18px;
    margin-top: 35px;
  }

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

  /* About */
  .world_about{
    padding-top: 60px;
  }
  .world_about_title{
    font-size: 68px;
    text-align: center;
  }
  .world_about_txt{
    font-size: 18px;
    margin-top: 35px;
  }
  
  /* 照明について */
  .world_light{
    margin-left: -35px;
    margin-right: -35px;
  }
  .world_light_item{
    width: 33.333%;
    padding-left: 35px;
    padding-right: 35px;
  }
  .world_light_item:nth-child(3n+2){
    margin-top: 250px;
  }
  .world_light_item:nth-child(3n){
    margin-top: 535px;
  }
  .world_light_item_inner{

  }
  .world_light_title{
    font-size: 46px;
  }
  .world_light_title2{
    font-size: 22px;
  }
  
  /* 融合 */
  .world_fusion{
    
  }
  .world_fusion_title{
  }
  .world_fusion_title_en{
    font-size: 155px;
  }
  .world_fusion_title_ja{
    font-size: 56px;
    margin-top: 25px;
  }
  .world_fusion_txt{
  }
  
  /* シーン */
  .world_scene{
  }
  .world_scene_box1{
    width: 48%;
  }
  .world_scene_box2{
    width: 50%;
    margin-top: -12px;
  }
  .world_scene_title_en{
    font-size: 125px;
  }
  .world_scene_title_ja{
    font-size: 60px;
  }
  .world_scene_txt{
    margin-top: 20px;
  }

  /* シーンリスト */
  .world_scene_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .world_scene_list{
    margin-top: 100px;
  }
  .world_scene_list_item{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .world_scene_list_item:nth-child(even){
    margin-top: 150px;
  }
  .world_scene_list_item_title{
    font-size: 18px;
    padding: 15px 10px;
  }
  
}
@media (min-width:1720px){

  .world_light_title{
    font-size: 56px;
  }
  .world_light_title2{
    font-size: 25px;
  }
  
  /* シーン */
  .world_scene{
  }
  .world_scene_box1{
    width: 49.01%;
  }
  .world_scene_box2{
    width: 44.73%;
    margin-top: -12px;
  }
  .world_scene_title_en{
    font-size: 155px;
  }
  .world_scene_title_ja{
    font-size: 68px;
  }

}







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

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

}
.pg_artist .section.sec1{

}
.pg_artist .section.sec2{
  padding-bottom: 0;
}
.pg_artist .section.sec3{
  padding-top: 0;
  /*margin-top: -50px;*/
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  
  .pg_artist .section.sec3 .home_about_parts.pos2{
    transform: translate(50%, -27%);
  }
  
}
@media (min-width:768px){

  .pg_artist{

  }
  .pg_artist .section.sec1{

  }
  .pg_artist .section.sec2{
    padding-bottom: 0;
  }
  .pg_artist .section.sec3{
    padding-top: 0;
    margin-top: -50px;
  }
  
  .pg_artist .section.sec3 .home_about_parts.pos3{
    transform: translate(-30%, 110%);
  }
  

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

  .pg_artist .section.sec3 .home_about_parts.pos3{
    transform: translate(-30%, 110%);
  }
}
@media (min-width:1200px){


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

  .pg_artist .section.sec3 .home_about_parts.pos2{
    transform: translate(36%, -16%);
  }
  .pg_artist .section.sec3 .home_about_parts.pos3{
    transform: translate(-22%, 40%);
  }
  
}
@media (min-width:1720px){


}

/* メイン部分 */

/* シーンデザイン */
.artist_scene_contents{
  
}
.artist_scene_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
.artist_scene_contents_row .anchor{
  width: 100%;
}
.artist_scene_contents_row + .artist_scene_contents_row{
  border-top: 1px solid var(--sub-color);
  /*margin-top: 50px;*/
}
.artist_scene_contents_box1{
  width: 55.26%;
  width: 100%;
}
.artist_scene_contents_box2{
  width: 38.48%;
  width: 100%;
  margin-top: 20px;
}
.artist_scene_contents_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 20px;
}
.artist_scene_contents_head_num{
  width: 70px;
  font-size: 60px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #393939;
}
.artist_scene_contents_head_title{
  width: calc(100% - 70px);
  font-size: 25px;
  padding-bottom: 0;
}
.artist_scene_contents_head_title_p1{
  font-size: 1em;
  font-weight: 900;
}
.artist_scene_contents_head_title_p2{
  font-size: 0.5em;
  font-weight: 900;
  margin-top: 1em;
  margin-top: 0.5em;
}
.artist_scene_contents_img{
  
}
.artist_scene_contents_img.img_fit:before{
  padding-top: 68.376%;
}


@media (max-width:767px){

}
@media (min-width:768px){
  
  
  /* シーンデザイン */
  .artist_scene_contents{

  }
  .artist_scene_contents_row{
    /*padding-top: 40px;*/
    /*padding-bottom: 80px;*/
  }
  .artist_scene_contents_box1{
    width: 55.26%;
    width: 58%;
  }
  .artist_scene_contents_box2{
    width: 38.48%;
    width: 38%;
    margin-top: 10px;
  }
  .artist_scene_contents_head{
    margin-bottom: 30px;
  }
  .artist_scene_contents_head_num{
    width: 100px;
    font-size: 80px;
  }
  .artist_scene_contents_head_title{
    width: calc(100% - 100px);
    font-size: 27px;
    padding-bottom: 5px;
  }
  .artist_scene_contents_head_title_p1{
    font-size: 1em;
  }
  .artist_scene_contents_head_title_p2{
    font-size: 0.5em;
    margin-top: 0.7em;
  }

  .artist_scene_contents_row:nth-child(odd) .artist_scene_contents_box1{

  }
  .artist_scene_contents_row:nth-child(odd) .artist_scene_contents_box2{

  }
  .artist_scene_contents_row:nth-child(even) .artist_scene_contents_box1{
    order: 2;
  }
  .artist_scene_contents_row:nth-child(even) .artist_scene_contents_box2{
    order: 1;
  }
  
}
@media (min-width:1024px){

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

  /* シーンデザイン */
  .artist_scene_contents{

  }
  .artist_scene_contents_row{
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .artist_scene_contents_box1{
    width: 55.26%;
  }
  .artist_scene_contents_box2{
    width: 38.48%;
    margin-top: 40px;
  }
  .artist_scene_contents_head{
    margin-bottom: 30px;
  }
  .artist_scene_contents_head_num{
    width: 140px;
    font-size: 120px;
  }
  .artist_scene_contents_head_title{
    width: calc(100% - 140px);
    font-size: 40px;
    padding-bottom: 5px;
  }
  .artist_scene_contents_head_title_p1{
    font-size: 1em;
  }
  .artist_scene_contents_head_title_p2{
    font-size: 0.5em;
    margin-top: 1em;
  }

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

  /* シーンデザイン */
  .artist_scene_contents{

  }
  .artist_scene_contents_row{
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .artist_scene_contents_box1{
    /*width: 55.26%;*/
  }
  .artist_scene_contents_box2{
    /*width: 38.48%;*/
    margin-top: 20px;
  }
  .artist_scene_contents_head{
    margin-bottom: 60px;
  }
  .artist_scene_contents_head_num{
    width: 205px;
    font-size: 160px;
  }
  .artist_scene_contents_head_title{
    width: calc(100% - 205px);
    font-size: 48px;
    padding-bottom: 5px;
  }
  .artist_scene_contents_head_title_p1{
    font-size: 1em;
  }
  .artist_scene_contents_head_title_p2{
    font-size: 0.5em;
    margin-top: 1em;
  }

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

  /* シーンデザイン */
  .artist_scene_contents_head_num{
    width: 205px;
    font-size: 160px;
  }
  .artist_scene_contents_head_title{
    width: calc(100% - 205px);
    font-size: 50px;
    padding-bottom: 5px;
  }

}




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

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


}

/* メイン部分 */

/* インタビュー */
.interview_contents{
  
}
* + .interview_contents{
  margin-top: 50px;
}
.interview_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.interview_contents_row + .interview_contents_row{
  margin-top: 50px;
}
.interview_contents_box1{
  width: 100%;
}
.interview_contents_box2{
  width: 100%;
  margin-top: 15px;
}
.interview_contents_box3{
  width: 100%;
}
.interview_contents_img{
  
}
.interview_contents_img.img_fit:before{
  padding-top: 70.671%;
}
.interview_contents_img2{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.interview_contents_img2.img_fit:before{
  padding-top: 250px;
}

.interview_contents_title1{
  margin-bottom: 20px;
}
.interview_contents_title1_line{
  display: flex;
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0d;
}
.interview_contents_title1_line + .interview_contents_title1_line{
  margin-top: 12px;
}
.interview_contents_title1_line p{
  background: var(--sub-color);
  padding: 5px 10px 7px;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.interview_contents_title1_line:first-child p:before{
  content: "Q.";
}
.interview_contents_title1_line:nth-child(n+2) p{
  padding-left: 28px;
}

.interview_contents_title2{
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-indent: -1em;
    padding-left: 1em;
}
.interview_contents_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
  margin-top: 15px;
}

.interview_contents + .read_more{
  margin-top: 40px;
}

@media (max-width:767px){

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


  /* インタビュー */
  * + .interview_contents{
    margin-top: 70px;
  }
  
  .interview_contents_title1_line{
    font-size: 22px;
  }
  .interview_contents_title1_line p{
    line-height: 1.2;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 35px;
  }
  .interview_contents_title2{
    font-size: 28px;
  }
  .interview_contents_txt{
    font-size: 16px;
    line-height: 2.2;
    margin-top: 20px;
  }
  
  .interview_contents_img2.img_fit:before{
    padding-top: 400px;
  }
  
  .interview_contents + .read_more{
    margin-top: 50px;
  }
  
}
@media (min-width:1024px){

  /* インタビュー */
  .interview_contents{

  }
  * + .interview_contents{
    /*margin-top: 110px;*/
  }
  .interview_contents_row{
  }
  .interview_contents_row + .interview_contents_row{
    margin-top: 50px;
  }
  .interview_contents_box1{
    width: 42%;
  }
  .interview_contents_box2{
    width: 54%;
    margin-top: 0;
  }
  .interview_contents_title1{
    margin-bottom: 20px;
  }
  .interview_contents_title1_line{
    font-size: 20px;
  }
  .interview_contents_title1_line + .interview_contents_title1_line{
    margin-top: 12px;
  }
  .interview_contents_title1_line p{
    padding: 2px 15px 5px;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 38px;
  }

  .interview_contents_title2{
    font-size: 24px;
  }
  .interview_contents_txt{
    /*font-size: 18px;*/
    /*line-height: 2.777;*/
    /*margin-top: 35px;*/
  }
  
  .interview_contents_row:nth-child(odd) .interview_contents_box1{

  }
  .interview_contents_row:nth-child(odd) .interview_contents_box2{

  }
  .interview_contents_row:nth-child(even) .interview_contents_box1{
    order: 2;
  }
  .interview_contents_row:nth-child(even) .interview_contents_box2{
    order: 1;
  }
  
  .interview_contents_row:nth-child(odd) .interview_contents_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .interview_contents_row:nth-child(even) .interview_contents_img{
    margin-right: var(--margin-for-device-side-w);
  }
  
}
@media (min-width:1200px){


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

  /* インタビュー */
  .interview_contents{

  }
  * + .interview_contents{
    margin-top: 110px;
  }
  .interview_contents_row{
  }
  .interview_contents_row + .interview_contents_row{
    margin-top: 50px;
  }
  .interview_contents_box1{
    width: 42.76%;
  }
  .interview_contents_box2{
    width: 49.01%;
  }
  .interview_contents_title1{
    margin-bottom: 20px;
  }
  .interview_contents_title1_line{
    font-size: 24px;
  }
  .interview_contents_title1_line + .interview_contents_title1_line{
    margin-top: 12px;
  }
  .interview_contents_title1_line p{
    padding: 2px 15px 5px;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 42px;
  }

  .interview_contents_title2{
    font-size: 34px;
  }
  
  .interview_contents_img2.img_fit:before{
    padding-top: 500px;
  }
  
  .interview_contents + .read_more{
    margin-top: 70px;
  }
}
@media (min-width:1720px){

  /* インタビュー */
  .interview_contents{

  }
  * + .interview_contents{
    margin-top: 110px;
  }
  .interview_contents_row{
  }
  .interview_contents_row + .interview_contents_row{
    margin-top: 115px;
  }
  .interview_contents_box1{
    width: 42.76%;
  }
  .interview_contents_box2{
    width: 49.01%;
    width: 50.01%;
  }
  .interview_contents_title1{
    margin-bottom: 20px;
  }
  .interview_contents_title1_line{
    font-size: 30px;
  }
  .interview_contents_title1_line + .interview_contents_title1_line{
    margin-top: 12px;
  }
  .interview_contents_title1_line p{
    padding: 2px 15px 5px;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 50px;
  }

  .interview_contents_title2{
    font-size: 40px;
  }
  .interview_contents_txt{
    font-size: 18px;
    line-height: 2.777;
    margin-top: 35px;
  }
  
  .interview_contents_img2.img_fit:before{
    padding-top: 650px;
  }
  
  .interview_contents + .read_more{
    margin-top: 90px;
  }

}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

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

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}


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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}
@media (min-width:1470px){
  .cmn_cat_nav .webgene-item{
    font-size: 18px;
  }
}

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

/* 一覧（サムネあり） */
.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){


}



/*******************************
*　
********************************/
.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){


}


/**/
.parallax{
  overflow: hidden;
}
.parallax_img{
  position: absolute;
  z-index: 1;
  top: -10%;
  bottom: -10%;
  left: 0;
  right: 0;
}
.parallax_img{
  transition: 0.05s all;
}
.parallax_img.img_fit:before{
  padding: 0;
  height: 100%;
}


/*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: #000;
  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){

}

