@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Caprasimo&family=Caveat:wght@400..700&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');

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

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

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


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

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

#root{
  overflow: hidden;
}

.header{
  position: relative;
  z-index: 3;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
: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;*/
  letter-spacing: inherit;
}
p{
  
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

u{
  display: inline-block;
  text-decoration: none;
}

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



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

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

}
.mv_txt_p2{

}

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

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

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

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

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

  }
  .mv_txt_p2{

  }

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


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

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

  }
  .mv_txt_p2{

  }

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

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

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

  }
  .mv_txt_p2{

  }

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


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

/* サイドバー */
.sidebar{
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 3;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  
  background: #FFF;
  border-radius: 15px 0 0 15px;
  padding: 30px 10px;
}

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

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


.sidebar_sns_txt{
  font-size: 13px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #b18b55;
  writing-mode: vertical-rl;
}
.sidebar_sns{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  margin-top: 25px;
}
.sidebar_sns a{
  transition: 0.2s all;
}
.sidebar_sns a:hover{
  transform: scale(1.05);
}

@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    display: flex;
    top: 28%;
    padding: 20px 5px;
  }

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


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

}
@media (min-width:1200px){
  
  /* サイドバー */
  .sidebar{
    top: 50%;
    padding: 30px 10px;
  }
  
  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}




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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
}

/* 追尾スマホメニュー */
.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: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #ef7f1a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #cab386;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}



@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);
  }
}
@media (min-width:768px){
  
  .footer{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
}
@media (min-width:1200px){

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

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


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

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

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

}


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

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

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


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

/* ボタン2 */
.read_more2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 10px 10px;
}
.read_more2 a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: 100%;
  height: 50px;
  border-radius: 34px;
  background: #c5b580;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  z-index: 1;
}
.read_more2 a.color1{
  
}
.read_more2 a.color2{
  background: #aac4aa;
}
.read_more2 a.color3{
  background: #323f6b;
}
.read_more2 a p{
  letter-spacing: 0.05em;
}
.read_more2 a:after{
  content: "";
  width: 28px;
  aspect-ratio: 1 / 1;
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/read_more2_arr.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}


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

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

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



@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

  /* 見出し */
  
  
  
  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{
    
  }


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

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


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


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

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


@media (min-width:1366px){

  
}

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


body{
  background-color: #edeae1;
}
.body_home{
  padding-top: 0;
}
.body_tocot-nova{
  background-color: #FFF;
}

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

/* メインビジュアル */
.home_mv{
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  z-index: 2;
  margin-top: -70px;
}
.home_mv_inner{
  height: 400px;
  position: relative;
  z-index: 1;
}
.home_mv_inner:after{
  content: "";
  width: 100%;
  aspect-ratio: 1520 / 615;
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/home_mv_bg1.jpg');
  z-index: 0;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  border-radius: 0 0 30px 30px;
}

.home_mv_catch{
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  z-index: 3;
  top: 120px;
  left: 50%;
  transform: translate(15%, 0);
}
.home_mv_catch_txt{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.666;
  color: #545454;
  writing-mode: vertical-rl;
}
.home_mv_catch_txt strong{
  font-size: 1em;
  font-weight: 700;
  color: inherit;
}
.home_mv_catch_txt:nth-child(even){
  margin-top: 1em;
}

.home_mv_box1{
  width: 42.76%;
  width: 54%;
  position: absolute;
  z-index: 1;
  top: 100px;
  left: 0;
}
.home_mv_box2{
  width: 24.01%;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
.home_mv_box3{
  width: 38.48%;
  position: absolute;
  z-index: 2;
  bottom: -60px;
  right: 0;
}
.home_mv_img1{
  margin-left: var(--margin-for-device-side-w);
  border-radius: 0 15px 45px 0;
}
.home_mv_img1.img_fit:before{
  padding-top: 72.941%;
}
.home_mv_img2{
  margin-right: var(--margin-for-device-side-w);
  border-radius: 45px 0 0 15px;
}
.home_mv_img2.img_fit:before{
  padding-top: 91.681%;
}
.home_mv_img3{
  border-radius: 15px 15px 45px 15px;
}
.home_mv_img3.img_fit:before{
  padding-top: 76.923%;
}



.home_mv_box1:after,
.home_mv_box2:after,
.home_mv_box3:after{
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
.home_mv_box1:after{
  content: "";
  width: 41.53%;
  aspect-ratio: 1 / 1;
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/home_mv_bg2.png');
  z-index: 2;
  left: 0;
  bottom: 0;
  border-radius: 15px 45px 15px 15px;
  transform: translate(0, 59.25%);
}
.home_mv_box2:after{
  content: "";
  width: 104.10%;
  aspect-ratio: 380 / 385;
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/home_mv_bg3.png');
  z-index: 0;
  left: 0;
  bottom: 0;
  border-radius: 45px 15px 15px 15px;
  transform: translate(-67.10%, 79.22%);
}

.home_mv_line{
  width: 1465px;
  height: 0;
  max-width: 100%;
  /*aspect-ratio: 1465 / 925;*/
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/mv_line.png');
  background-size: contain;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 0;
  right: var(--margin-for-device-side-w);
  transition: 10s all;
}
.home_mv_line.start{
  height: 350px;
}

@media (min-width:768px){
  .home_mv_line.start{
    height: 550px;
  }
}
@media (min-width:1024px){
  .home_mv_line.start{
    height: 650px;
  }
}
@media (min-width:1200px){
  .home_mv_line.start{
    height: 850px;
  }
}
@media (min-width:1470px){
  .home_mv_line.start{
    height: 925px;
  }
}


.home_mv_img1_slides,
.home_mv_img2_slides,
.home_mv_img3_slides{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home_mv_img1_slides{
  margin-left: var(--margin-for-device-side-w);
  border-radius: 0 15px 45px 0;
}
.home_mv_img2_slides{
  margin-right: var(--margin-for-device-side-w);
  border-radius: 45px 0 0 15px;
}
.home_mv_img3_slides{
  border-radius: 15px 15px 45px 15px;
}

.home_mv_img1_slides:before,
.home_mv_img2_slides:before,
.home_mv_img3_slides:before{
  content: "";
  display: block;
}
.home_mv_img1_slides:before{
  padding-top: 72.941%;
}
.home_mv_img2_slides:before{
  padding-top: 91.681%;
}
.home_mv_img3_slides:before{
  padding-top: 76.923%;
}
.home_mv_img1_slides > *,
.home_mv_img2_slides > *,
.home_mv_img3_slides > *{
  position: absolute;
  z-index: 1;
  inset: 0;
}
.home_mv_img1_slides .home_mv_img1,
.home_mv_img2_slides .home_mv_img2,
.home_mv_img3_slides .home_mv_img3{
  margin: 0;
  border-radius: 0;
}

.gjs-dashed .home_mv_img1_slides:before,
.gjs-dashed .home_mv_img2_slides:before,
.gjs-dashed .home_mv_img3_slides:before{
  display: none;
}
.gjs-dashed .home_mv_img1_slides > * ,
.gjs-dashed .home_mv_img2_slides > * ,
.gjs-dashed .home_mv_img3_slides > * {
  position: relative;
}
.gjs-dashed .home_mv_img1_slides,
.gjs-dashed .home_mv_img2_slides,
.gjs-dashed .home_mv_img3_slides{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.gjs-dashed .home_mv_img1_slides .home_mv_img1,
.gjs-dashed .home_mv_img2_slides .home_mv_img2,
.gjs-dashed .home_mv_img3_slides .home_mv_img3{
  width: calc((100% - 5px) / 2);
  border: 10px solid #FFF;
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* メインビジュアル */
  .home_mv{
    margin-top: 0;
  }
  .home_mv_inner{
    height: 680px;
  }
  .home_mv_inner:after{
    border-radius: 0 0 30px 30px;
  }

  .home_mv_catch{
    top: 215px;
    transform: translate(-18%, 0);
  }
  .home_mv_catch_txt{
    font-size: 45px;
  }

  .home_mv_box1{
    width: 42.76%;
    top: 175px;
    left: 0;
  }
  .home_mv_box2{
    width: 24.01%;
    top: 0;
    right: 0;
  }
  .home_mv_box3{
    width: 38.48%;
    bottom: -90px;
    right: 0;
  }
  .home_mv_img1{
    border-radius: 0 30px 90px 0;
  }
  .home_mv_img2{
    border-radius: 90px 0 0 30px;
  }
  .home_mv_img3{
    border-radius: 30px 30px 90px 30px;
  }
  
  .home_mv_img1_slides{
    border-radius: 0 30px 90px 0;
  }
  .home_mv_img2_slides{
    border-radius: 90px 0 0 30px;
  }
  .home_mv_img3_slides{
    border-radius: 30px 30px 90px 30px;
  }

  
  .home_mv_box1:after{
    border-radius: 30px 90px 30px 30px;
  }
  .home_mv_box2:after{
    border-radius: 90px 30px 30px 30px;
  }
  
}
@media (min-width:1024px){

  /* メインビジュアル */
  .home_mv{
  }
  .home_mv_inner{
    height: 780px;
  }

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

  /* メインビジュアル */
  .home_mv{
  }
  .home_mv_inner{
    height: 850px;
  }
  .home_mv_inner:after{
    border-radius: 0 0 30px 30px;
  }

  .home_mv_catch{
    top: 215px;
    transform: translate(-18%, 0);
  }
  .home_mv_catch_txt{
    font-size: 50px;
  }

  .home_mv_box1{
    /*width: 42.76%;*/
    top: 175px;
  }
  .home_mv_box2{
    /*width: 24.01%;*/
  }
  .home_mv_box3{
    /*width: 38.48%;*/
    bottom: -145px;
  }
  .home_mv_img1{
    border-radius: 0 30px 120px 0;
  }
  .home_mv_img2{
    border-radius: 120px 0 0 30px;
  }
  .home_mv_img3{
    border-radius: 30px 30px 120px 30px;
  }
  .home_mv_img1_slides{
    border-radius: 0 30px 120px 0;
  }
  .home_mv_img2_slides{
    border-radius: 120px 0 0 30px;
  }
  .home_mv_img3_slides{
    border-radius: 30px 30px 120px 30px;
  }
  
  .home_mv_box1:after{
    border-radius: 30px 120px 30px 30px;
  }
  .home_mv_box2:after{
    border-radius: 120px 30px 30px 30px;
  }

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

  /* メインビジュアル */
  .home_mv{
  }
  .home_mv_inner{
    height: 1060px;
  }
  .home_mv_catch{
    top: 215px;
    transform: translate(-18%, 0);
  }
  .home_mv_catch_txt{
    font-size: 60px;
  }
  
  
}
@media (min-width:1720px){

  /* メインビジュアル */
  .home_mv{
  }
  .home_mv_inner{
    height: 1060px;
  }

}



.pg_home{
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #545454;
  background-color: #faf8f4;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec1{
  /*background-color: #faf8f4;*/
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/home_mv_bg4.png');
  background-repeat: no-repeat;
  background-size: auto 200px;
  background-position: center top;
  min-height: 660px;
  padding-top: 115px;
  padding-bottom: 0;
  position: static;
  z-index: 1;
}
.pg_home .section.sec1 > .container{
  position: relative;
  z-index: 3;
}
.pg_home .section.sec1:before{
  /*content: "";
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 400px;*/
}
.pg_home .section.sec2{
  background-color: #eceade;
  margin-top: -260px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}
.pg_home .section.sec3{
  
  background-color: #eceade;
  padding-bottom: 0;
}
.pg_home .section.sec4{
  background-color: #eceade;
  /*padding-bottom: 0;*/
}
.pg_home .section.sec5{
  background-color: #eceade;
}
.pg_home .section.sec6{
  background-color: #eceade;
}
.pg_home .section.sec7{
  background-color: #eceade;
}
.pg_home .section.sec8{
  background-color: #eceade;
}

.home_car_moving{
  display: flex;
  height: 90px;
  margin-top: 100px;
  padding: 0 130px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #c9c5b5;
}
.home_car_moving.toRight{
  justify-content: flex-start;
}
.home_car_moving.toLeft{
  justify-content: flex-end;
}
.home_car_moving_img{
  position:absolute;
    left:0;
    top:0;
    will-change:transform;
}
.home_car_moving_img img{
  height: 90px;
}

.home_car_moving_img{
    transform-origin:center bottom;
}
.home_car_moving_img{
    position:absolute;
    left:0;
    top:0;
    will-change:transform;
}

.home_car_moving_img img{
    display:block;
    animation:carBounce .8s ease-in-out infinite alternate;
    transform-origin:center bottom;
}

@keyframes carBounce{
    0%{
        transform:translateY(0) rotate(-0.3deg);
    }

    100%{
        transform:translateY(-3px) rotate(0.3deg);
    }
}

@media (max-width:767px){
  .pg_home .section.sec5{
    padding-top: 0;
  }
  .pg_home .section.sec7{
    padding-top: 0;
  }
  
  
  .home_car_moving{
    margin-top: 50px;
    padding: 0 20px;
    height: 30px;
  }
  .home_car_moving_img img{
    height: 30px;
  }

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

  .pg_home .section.sec1{
    background-size: auto 345px;
    padding-top: 190px;
  }
  .pg_home .section.sec2{
    margin-top: -220px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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

  .pg_home .section.sec1{
    background-size: auto 435px;
    padding-top: 200px;
    padding-bottom: 100px;
    min-height: 800px;
  }
  .pg_home .section.sec2{
    margin-top: -450px;
  }
}
@media (min-width:1200px){

  .pg_home .section.sec1{
    background-size: auto 550px;
    /*padding-top: 305px;*/
  }
  .pg_home .section.sec2{
    margin-top: -320px;
  }
  
}
@media (min-width:1470px){

  .pg_home .section.sec1{
    background-size: auto 670px;
    padding-top: 305px;
    padding-bottom: 100px;
    min-height: 900px;
  }
  .pg_home .section.sec2{
    margin-top: -300px;
  }
}
@media (min-width:1720px){

  .pg_home .section.sec1{
    background-size: auto 715px;
  }
  .pg_home .section.sec2{
    margin-top: -520px;
  }
}
@media (min-width:1920px){

  .pg_home .section.sec1{
    background-size: 100% auto;
  }
  .pg_home .section.sec2{
    margin-top: -520px;
  }
}


/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_about_box1{
  width: 80%;
  margin-top: 30px;
  order: 3;
}
.home_about_img1{
  border-radius: 0 120px 30px 0;
  margin-left: var(--margin-for-device-side-w);
  -webkit-mask-image: url('https://ksmart-original.jp/system_panel/uploads/images/about_img1_fr.png');
  -webkit-mask-size: cover;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
}
.home_about_img1.img_fit:before{
  padding-top: 56.306%;
}
.home_about_box2{
  width: 50%;
  margin-top: 0;
  margin-bottom: -75px;
  margin-left: auto;
  order: 1;
}
.home_about_img2{
  border-radius: 30px 0  0 120px;
  margin-right: var(--margin-for-device-side-w);
}
.home_about_img2.img_fit:before{
  padding-top: 88.400%;
}

.home_about_head{
  position: relative;
  z-index: 1;
  order: 2;
}
.home_about_head_ttl{
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.home_about_head_txt{
  font-size: 16px;
  font-weight: 500;
}
.home_about_head_txt p{
  letter-spacing: 0.05em;
}

/* ESSE */
.home_esse{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -220px;
}
.home_esse_box1{
  width: 49.01%;
  width: 72%;
  padding-top: 150px;
  position: relative;
  z-index: 1;
}
.home_esse_box2{
  width: 100%;
  padding-top: 40px;
}
.home_esse_img1_box{
  width: 58.38%;
}
.home_esse_img1{
  margin-left: var(--margin-for-device-side-w);
  -webkit-mask-image: url(https://ksmart-original.jp/system_panel/uploads/images/esse_img_fr.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: left center;
  -webkit-mask-repeat: no-repeat;
}
.home_esse_img1.img_fit:before{
  padding-top: 100.630%;
}

.home_esse_catch{
  font-size: 24px;
  padding-bottom: 1.54em;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
.home_esse_catch_txt{
  font-size: 1em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0;
  line-height: 1.4;
}
.home_esse_catch_txt:nth-child(2){
  margin-left: -1.7em;
}
.home_esse_catch_txt:nth-child(3){
  margin-left: 0.6em;
}
.home_esse_catch_txt strong{
  font-size: 1em;
  font-weight: inherit;
  color: #c5b580;
}

.home_esse_catch:after{
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 380 / 143;
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/esse_img_bdr.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
}

.home_esse_catch_en{
  width: 87.79%;
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: 46%;
}

/* ESSE用（一部汎用） */
.home_esse_road{
  height: 520px;
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/home_esse_road_bg.jpg');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  position: relative;
  z-index: 1;
}
.home_esse_road_inner{
  width: 1481px;
  max-width: 100%;
  margin-left: auto;
  position: absolute;
  z-index: 1;
  bottom: 95px;
  right: 0;
}
.home_esse_road_car{
  width: 29.30%;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  transform: translate(-11%, -33%);
}
.home_esse_road_base{
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}

/* TOCOT用 */
.home_tocot_road{
  height: 140px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  position: relative;
  z-index: 1;
}
.home_tocot_road_inner{
  width: 1481px;
  max-width: 100%;
}
.home_tocot_road_car{
  width: 19.78%;
  position: absolute;
  z-index: 2;
  left: 13.5%;
  top: 37%;
}
.home_tocot_road_base{
}


.home_tocot{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -180px;
}

.home_tocot .home_esse_box1{
  /*width: 52.63%;*/
  order: 1;
  padding-top: 195px;
  margin-left: auto;
}
.home_tocot .home_esse_box2{
  /*width: 36.51%;*/
  order: 2;
  
  /*padding-top: 385px;*/
}
.home_tocot .home_esse_img1_box{
  width: 61.25%;
  margin-left: auto;
}
.home_tocot .home_esse_img1{
  margin-left: 0;
  margin-right: var(--margin-for-device-side-w);
  -webkit-mask-image: url('https://ksmart-original.jp/system_panel/uploads/images/tocot_img_fr.png');
}
.home_tocot .home_esse_img1.img_fit:before{
  padding-top: 83.285%;
}
.home_tocot .home_esse_catch:after{
  background-image: url('https://ksmart-original.jp/system_panel/uploads/images/esse_img_bdr2.png');
  left: auto;
  right: 30px;
}
.home_tocot .home_esse_catch{
  left: 0;
  right: auto;
}
.home_tocot .home_esse_catch_txt:nth-child(1){
  
}
.home_tocot .home_esse_catch_txt:nth-child(2){
  margin-left: 2.0em;
}
.home_tocot .home_esse_catch_txt:nth-child(3){
  margin-left: 1.2em;
}
.home_tocot .home_esse_catch_txt strong{
  color: #aac4aa;
}

.home_tocot .home_esse_catch_en{
  left: -18%;
  bottom: -15px;
}
.home_tocot .home_models_ttl_en{
  /*margin-right: -100px;*/
}
.home_tocot .home_models_ttl_en img{
  /*height: 67px;*/
}

/* PORTNOVA用 */
.home_port_road{
  height: 460px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  position: relative;
  z-index: 1;
}
.home_port_road_inner{
  width: 1481px;
  max-width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.home_port_road_car{
  width: 20.93%;
  position: absolute;
  z-index: 2;
  right: 6.5%;
  top: 31%;
}
.home_port_road_base{
  text-align: right;
}

.home_port{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -545px;
}
.home_port .home_esse_box1{
  /*padding-top: 295px;*/
}
.home_port .home_esse_box2{
  /*padding-top: 385px;*/
}
.home_port .home_esse_img1_box{
}
.home_port .home_esse_img1{
  -webkit-mask-image: url('https://ksmart-original.jp/system_panel/uploads/images/port_img_fr.png');
}
.home_port .home_esse_img1.img_fit:before{
  padding-top: 97.819%;
}
.home_port .home_esse_catch_txt strong{
  color: #323f6b;
}
.home_port .home_esse_catch_en{
  bottom: -20px;
}
.home_port .home_models_ttl_en{
}
.home_port .home_models_ttl_en img{
  /*height: 65px;*/
}

/* ========================================
   車走行アニメーション共通
======================================== */

/* 車の移動範囲を道路内に限定 */
.js-car-road--esse,
.js-car-road--tocot,
.js-car-road--port {
  /*overflow: hidden;*/
}

/*
 * JSで自動生成される走行用ラッパー
 * 左右の移動を担当
 */
.home_car_motion {
  display: block;
  width: 100%;
  position: relative;
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;

  /* スマホのGPU描画を安定させる */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

/*
 * JSで自動生成される揺れ用ラッパー
 * 小さな上下動のみを担当
 */
.home_car_bounce {
  display: block;
  width: 100%;
  position: relative;
  will-change: transform;
  pointer-events: none;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.home_car_bounce img {
  display: block;
  width: 100%;
  height: auto;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

/* 車の親要素の既存配置はそのまま使用 */
.home_esse_road_car,
.home_tocot_road_car,
.home_port_road_car {
  /*pointer-events: none;*/
}

/* 車種紹介 */
.home_models_ttl{
  margin-bottom: 15px;
}
.home_models_ttl_en{
  margin-bottom: 20px;
}
.home_models_ttl_en img{
  height: 35px;
}
.home_models_ttl_ja{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.53;
}
.home_models_txt{
  font-size: 16px;
  font-weight: 500;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
    
  /* ABOUT */
  .home_about_box1{
    width: 62%;
  }
  .home_about_box2{
    width: 40%;
    margin-bottom: 0;
  }
  .home_about_head{
    margin-top: -250px;
  }
  .home_about_head_ttl{
    font-size: 40px;
  }
  .home_about_head_txt{
    font-size: 17px;
  }
  
  /* ESSE */
  .home_esse_catch{
    font-size: 34px;
  }
  .home_esse_catch:after{
    width: 210px;
  }
  
  /* TOCOT用 */
  .home_tocot_road{
    height: auto;
  }
  .home_tocot{
    margin-top: -245px;
  }
  .home_tocot .home_esse_box1{
    width: 52%;
  }
  .home_tocot .home_esse_img1_box{
    width: 70%
  }
  .home_tocot .home_esse_catch_en {
    left: -44%;
  }
  
  /* PORTNOVA用 */
  .home_port_road{
    height: auto;
  }
  .home_port{
    margin-top: -240px;
  }
  .home_port .home_esse_box1{
    width: 48%;
  }
  .home_port .home_esse_catch_en{
    bottom: -35px;
  }
  .home_port .home_esse_catch_en {
    bottom: 5px;
    left: 70%;
  }
  .home_port .home_esse_img1_box{
    width: 75%;
  }
  
  /* 車種紹介 */
  .home_models_ttl_en img{
    height: 60px;
  }
  .home_models_ttl_ja{
    font-size: 32px;
  }
  .home_models_txt{
    font-size: 17px;
  }
}
@media (min-width:1024px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 38.48%;
    width: 32%;
    margin-top: 145px;
    order: 1;
  }
  .home_about_img1{
    border-radius: 0 120px 30px 0;
  }
  .home_about_box2{
    width: 19.73%;
    margin-top: 85px;
    margin-bottom: 0;
    order: 2;
  }
  .home_about_img2{
    border-radius: 30px 0  0 120px;
  }
  
  .home_about_head{
    margin-top: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 35.5%;
  }
  .home_about_head_ttl{
    font-size: 36px;
    margin-bottom: 40px;
  }
  .home_about_head_txt{
    font-size: 18px;
  }
  
  /* ESSE */
  .home_esse{
    margin-top: -220px;
  }
  .home_esse_box1{
    width: 42%;
    padding-top: 200px;
    position: relative;
    z-index: 1;
  }
  .home_esse_box2{
    width: 55%;
    padding-top: 335px;
    position: relative;
    z-index: 2;
  }
  .home_esse_img1_box{
    width: 58.38%;
  }
  .home_esse_img1{
  }
  .home_esse_catch{
    font-size: 36px;
    padding-bottom: 1.54em;
  }
  .home_esse_catch_txt:nth-child(2){
    margin-left: -2.7em;
  }
  .home_esse_catch_txt:nth-child(3){
    margin-left: 0.6em;
  }

  .home_esse_catch:after{
    width: 240px;
  }

  .home_esse_catch_en{
    width: 87.79%;
    bottom: 20px;
    left: 46%;
  }

  .home_esse_road{
    height: 520px;
  }
  .home_esse_road_inner{
    width: 1481px;
    bottom: 95px;
  }
  .home_esse_road_car{
    width: 29.30%;
    transform: translate(-11%, -33%);
  }
  .home_esse_road_base{
  }
  
  /* TOCOT用 */
  .home_tocot_road{
    
  }
  .home_tocot_road_inner{
  }
  .home_tocot_road_car{
    
  }
  .home_tocot_road_base{
  }

  .home_tocot{
    margin-top: -255px;
  }
  .home_tocot .home_esse_box1{
    width: 52.63%;
    order: 2;
    padding-top: 265px;
  }
  .home_tocot .home_esse_box2{
    width: 36.51%;
    order: 1;
    padding-top: 215px;
  }
  .home_tocot .home_esse_img1_box{
    width: 61.25%;
    margin-left: auto;
  }
  .home_tocot .home_esse_img1{
  }
  .home_tocot .home_esse_catch:after{
    right: 65px;
  }
  .home_tocot .home_esse_catch{
  }
  .home_tocot .home_esse_catch_txt:nth-child(1){

  }
  .home_tocot .home_esse_catch_txt:nth-child(2){
    margin-left: 3.0em;
  }
  .home_tocot .home_esse_catch_txt:nth-child(3){
    margin-left: 2.2em;
  }

  .home_tocot .home_esse_catch_en{
    left: -18%;
    bottom: 0;
  }
  .home_tocot .home_models_ttl_en{
    margin-right: -100px;
  }
  .home_tocot .home_models_ttl_en img{
    height: 42px;
  }

  /* PORTNOVA用 */
  .home_port .home_esse_box1{
    width: 42%;
  }
  .home_port .home_esse_box2{
    width: 45%;
    padding-top: 220px;
  }
  .home_port .home_models_ttl_en img{
    height: 42px;
  }
  
  /* 車種紹介 */
  .home_models_ttl{
    margin-bottom: 20px;
  }
  .home_models_ttl_en{
    margin-bottom: 25px;
  }
  .home_models_ttl_en img{
    height: 60px;
  }
  .home_models_ttl_ja{
    font-size: 26px;
  }
  .home_models_txt{
    font-size: 18px;
  }

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

  .home_esse_road{
    height: 600px;
  }
  .home_esse_road_inner{
    bottom: 250px;
  }
}
@media (min-width:1470px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 38.48%;
    margin-top: 145px;
  }
  .home_about_img1{
    border-radius: 0 120px 30px 0;
  }
  .home_about_box2{
    width: 19.73%;
    margin-top: 85px;
  }
  .home_about_img2{
    border-radius: 30px 0  0 120px;
  }
  .home_about_head{
    left: 44.5%;
  }
  .home_about_head_ttl{
    font-size: 50px;
    margin-bottom: 80px;
  }
  .home_about_head_txt{
    font-size: 18px;
  }
  
  /* ESSE */
  .home_esse{
    margin-top: -380px;
  }
  .home_esse_box1{
    width: 49.01%;
    padding-top: 250px;
  }
  .home_esse_box2{
    width: 36.51%;
    padding-top: 365px;
  }
  .home_esse_img1_box{
    width: 58.38%;
  }
  .home_esse_img1{
  }
  .home_esse_catch{
    font-size: 50px;
    padding-bottom: 1.54em;
  }
  .home_esse_catch_txt:nth-child(2){
    margin-left: -2.7em;
  }
  .home_esse_catch_txt:nth-child(3){
    margin-left: 0.6em;
  }

  .home_esse_catch:after{
    width: 300px;
  }

  .home_esse_catch_en{
    width: 87.79%;
    bottom: -25px;
    left: 46%;
  }

  .home_esse_road{
    height: 700px;
  }
  .home_esse_road_inner{
    width: 1481px;
    bottom: 275px;
  }
  .home_esse_road_car{
    /*width: 22.48%;*/
    /*transform: translate(-13%, -42%);*/
  }
  .home_esse_road_base{
  }
  
  /* TOCOT用 */
  .home_tocot_road{
    
  }
  .home_tocot_road_inner{
  }
  .home_tocot_road_car{
    
  }
  .home_tocot_road_base{
  }

  .home_tocot{
    margin-top: -335px;
  }
  .home_tocot .home_esse_box1{
    width: 52.63%;
    order: 2;
    padding-top: 390px;
  }
  .home_tocot .home_esse_box2{
    width: 36.51%;
    order: 1;
    padding-top: 385px;
  }
  .home_tocot .home_esse_img1_box{
    width: 61.25%;
    margin-left: auto;
  }
  .home_tocot .home_esse_img1{
  }
  .home_tocot .home_esse_catch:after{
    right: 155px;
  }
  .home_tocot .home_esse_catch{
  }
  .home_tocot .home_esse_catch_txt:nth-child(1){

  }
  .home_tocot .home_esse_catch_txt:nth-child(2){
    margin-left: 3.0em;
  }
  .home_tocot .home_esse_catch_txt:nth-child(3){
    margin-left: 2.2em;
  }

  .home_tocot .home_esse_catch_en{
    left: -18%;
    bottom: 100px;
  }
  .home_tocot .home_models_ttl_en{
    margin-right: -100px;
  }
  .home_tocot .home_models_ttl_en img{
    height: 67px;
  }
  
  /* PORTNOVA用 */
  .home_port_road{
    height: 460px;
  }
  .home_port_road_inner{
    width: 1481px;
  }
  .home_port_road_car{
    width: 20.93%;
    right: 6.5%;
    top: 31%;
  }
  .home_port_road_base{
    text-align: right;
  }
  
  .home_port{
    margin-top: -335px;
  }
  .home_port .home_esse_box1{
    width: 42%;
    padding-top: 295px;
  }
  .home_port .home_esse_box2{
    width: 45%;
    padding-top: 385px;
  }
  .home_port .home_esse_catch_en{
    bottom: -30px;
  }
  .home_port .home_models_ttl_en img{
    height: 65px;
  }
  
  /* 車種紹介 */
  .home_models_ttl{
    margin-bottom: 42px;
  }
  .home_models_ttl_en{
    margin-bottom: 55px;
  }
  .home_models_ttl_en img{
    height: 70px;
  }
  .home_models_ttl_ja{
    font-size: 32px;
  }
  .home_models_txt{
    font-size: 18px;
  }

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

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 38.48%;
    margin-top: 145px;
  }
  .home_about_img1{
    border-radius: 0 120px 30px 0;
  }
  .home_about_box2{
    width: 19.73%;
    margin-top: 85px;
  }
  .home_about_img2{
    border-radius: 30px 0  0 120px;
  }
  .home_about_head{
    left: 44.5%;
  }
  .home_about_head_ttl{
    font-size: 50px;
    margin-bottom: 80px;
  }
  .home_about_head_txt{
    font-size: 18px;
  }
  
  /* ESSE */
  .home_esse{
    margin-top: -220px;
  }
  .home_esse_box1{
    /*width: 49.01%;*/
    padding-top: 250px;
  }
  .home_esse_box2{
    /*width: 36.51%;*/
    padding-top: 365px;
  }
  .home_esse_img1_box{
    /*width: 58.38%;*/
  }
  .home_esse_img1{
  }
  .home_esse_catch{
    font-size: 68px;
  }
  .home_esse_catch:after{
    width: 380px;
  }
  .home_esse_catch_en{
    bottom: 20px;
  }

  .home_esse_road{
    height: 850px;
  }
  .home_esse_road_inner{
    width: 1481px;
    bottom: 95px;
  }
  .home_esse_road_car{
    /*width: 22.48%;*/
    /*transform: translate(-13%, -42%);*/
  }
  .home_esse_road_base{
  }

  /* PORTNOVA用 */
  .home_port .home_esse_box1{
    width: 50%;
  }
  .home_port .home_esse_box2{
    width: 37%;
  }
  .home_port .home_esse_catch_en {
    bottom: 50px;
  }
  
  /* 車種紹介 */
  .home_models_ttl{
    margin-bottom: 42px;
  }
  .home_models_ttl_en{
    margin-bottom: 55px;
  }
  .home_models_ttl_en img{
    height: 82px;
  }
  .home_models_ttl_ja{
    font-size: 32px;
  }
  .home_models_txt{
    font-size: 18px;
  }

}

.gjs-dashed img{
  background-color: rgba(0, 0, 0, 0.1) !important;
}


/* ======================================== */



/* ヘッド */
.home_sec_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.home_sec_head_box1{
  width: 100%;
}
.home_sec_head_box2{
  width: 100%;
  margin-top: 15px;
}
.home_sec_head_box3{
  display: none;
  width: 19.74%;
  margin-left: auto;
}
.home_sec_head_box4{
  width: 60.86%;
  width: 100%;
  margin-top: 20px;
}
.home_sec_head_ttl{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.home_sec_head_txt{
  font-weight: 500;
}
.home_sec_head .read_more{
  margin-top: 0;
}
.home_sec_head_ttl.fuki{
}
/*.home_sec_head_ttl.fuki:after{
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 380 / 143;
  background-image: url(https://ksmart-original.jp/system_panel/uploads/images/esse_img_bdr2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  position: absolute;
  z-index: 0;
  bottom: -80px;
  right: 0;
}*/
.home_sec_head_ttl.fuki:after{
  content: "";
  display: block;
  width: 190px;
  aspect-ratio: 614 / 68;
  background-image: url(https://ksmart-original.jp/system_panel/uploads/images/maker_line.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5px;
}
.home_sec_head_ttl.fuki{
  
}




/* 施工事例 */
.home_works{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.home_works_box1{
  width: 100%;
}
.home_works_box2{
  width: 100%;
}

.works_list_home1.works_list{
  margin-top: 0;
}
.works_list_home2.works_list{
  margin-top: 0;
}

.works_list_home1.works_list .webgene-item{
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.works_list_home1.works_list .webgene-item .box2{
  margin-top: 20px;
}

.works_list_home2.works_list .webgene-item{
  width: 50%;
}
.works_list_home2.works_list .webgene-item .box2{
  margin-top: 10px;
}
.works_list_home2.works_list .webgene-item:first-child{
  display: none;
}
.works_list_home2.works_list .webgene-item:nth-child(n+3){
  margin-top: 0;
}
.works_list_home2.works_list .webgene-item:nth-child(n+4){
  margin-top: 30px;
}
.works_list_home2.works_list .webgene-item:nth-child(n+6){
  margin-top: 30px;
}
.works_list_home2.works_list .webgene-blog{
  margin-inline: -8px;
}
.works_list_home2.works_list .webgene-item{
  padding: 0 8px;
}

.works_list_home1.works_list .webgene-item .category,
.works_list_home2.works_list .webgene-item .category{
  min-width: 148px;
  padding: 5px 10px 4px;
  background: #dfdbce;
  color: #000;
  border-radius: 15px;
  text-align: center;
}
.works_list_home1.works_list .webgene-item .title,
.works_list_home2.works_list .webgene-item .title{
  margin-top: 15px;
  font-size: 16px;
}

.works_list .webgene-item .more{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: right;
  color: #c5b580;
  margin-top: 10px;
}

/* あとで消す */
/*.works_list_home1.works_list .webgene-item img,
.works_list_home2.works_list .webgene-item img{
  filter: brightness(0.5);
}*/

/* 流れ */
.home_flow{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_flow_box1{
  width: 100%;
  padding-top: 30px;
  order: 2;
}
.home_flow_box2{
  /*width: 53.62%;*/
  width: 100%;
  order: 1;
}
.home_flow_img1{
  width: 300px;
  margin-left: var(--margin-for-device-side-w);
  -webkit-mask-image: url('https://ksmart-original.jp/system_panel/uploads/images/home_flow_img_fr.png');
  -webkit-mask-size: cover;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
}
.home_flow_img1.img_fit:before{
  padding-top: 156.232%;
}
.home_flow_img2{
  /*width: 56.44%;*/
  width: 300px;
  margin-left: auto;
  margin-right: var(--margin-for-device-side-w);
  border-radius: 120px 0 0 30px;
  margin-bottom: 30px;
}
.home_flow_img2.img_fit:before{
  padding-top: 48.558%;
}

.home_flow_inner{
  padding-left: 50px;
  position: relative;
  z-index: 1;
}
.home_flow_head{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
}
.home_flow_contents{
  background: #fcfcfc;
  border-radius: 30px 0 0 30px;
  padding: 30px 15px 30px 50px;
  margin-right: var(--margin-for-device-side-w);
}
.home_flow_contents_row{
  position: relative;
  z-index: 1;
}
.home_flow_contents_row + .home_flow_contents_row{
  margin-top: 30px;
}
.home_flow_contents_num{
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Impact";
  color: #d2d0c7;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -30px;
  transform: translate(-100%, 0);
}
.home_flow_contents_ttl{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.home_flow_contents_txt{
  font-weight: 500;
}

/* QAバナー */
.home_qa_banner{
  display: flex;
  justify-content: center;
  text-align: center;
}
* + .home_qa_banner{
  margin-top: 30px;
}
.home_qa_banner a{
  
}
.home_qa_banner a:hover{
  transform: scale(0.96);
}

@media (max-width:767px){

}
@media (min-width:768px){
  
  /* ヘッド */
  .home_sec_head{
    margin-bottom: 30px;
    /*margin-bottom: 70px;*/
  }
  .home_sec_head_box1{
    /*width: 36.51%;*/
  }
  .home_sec_head_box2{
    /*width: 33.22%;*/
    /*margin-top: 0;*/
  }
  .home_sec_head_box3{
    /*display: block;
    width: 19.74%;
    margin-left: auto;
    margin-top: 0;*/
  }
  .home_sec_head_ttl{
    font-size: 32px;
  }
  .home_sec_head_txt{
  }
  
  .home_sec_head_ttl.fuki:after{
    width: 270px;
    
  }
  
  /* 施工事例 */
  .home_works{
    gap: 30px 0;
  }
  .home_works_box1{
    /*width: 50.99%;*/
  }
  .home_works_box2{
    /*width: 41.12%;*/
  }

  .works_list_home1.works_list{
    margin-top: 0;
  }
  .works_list_home2.works_list{
    margin-top: 0;
  }

  .works_list_home1.works_list .webgene-item .box2{
    margin-top: 20px;
  }

  .works_list_home2.works_list .webgene-item{
    width: 50%;
  }
  .works_list_home2.works_list .webgene-item .box2{
    margin-top: 10px;
  }
  .works_list_home2.works_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_list_home2.works_list .webgene-blog{
    margin-inline: -10px;
  }
  .works_list_home2.works_list .webgene-item{
    padding: 0 10px;
  }

 
  /* 流れ */
  .home_flow{
  }
  .home_flow_box1{
    /*width: 32.24%;*/
    /*padding-top: 195px;*/
    /*order: 1;*/
  }
  .home_flow_box2{
    /*width: 64.80%;*/
    /*order: 2;*/
  }
  .home_flow_img1{
  }
  .home_flow_img2{
    width: 56.44%;
    width: 660px;
    border-radius: 120px 0 0 30px;
    margin-bottom: 50px;
  }

  .home_flow_inner{
    padding-left: 100px;
  }
  .home_flow_head{
    font-size: 32px;
    top: 50px;
  }
  .home_flow_contents{
    border-radius: 30px 0 0 30px;
    padding: 45px 30px 90px 70px;
  }
  .home_flow_contents_row{
  }
  .home_flow_contents_row + .home_flow_contents_row{
    margin-top: 50px;
  }
  .home_flow_contents_num{
    font-size: 50px;
    left: -50px;
    transform: translate(-100%, 0);
  }
  .home_flow_contents_ttl{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .home_flow_contents_txt{
  }

  /* QAバナー */
  .home_qa_banner{
  }
  * + .home_qa_banner{
    margin-top: 120px;
  }
  .home_qa_banner a{
    
  }
}
@media (min-width:1024px){

  /* ヘッド */
  .home_sec_head{
    margin-bottom: 50px;
    /*margin-bottom: 100px;*/
  }
  .home_sec_head_box1{
    width: 36.51%;
  }
  .home_sec_head_box2{
    width: 33.22%;
    margin-top: 0;
  }
  .home_sec_head_box3{
    display: block;
    width: 26%;
    margin-left: auto;
    margin-top: 0;
  }
  .home_sec_head_box3 .read_more a{
    width: 100%;
    min-width: 0;
  }
  .home_sec_head_box4{
    width: 60.86%;
    margin-top: 0;
    margin-left: auto;
  }
  .home_sec_head_ttl{
    font-size: 32px;
  }
  .home_sec_head_txt{
  }
  
  /* 施工事例 */
  .home_works{
    gap: 30px 0;
  }
  .home_works_box1{
    width: 48%;
  }
  .home_works_box2{
    width: 48%;
  }

  .works_list_home1.works_list .webgene-item .box2{
    margin-top: 20px;
  }
  .works_list_home2.works_list .webgene-item{
    width: 50%;
  }
  .works_list_home2.works_list .webgene-item .box2{
    margin-top: 10px;
  }
  .works_list_home2.works_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_list_home2.works_list .webgene-blog{
    margin-inline: -15px;
  }
  .works_list_home2.works_list .webgene-item{
    padding: 0 15px;
  }
}
@media (min-width:1200px){

  /* ヘッド */
  .home_sec_head{
    /*margin-bottom: 50px;*/
    /*margin-bottom: 100px;*/
  }
  .home_sec_head_box1{
    width: 36.51%;
  }
  .home_sec_head_box2{
    width: 40%;
  }
  .home_sec_head_box3{
    width: 19.74%;
  }
  .home_sec_head_ttl{
    font-size: 36px;
  }

  /* 流れ */
  .home_flow{
  }
  .home_flow_box1{
    width: 32.24%;
    padding-top: 195px;
    order: 1;
  }
  .home_flow_box2{
    width: 64.80%;
    order: 2;
  }
  .home_flow_img1{
  }
  .home_flow_img2{
    width: 56.44%;
    width: 660px;
    border-radius: 120px 0 0 30px;
    margin-bottom: 110px;
  }

  .home_flow_inner{
    padding-left: 170px;
  }
  .home_flow_head{
    font-size: 50px;
    top: 50px;
  }
  .home_flow_contents{
    border-radius: 30px 0 0 30px;
    padding: 45px 30px 90px 70px;
  }
  .home_flow_contents_row{
  }
  .home_flow_contents_row + .home_flow_contents_row{
    margin-top: 50px;
  }
  .home_flow_contents_num{
    font-size: 50px;
    left: -50px;
    transform: translate(-100%, 0);
  }
  .home_flow_contents_ttl{
    font-size: 35px;
    margin-bottom: 15px;
  }
  .home_flow_contents_txt{
  }

  /* QAバナー */
  .home_qa_banner{
  }
  * + .home_qa_banner{
    margin-top: 120px;
  }
  .home_qa_banner a{
    
  }
}
@media (min-width:1470px){

  /* ヘッド */
  .home_sec_head{
    /*margin-bottom: 50px;*/
    /*margin-bottom: 100px;*/
  }
  .home_sec_head_box1{
    width: 36.51%;
  }
  .home_sec_head_box2{
    width: 33.22%;
  }
  .home_sec_head_box3{
    width: 19.74%;
  }
  .home_sec_head_ttl{
    font-size: 46px;
  }
  .home_sec_head_ttl.fuki:after{
    width: 380px;
    bottom: -20px;
  }
  
  /* 施工事例 */
  .home_works{
    gap: 30px 0;
  }
  .home_works_box1{
    width: 50.99%;
  }
  .home_works_box2{
    width: 41.12%;
  }
  
  .works_list_home1.works_list .webgene-item .box2{
    margin-top: 20px;
  }
  .works_list_home2.works_list .webgene-item{
    width: 50%;
  }
  .works_list_home2.works_list .webgene-item .box2{
    margin-top: 10px;
  }
  .works_list_home2.works_list .webgene-item:nth-child(n+4){
    margin-top: 55px;
  }
  .works_list_home2.works_list .webgene-blog{
    margin-inline: -52.5px;
  }
  .works_list_home2.works_list .webgene-item{
    padding: 0 52.5px;
  }

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

  /* ヘッド */
  .home_sec_head{
    /*margin-bottom: 50px;*/
    /*margin-bottom: 100px;*/
  }
  .home_sec_head_box1{
    width: 36.51%;
  }
  .home_sec_head_box2{
    width: 33.22%;
    margin-top: 0;
  }
  .home_sec_head_box3{
    width: 19.74%;
  }
  .home_sec_head_ttl{
    font-size: 50px;
  }

  .home_flow_img1{
    width: 685px;
  }
}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

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

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}



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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}








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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}



/*******************************
*　Instagram
********************************/

.home_insta_wrap{
  
}
.home_tt2{
  font-size: 50px;
  font-weight: 400;
  font-family: "Impact";
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}

.insta_list{
  margin-top: 0;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  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 .webgene-item .img{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.insta_list .webgene-item .img:before{
  padding-top: 133%;
}
.insta_list .webgene-item .img video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){

  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 33.333%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 10px;
  }
}
@media (min-width:1024px){



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


  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{
    margin-inline: -4px;
  }
  .insta_list .webgene-item{
    width: 16.666%;
    padding-inline: 4px;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+7){
    margin-top: 4px;
  }

}
@media (min-width:1470px){
  .insta_list{
    margin-top: 0;
  }
}





@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.zooming .swiper-slide-active img,
.zooming .swiper-slide-duplicate-active img,
.zooming .swiper-slide-prev img {
  animation: zoomUp 3s linear 0s normal both;
}
.zooming .swiper-slide img {
  height: auto;
  width: 100%;
}