@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #8e261f;
  --sub-color: #000000;
  --txt-color: #000000;

  /* フォント関連 */
  --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", sans-serif;
  --font-mincho:  "Shippori Mincho", serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  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.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

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

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

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

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

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


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


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

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


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



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

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo img{
    width: 68px;
  }

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

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

    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 20px 10px 31px;
    transition: all .2s;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ロゴ */
  .hdr_logo{
    position: absolute;
    left: 0.7em;
    top: 0.5em;
    width: 6.4%;
    transition: all .2s;
  }
  .hdr_logo img{
    /*width: 123px;*/
    height: 128px;
    height: auto;
  }

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    display: block;
    width: 200px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1.2;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50px;
    background: #e5e5e5;
    color: #181818;
    padding: 10px 20px;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: 0.2s all;
    cursor: pointer;
  }
  .hdr_contact_btn p{
    font-size: 16px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .hdr_contact_btn p:before{
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 16px;
    color: var(--txt-color);
  }
  .hdr_contact_btn:hover{
    background: var(--main-color);
    color: #FFF;
  }
  .hdr_contact_btn:hover p:before{
    color: #FFF;
  }
  .hdr_right{
    margin-left: 60px;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
    padding: 18px 20px 27px 10px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }
  .hdr_right{
    margin-left: 60px;
    margin-right: 0;
  }

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{

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

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

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

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

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

  .hdr_contact_btn{

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

  }
  .gnav_item_en{
    display: none;
  }

  .gnav_item.fw{
    display: none;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* 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 - 63px);
  padding-top: 100svh;
}

/* MVテキスト */
.mv_txt{
  width: 100%;
  position: absolute;
  z-index: 2;
  top:auto;
  bottom: 3%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt1{
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.mv_txt2{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.27em;
  margin-top: 20px;
}
.mv_txt2 p{
  letter-spacing: 0.025em;
}

/* スライダーの場合 */
.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: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 0;
    font-size: 32px;
  }
  .mv_txt1{
    font-size: 40px;
  }
  .mv_txt2{
    font-size: 18px;
  }
}
@media (min-width:1024px){


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

  /* MVテキスト */
  .mv_txt{
    left: 0;
    font-size: 32px;
  }
  .mv_txt1{
    font-size: 40px;
  }
  .mv_txt2{

  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
    padding-top: calc(100svh - 63px);
  }

  /* MVテキスト */
  .mv_txt{
    left: 0;
    font-size: 32px;
  }
  .mv_txt1{
    font-size: 60px;
  }
  .mv_txt2{

  }

}

.mv.yt{
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.mv.yt iframe,
.mv.yt video {
  border: 0;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 177.77777778vh; /* 16:9比率 */
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.005);
  pointer-events: none; /* 操作禁止なら */
}

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

.footer{
  margin-top: 90px;
}

.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;
}
.body_home .ftr_copy{
  margin-top: 120px;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  padding: 7px;
  margin-top:0;
}
.ftr_copy p{
  letter-spacing: 0;
}
.ftr_copy a:hover{
  opacity: rgba(255,255,255,0.8)
}

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

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

}
.ftr_contact_box1_tt1.home_sec2_slide_tt2{
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box1_tt2.tt2_ja{
  font-size: 16px;
  letter-spacing: 0;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  line-height: 2.125em;
  margin-top: 37px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  padding: 19px 23px;
  margin-inline:auto;
  transition: all .2s;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0.075em;
}
.link_0.item1:hover{
  background: var(--main-color);
  color: #fff !important;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background: var(--main-color);
}

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

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


.ftr_1{
  background: #f8f8f8;
  padding-top: 50px;
  padding-bottom: 50px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.ftr_1_box1{
  width: 100%;
  position: relative;
}
.ftr_1_box1:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translate(50%, -50%);
}
.ftr_logo{

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

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

}
.ftr_link{

}
.ftr_link p {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 6px;
  letter-spacing: 0.025em;
}
.ftr_link p:before{
  content: "■";
  display: block;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 500;
  margin-right: 14px;
}

.link_num:hover,
.ftr_add_txt a:hover,
.ftr_link:hover{
  color: var(--main-color);
}
.ftr_1 a:hover{
  color: var(--main-color);
}
.ftr_1_box3{
  width: 100%;
}

@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

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

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{

  }
  .ftr_1_box3{
    display: none;
  }
  .ftr_add{
    margin-top: 30px;
    text-align: center;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 130px;
    margin-inline:auto;
  }

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

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

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

  .ftr_1_box3{

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

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding-top: 44px;
  }
  .ftr_1_box1:after{

  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 60px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{
    margin-top: 51px;
  }
  .link_0{

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

  }
  .ftr_contact_box2_img:before{

  }

  .ftr_1{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ftr_1_box{
    /*    justify-content: space-between;
        align-items: flex-start;*/
  }
  .ftr_1_box1{

  }
  .ftr_logo{
    display: block;
    width: 280px;
    margin-inline:auto;
  }
  .ftr_1_box2{

  }
  .ftr_links {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -40px;
    position: relative;
  }
  .ftr_link {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 40px;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
    white-space:nowrap;
  }
  .ftr_link p:before{
    content: "■";
    display: block;
    font-size: 16px;
    font-family: var(--font-ja);
    font-weight: 500;
    margin-right: 14px;
  }
  .ftr_1_box3{
    margin-top: 30px;
  }


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

}
@media (min-width:1024px){
  .footer{
    margin-top: 150px;
  }
  .ftr_1_box1{
    width: 35%;
  }
  .ftr_logo{
    width: 200px;
    margin-inline: 0;
    margin-bottom: 0;
  }
  .ftr_1_box1:after{
    width: 1px;
    max-height: 380px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 50%;
    right: 10.6%;
    transform: translateY(-50%);
  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 100px;
  }
  .ftr_1_box2{
    width: 40%;
  }
  .ftr_link {
    width: 100%;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }
  .ftr_1_box3{
    width: 20%;
    margin-top: 0;
  }

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

  }
  .ftr_contact_box1{
    width: 61.44%;
  }
  .ftr_logo{
    width: 300px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 100px;
  }
  .ftr_contact_box1_tt2.tt2_ja{
    margin-top: 12px;
    margin-bottom: 33px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

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

  .ftr_1_box2{
    width: 63.22%;
    width: 27.64%;
    padding-top: 90px;
    padding-top: 0;
    margin-top: -130px;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    width: 100%;
    padding-inline: 42px;
    margin-bottom: 0;
  }
  .ftr_link p:after {
    width: 100%;
  }
}
@media (min-width:1366px){
  .ftr_1_box2 {
    width: 63.22%;
    width: 37.64%;
    padding-top: 90px;
  }
}
@media (min-width:1470px){
  .ftr_logo{
    width: auto;
  }
  .ftr_1{
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .ftr_1_box1:after {
    top: 50%;
    right: 7.3%;
  }
  .ftr_1_box2{
    width: 42.84%;
    margin-top: -180px;
    padding-top: 0;
    padding-left: 0;
  }
  .ftr_1_box3{
    width: 14.96%;
    margin-top: 0;
  }
}
@media (min-width:1720px){
  .ftr_contact_box2_inner{
    margin-right: calc(758px - 50vw);
  }
  .ftr_1_box2{
    width: 42.84%;
    margin-top: -145px;
    padding-top: 0;
    padding-left: 0;
  }
  .ftr_1_box3{
    width: 11.96%;
    margin-top: 15px;
  }
  .ftr_link p {
    padding-bottom: 3px;
  }
  .body_home .ftr_copy{
    margin-top: 250px;
  }
  .ftr_copy{
    margin-top: 0;
  }
}

/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 180px;
}
.pg_header_mv_img:after{
  display: none;
}
*

/* MVタイトル */
.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_ja{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.875;
  letter-spacing: 0;
  color: #FFF;
}
.pg_header_mv_img:after{
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.pg_header_mv_img{
  width:  100%;
}

@media (min-width:768px){
  .pg_header{
    margin-bottom: 50px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 250px;
  }

  /* MVタイトル */
  .pg_header_title_ja{
    font-size: 28px;
  }

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

  /* MVタイトル */
  .pg_header_title_ja{
    font-size: 35px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 130px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }

  /* MVタイトル */
  .pg_header_title_ja{
    font-size: 50px;
  }
}
@media (min-width:1366px){


  /* MVタイトル */
  .pg_header_title_ja{
    font-size: 50px;
  }
}

@media (min-width: 1720px) {

  /* MVタイトル */
  .pg_header_title_ja{
    font-size: 50px;
  }

}

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

/* テーブル用 */
.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 #888888;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #e4e6e4;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #FFF;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #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{
  width: 320px;
  font-size: 15px;
  font-family: var(--font-mincho);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background: #f8f8f8;
  border: 1px solid #737373;
  border-radius: 50px;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "";
  position: absolute;
  width: 50px;
  width: 30px;
  height: 1px;
  background: #000;
  z-index: 1;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF !important;
  background: var(--main-color);
  border: 1px solid var(--main-color);
}
.read_more a:hover:after{
  background: #FFF;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 40px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
.tt2_en{
  font-size: 70px;
}
.tt2_en strong{
  font-weight: 500;
  color: var(--main-color);
}
.tt2_ja{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-top: 8px;
}


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

}

/*　テキスト　*/
.cmn_txt{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 2.25;
  color: var(--txt-color);
  text-align: justify;
}
.cmn_txt.wh{
  font-weight: 500;
  line-height: 2.125;
  color: #FFF;
}
.cmn_txt p{
  letter-spacing: 0;
}
.cmn_txt.wh p{
  letter-spacing: 0.075em;
}
@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 #888888;
  }


}
@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{
    width: 365px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "";
    width: 50px;
  }
  .read_more a:hover:after{

  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (min-width:1024px){

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

  /* ボタン */
  .read_more a{
    width: 365px;
    padding: 24px 20px;
    margin: 5px 5px;
  }

  /* 見出し */
  .tt2_en{
    font-size: 140px;
  }
}
@media (min-width:1200px){
  /* 見出し */
  .tt2_en{
    font-size: 175px;
  }
}

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

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

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{
padding-bottom: 0;
}
.pg_home .section.sec5{
  padding-top: 0;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}

@media (max-width:374px){

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

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

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 60px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 80px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 120px;
    /*padding-top: 0px;*/
  }
  .pg_home .section.sec2{
    padding-top: 70px;
    padding-bottom: 145px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{
    padding-top: 105px;
  }
  .pg_home .section.sec5{
    padding-top: 80px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 150px;
  }

}
@media (min-width:1470px){
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 180px;
  }
  .pg_home .section.sec7{
    padding-top: 173px;
  }
}

/* 流れる英語 */
.flowing_letters{
  /*font-size: 32px;*/
  font-size: clamp(2rem, 1rem + 9.3vw, 10.9375rem);
  font-size: clamp(2rem, 0.8rem + 3.5vw, 10.9375rem);
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  color: #000;
  text-align: center;
  margin-top: 0;
}
.flowing_letters p{
  letter-spacing: 0;
  white-space: nowrap;
  margin: 0 0.3em;
}

/*sec1*/
.home_about_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
  order: 2;
  margin-top: 50px;
}
.home_about_ttile{
  font-size: 30px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1.53;
  letter-spacing: 0;
  margin-bottom: 25px;
}
.home_about_txt{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 2.25;
}
.home_about_txt p{
  letter-spacing: 0;
}
.home_about_box2{
  width: 70%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  order: 1;
}
.home_about_box_img{

}

/*sec2*/
.home_solutions{

}

/*リスト一覧*/
.home_solutions_lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.home_solutions_list{
  width: 100%;

}
.home_solutions_list_inner{
  background: #f1f0f0;
  padding: 15px 15px;
  box-shadow: 0.5px 0.866px 3.8px 0.2px rgba(0, 0, 0, 0.35);
  height: 100%;
  height:auto;
}
.home_solutions_list:nth-child(n+2){
  margin-top: 15px;
}
.home_solutions_list_cat{
  display: block;
  font-size: 15px;
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0;
  color: #FFF;
  text-align: center;
  background: var(--main-color);
  padding: 3px 10px;
}
.home_solutions_list_tt{
  font-size: 19px;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}
.home_solutions_list_line{
  display: flex;
  justify-content: center;
}
.home_solutions_list_line_txt{
  display: inline-block;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0;
  background: #FFF;
  padding: 0 10px;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.home_solutions_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.home_solutions_item{
  width: 100%;
}
.home_solutions_item:nth-child(n+2){
  margin-top: 10px;
}
.home_solutions_item p{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  padding: 10px 0;
  height: auto;
  background: #e5e5e5;
  border: 1px solid #737373;
}
.home_solutions_item p strong{
  font-size: 12px;
  font-weight: 600;
}


/**/
.home_solutions_surport{
  margin-top: 50px;
}
.home_solutions_surport_tt{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
.home_solutions_surport_tt:before,
.home_solutions_surport_tt:after{
  content: "";
  position: absolute;
  width: 45px;
  height: 1px;
  background: #000;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_solutions_surport_tt:before{
  left: 0;
}
.home_solutions_surport_tt:after{
  right: 0;
}
.home_solutions_surport_line_txt{
  display: block;
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0;
  color: #FFF;
  text-align: center;
  background: var(--main-color);
  padding: 3px 0;
  margin-top: 20px;
}
.home_solutions_surport_txt{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
.home_solutions_surport_itmes{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_solutions_surport_item{
  width: 100%;
}
.home_solutions_surport_item:nth-child(n+2){
  margin-top: 15px;
}
.home_solutions_surport_item p{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  background: #e5e5e5;
  border: 1px solid #737373;
  padding: 15px 3px;
}

/*WORKS*/
.home_works_slide{

}
.home_works_slide_inner{

}
.home_works_imgs_boxs{
  display: flex;
}
.home_works_imgs_box{
  display: flex !important;
}
.home_works_imgs_box1{
  width: 32.78%;
  margin-right: 0.25em;
}
.home_works_imgs_box1_1{

}
.home_works_imgs_box1_1 + .home_works_imgs_box1_1{
  padding-top: 4px;
}
.home_works_imgs_box1_1_img{
  height: 100%;
}
.home_works_imgs_box1_1_img img{
  height: 100%;
}

.home_works_imgs_box2{
  width: 66.48%;
  margin-right: 0.25em;
}
.home_works_imgs_box2_img{
  height: 100%;
}
.home_works_imgs_box2_img img{
  height: 100%;
}
.home_works .tt2{
  margin-top: -20px;
     margin-top: 0;
  position: relative;
  z-index: 1;
}
.home_works .tt2_ja{
  text-align: left;
}

/* sec4 */
/* MESSAGE */
.home_message{

}
.home_message_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_message_box1{
  width: 100%;
}
.home_message_box1_img{

}
.home_message_box1_img:before{
  /*padding-top: 90.15%;*/
}
.home_message_box2{
  width: 100%;
  margin-top: 30px;
}
.home_message_title{
  font-size: 22px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1.666;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.home_message_txt{
  letter-spacing: 0;
  line-height: 2.125;
}

/*sec5*/
.home_insta .tt2_en{
  font-size: 35px;
}
.home_insta_outer .read_more{

}
.home_insta_outer .read_more a{
  font-family: var(--font-mincho);
}






@media (min-width:375px){

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

  
  .flowing_letters{
    font-size: 80px;
  }
  
  .flowing_letters{
    position: absolute;
    z-index: 2;
    margin-top: 0;
    top: auto;
    bottom: 20px;
    left: 0;
    right: 0;
    color: #FFF;
  }
  .flowing_letters p{
    white-space: nowrap;
    width: 12em;
    padding-right: 3em;
    text-align: left;
  }
  
  .home_works .tt2{
    margin-top: -36px;
       margin-top: 0;
  }
  .pg_home .section.sec3 .tt2_en{
    font-size: 68px;
  }

  .pg_home .section.sec2 .cmn_tt2_en{
    font-size: 77px;
  }


  .home_solutions_item p{
    height: auto;
  }
}
@media (min-width:768px){
  /* 流れる英語 */
  .flowing_letters{
    /*font-size: 65px;*/
    font-size: clamp(4.0625rem, -3.5rem + 12vw, 10.9375rem);
  }
  
  .flowing_letters{
    position: absolute;
    z-index: 2;
    margin-top: 0;
    top: auto;
    bottom: 20px;
    /*top: -125px;*/
    left: 0;
    right: 0;
    color: #FFF;
  }
  .flowing_letters p{
    white-space: nowrap;
    /*width: 12em;*/
    padding-right: 3em;
    text-align: left;
  }

  /*sec2*/
  /*リスト一覧*/
  .home_solutions_lists{
    margin-inline: -20px;
  }
  .home_solutions_list{
    width: 50%;
    padding-inline: 20px;
  }
  .home_solutions_list:nth-child(n+2){
    margin-top: 0;
  }
  .home_solutions_list:nth-child(n+3){
    margin-top: 20px;
  }
  .home_solutions_items{
    margin-top: 30px;
  }
  .home_solutions_item{
    width: 100%;
  }
  .home_about_ttile{
    font-size: 40px;  
  }

  /**/
  .home_solutions_surport_tt:before,
  .home_solutions_surport_tt:after{
    width: 200px;
  }
  .home_solutions_surport_itmes{
    margin-inline: -7.5px;
  }
  .home_solutions_surport_item{
    width: 50%;
    padding-inline: 7.5px;
  }
  .home_solutions_surport_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_solutions_surport_item:nth-child(n+3){
    margin-top: 15px;
  }

  /* WORKS */
  .home_works .tt2{
    margin-top: -65px;
       margin-top: 0;
  }

  /* sec4 */
  /* MESSAGE */
  .home_message{

  }
  .home_message_box{

  }
  .home_message_box1{
    width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .home_message_box1_img{

  }
  .home_message_box1_img:before{

  }
  .home_message_box2{
    width: 100%;
    margin-top: 30px;
  }
  .home_message_title{
    font-size: 28px;
    margin-bottom: 15px;
  }
  .home_message_txt{

  }

  /*sec5*/
  .home_insta .tt2_en{
    font-size: 70px;
  }
  .home_works .tt2_ja{
    text-align: center;
  }
}
@media (min-width:1024px){
  /* 流れる英語 */
  .flowing_letters {
    /*font-size: 90px;*/
  }

  /*sec1*/
  .home_about_box1{
    width: 56.84%;
    order: 1;
    margin-top: 0;
  }
  .home_about_ttile{
    font-size: 50px;
    margin-bottom: 25px;
  }
  .home_about_txt{
    font-size: 16px;
  }
  .home_about_box2{
    width: 30.32%;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    order: 2;
  }

  /*sec2*/
  /*リスト一覧*/
  .home_solutions_lists{
    margin-inline: -20px;
    margin-top: 68px;
  }
  .home_solutions_list{
    width: 50%;
    padding-inline: 20px;
  }
  .home_solutions_list_inner{
    padding: 15px 15px 27px;
  }
  .home_solutions_list:nth-child(n+3){
    margin-top: 25px;
  }
  .home_solutions_list_cat{
    font-size: 18px;
    padding: 3px 10px;
  }
  .home_solutions_list_tt{
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .home_solutions_list_line_txt{
    font-size: 15px;
    padding: 0 15px;
  }
  .home_solutions_items{
    margin-top: 30px;
    margin-inline: -7.5px;
  }
  .home_solutions_item{
    width: 50%;
    padding-inline: 7.5px;
  }
  .home_solutions_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_solutions_item:nth-child(n+3){
    margin-top: 15px;
  }
  .home_solutions_item p{
    font-size: 13px;
    padding: 10px 0;
    height: -webkit-fill-available;
    height:auto;
  }
  .home_solutions_item p strong{
    font-size: 12px;
  }

  /*WORKS*/
  .home_works_slide{

  }
  .home_works_slide_inner{

  }
  .home_works_imgs_boxs{
    display: flex;
  }
  .home_works_imgs_box{
    display: flex;
  }
  .home_works_imgs_box1{
    width: 32.78%;
    margin-right: 0.5em;
  }
  .home_works_imgs_box1_1{
    width: 360px;
  }
  .home_works_imgs_box1_1 + .home_works_imgs_box1_1{
    margin-top: 0.25em;
  }
  .home_works_imgs_box1_1_img{

  }
  .home_works_imgs_box2{
    width: 66.48%;
    width: 730px;
    margin-right: 0.5em;
  }
  .home_works_imgs_box2_img{

  }
  .home_works .tt2{
    margin-top: -80px;
       margin-top: 0;
  }
  .home_works .tt2_ja{
    text-align: center;
  }
  .pg_home .news_list_thumb.col4 .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /* sec4 */
  /* MESSAGE */
  .home_message_box1 {
    width: 60%;
  }
  .home_message_box2{
    display: flex;
    justify-content: center;
  }
  .home_message_title{
    writing-mode: vertical-rl;
    order: 2;
    padding-left: 40px;
  }
  .home_message_txt{
    writing-mode: vertical-rl;
    order: 1;
  }

  /*sec5*/
  .home_insta .tt2_en{
    font-size: 70px;
  }
}
@media (min-width:1200px){
  /* 流れる英語 */
  .flowing_letters {
    /*font-size: 105px;*/
    margin-top: -5px;
  }

  /*sec2*/
  /*リスト一覧*/
  .home_solutions_item{
    width: 33.333%;
    padding-inline: 7.5px;
  }
  .home_solutions_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_solutions_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_solutions_item p{
    font-size: 15px;
    padding: 10px 0;
  }
  /**/
  .home_solutions_surport{
    margin-top: 50px;
  }
  .home_solutions_surport_tt{
    font-size: 30px;
  }
  .home_solutions_surport_tt:before,
  .home_solutions_surport_tt:after{
    width: 350px;
  }
  .home_solutions_surport_tt:before{
    left: 0;
  }
  .home_solutions_surport_tt:after{
    right: 0;
  }
  .home_solutions_surport_line_txt{
    font-size: 20px;
    padding: 3px 0;
    margin-top: 27px;
  }
  .home_solutions_surport_txt{
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .home_solutions_surport_itmes{
    margin-inline: -10px;
  }
  .home_solutions_surport_item{
    width: 25%;
    padding-inline: 10px;
  }
  .home_solutions_surport_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_solutions_surport_item p{
    font-size: 16px;
    padding: 15px 3px;
  }
  .home_solutions .read_more{
    margin-top: 60px;
  }

  /* WORKS */
  .home_works .tt2{
    margin-top: -95px;
       margin-top: 0;
  }
  .home_works .read_more{
    margin-top: 62px;
  }

  /* sec4 */
  /* MESSAGE */
  .home_message{

  }
  .home_message_box{

  }
  .home_message_box1{
    width: 30%;
    margin-left: 0;
    margin-right: 0;
  }
  .home_message_box1_img{

  }
  .home_message_box1_img:before{
    /*padding-top: 90.15%;*/
  }
  .home_message_box2{
    display: flex;
    justify-content: initial;
    width: 67%;
    margin-top: 40px;
  }
  .home_message_title{
    font-size: 28px;
    order: 2;
    padding-left: 15px;
  }
  .home_message_txt{
    order: 1;
  }

  /*sec5*/
  .home_insta .tt2_en{
    font-size: 100px;
  }
  .home_insta .tt2_ja{
    margin-top: 12px;
  }
}
@media (min-width: 1366px) {
  .home_solutions_surport_tt:before,
  .home_solutions_surport_tt:after {
    width: 440px;
  }
}
@media (min-width:1470px){
  /* 流れる英語 */
  .flowing_letters {
    /*font-size: 132px;*/
    margin-top: -10px;
  }

  /*sec1*/
  .home_about_box1{
    width: 56.84%;
  }
  .home_about_ttile{
    font-size: 60px;
    margin-bottom: 25px;
  }
  .home_about_txt{
    font-size: 16px;
  }
  .home_about_box2{
    width: 30.32%;
    margin-top: 80px;
  }

  /*sec2*/
  /*リスト一覧*/
  .home_solutions_lists{
    margin-inline: -20px;
    margin-top: 68px;
  }
  .home_solutions_list{
    width: 33.333%;
    padding-inline: 20px;
  }
  .home_solutions_list_inner{
    padding: 15px 15px 27px;
  }
  .home_solutions_list:nth-child(n+3){
    margin-top: 0;
  }
  .home_solutions_list:nth-child(n+4){
    margin-top: 16px;
  }
  .home_solutions_list_cat{
    font-size: 18px;
    padding: 3px 10px;
  }
  .home_solutions_list_tt{
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .home_solutions_list_line_txt{
    font-size: 15px;
    padding: 0 15px;
  }
  .home_solutions_items{
    margin-inline: -7.5px;
    margin-top: 30px;
  }
  .home_solutions_item{
    width: 33.333%;
    padding-inline: 7.5px;
  }
  .home_solutions_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_solutions_item p{
    font-size: 15px;
    padding: 16px 2px;
    height: -webkit-fill-available;
     height:auto;
  }
  .home_solutions_item p strong{
    font-size: 12px;
    font-size: 10px;
  }

  /**/
  .home_solutions_surport{
    margin-top: 50px;
  }
  .home_solutions_surport_tt{
    font-size: 30px;
  }
  .home_solutions_surport_tt:before,
  .home_solutions_surport_tt:after{
    width: 480px;
  }
  .home_solutions_surport_tt:before{
    left: 0;
  }
  .home_solutions_surport_tt:after{
    right: 0;
  }
  .home_solutions_surport_line_txt{
    font-size: 20px;
    padding: 3px 0;
    margin-top: 27px;
  }
  .home_solutions_surport_txt{
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .home_solutions_surport_itmes{
    margin-inline: -20px;
  }
  .home_solutions_surport_item{
    width: 25%;
    padding-inline: 20px;
  }
  .home_solutions_surport_item p{
    font-size: 16px;
    padding: 15px 3px;
  }
  .home_solutions .read_more{
    margin-top: 95px;
  }

  /* WORKS */
  .home_works .tt2{
    margin-top: -95px;
    margin-top: 0;
  }

  /* sec4 */
  /* MESSAGE */
  .home_message{

  }
  .home_message_box{

  }
  .home_message_box1{
    width: 40.76%;
  }
  .home_message_box1_img{

  }
  .home_message_box1_img:before{
    /*padding-top: 90.15%;*/
  }
  .home_message_box2{
    width: 58.1%;
    margin-top: 85px;
  }
  .home_message_title{
    font-size: 36px;
    padding-left: 40px;
  }
  .home_message_txt{

  }

  /*sec5*/
  .home_insta .tt2_en{
    font-size: 120px;
  }
  .home_insta_outer .read_more{
    margin-top: 60px;
  }
}
@media (min-width:1536px){


}
@media (min-width:1720px){
  /* 流れる英語 */
  .flowing_letters{
    font-size: 165px;
    /*font-size: 175px;*/
  }

  /*sec2*/
  .home_solutions_list_tt{
    font-size: 24px;
  }
  .home_solutions_item p {
    font-size: 15px;
    padding: 16px 0;
    height: -webkit-fill-available;
     height:auto;
  }
  /**/
  .home_solutions_surport_tt:before,
  .home_solutions_surport_tt:after{
    width: 555px;
  }
  .home_solutions .read_more{
    margin-top: 95px;
  }

  /* sec4 */
  /* MESSAGE */
  .home_message{

  }
  .home_message_box{

  }
  .home_message_box1{
    width: 42.76%;
    width: 44.76%;
    margin-left: 0;
    margin-right: 0;
  }
  .home_message_box1_img{

  }
  .home_message_box1_img:before{
    /*padding-top: 90.15%;*/
  }
  .home_message_box2{
    display: flex;
    width: 47.5%;
    width: 48.1%;
    margin-top: 85px;
  }
  .home_message_title{
    font-size: 36px;
    padding-left: 40px;
  }
  .home_message_txt{

  }

  .home_solutions_item p strong{
    font-size: 11px;
  }
}

/*******************************
*　Instagram
********************************/
/* Instagram */
.home_insta_inner{
  width: 100%;
  background: none;
  padding: 20px 10px 0;
  margin-left: auto;
  margin-right: auto;
}
* + .insta_list{
  margin-top: 20px;
}
.insta_list{
  margin-top: 30px;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline: -3.5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline: 3.5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_list_item_inner:before{
  padding-top: 133.064%;
}
.insta_list_item_inner video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.home_insta_outer{
  position: relative;
  padding: 30px 10px;
}
.home_insta_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}
.insta_list .img:before{
  padding-top: 133.064%;
}
@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .insta_list{
    margin-top: 50px;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{

  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }
  .home_insta_outer{
    padding: 34px 0 60px;
  }
  .home_insta_outer:before{
    content: "";
    display: block;
    width: 81.57%;
  }
}
@media (min-width:1024px){

  /*isnta*/
  .insta_list{
    margin-top: 50px;
  }
  .home_insta_title_en{
    font-size: 100px;
  }
  .insta_list .webgene-blog{

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

  }
  .insta_list_item_inner:before{

  }

}
@media (min-width:1200px){
  /*isnta*/
  .insta_list{
    margin-top: 73px;
  }
  .home_insta_inner{
    width: 100%;
    padding: 0px 10px 0;
  }
  .home_insta_title_en{
    font-size: 120px;
  }
  .home_insta .read_more{
    margin-top: 65px;
  }
}
@media (min-width:768px) and  (max-width:1023px){
  .home_feature_list_box1{
    width: 27%;
  }
  .home_feature_list_box2{
    width: 67%;
  }
}


/*******************************
*　
********************************/
.cmn_content_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_content_box1{
  width: 100%;
}


.cmn_tt2_en{
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.125;
  color: #000;
}
.cmn_tt2_en.center{
  text-align: center;
}
.cmn_tt2_en p{
  letter-spacing: 0;
}
.cmn_tt2_en p strong{
  font-weight: 500;
  color: var(--main-color);
}
.cmn_content_box2{
  width: 100%;
  margin-top: 20px;
}
.cmn_tt2_ja{
  font-size: 22px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1.84;
  letter-spacing: 0;
  margin-bottom: 10px;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .cmn_tt2_en{
    font-size: 75px; 
  }
  .cmn_tt2_ja{
    font-size: 24px;
  }

  .pg_flow .section.sec1 .cmn_tt2_en{
    font-size: 66px;
  }
}
@media (min-width:768px){
  .cmn_tt2_en{
    font-size: 100px;
  }
  .cmn_tt2_ja{
    font-size: 38px;
  }
}
@media (min-width:1024px){


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

  }
  .cmn_content_box1{
    width: 34.21%;
    /*width: 35.21%;*/
  }
  .cmn_tt2_en {
    font-size: 90px;
  }
  .cmn_tt2_en p strong{
    font-weight: 500;
  }
  .cmn_content_box2{
    width: 55.26%;
    margin-top: 0;
  }
  .cmn_tt2_ja{
    font-size: 34px;
    margin-bottom: 4px;
    margin-right: -20px;
  }

}
@media (min-width: 1470px) {
  .cmn_tt2_en{
    font-size: 100px;
  }
  .cmn_tt2_ja {
    font-size: 40px;
    margin-bottom: 4px;
    margin-right: -20px;
  }
}
@media (min-width: 1720px) {
  .cmn_tt2_en{
    font-size: 120px;
  }
  .cmn_tt2_ja {
    font-size: 50px;
    margin-bottom: 4px;
    margin-right: -20px;
  }
}

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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

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


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


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


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


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


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


}

/**/

@media (min-width:768px){


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


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


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


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


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


}

/*******************************
*　
********************************/
.pg_flow{

}
.pg_flow .section.sec1{
}
.pg_flow .section.sec2{
}
.pg_flow .section.sec3{
}

@media (max-width:374px){

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

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

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

  }
  .pg_flow .section.sec1{
  }
  .pg_flow .section.sec2{
    padding-top: 85px;
  }
  .pg_flow .section.sec3{
  }


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


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


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


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


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


}

/* 見出し */
.flow_tt2{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.flow_tt2:before,
.flow_tt2:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
}
.flow_tt2:before{

}
.flow_tt2:after{

}
.flow_tt2_ja{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0 10px;
}


/* コンテンツ */
.flow_contents{

}
.flow_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 15px;
  background: #f1f0f0;
  box-shadow: 0.5px 0.866px 3.8px 0.2px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}
.flow_contents_row:after{
  content: "";
  width: 80px;
  aspect-ratio: 8 / 3;
  background: #8e261f;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.flow_contents_row:last-child:after{
  display: none;
}

.flow_contents_row + .flow_contents_row{
  margin-top: 50px;
}
.flow_contents_box1{
  width: 100%;
  margin-bottom: 15px;
}
.flow_contents_box2{
  width: 100%;
}
.flow_contents_box3{
  width: 100%;
  margin-top: 8px;
}
.flow_contents_head{
  background: #8e261f;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  text-align: center;
  padding: 3px 5px;
}
.flow_contents_head2{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.flow_contents_head2_box1{
  width: 50px;
}
.flow_contents_head2_box2{
  width: calc(100% - 50px);
}
.flow_contents_head2_num{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #8e261f;
}
.flow_contents_head2_num:first-letter{
  color: #000;
}
.flow_contents_head2_ja{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.2;
  letter-spacing: 0;
}
.flow_contents_title{
  background: #FFF;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 10px;
}
.flow_contents_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.flow_contents_txt p{
  letter-spacing: 0;
}
.flow_contents_img{

}
.flow_contents_img.img_fit:before{
  padding-top: 67.290%;
}


@media (min-width:768px){


  /* 見出し */
  .flow_tt2{
    margin-bottom: 60px;
  }
  .flow_tt2_ja{
    font-size: 30px;
    margin: 0 20px;
  }


  /* コンテンツ */
  .flow_contents{

  }
  .flow_contents_row{
    padding: 20px 20px ;
  }
  .flow_contents_row:after{
    width: 80px;
  }

  .flow_contents_row + .flow_contents_row{
    margin-top: 50px;
  }
  .flow_contents_box1{
    /*width: 100%;*/
    margin-bottom: 30px;
  }
  .flow_contents_box2{
    /*width: 535px;*/
  }
  .flow_contents_box3{
    /*width: calc(100% - 535px - 65px);*/
    margin-top: 15px;
  }
  .flow_contents_head{
    font-size: 18px;
    padding: 3px 5px;
  }
  .flow_contents_head2{
    margin-bottom: 20px;
  }
  .flow_contents_head2_box1{
    width: 80px;
  }
  .flow_contents_head2_box2{
    width: calc(100% - 80px);
  }
  .flow_contents_head2_num{
    font-size: 60px;
  }
  .flow_contents_head2_ja{
    font-size: 32px;
    margin-bottom: -3px;
  }
  .flow_contents_title{
    padding: 2px 10px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .flow_contents_txt{
    font-size: 16px;
    line-height: 2.25;
  }

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


  /* 見出し */
  .flow_tt2{
    margin-bottom: 60px;
  }
  .flow_tt2_ja{
    font-size: 30px;
    margin: 0 20px;
  }


  /* コンテンツ */
  .flow_contents{

  }
  .flow_contents_row{
    padding: 20px 30px;
  }
  .flow_contents_row:after{
    width: 80px;
  }

  .flow_contents_row + .flow_contents_row{
    margin-top: 50px;
  }
  .flow_contents_box1{
    width: 100%;
    margin-bottom: 20px;
  }
  .flow_contents_box2{
    width: 350px;
  }
  .flow_contents_box3{
    width: calc(100% - 350px - 30px);
    margin-top: -8px;
  }
  .flow_contents_head{
    font-size: 18px;
    padding: 3px 5px;
  }
  .flow_contents_head2{
    margin-bottom: 20px;
  }
  .flow_contents_head2_box1{
    /*width: 100px;*/
  }
  .flow_contents_head2_box2{
    /*width: calc(100% - 100px);*/
  }
  .flow_contents_head2_num{
    /*font-size: 80px;*/
  }
  .flow_contents_head2_ja{
    /*font-size: 40px;*/
    font-size: 25px;
  }
  .flow_contents_title{
    padding: 2px 10px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .flow_contents_txt{
    font-size: 16px;
    line-height: 2.25;
  }

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


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

  /* 見出し */
  .flow_tt2{
    margin-bottom: 60px;
  }
  .flow_tt2_ja{
    font-size: 30px;
  }


  /* コンテンツ */
  .flow_contents{

  }
  .flow_contents_row{
    padding: 20px 50px 45px;
  }
  .flow_contents_row:after{
    width: 80px;
  }

  .flow_contents_row + .flow_contents_row{
    margin-top: 50px;
  }
  .flow_contents_box1{
    width: 100%;
    margin-bottom: 30px;
  }
  .flow_contents_box2{
    width: 535px;
  }
  .flow_contents_box3{
    width: calc(100% - 535px - 65px);
    margin-top: -8px;
  }
  .flow_contents_head{
    font-size: 18px;
    padding: 3px 5px;
  }
  .flow_contents_head2{
    margin-bottom: 20px;
  }
  .flow_contents_head2_box1{
    width: 80px;
  }
  .flow_contents_head2_box2{
    width: calc(100% - 80px);
  }
  .flow_contents_head2_num{
    font-size: 60px;
  }
  .flow_contents_head2_ja{
    font-size: 28px;
    margin-bottom: -3px;
  }
  .flow_contents_title{
    padding: 2px 10px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .flow_contents_txt{
    font-size: 16px;
    line-height: 2.25;
  }

  .flow_contents + .read_more{
    margin-top: 55px;
  }

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


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

  .flow_contents_head2_box1{
    width: 100px;
  }
  .flow_contents_head2_box2{
    width: calc(100% - 100px);
  }
  .flow_contents_head2_num{
    font-size: 80px;
  }
  .flow_contents_head2_ja{
    font-size: 40px;
  }

}

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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}
.flow_contents_head2_ja em{
  font-style: normal;
  font-size: 13px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .flow_contents_title{
    font-size: 12px;
    margin-bottom: 20px;
  }

  .flow_contents_head2{
    display: block
  }
  .flow_contents_head2_ja{
    width: 100%;
    font-size: 25px;
    margin-top: 12px;
  }
  .flow_contents_head2_box2{
    width: 100%;
  }
  .flow_contents_box3{
    margin-top: 17px;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }

  .flow_contents_head2_ja em{
    font-size: 18px;
  }
}
@media (min-width:1024px){


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


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


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


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


}

/**/

@media (min-width:768px){


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


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


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


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


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


}

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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

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


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


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


}

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

}
* + .news_list_thumb{
  margin-top: 35px;
}
.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: #f8f8f8;
  box-shadow: 0.5px 0.866px 3.8px 0.2px rgba(0, 0, 0, 0.35);
  padding: 12px 10px 50px;
  height: 100%;
}
.news_list_thumb .webgene-item .inner{
  pointer-events: none;
}
.pg_home .news_list_thumb .webgene-item .inner:after{
 /*display: none;*/ 
}
.news_list_thumb .webgene-item .inner:after{
  content: "";
  display: none;
  position: absolute;
  width: 25px;
  aspect-ratio: 1 / 1;
  background-image: url(https://mononof.jp/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  bottom: 0;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}

.news_list_thumb .webgene-item .inner[href]{
  pointer-events: all;
}
.news_list_thumb .webgene-item .inner[href]:after{
  display: block;
}

.news_list_thumb .webgene-item .inner:hover:after{
  margin-right: -5px;
}
.news_list_thumb .webgene-item a:hover{
  color: var(--main-color);
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  margin-top: 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: 56.17%;
}
.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-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0;
  background: var(--main-color);
  color: #FFF;
  padding: 4px 10px;
  margin: 5px 0;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--main-color);
}
.news_list_thumb .webgene-item .title{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.news_list_thumb .webgene-item .txt{
  font-size: 12.16px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){
  .news_list_thumb .webgene-item .title{
    text-align: left;
  }
}
@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{
    padding: 12px 10px 60px;
  }
  .news_list_thumb .webgene-item .inner:after{
    width: 42px;
    bottom: -12px;
    right: 20px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{

  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    padding: 4px 18px;
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 30px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{
    padding-inline: 10px;
  }

}
@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: 60px;
  }

  /* 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+4){
    margin-top: 60px;
  }

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

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

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

  .news_list_thumb .webgene-blog{
    margin-left: -13.5px;
    margin-right: -13.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 13.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{

  }

  .news_list_thumb .webgene-item .title{

  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item:nth-child(n+4){
    margin-top: 60px;
  }

}
@media (min-width:1470px){
  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 60px;
  }
}
@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;
}

/* コピー用 */
@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;
  }


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}

/*******************************
*　company
********************************/
.pg_company{

}
.pg_company .section.sec1{
  position: relative;
}
.pg_company .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

/**/
.footer_company_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.footer_company_box1{
  width: 100%;
}
.footer_company_box2{
  width: 100%;
}



@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{
    padding-top: 100px;
  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

}
@media (min-width:1024px){
  /**/
  .footer_company_box{
    margin-top: 35px;
  }
  .footer_company_box1{
    width: 55.26%;
  }
  .footer_company_box2{
    width: 42.76%;
  }

}
@media (min-width:1200px){
  /**/
  .footer_company_box{
    margin-top: 35px;
  }
  .footer_company_box1{
    width: 55.26%;
  }
  .footer_company_box2{
    width: 42.76%;
  }
}
@media (min-width:1470px){
  /**/
  .footer_company_box{
    margin-top: 35px;
  }
  .footer_company_box1{
    width: 55.26%;
  }
  .footer_company_box2{
    width: 42.76%;
  }
}
@media (min-width:1720px){

}


/*装飾*/
.plate{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}

.pos1{
  background-image: url(/system_panel/uploads/images/c1.png);
  width: 66%;
  aspect-ratio:510 / 466;
  left: 0;
  bottom: -26.09%;
}

/*main*/
/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.page_hdr_box1{
  width: 100%;
  position: relative;
  order: 2;
  margin-top: 30px;
}
.page_hdr_box1_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 776 / 552;
}
.page_hdr_box1_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/company_mask1.png);
}
.page_hdr_box2{
  width: 100%;
  order: 1;
}
.page_hdr_box2 .about_box_title{
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  line-height: 1.38em;
  letter-spacing: 0.075em;
}
.page_hdr_box2 .content_desc{
  margin-top: 20px;
}
.page_hdr_box2 .daihyo{
  text-align: right;
  margin-top: 20px;
}
.page_hdr_box2 .daihyo strong{
  font-size: 18px;
  font-weight: 700;
}

.company_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 27px;
}
.company_tt_en{
  font-size: 24px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-right: 33px;
}
.company_tt_ja{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{

}
.company_tbl .table_rows_th{

}
.company_tbl .table_rows_td{

}
.company_tbl .table_rows_td a:hover{
  color: var(--sub-color);
}
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #888888;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    margin-top: 40px;
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img img{

  }
  .page_hdr_box2{

  }
  .page_hdr_box2 .about_box_title{
    font-size: 26px;
  }
  .page_hdr_box2 .content_desc{
    margin-top: 29px;
  }

  .company_tt{

  }
  .company_tt_en{
    font-size: 30px;
  }
  .company_tt_ja{
    font-size: 18px;
  }

  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    border-color: #888888;
  }
  .company_tbl .table_rows_th p,
  .company_tbl .table_rows_td p{
    letter-spacing: 0.075em;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    background: #e4e6e4;
    font-weight: 500;
  }
  .company_tbl .table_rows_td{
    font-weight: 500;
    line-height: 1.88em;
  }
  .gmap{
    margin-top: 40px;
  }
  .access_map iframe{
    width: 100%;
    height: 450px;
    border: none;
  }
}
@media (min-width:1024px){
  .gmap{
    margin-top: 0
  }

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

  }
  .page_hdr_box1{
    width: 50.98%;
    order: 1;
    margin-top: 0;
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img img{

  }
  .page_hdr_box2{
    width: 42.76%;
    order: 2;
    padding-top: 54px;
  }
  .page_hdr_box2 .about_box_title{
    font-size: 36px;
  }
  .page_hdr_box2 .content_desc{

  }

  .company_tt{

  }
  .company_tt_en{
    font-size: 38px;
  }
  .company_tt_ja{

  }

  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 18px 15px 15px;
  }
  .company_tbl .table_rows_th{
    width: 206px;
  }
  .company_tbl .table_rows_td{

  }
  .gmap{

  }
  .access_map iframe{
    height: 450px;
    height: 613px;
  }
  .company_gallery_items{
    margin-top: 96px;
  }
}
@media (min-width:1366px){
  .page_hdr_box2 .about_box_title{
    font-size: 50px;
  }

}
@media (min-width:1520px){
  .page_hdr_box2 .about_box_title{
    font-size: 52px;
  }

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


}

/*******************************
*　お問い合わせ
********************************/
.pg_contact .section.sec1 {
  position: relative;
}
.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;
  font-size: 21px;
  letter-spacing: 0.2em;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #bfbfbf;
  background: #ffffff;
  margin-top: 30px;
}
.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 15px 15px 20px;
  background: #ebebeb;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 19px;
}
.pg_contact .formTd.a-center{
  display: flex;
  align-items: center;
}
.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;
  font-weight: 500;
  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;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 56px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.pg_contact .privacyLabel a{
  color: #b50000;
}
.pg_contact .formBtn.formSend {
  display: block;
  width: 320px;
  font-size: 16px;
  font-family: var(--font-mincho);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background: #f8f8f8;
  color: #181818;
  border: 1px solid #737373;
  border-radius: 50px;
  padding: 16px 20px;
  margin: 5px 5px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  position: absolute;
  width: 50px;
  width: 30px;
  height: 1px;
  background: #000;
  z-index: 1;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  background: var(--main-color);
  color: #FFF;
  border-color: var(--main-color);
}
.pg_contact .formBtn.formSend:hover:after{
  background: #FFF;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 7px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 12px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

@media only screen and (min-width: 1024px){
  .pg_contact .formTbl{
    margin-top: 37px;
  }

  .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 .section.sec2{
  padding: 139px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 45px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #b50000;
  letter-spacing: 0.04em;
}
.privacy_txt{
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt a:hover{
  color: var(--sub-color);
}
.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 {
  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;
}

.privacy_box {
  padding: 28px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 56px;
}
@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 {
    font-size: 19px;
    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: 6.5px 4px;
    line-height: 1.85em;
  }
  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: 18px;
    padding-left: 10px;
  }
}

@media (min-width: 1024px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }
  .pg_contact .formBtn.formSend{
    min-width: 365px;
    padding: 24.5px 20px;
  }
  .pg_contact .formBtn.formSend:after{
    width: 50px;
  }
}
@media (min-width: 1470px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }
}
@media (min-width: 1720px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }

  .cmn_bk6 {
    top: -350px;
    width: 100%;
    padding-bottom: 1271px;
  }
}

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

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

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


/*******************************
*　モノノフについて
********************************/
.pg_about{

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}
.pg_about .section.sec4{

}
.pg_about .section.sec5{

}


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

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

}
@media (max-width:767px){
  .pg_about .section.sec1{
    padding-bottom: 0;
  }
}
@media (min-width:768px){
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{

  }
  .pg_about .section.sec5{

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{
    padding-top: 100px;
  }
  .pg_about .section.sec5{

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 170px;
  }
  .pg_about .section.sec3{
    padding-top: 80px;
  }
  .pg_about .section.sec4{
    padding-top: 150px;
  }
  .pg_about .section.sec5{

  }
}

/* philosophy */
.about_philosophy{
  position: relative;
  z-index: 1;
  padding: 50px 0 50px;
}
.about_philosophy_title{
  position: relative;
  z-index: 2;
  color: #FFF;
  text-align: center;
}
.about_philosophy_title_ja{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.84;
}
.about_philosophy_title_ja strong{
  font-size: 30px;
  font-weight: 700;
}
.about_philosophy_title_en{
  font-size: 60px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  z-index: 1;
  top: 4%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.about_philosophy_img{
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}
.about_philosophy_img:before{
  padding-top: 0;
  height: 100%;
}
.about_philosophy_txt{
  line-height: 2.25;
  margin-top: 25px;
}
.about_philosophy_txt p{
  letter-spacing: 0;
}

/* 選ばれる理由 */
.about_reason{

}
* +.about_reason{
  margin-top: 85px;
}
.about_reason_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_reason_row + .about_reason_row{
  margin-top: 50px;
}
.about_reason_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.about_reason_box2{
  width: 100%;
  /*margin-top: 8px;*/
  position: relative;
  z-index: 1;
  order: 1;
}
.about_reason_ttl{
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.27;
  margin-bottom: 10px;
}
.about_reason_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.about_reason_txt p{
  letter-spacing: 0;
}
.about_reason_img{

}
.about_reason_img.img_fit:before{
  padding-top: 73.529%;
}
.about_reason_num{
  font-size: 75px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #8e261f;
  position: absolute;
  z-index: 2;
  top: -0.125em;
  right: -0.02em;
  text-align: right;
}
.about_reason_row:first-child .about_reason_num{
  right: -0.074em;
}
.about_reason_num:first-letter{
  color: #000;
}

/* ドローン */
.about_drone_wrap{
  background: #f1f0f0;
  padding-top: 70px;
  padding-bottom: 50px;
}
.about_drone{

  position: relative;
  z-index: 1;
}
.about_drone .tt2{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.about_drone .tt2_en{
  /*font-size: 135px;*/
}
.about_drone_img{

}
.about_drone_img.img_fit:before{
  padding-top: 150px;
}
.about_drone_ttl{
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 20px;
  margin-bottom: 15px;
}
.about_drone_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.about_drone_txt p{
  letter-spacing: 0;
}

.pg_about .section.sec4 .tt2_en{
  font-size: 48px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .about_philosophy_title_en{
    font-size: 68px;
  }

  .flicker-heading .sp {
    display: inline-block !important;
    width: .25em;
  }

  .about_reason_ttl{
    font-size: 26px;
    line-height: 1.6em;
    margin-bottom: 20px;
  }
  .about_drone_ttl{
    font-size: 26px;
    line-height: 1.6em;
  }
}
@media (min-width:768px){
  /* philosophy */
  .about_philosophy{
    padding: 57px 0 90px;
  }
  .about_philosophy_title{

  }
  .about_philosophy_title_ja{
    font-size: 35px;
  }
  .about_philosophy_title_ja strong{
    font-size: 60px;
  }
  .about_philosophy_title_en{
    font-size: 110px;
    top: 10%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_philosophy_img:before{
    padding-top: 0;
    height: 100%;
  }
  .about_philosophy_txt{
    margin-top: 30px;
  }

  /* 選ばれる理由 */
  .about_reason{

  }
  * +.about_reason{
    margin-top: 85px;
  }
  .about_reason_row{
  }
  .about_reason_row + .about_reason_row{
    margin-top: 75px;
  }
  .about_reason_box1{
    /*width: 49.01%;*/
  }
  .about_reason_box2{
    /*width: 44.73%;*/
  }
  .about_reason_ttl{
    font-size: 34px;
    margin-bottom: 10px;
  }
  .about_reason_txt{
    font-size: 16px;
    line-height: 2.25;
  }
  .about_reason_num{
    font-size: 100px;
  }


  /* ドローン */
  .about_drone_wrap{
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .about_drone{
  }
  .about_drone .tt2{
  }
  .about_drone .tt2_en{
    /*font-size: 135px;*/
  }
  .about_drone_img.img_fit:before{
    padding-top: 300px;
  }
  .about_drone_ttl{
    text-align: center;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .about_drone_txt{
    font-size: 16px;
    line-height: 2.25;
  }

  .pg_about .section.sec4 .tt2_en{
    font-size: 95px;
  }
}
@media (min-width:1024px){

  /* 選ばれる理由 */
  .about_reason{

  }
  * +.about_reason{
    margin-top: 85px;
  }
  .about_reason_row{
  }
  .about_reason_row + .about_reason_row{
    /*margin-top: 100px;*/
  }
  .about_reason_box1{
    width: 49.01%;
    width: 50%;
    margin-top: 0;
  }
  .about_reason_box2{
    width: 44.73%;
    width: 46%;
    margin-top: 8px;
  }
  .about_reason_ttl{
    /*font-size: 55px;*/
    /*margin-bottom: 30px;*/
  }
  .about_reason_txt{
  }
  .about_reason_num{
    /*font-size: 135px;*/
  }

  .about_reason_row:nth-child(odd) .about_reason_box1{
    order: 1;
  }
  .about_reason_row:nth-child(odd) .about_reason_box2{
    order: 2;
  }
  .about_reason_row:nth-child(even) .about_reason_box1{
    order: 2;
  }
  .about_reason_row:nth-child(even) .about_reason_box2{
    order: 1;
  }

  .about_philosophy_title_en{
    font-size: 120px;
  }

  .pg_about .section.sec4 .tt2_en{
    font-size: 120px;
  }
}
@media (min-width:1200px){


  .about_drone .tt2_en{
    font-size: 135px;
  }

  .about_philosophy_txt{
    text-align: center;
  }
  .cmn_txt.about_philosophy_txt{
    line-height: 2.25em;
  }
  .cmn_txt.about_philosophy_txt p{
    letter-spacing: 0;
  }

  .about_philosophy_title_en{
    font-size: 140px;
  }

  .pg_about .section.sec4 .tt2_en{
    font-size: 120px;
  }
  .about_drone_txt{
    text-align: center;
  }
}
@media (min-width:1470px){
  /* philosophy */
  .about_philosophy{
    padding: 57px 0 90px;
  }
  .about_philosophy_title{

  }
  .about_philosophy_title_ja{
    font-size: 50px;
  }
  .about_philosophy_title_ja strong{
    font-size: 100px;
  }
  .about_philosophy_title_en{
    font-size: 175px;
    top: 20.5%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_philosophy_img:before{
    padding-top: 0;
    height: 100%;
  }
  .about_philosophy_txt{
    margin-top: 75px;
  }

  /* 選ばれる理由 */
  .about_reason{

  }
  * +.about_reason{
    margin-top: 85px;
  }
  .about_reason_row{
  }
  .about_reason_row + .about_reason_row{
    margin-top: 92px;
  }
  .about_reason_box1{
    width: 49.01%;
    margin-top: 0;
  }
  .about_reason_box2{
    width: 44.73%;
    margin-top: 8px;
  }
  .about_reason_ttl{
    font-size: 46px;
    margin-bottom: 30px;
  }
  .about_reason_txt{
  }
  .about_reason_num{
    font-size: 135px;
  }

  /* ドローン */
  .about_drone_wrap{
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .about_drone{
  }
  .about_drone .tt2{
  }
  .about_drone .tt2_en{
    font-size: 135px;
  }
  .about_drone_img.img_fit:before{
    padding-top: 400px;
  }
  .about_drone_ttl{
    font-size: 50px;
    margin-top: 70px;
    margin-bottom: 30px;
    margin-right: -50px;
  }
  .about_drone_txt{
    text-align: center;
    font-size: 16px;
    line-height: 2.25;
    margin-right: -20px;
  }
  .about_drone_wrap + .read_more{
    margin-top: 75px;
  }

  .pg_about .section.sec4 .tt2_en{
    font-size: 135px;
  }
}
@media (min-width:1720px){

  .about_reason_ttl{
    font-size: 55px;
    margin-bottom: 30px;
  }

  .pg_about .section.sec4 .tt2_en{
    font-size: 135px;
  }
}

/*******************************
*　
********************************/
.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{
  margin-bottom: 30px;
}
.gallery_box1{
  position: relative;
  z-index: 1;
}
.gallery_box2{
  margin-top: 15px;
}
.gallery_main .swiper-slide .img{
  
}
.gallery_main .swiper-slide .img.img_fit:before{
  padding-top: 56.25%;
}
.gallery_thumb .swiper-slide .img{
  
}
.gallery_thumb .swiper-slide .img.img_fit:before{
  padding-top: 75%;
  padding-top: 56.25%;
}

.gallery-button-prev,
.gallery-button-next{
  font-size: 24px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.gallery-button-prev{
  left: -26px;
}
.gallery-button-next{
  right: -26px;
}



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

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

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

}
@media (min-width:768px){
  
  
  .gallery_wrap{
    margin-bottom: 50px;
  }
  .gallery_box1{
  }
  .gallery_box2{
    margin-top: 15px;
  }
  
  .gallery-button-prev,
  .gallery-button-next{
    font-size: 32px;
  }
  .gallery-button-prev{
    left: -42px;
  }
  .gallery-button-next{
    right: -42px;
  }


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


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


}

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


/* コピー用 */
@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;
  }


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


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


}

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


/* コピー用 */
@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;
  }


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


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


}

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


/* コピー用 */
@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;
  }


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


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


}

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


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

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

}
@media (max-width:767px){
  .pg_home{
   position: relative;
    z-index: 0;
  }
}
@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;
  }


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


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


}




/* テキストアニメーション */
.flicker-heading{
  display: flex;
  text-transform: uppercase;
  white-space: pre-wrap;
  visibility: hidden;
}
.flicker-center{
  justify-content: center;
}
.gjs-dashed .flicker-heading,
.flicker-heading.is-ready{
  visibility: visible;
}

.flicker-heading .ch{
  display:inline-block;
  opacity: 1;
  will-change: opacity;
}

.flicker-heading .sp{
  display:inline-block!important;
  width: .25em;
}

/* 発火中だけアニメーションを付ける（JSが文字ごとにCSS変数を入れる） */
.flicker-heading.is-flickering .ch{
  animation-name: letterFlicker;
  animation-duration: var(--dur, 700ms);
  animation-delay: var(--delay, 0ms);
  animation-iteration-count: infinite;     /* ← JS側で“切りの良い所”で止める */
  animation-timing-function: ease-in-out;  /* 参考は緩やか */
  animation-fill-mode: both;
}

/* JSが停止させた文字（待機状態） */
.flicker-heading .ch.is-hold{
  animation: none !important;
  opacity: 1 !important;
}

/* 0→1→0→1 の2往復風。最後は1で終わる */
@keyframes letterFlicker{
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  50%  { opacity: 0; }
  75%  { opacity: 1; }
  100% { opacity: 1; }
}

/* 動き軽減 */
@media (prefers-reduced-motion: reduce){
  .flicker-heading .ch{
    opacity: 1 !important;
    animation: none !important;
  }
}
