@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #FFF;
  --sub-color: #dc2828;
  --txt-color: #000;

  /* フォント関連 */
  --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: "Marcellus", 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: #FFF;
  background-image: url(https://itadani.com/system_panel/uploads/images/20251125153106207594.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



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

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #000;
  width: 160px;
  padding: 5px 5px;
  border-radius: 18px;
  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: 35px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

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

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

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

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

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

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #000;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 46px;
    padding: 15px 50px 15px 40px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

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

}
@media (min-width:1720px){
  .header{
    padding: 40px 50px 15px 40px;
  }
  /* ヘッダースリム */
  .header.slim{
    padding-top: 15px;
  }

}


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

/*Scroll*/
.mv_schroll {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 2;
  color: #FFF;
  align-items: flex-start;
}
.mv_schroll p {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}
.mv_schroll:before {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background: #FFF;
  margin-right: 8px;
}

/* サブ */
.mv_sub{
  width: 150px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 80px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_sub_img{

}
.mv_sub_img.img_fit:before{
  padding-top: 110%;
}

/* キャッチ */
.mv_catch{
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 80px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_catch_img{

}
.mv_catch_txt{
  display: flex;
  justify-content: center;
  margin-top: 30px;

}
.mv_catch_txt_inner{
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-mincho);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_catch_txt p{
  letter-spacing: 0.025em;
  line-height: 2.25;
}

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

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

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

  .mv{
    /*padding-top: 375px;*/
    background-image: url('https://itadani.com/system_panel/uploads/images/mv_bg_sp.jpg');
    background-size: cover;
    height: 100svh;
  }

  .mv_img{
    text-align: right;
  }
  .mv_img img{
    width: 80%;
  }
  .mv_sub{
    display: none;
    width: 19vw;
    top: 52vw;
    left: 20px;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .mv_catch{
    top: 235px;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .mv_catch_img{
    width: 43%;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 0;
  }

  .mv_sub{
    width: 36vw;
    top: 19vw;
  }
  .mv_catch{
    top: 64vw;
  }
  .mv_catch_img{
    width: 45%;

  }
  .mv_catch_txt{
    margin-top: 20px;
  }
  .mv_catch_txt_inner{
    font-size: 20px;

  }

}

@media (max-width:430px){

}
@media (max-width:430px){
  .mv{
    /*height: calc(100svh - 64px);*/
    height: 100svh;
  }
  .mv_img img{
    width: 80%;
  }

  .mv_sub{
    width: 36vw;
    top: 19vw;
  }
  .mv_catch{
    top: 86vw;
  }
  .mv_catch_img{
    width: 72%;
    margin: 0 auto;
  }
  .mv_catch_txt{
    margin-top: 18px;
  }
  .mv_catch_txt_inner{
    font-size: 12px;
    -ms-writing-mode: initial;
    writing-mode: initial;
    text-align: center;
  }
}
@media (max-width:414px){
  
}
@media (max-width:390px){

}
@media (max-width:375px){
  .mv_catch_txt{
    margin-top: 12px;
  }
  .mv_catch_txt_inner{
    font-size: 12px;
  }
  .mv_img img{
    width: 70%;
  }

  .mv_sub{
    width: 36vw;
    top: 19vw;
  }
  .mv_catch{
    top: 74vw;
  }
  .mv_catch_img{
    width: 64%;
    margin: 0 auto;
  }
}

@media (max-width:430px) and (max-height:700px){
  .mv{
    height: 106svh;
  }
}

@media (min-width:768px){
  /*Scroll*/
  .mv_schroll {
    left: 50px;
  }

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


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

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

  }
  .mv_txt_p2{

  }

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 550px;
  }
  .mv_img.img_fit img{
    object-position: left center;
  }

  /* サブ */
  .mv_sub{
    width: 290px;
    top: 50%;
    left: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_sub_img{
    width: 75%;
  }
  .mv_sub_img.img_fit:before{
    padding-top: 110%;
  }

  /* キャッチ */
  .mv_catch{
    width: 315px;
    top: 55%;
    right: 75px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_catch_img{

  }
  .mv_catch_txt{
    margin-top: 30px;
  }
  .mv_catch_txt_inner{
    font-size: 16px;
  }
  .mv_catch_txt p{
    line-height: 2.25;
  }


  /*Scroll*/
  .mv_schroll {
    left: 30px;
  }

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

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

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

  /* サブ */
  .mv_sub{
    width: 400px;
    top: 50%;
    left: 50px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

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

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

  /* サブ */
  .mv_sub{
    width: 450px;
    top: 50%;
    left: 80px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_sub_img{

  }
  .mv_sub_img.img_fit:before{
    padding-top: 110%;
  }

  /* キャッチ */
  .mv_catch{
    width: 420px;
    top: 50%;
    right: 50px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_catch_img{

  }
  .mv_catch_txt{
    margin-top: 50px;
  }
  .mv_catch_txt_inner{
    font-size: 16px;
  }
  .mv_catch_txt p{
    line-height: 2.25;
  }

  /*Scroll*/
  .mv_schroll {
    left: 80px;
  }
}
@media (min-width:1700px){
  /*Scroll*/
  .mv_schroll {
    bottom: 0;
    left: 80px;
  }
  .mv_schroll p {
    font-size: 14px;
  }
  .mv_schroll:before {
    width: 1px;
    height: 120px;
    background: #FFF;
    margin-right: 8px;
  }
  /* キャッチ */
  .mv_catch{
    width: 680px;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  
  .mv_sub {
    width: 500px;
  }
  .mv_sub_img{
    width: 100%;
  }

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}






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

.footer{
  margin-top: 70px;
  background-image: url(https://itadani.com/system_panel/uploads/images/home_bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer:before{

  /*content: "";
  background: rgba(0,0,0,0.75);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;*/
}
.footer .container{
  position: relative;
  z-index: 2;
}

.ftr1{
  border-top: none;
  border-bottom: none;
  padding: 35px 0 10px;
  position: relative;
  z-index: 1;
}
.ftr1:before{
  content: "";
  background-image: url('https://itadani.com/system_panel/uploads/images/footer_bg.jpg');
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

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

}
.ftr1_box2{

}

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


.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_box1{

}
.ftr_contact_box2{

}

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

}

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

}
.ftr_contact_tel{

}
.ftr_contact_tel_txt1{

}
.ftr_contact_tel_txt2{

}

.ftr_contact_email{

}
.ftr_contact_email a{

}
.ftr_contact_email a{

}

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

/* バナー */
.ftr_banners{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.ftr_banners_item{
  width: 50%;
  padding: 0 5px;
}
.ftr_banners_item:nth-child(n+3){
  margin-top: 10px;
}
.ftr_banners_item_img{
  display: block;
  transition: 0.2s all;
}
.ftr_banners_item_img:hover{
  transform: scale(1.02);
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  /*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: #000;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix > a:hover{
  color: #FFF;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #000;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #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: #696969;
}
.pagetop a i{
  font-size: 40px;
}


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

}
.ftr_contact_right{

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

}
.ftr_contact_tel_txt1 strong{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
}
.ftr_contact_tel_txt1 a:hover{
  color: var(--bk-color)
}
.ftr_contact_tel_txt2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.ftr_contact_email{

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

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 105px 0 50px;
}
.ftr2:before{

}
.ftr2_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.ftr_logo{

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

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

}
.ftr_links{

}
.ftr_link{

}

.ftr_sns{
  display: flex;
  justify-content: center;
  margin-left: -5px;
  margin-right: -5px;
}
* + .ftr_sns{
  margin-top: 10px;
}
.ftr_sns a{
  padding: 0 5px;
}

.ftr2_box3{
  width: 100%;
  margin-top: 30px;
}

@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr2_box2{
    display: none;
  }
  .ftr_add_item{
    width: 280px;
  }

  .ftr_add_txt{
    font-size: 14px;
  }
  .ftr_contact_tt_en{
    text-align: center;
  }


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

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

  }
  .ftr_contact_box1{

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

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

  }
  .ftr_contact_tel_txt1{

  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

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

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

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

  }
  .ftr_add_item{

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

  .ftr_links{
    width: 33.333%;
    padding: 0 15px;
  }
  .ftr_link{
    width: auto;
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--wh-color);
    position: relative;
    padding: 10px 0 10px 20px;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 5px;
  }
  .ftr_link:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: -15px;
    transform: translateY(-50%);
    transition: all .2s;
    background-image: url(https://itadani.com/system_panel/uploads/images/20251203154343892083.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 12%;
    aspect-ratio: 1 / 1;
  }
  .ftr_link:hover{
    color: var(--sub-color);
    ;
  }
  .ftr_link:hover:after{
    right: -5px;
  }
  .ftr2_box2:before {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 30%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr2_box2:after {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 60%;
    transform: translateY(-50%) translateX(-50%);
  }

  .ftr_copy{
    margin-top: 73px;
  }

  /* バナー */
  .ftr_banners{
    margin-left: -10px;
    margin-right: -10px;
  }
  .ftr_banners_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .ftr_banners_item:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_banners_item:nth-child(n+4){
    margin-top: 10px;
  }



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

  .ftr_contact{

  }
  .ftr_contact_box1{

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

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

  }
  .ftr_contact_tel{

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

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }

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

  }
  .ftr2_box2{
    width: 60%;
    margin-inline:0;
    margin-top: 0;
  }
  .ftr_link {
    padding: 10px 0 10px 10px;
  }
  .ftr2_box2:before {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 30%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr2_box2:after {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 60%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_add{

  }
  .ftr_add_txt{

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

  }
  .ftr_add_item_txt2{

  }
  .ftr2_box2{

  }
  .ftr_links{

  }
  .ftr_link{


  }


  /* バナー */
  .ftr_banners{
    margin-left: -15px;
    margin-right: -15px;
  }
  .ftr_banners_item{
    width: 20%;
    padding: 0 15px;
  }
  .ftr_banners_item:nth-child(n+4){
    margin-top: 0;
  }
  .ftr_banners_item:nth-child(n+6){
    margin-top: 15px;
  }

  .ftr_sns{
    justify-content: flex-start;
  }
}
@media (min-width:1200px){
  .ftr_contact{

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

  }
  .ftr_contact_box2{
    width: 58.88%;
    margin-top: 0;
  }
  .ftr_links {
    width: 33.333%;
    padding: 0 6px;
  }
  .ftr_link {
    font-size: 14px;
    padding: 10px 0 10px 2px;
  }
  .ftr_link:after {
    left: -25px;
  }
  .ftr2_box2:before {
    left: 27%;
  }
  .ftr2_box2:after {
    left: 57%;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

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

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }

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

  .ftr2_box1{
    width: 45%;
  }
  .ftr2_box2{
    width: 45%;
  }
}

@media (min-width:1470px){
  .ftr_contact_tt_en{
    font-size:100px;
  }
  .ftr_link {
    font-size: 16px;
    padding: 10px 0 10px 10px;
  }
  .ftr2_box2:before {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 27%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr2_box2:after {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 60%;
    transform: translateY(-50%) translateX(-50%);
  }
}
@media (min-width:1720px){
  .ftr_contact_tt_en{
    font-size:100px;
  }

  .ftr2_box1{
    width: 38.48%;
  }
  .ftr2_box2{
    width: 43.75%;
  }

  .ftr_link {
    font-size: 16px;
    padding: 10px 0 10px 20px;
  }
  .ftr_link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: -15px;
    transform: translateY(-50%);
    transition: all .2s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 12%;
    aspect-ratio: 1 / 1;
  }
  .ftr2_box2:before {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 29%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr2_box2:after {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #FFF;
    position: absolute;
    top: 75px;
    left: 60%;
    transform: translateY(-50%) translateX(-50%);
  }
}


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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  /*  justify-content: center;*/
  margin-top: 30px;
}
.read_more a{
  display: flex;
  min-width: 215px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  background: none;
  color: #FFF;
  padding: 16px 20px 16px 0;
  margin: 5px 5px 5px 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  justify-content: space-between;
  align-items: center;
}
.read_more a p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #FFF;
  padding: 11px 0 10px;
}
.read_more a:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 42px;
  aspect-ratio: 1;
  background: var(--sub-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.2s all;
  position: relative;
  right: 0;
  padding-top: 0;
}
.read_more a:hover{
  color: #FFF;
  background: none;
}
.read_more a:hover:after{
  margin-right: -5px;
}

.read_more a.bk{
  color: #000000;
}
.read_more a.bk p{
  border-color: #000000;
}
.read_more.center{
  justify-content: center;
}

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


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

}

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

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

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

}


@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

  .read_more a:after{
    right: 20px;
    width: 50px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

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


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

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

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

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

  /* 見出し */
  .tt2_en{
    font-size: 150px;
  }
  /*.tt2{
    margin-bottom: 50px;
  }

  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

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

  .tt2_en{
    font-size: 200px;
  }

}


@media (min-width:1366px){

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

}

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



/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 20px;
}
.pg_home .section.sec1{
  padding-top: 50px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec2{
  background-image: url(https://itadani.com/system_panel/uploads/images/home_bg1b.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3{
  background-image: url(https://itadani.com/system_panel/uploads/images/home_bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec4{
  padding-top: 50px;
}
.pg_home .section.sec5{
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec5:after{
  content: "";
  height: 400px;
  background-image: url(https://itadani.com/system_panel/uploads/images/home_bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.pg_home .section.sec6{
  padding-top: 50px;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

.pg_home .section.sec1 .tt2{
  white-space: nowrap;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  /*-webkit-transform: translate(-50%, 0);*/
  /*transform: translate(-50%, 0);*/

}
.pg_home .section.sec1 .tt2_en{
  line-height: 1;
  padding: 0 15px;
}

.pg_home .section.sec2 .about_story_inner{
  background: none;
}

.pg_home .section.sec4 .cmn_tradition{
  margin-bottom: 0;
}

@media (max-width:767px){

  .pg_home .section.sec1 .tt2_en{
    font-size: 80px;
  }
  .home_about_title .cmn_about_title_ja_line_txt{
    font-size: 40px;
  }
  .cmn_artisanship_box2 .home_about_txt{
    padding-top: 25px;
  }
  .pg_home .section.sec4{
    padding-bottom: 0;
  }

  .cmn_about .read_more{
    margin-top: 0;
  }
  .cmn_tradition .read_more{
    justify-content: center;
  }
  .cmn_tradition .read_more a{
    min-width: 165px;
  }
  .home_news_read_more a{
    min-width: 270px;
  }
}
@media (min-width:768px){

  .pg_home{
    padding-top: 100px;
  }
  .pg_home .section.sec1{
    padding-top: 200px;
  }
  .pg_home .section.sec2{
    padding-top: 140px;
    padding-bottom: 25px;
  }
  .pg_home .section.sec3{
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec4{
    padding-top: 160px;
  }
  .pg_home .section.sec5{
    padding-bottom: 150px;
  }
  .pg_home .section.sec5:after{
    height: 590px;
  }
  .pg_home .section.sec6{
    padding-top: 140px;
  }

}
@media (min-width:1024px){
  .home_news_read_more a{
    min-width: 320px;
  }

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


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


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


}


/* About */
.pg_home .cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -25px;
}
.pg_home .cmn_about{
  flex-direction: row-reverse;
}
.pg_home .cmn_about_box1{
  width: 100%;
  order: 2;
  padding-top: 20px;
}
.pg_home .cmn_about_box2{
  width: 100%;
  order: 1;
  padding-top: 20px;

}
.pg_home .cmn_about_box1_inner{
  display: flex;
  justify-content: space-between;
}
/*.cmn_about_box1_inner{
  margin-left: var(--margin-for-device-side-w);
}*/
.pg_home .cmn_about_box1 .cmn_about_img{

}
.pg_home .cmn_about_box1 .cmn_about_img.pos1{
  width: 54.54%;
}
.pg_home .cmn_about_box1 .cmn_about_img.pos2{
  width: 44.54%;
}
.pg_home .cmn_about_box1 .cmn_about_img.pos1:before{
  padding-top: 100%;
}
.pg_home .cmn_about_box1 .cmn_about_img.pos2:before{
  padding-top: 122.449%;
}

/* 仕事 */
.home_job_wrap{
  padding: 0 15px;
}
.home_job_head{
  text-align: center;
  margin-bottom: 30px;
}
.home_job_head_title1{
  display: flex;
  justify-content: center;
}
.home_job_head_title1_txt{
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-mincho);
  letter-spacing: 0.025em;
  background: #000;
  padding: 1px 20px 2px;
}
.home_job_head_title2{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.home_job_head_title2_txt{
  font-size: 30px;
  font-weight: 900;
  font-family: var(--font-mincho);
  letter-spacing: 0.025em;
  background: #000;
  padding: 0 10px 3px;
}
.home_job_msg{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  text-align: justify;
}
.home_job_msg p{
  letter-spacing: 0.025em;
}

.home_job_wrap + .about_story_inner{
  padding-top: 0;
  margin-top: 40px;
}
.home_job_wrap + .about_story_inner .about_story_items{
  padding-top: 0;
}

.home_job_bg_parts2 {
  width: 689px;
  position: absolute;
  z-index: -1;
  top: -35px;
  right: 135px;
}

.home_job_item_tt_link{
  position: relative;
  z-index: 1;
  display: block;
}

.about_story_item_img {
  overflow: hidden;
}

.about_story_item_img img {
  transition: transform .6s ease;
  transform: scale(1);
}

.about_story_item_img:hover img {
  transform: scale(1.08); /* 8％拡大 */
}

/* Future */
.home_future{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.home_future_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_future_box2{
  width: 100%;
  order: 1;
}
.home_future .cmn_about_title,
.home_future .cmn_about_title_ja_line_txt,
.home_future .cmn_about_txt,
.home_future .cmn_about_title{
  color: #FFF;
}
.home_future .cmn_about_title_ja_line_txt:after{
  background: #FFF;
}

.home_future_imgs{
  aspect-ratio: 760 / 880;
  position: relative;
  z-index: 1;
}
.home_future_img1{
  width: 52.63%;
  position: relative;
  z-index: 1;
}
.home_future_img1.img_fit:before{
  padding-top: 100%;
}
.home_future_img2{
  width: 78.94%;
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
}
.home_future_img2.img_fit:before{
  padding-top: 100%;
}

/* 見出し */
.home_tt1{
  text-align: center;
  position: relative;
  z-index: 1;
}
.home_tt1_en{
  font-size: 80px;
  font-weight: 400;
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
}
.home_tt1_ja{
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mincho);
  letter-spacing: 0.025em;
  color: #000;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -64%);
  transform: translate(0, -64%);
}

/* 制作実績 */
.works_list.home{
  margin-top: 0;
}
.home_tt1 + .works_list.home{
  margin-top: -10px;
}
.works_list.home .webgene-item{
  padding: 0;
}
.works_list.home .webgene-item{

}
.works_list.home .swiper-slide{
  width: 280px;
  height: auto;
}
.works_list .webgene-item .inner{
  height: 100%;
}

.works_list.home .webgene-item:nth-child(n+2),
.works_list.home .webgene-item:nth-child(n+3),
.works_list.home .webgene-item:nth-child(n+4){
  margin-top: 0;
}

@media (max-width:374px){

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

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

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

  /* About */
  .pg_home .cmn_about{
    margin-top: -95px;
  }
  .pg_home .cmn_about_box1{
    width: 100%;
  }
  .pg_home .cmn_about_box2{
    width: 100%;
    padding-top: 15px;
  }
  .pg_home .cmn_about_box1 .cmn_about_img{

  }
  .pg_home .cmn_about_box1 .img_fit:before{
    padding-top: 58%;
  }
  .pg_home .cmn_about{
    flex-direction: row;
  }
  .home_about_read_more .read_more_a{
    min-width: 250px;
  }


  /* 仕事 */
  .home_job_wrap{

  }
  .home_job_head{
    margin-bottom: 65px;
  }
  .home_job_head_title1{
  }
  .home_job_head_title1_txt{
    font-size: 30px;
    padding: 1px 20px 2px;
  }
  .home_job_head_title2{
    margin-top: 10px;
  }
  .home_job_head_title2_txt{
    font-size: 65px;
    padding: 0 10px 3px;
  }
  .home_job_msg{
    font-size: 16px;
    line-height: 2.25;
    text-align: center;
  }

  .home_job_wrap + .about_story_inner{
    margin-top: 80px;
  }

  .home_job_bg_parts2 {
    width: 689px;
    top: -35px;
    right: 135px;
  }

  /* Future */
  .home_future{
  }
  .home_future_box1{
    width: 50%;
    order: 1;
    margin-top: 0;
  }
  .home_future_box2{
    width: 36.51%;
    width: 45%;
    order: 2;
  }

  .home_feature_read_more .read_more_a{
    min-width: 260px;
  }

  /*Flow*/
  .home_flow .read_more a{
    min-width: 220px;
  }

  /* 制作実績 */
  .works_list.home{
  }
  .home_tt1 + .works_list.home{
    margin-top: -75px;
  }
  .works_list.home .webgene-item{
  }
  .works_list.home .swiper-slide{
    width: 300px;
  }
  .home_works_read_more.read_more a{
    min-width: 230px;
  }

  /* 見出し */
  .home_tt1{
    text-align: center;
  }
  .home_tt1_en{
    font-size: 300px;
  }
  .home_tt1_ja{
    font-size: 48px;
    -webkit-transform: translate(0, -64%);
    transform: translate(0, -64%);
  }
}
@media (min-width:1024px){

  /*メイン*/
  .pg_home .cmn_about{
    /*margin-top: -95px;*/

  }
  .pg_home .cmn_about_box1{
    width: 38.48%;
    width: 50%;
  }
  .pg_home .cmn_about_box2{
    width: 55.19%;
    width: 36%;
    margin-top: -20px;
  }
  .pg_home .cmn_about_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .cmn_about_box1_inner{

  }
  .pg_home .cmn_about_box1 .cmn_about_img{

  }
  .pg_home .cmn_about_box1 .img_fit:before{
    padding-top: 82.80%;
  }
  .pg_home .cmn_about{

  }
  .pg_home .cmn_about_title_ja_line_txt{
    font-size: 41px;
  }
  .pg_home .cmn_about_box1_inner{
    margin-right: var(--margin-for-device-side-w);
    margin-left: 0 !important;
  }
  .pg_home .cmn_about_box1 .img_fit:before{
    padding-top: 82.80%;
  }
  .pg_home .cmn_about_txt {
    padding-top: 25px;
  }

  /* Future */
  .home_future{
  }
  .home_future_box1{
    width: 50%;
  }
  .home_future_box2{
    width: 36.51%;
  }

  /*Flow*/
  .home_flow .read_more a{
    min-width: 200px;
  }

  /*制作実績*/
  .home_works_read_more.read_more a{
    min-width: 220px;
  }

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

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


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

  /*メイン*/
  .pg_home .cmn_about{
    /*margin-top: -160px;*/
  }
  .pg_home .cmn_about_box1{
    width: 38.48%;

    width: calc(100% - 490px - 130px);
  }
  .pg_home .cmn_about_box2{
    width: 55.19%;
    width: 490px;
    margin-top: -20px;
  }
  .pg_home .cmn_about_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .cmn_about_box1_inner{

  }
  .pg_home .cmn_about_box1 .cmn_about_img{

  }
  .pg_home .cmn_about_box1 .img_fit:before{
    padding-top: 82.80%;
  }

  .pg_home .cmn_about{

  }
  .pg_home  .cmn_about_title_ja_line_txt{
    font-size: 68px;
  }
  .pg_home .cmn_about_box1_inner{
    margin-right: var(--margin-for-device-side-w);
    margin-left: 0 !important;
  }
  .pg_home .cmn_about_box1 .img_fit:before{
    padding-top: 82.80%;
  }
  .pg_home .cmn_about_txt {
    padding-top: 29px;
  }


  /* 制作実績 */
  .works_list.home{
  }
  .home_tt1 + .works_list.home{
    margin-top: -75px;
  }
  .works_list.home .webgene-item{
    width: 500px;
  }
  .works_list.home .swiper-slide{
    width: 500px;
  }

}


/* NEWS */
.home_news_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.home_news_head_box1{

}
.home_news_head_box2{

}
.home_news_head_box2 .read_more{
  margin-top: 0;
  margin-bottom: 10px;
}
.home_news_head_tt{
  display: flex;
  align-items: flex-end;
  color: #000;
}
.home_news_head_tt_en{
  font-size: 24px;
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
}
.home_news_head_tt_ja{
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mincho);
  /*margin-left: 32px;*/
  /*padding-bottom: 10px;*/
}
.home_news_head_tt{

}

/* 新着情報 */
.news_list_home{

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

@media (max-width:374px){

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

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


  /* NEWS */
  .home_news_head{

  }
  .home_news_head_box1{

  }
  .home_news_head_box2{
    display: none;
  }

  .home_news_head_tt{

  }
  .home_news_head_tt_en{
    font-size: 16px;
  }
  .home_news_head_tt_ja{
    font-size: 22px;
    margin-right: 15px;
  }

  .news_list_home .webgene-item .meta{
    flex-wrap: wrap;
  }
  .news_list_home .webgene-item .date{
    /*width: 100px;*/
    margin-bottom: 5px;
  }
  .news_list_home .webgene-item .category{
    /*width: 100px;*/
  }
  .news_list_home .webgene-item .category span{
    min-width: 80px;
  }
  .news_list_home .webgene-item .title{
    width: 100%;
    margin-top: 5px;
  }

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



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

  }
  .home_news_head_box2{

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

  }
  .home_news_head .read_more{
    margin-bottom: 0;
    padding: 0;
  }
  .home_news_head .read_more a{
    padding-left: 0;
    padding-right: 0;
  }

  /* 新着情報 */
  .news_list_home{

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


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


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


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

  }
  .home_news_head_box2{

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

  }
  .home_news_head_tt_ja{
    font-size: 48px;
    margin-left: 0;
    margin-right: 32px;
    padding-bottom: 0;
  }
  .home_news_head_tt{

  }
  .home_news_head .read_more{
    margin-bottom: 0;
    padding: 0;
  }
  .home_news_head .read_more a{
    min-width: 290px;
    margin-right: -20px;
  }

  /* 新着情報 */
  .news_list_home{

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


}


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

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

}
.pg_business .section.sec1{

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


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

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

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

  }
  .pg_business .section.sec1{

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

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


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

  }
  .pg_business .section.sec1{

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

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


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


}

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

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

}

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

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


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


@media (max-width:767px){

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

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

  }
  .page_hdr_box1_img:before{

  }
  .page_hdr_box2{

  }
  .content_desc{

  }
  .page_hdr_box2 .content_desc{

  }

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

  }
  .business_tt1 p{

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

  }

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

  }
  .business_capa_box2_img img{

  }
  .business_capa_box2_img:before{

  }

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


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

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

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

  }
  .page_hdr_box1_img:before{

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

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

  /*capacity*/
  .business_tt1{

  }
  .business_tt1 p{

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

  }

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

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

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

  }
  .business_capa_box2_img:before{

  }

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


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

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

  .business_tt1{
    white-space: nowrap;
  }

}



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

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

}
.pg_equipment .section.sec1{

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


@media (max-width:374px){

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

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

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

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

  }
  .pg_equipment .section.sec1{

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

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


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


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


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


}

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


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

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

}
.equipment_item_img{

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

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

  }
  .equipment_item_tbl .table_rows_td{

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

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

  }
  .equipment_item_img{

  }
  .equipment_item_img img{

  }
  .equipment_item_img:before{

  }
  .equipment_item_content{

  }
  .equipment_item_tt{

  }
  .equipment_item_icon{

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

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

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

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

  }
  .equipment_item_img{

  }
  .equipment_item_img img{

  }
  .equipment_item_img:before{

  }
  .equipment_item_content{

  }
  .equipment_item_tt{

  }
  .equipment_item_icon{

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

  }
  .equipment_item_tbl{

  }
  .equipment_item_tbl .table_rows_th,
  .equipment_item_tbl .table_rows_td{

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

  }

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


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


}







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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}

/*テーブル*/
.copmany_tbl{
  position: relative;
  z-index: 1;
}
.copmany_tbl p{
  letter-spacing: 0.08em;
}
.copmany_tbl .table_rows_th,
.copmany_tbl .table_rows_td{
  font-size: 16px;
  border: 1px solid #bfbfbf;
  padding: 17.4px 16px;
}
.copmany_tbl .table_rows_th{
  background: #000;
  font-weight: 400;
  /*border-left: none;*/
}
.copmany_tbl .table_rows_td{
  background: var(--main-color);
  color: var(--txt-color);
  font-weight: 400;
  /*border-right: none;*/
}

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

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

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

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

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

  }
  .copmany_tbl .table_rows_td{

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

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

  /*テーブル*/
  .copmany_tbl{

  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{
    font-size: 18px;
    padding: 18px 15px;
  }
  .copmany_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .copmany_tbl .table_rows_td{
    border-left: 0;
    padding-left: 28px;
  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 450px;
  }

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

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

  /*テーブル*/
  .copmany_tbl{
    margin-top: -123px;
  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{

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

  }

  /*地図*/
  .gmap{
    margin-top: 115px;
  }
  .access_map iframe{

  }

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

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

}
@media (min-width:1720px){
  .copmany_tbl{
    margin-top: -123px;
  }

}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

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

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}


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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}

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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}



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


}


