@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #c41925;
  --sub-color: #f2f2f2;
  --txt-color: #0d0d0d;
  --gra1: linear-gradient(to left, #dd8410, #d01523);
  --gra2: linear-gradient(to right, #d01523, #dd8410);
  --gra3: linear-gradient(to right, #d2ea34, #6ec409);
  --gra4: linear-gradient(to right, #6ec409, #d2ea34);
  --gra5:linear-gradient(90deg,rgba(208, 24, 35, 1) 0%, rgba(221, 131, 18, 1) 59%, rgba(221, 131, 18, 1) 100%);

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

  /* 丸み */
  --home-about-box1-radius: 100px;

  --home-about-box1-side: calc(760px - 50vw);
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  "Noto Sans", 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.02em;
}
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: var(--main-color);
  transition: 0.2s all;
}
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{
  display: flex;
  text-align: center;
  align-items: center;
}
.hdr_logo img{
  display: block;
  width: 150px;
  height: var(--logo-height);
  height: auto;
  transition: 0.2s all;
}
.hdr_logo1{
  margin-left: 15px;
}
.hdr_logo_txt{
  margin-left: 20px;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-en);
}
.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_tel_txt1:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 10px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  /*  margin-left: 20px;*/
}
.hdr_contact a{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gra1);
  color: #FFF !important;
  width: 110px;
  height: 100px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.5s all;
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  background-color: #000;
}
.hdr_contact a:before{
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 31 / 31;
  background-image: url(https://ntk-japan.com/system_panel/uploads/images/envelope.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 12px;
  margin-bottom: 4px;
}
.hdr_contact a:hover{
  background: #000;
  color: #FFF;
}

/* 採用ボタン */
.hdr_recruit{
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.hdr_recruit a{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gra3);
  color: #FFF !important;
  width: 110px;
  height: 100px;
  padding: 10px 5px;
  text-align: center;
  transition: all 0.5s;
  ;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  background-color: #000;
}
.hdr_recruit a:before{
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 31 / 31;
  background-image: url(https://ntk-japan.com/system_panel/uploads/images/people-group.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 4px;
  margin-bottom: 10px;
}
.hdr_recruit a:hover{
  background: #000;
  color: #FFF;
}

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


@media (min-width:375px){

}
@media (max-width:767px){
  .hdr_logo{
    width: 75%;
  }

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 90px;
  }
  .header{
    --logo-height: 50px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_box{
    display: flex;
    align-items: center;
  }
  .hdr_contact_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    font-size: 16px;
    padding: 21px 0 17px;
  }
  .hdr_contact_item:hover{
    opacity: .5;
    color: #000;
  }
  .hdr_contact_item p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hdr_contact_item p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 31px;
    margin-bottom: 8px;
  }
  .hdr_contact_item.mitumori{
    font-weight: 700;
    background: #cccccc;
  }
  .hdr_contact_item.mitumori p:before{
    width: 24px;
    aspect-ratio:24 / 31;
    background-image: url(/system_panel/uploads/images/calculator.png);
  }
  .hdr_contact_item.mitumori p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_item.contact{
    font-weight: 600;
    background: #000000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .hdr_contact_item.contact p{
    letter-spacing: 0;

  }
  .hdr_contact_item.contact p:before{
    width: 31px;
    aspect-ratio:31 / 23;
    background-image: url(/system_panel/uploads/images/envelope.png);
  }


  .hdr1{
    padding: 0 15px 0 25px;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 100px;
  }
  .header{
    --logo-height: 50px;
  }

  .hdr1{

  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{
    margin-left: 45px;
  }
  .hdr_tel_txt1{
    font-size: 20px;
  }

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

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

  }
  .hdr_logo img{
    width: auto;
  }

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_box{
    margin-left: 38px;
  }

  /* TELボタン */
  .hdr_tel_txt1:before{
    margin-right: 5px;
  }
  .hdr_tel_txt1{
    font-size: 20px;
  }

}
@media (min-width:1440px){
  /* TELボタン */
  .hdr_tel_txt1{
    font-size: 20px;
  }

}
@media (min-width:1470px){
  .hdr1{
    padding: 0 0 0 25px;
  }
}
@media (min-width:1720px){
  .header{
    --logo-height: 50px;
  }
  /* ロゴ */
  .hdr_logo img{
    width: auto;
  }
  /* TELボタン */
  .hdr_tel_txt1{
    font-size: 25px;
  }

}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv:before{

}
.mv_img{
  width: 100%;
  margin-left: auto;
  position: relative;
  border-radius: 0;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*  padding-top: 46.51%;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(80vh - 64px);
}
.mv_img_title{
  font-size: 30px;
  font-weight: 900;
  font-family: var(--font-ja);
  line-height: 1em;
  color: #FFF;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
  writing-mode: vertical-rl;
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 3;
}
.mv_img_title p:nth-child(n+2) {
  margin-right: 8px;
}
.mv_img_title p{
  letter-spacing: 0.025em;
}

/* MVテキスト */
.mv_inner{
  position: relative;
}
/*.mv_inner:before{
  content: "";
  display: block;
  width: 100vw;
  height: 110%;
  background: #f2f2f2;
  position: absolute;
  top: 6%;
  z-index: -1;
}*/
.mv_txt_box{
  width: 100%;
  position: absolute;
  top: 33%;
  left: 4%;
  z-index: 2;
}
.mv_txt_box1{
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 0.9em;
  background: var(--gra5);
  background-size: 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv_txt_box1 p:nth-child(n+2) {
  margin-top: 8px;
}
.mv_txt_box1 p{
  letter-spacing: 0;
}

.mv_txt_box2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-ja);
  line-height: 1em;
  color: #ff8e00;
  margin-top: 20px;
}
.mv_txt_box2 p:nth-child(n+2) {
  margin-top: 8px;
}
.mv_txt_box2 p{
  letter-spacing: 0.025em;
  background: #0d0d0d;
  padding: 10px 12px;
}

.mv_bk_gray{
  display: block;
  width: 100vw;
  height: 115%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  z-index: -1;
}
.mv_scroll{
  display: flex;
  position: absolute;
  top: auto;
  left: 4%;
  bottom: 0;
  z-index: 2;
  align-items: flex-start;
}
.mv_scroll:before{
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  background: #000000;
}
.mv_scroll p{
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

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

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


.gjs-dashed .mv_txt_box{
  top: 10%;
}

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

  /* MV */
  .mv{
    padding: 50px 0 0px;
  }
  .mv_img{
    width: 82.98%;
    margin-left: auto;
  }
  .mv_img.img_fit:before{
    padding-top: 60.45%;
  }

  /* MVテキスト */
  /*  .mv_inner:before{
      top: 16%;
    }*/
  .mv_txt_box{
    top: 5%;
    left: 4%;
  }
  .mv_txt_box1{
    font-size: 60px;
    background-size: 30%;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 7px;
  }
  .mv_txt_box2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 900;
    font-family: var(--font-ja);
    line-height: 1em;
    color: #ff8e00;
    margin-top: 15px;
  }
  .mv_txt_box2 p:nth-child(n+2) {
    margin-top: 8px;
  }
  .mv_bk_gray{
    display: block;
    width: 100vw;
    height: 107%;
    background: #f2f2f2;
    position: absolute;
    top: 15%;
    z-index: -1;
  }
  .mv_scroll{
    top: auto;
    left: 4%;
    bottom: 0;
  }

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


  /* MV */
  .mv{
  }
  .mv_img{
    width: 85.98%;
    margin-left: auto;
  }
  .mv_img.img_fit:before{
    padding-top: 55.45%;
  }
  .mv_img_title {
    font-size: 50px;
    right: 5%;
  }

  /* MVテキスト */
  .mv_txt_box {
    top: -8%;
    left: 4%;
  }
  .mv_txt_box1{
    font-size: 80px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 10px;
  }
  .mv_txt_box2{
    font-size: 25px;
  }
  .mv_bk_gray {
    display: block;
    width: 100vw;
    height: 115%;
    background: #f2f2f2;
    position: absolute;
    top: 3%;
    z-index: -1;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
    padding: 80px 0 0px;
  }
  .mv_img{
    width: 80.20%;
  }
  .mv_img.img_fit:before{
    padding-top: 50.45%;
  }

  /* MVテキスト */
  .mv_txt_box {
    top: -8%;
    left: 4%;
  }
  .mv_txt_box1 {

  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 10px;
  }
  .mv_txt_box2 {
    font-size: 25px;
    margin-top: 30px;
  }

  .mv_bk_gray {
    display: block;
    width: 100vw;
    height: 117%;
    background: #f2f2f2;
    position: absolute;
    top: 3%;
    z-index: -1;
  }

}
@media (min-width:1360px){
  .mv_scroll:before{
    height: 148px;
  }

  .mv_txt_box1 {
    font-size: 100px;
  }

}
@media (min-width:1470px){
  /* MV */
  .mv{
    padding: 120px 0 0px;
  }
  .mv_img.img_fit:before{
    padding-top: 45.45%;
  }
  .mv_img_title {
    font-size: 60px;
    right: 10%;
  }
  .mv_txt_box1 {
    font-size: 110px;
  }

  /* MVテキスト */
  .mv_txt_box {
    top: -10%;
    left: 4%;
  }
  .mv_txt_box1 {
    font-size: 110px;
  }
  .mv_txt_box1 p:nth-child(n+2) {

  }
  .mv_txt_box2{
    font-size: 25px;
    margin-top: 30px;
  }
  .mv_txt_box2 p:nth-child(n+2) {

  }
  .mv_scroll:before{
    height: 141px;
  }
}
@media (min-width:1720px){
  /*  .mv_inner:before{
      content: "";
      display: block;
      width: 100vw;
      height: 117%;
      background: #f2f2f2;
      position: absolute;
      top: 6%;
      z-index: -1;
    }*/
  .mv_img_title{
    font-size: 80px;
    font-weight: 900;
    font-family: var(--font-ja);
    line-height: 1em;
    color: #FFF;
    text-shadow: 0 0 20px rgba(0,0,0,0.35);
    text-shadow: 0px 0px 16px rgba(24, 24, 24, 1);
    writing-mode: vertical-rl;
    position: absolute;
    top: 10%;
    right: 9.3%;
    z-index: 3;
  }
  .mv_img_title p:nth-child(n+2) {
    margin-right: 22px;
  }
  .mv_img_title p{
    letter-spacing: 0.025em;
  }

  .mv_txt_box{
    width: 100%;
    position: absolute;
    top: -10%;
    left: 5%;
    bottom: auto;
  }
  /* MVテキスト */
  .mv_txt_box1 {
    font-size: 140px;
  }
  .mv_txt_box1{
    font-size: 140px;
    line-height: 1em;
    background-size: 30vw 100%;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 8px;
  }

  .mv_txt_box2{
    font-size: 40px;
    margin-top: 40px;
  }
  .mv_txt_box2 p:nth-child(n+2) {
    margin-top: 8px;
  }
  .mv_txt_box2 p{
    letter-spacing: 0.025em;
    padding: 16px 18px;
  }
  .mv_bk_gray{
    width: 100vw;
    height: 117%;
    background: #f2f2f2;
    top: 6%;
  }
  .mv_scroll {
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 5.2%;
    z-index: 2;
    align-items: flex-start;
  }
  .mv_scroll:before{
    height: 148px;
  }
}

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

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 180px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}

/* MVタイトル */
.pg_header_line_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  /*  margin-top: 15px;*/
}
.pg_header_title_en{
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
  background: var(--main-color);
  padding: 0 5px;
}
.pg_header_title_ja{
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  color: #fff;
  /*  margin-top: -10px;*/
}

.pg_header_mv_inr{
  position: relative;
  padding: 30px 0;
}
.pg_header_mv_inr:after{
  content: "";
  display: block;
  width: 100vw;
  ;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  left: 13.48%;
  z-index: 0;
}
.pg_header_mv_img{
  width:  100%;
}
.pg_header_mv_txt{
  width: 100%;
  position: absolute;
  top: 56.5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.pg_header_mv_txt .mv_text_box1_txt{
  padding-right: 20px;
}
.pg_header_mv_txt .mv_text_box2 p{
  padding: 5px 0px 5px 1px;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 250px;
  }

  .pg_header_title_txt{

  }
  .pg_header_mv_inr{
    padding: 50px 0;
  }
  .pg_header_mv_txt .mv_text_box1_txt{
    padding-right: 40px;
  }
  .pg_header_mv_txt .mv_text_box2 p{
    padding: 2px 0px 2px 1px;
  }
  /* MVタイトル */
  .pg_header_line_title{
    margin-top: 5px;
  }

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

  .pg_header_title_txt{

  }

  /* MVタイトル */
  .pg_header_title_en{
    font-size: 20px;
    padding: 0px 10px;
  }
  .pg_header_title_ja{
    font-size: 40px;
    margin-top: -18px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 140px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 450px;
  }

  .pg_header_title_txt{

  }

  .pg_header_mv_inr{
    padding: 100px 0 100px;
  }
  /* MVタイトル */
  .pg_header_line_title{
    margin-top: 15px;
  }

  .pg_header_title_ja{
    font-size: 60px;
  }
}
@media (min-width: 1720px) {
  .pg_header {
    margin-bottom: 160px;
  }
}


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

.footer{
  margin-top: 80px;
}

.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;
  font-weight: 500;
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 10px 0;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--main-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: var(--main-color);
  color: #FFF !important;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 305px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_en{
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ftr_contact_box1 {
  width: 100%;
}
.ftr_contact_box2 {
  width: 100%;
  margin-top: 30px;
}
.ftr_contact_box2_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_contact_box2_item {
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tel{
  color: #fff;
}
.ftr_contact_box2_item_tel a:hover{
  color: var(--main-color);
}
.ftr_contact_box2_item_tel1{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-en);
  position: relative;
}
.ftr_contact_box2_item_tel1 strong{
  font-size: 16px;
  font-weight: 600;
}
/*.ftr_contact_box2_item_tel1:before {
    content: "\f095";
    display: block;
    font-family: "FontAwesome";
    margin-right: 10px;
    font-size: 30px;
}*/
.ftr_contact_box2_item_tel2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 10px;
}
.ftr_contact_box2_item_tel2 strong{
  font-size: 14px;
  font-weight: 500;
}
.link_1 {
  display: block;
  width: 100%;
  max-width: 380px;
  border: 1px solid #fff;
  border-radius: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff !important;
  padding: 4px 0;
}
.link_1:hover{
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}
.link_1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.link_1 p:before{
  content: "\f0e0";
  font-size: 24px;
  font-family: 'FontAwesome';
  color: #fff !important;
  margin-right: 13px;
}

.ftr_1{
  background: #000;
  padding-top: 50px;
}
.ftr_1_box{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.ftr_1_box1{
  width:100%;
}
.ftr_logo{

}
.ftr_add{
  color: var(--txt-color);
  margin-top: 10px;
}
.ftr_add_txt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.25em;
  color: #FFF;
}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_txt1{
  position: relative;
  padding-right: 10px;
}
.ftr_add_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_add_txt2{
  padding-left: 16px;
}
.ftr_add_txt2 a:hover{
  color: #808080;
}
.ftr_1_box2{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ftr_links{
  width: 100%;
}
.ftr_link{

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

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

  .mv_inner{
    padding-bottom: 62px;
  }
  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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


  .ftr_contact_box1{
    text-align: center;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ftr_contact_box2_item:last-child{
    padding-bottom: 0;
  }
  .ftr_contact_img:before{
    padding-top: 400px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_item{
    width: 295px;
    margin-inline: auto;
    justify-content: center;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_contact_box2 {
    margin-top: 40px;
  }
  .ftr_contact_en{
    color: #fff;
    font-size: 70px;
  }
  .ftr_contact_box2_item {
    position: relative;
  }
  .ftr_contact_box2_item {
    width: 56%;
  }
  .ftr_contact_box2_item:first-child{
    width: 44.00%;
  }
  .ftr_contact_box2_item:before {
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .link_1 {
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }


  .ftr_1{
    padding-top: 75px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 56.26%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{
    font-size: 16px;
  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
   width: 43.72%;
    position: relative;
  }
  /*  .ftr_1_box2:before {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 30%;
      transform: translateY(-50%) translateX(-50%);
    }
    .ftr_1_box2:after {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 60%;
      transform: translateY(-50%) translateX(-50%);
    }*/
  .ftr_links{

  }
  .ftr_link{
    width: 195px;
    width:100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    border-bottom: 1px solid #FFF;
    padding-bottom: 0;
    padding-top: 16px;
  }
  .ftr_link:before{
    content: "\f054";
    font-family: 'FontAwesome';
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    transition: all 0.2s;
    margin-right: 10px;
    padding-left: 3px;
    padding-top: 2px;
  }
  .ftr_link:hover{
    color: var(--main-color);
  }
  .ftr_link p{
    letter-spacing: 0.075em;
  }

  .ftr_copy{
    padding: 10px 0;
    margin-top: 74px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 160px;
  }

  .ftr_contact_box1 {
    width: 100%;
  }
  .ftr_contact_box2 {
    width: 100%;
    margin-top: 50px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 100px;
  }
  .link_1 {
    font-size: 15px;
    display: block;
    width: 100%;
    max-width: 320px;
  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 28.01%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 69.72%;
  }
  /*  .ftr_1_box2:before {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 30%;
      transform: translateY(-50%) translateX(-50%);
    }
    .ftr_1_box2:after {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 60%;
      transform: translateY(-50%) translateX(-50%);
    }*/
  .ftr_links{
    width: 28.40%;
  }
  .ftr_link{
width: 195px;
  }
}
@media (min-width:1200px){
  .ftr_contact_box1 {
    width: 41.11%;
  }
  .ftr_contact_box2{
    width: 58.75%;
    margin-top: 0;
  }

  .ftr_contact_en{
    color: #fff;
    font-size: 60px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 160px;
  }
  .ftr_contact_box2_item_tel1{
    font-size: 36px;
  }
  .ftr_contact_box2_item_tel1 strong{
    font-size: 24px;
    margin-right: 10px;
  }
  .link_1 {
    font-size: 18px;
  }

  .ftr_1{

  }
  .ftr_1_box{
    width: auto;
  }
  .ftr_1_box1{
    width: 29.01%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 61.72%;
  }
  .ftr_1_box2:before {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 75px;
    left: 32.14%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_1_box2:after {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 75px;
    right: 32.14%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_links{
    width: 28.40%;
  }
  .ftr_link{
    width: 100%;
    padding-top: 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 10px;
  }
}
@media (min-width:1440px){
  .ftr_contact_en{
    color: #fff;
    font-size: 90px;
  }
  .link_1 {
    font-size: 18px;
    display: block;
    width: 100%;
    max-width: 380px;
  }
  .ftr_link{
    width: 240px;
    padding-top: 0;
  }

}

@media (min-width: 1720px) {
  .ftr_contact_box1 {
    width: 41.11%;
  }
  .ftr_contact_box2{
    width: 58.75%;
    margin-top: 0;
  }
  .ftr_1_box2{
    width: 55.59%;
  }
  .ftr_1_box2:before {
    height: 125px;
    top: 54%;
    left: 32.2%;
  }
  .ftr_1_box2:after {
    height: 125px;
    top: 54%;
    left: 68.2%;
  }
}

/*******************************
*　共通パーツ
********************************/
/* テキスト */
.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.075em;
  text-align: justify;
}

/* テーブル用 */
.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 14px;
  margin: 0 4px;
  border: 1px solid var(--main-color);
  background: #ffffff;
  font-family: var(--font-en);
  font-weight: 700;
  border-radius: 50px;
}
.webgene-pagination li.selected{
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #FFF;
  border-radius: 50px;
}
.webgene-pagination li.next{
  border: 0;
  border-radius: 0;
  position: relative;
}
.webgene-pagination li.next a{
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.webgene-pagination li.next:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: -63%;
  padding-top: 2px;
  padding-left: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.webgene-pagination li.prev{
  border: 0;
  border-radius: 0;
  position: relative;
}
.webgene-pagination li.prev a{
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.webgene-pagination li.prev:before{
  content: "\f053";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: 63%;
  padding-top: 2px;
  padding-right: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  /*  margin-left: -5px;
    margin-right: -5px;*/
}
.read_more a{
  min-width: 300px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  background: var(--gra4);
  border-radius: 50px;
  color: #FFF !important;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.075em;
}
.read_more a p:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ec409;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.2s all;
  position: relative;
  right: 3px;
  padding-top: 2px;
  padding-left: 3px;
}
.read_more a:hover{
  background: var(--gra1);
}
.read_more a:hover p:after{
  right: -3px;
  ;
}


.link_more_a p:after {
  content: "\f08e" !important;
  font-family: 'FontAwesome';
  display: block;
  width: 22px;
  aspect-ratio: 1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub-color);
  border-radius: 50%;
  font-size: 14px !important;
  transition: 0.2s all;
  position: relative;
  right: 0;
  padding-top: 3px;
}


/* 見出し */
.tt2{
  margin-bottom: 25px;
}
.tt3{
  margin-bottom: 25px;
}
.tt2.center{
  text-align: center;
}
.tt2_en{
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
}
.tt3_en{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #f2efec;
  text-align: center;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 900;
  margin-top: 5px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}
.tt2_ja.wh{
  color: #FFF;
}
.tt2_ja2{
  font-size: 16px;
  font-weight: 900;
  margin-top: 5px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

}

.sec_sub_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.sec_sub_tt p{
  letter-spacing: 0.025em;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc.msg{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.71em;
}
.content_desc.msg p{
  letter-spacing: 0.075em;
}

.recruit_tbl_item.company_tbl .table_rows_th{
  background: #f2f2f2;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .cmn_txt{
    line-height: 1.875;
  }

  .read_more{
    width: 100%;
  }

  /* スマホ用テーブル */
  .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: -150px;
  }

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

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

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt3{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 80px;
  }
  .tt3_en{
    font-size: 80px;
  }
  .tt2_ja{
    font-size: 24px;
    margin-top: 5px;
  }

  .tt2_ja2{
    font-size: 18px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }

  .sec_sub_tt{
    font-size: 30px;
  }
  .content_desc{

  }

  /* 募集要項 */
  .recruit_tbl_item.company_tbl .table_rows_th {
    border-right: 0;
    vertical-align: middle;
  }
  .recruit_tbl_item.company_tbl .table_rows_td {
    border-left: 0;
  }
}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 60px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }
  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
    margin-top: 30px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 10px 7px 10px 32px;
    margin: 0;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  /* .tt2_en{
      font-size: 100px;
    }*/
  .tt2_ja{
    font-size: 26px;
  }

}
@media (min-width:1200px){
  .sec_sub_tt{
    font-size: 40px;
  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }

  .content_desc.msg{
    font-size: 21px;
  }
  /* 見出し */
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja {
    font-size: 30px;
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 10px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt3_en{
    font-size: 150px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 36px;
    line-height: 2;
  }

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

  /* 見出し */
  .tt3{
    margin-bottom: 10px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt3_en{
    font-size: 150px;
  }
}
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



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

}
.pg_home .section.sec1{
  padding-top: 70px;
  padding-bottom: 150px;
  background: #0d0d0d;
  background-image: url(https://ntk-japan.com/system_panel/uploads/images/bk_logo.png);
  background-size: 100% auto;
  aspect-ratio: 1978 / 1271;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-position: right -80px top 35%;
}
.gjs-dashed .pg_home .section.sec1{
  aspect-ratio: initial;
}

.pg_home .section.sec2{
  padding-bottom: 180px;
  background: #f2f2f2;
  position: relative;
  z-index: 0;
}
.pg_home .section.sec3{
  padding-top: 170px;
  padding-bottom: 150px;
  background: #0d0d0d;
  position: relative;
  z-index: 0;
}
.pg_home .section.sec4{
  padding-bottom: 40px;
  background: #f2f2f2;
  position: relative;
  z-index: 0;
}
.pg_home .section.sec5 {
  position: relative;
  padding-bottom: 130px;
}
.pg_home .section.sec6{
  padding-top: 40px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.pg_home .section.sec7{

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

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

}
@media (max-width:767px){
  .pg_home .section.sec1{
    padding-bottom: 16px;
  }


}
@media (min-width:768px){
  .pg_home .section.sec1{
    padding-bottom: 80px;
    background-position: right -170px top 48%;
  }
  .pg_home .section.sec2{
    padding-bottom: 240px;
  }
  .pg_home .section.sec4{
    padding-bottom: 80px;
  }
  .pg_home .section.sec5 {
    padding-bottom: 200px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    background-size: 100% auto;
    background-position: right -95px top -3%;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 150px;
    padding-bottom: 160px;
  }
}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec2 {
    padding-bottom: 50px;
  }
  .pg_home .section.sec5{
    padding-top: 140px;
    padding-bottom: 260px;
  }

}
@media (min-width:1470px){
  .pg_home .section.sec1{
    padding-top: 120px;
    padding-bottom: 120px;
    background-size: auto;
    aspect-ratio: 1978 / 1271;
    background-repeat: no-repeat;
    background-position: right -450px top 46%;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
    padding-bottom: 110px;
  }
  .pg_home .section.sec5{
    padding-top: 140px;
    padding-bottom: 260px;
  }
}
@media (min-width:1720px){
  .pg_home .section.sec1{
    padding-top: 88px;
    padding-bottom: 80px;
    background-size: auto;
    aspect-ratio: 1978 / 1271;
    background-repeat: no-repeat;
    background-position: right -225px top 46%;
  }
  .pg_home .section.sec2 {
    padding-top: 120px;
    padding-bottom: 139px;
  }
  .pg_home .section.sec3{
    padding-top: 150px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
    padding-bottom: 110px;
  }
  .pg_home .section.sec5{
    padding-top: 140px;
    padding-bottom: 260px;
  }
  .pg_home .section.sec6{
    padding-top: 65px;
    padding-bottom:85px;
  }
  .pg_home .section.sec7{
    padding-top: 160px;
    /*    padding-bottom: 95px;*/
  }
}

/* ABOUT US */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  margin-top: 20px;
}
.gjs-dashed .home_about_box2{
  margin-top: 120px;
}

.home_about_imgs{
  aspect-ratio: 620 / 880;
  position: relative;
  z-index: 1;
}
.home_about_imgs_item1{
  width: 88.70%;
}
.home_about_imgs_item2{
  width: 56.45%;
  position: absolute;
  bottom: 145px;
  right: 0;
  z-index: 2;
}
.home_about_imgs_item3{
  width: 48.38%;
  position: absolute;
  bottom: -3px;
  left: 70px;
  z-index: 2;
}
.home_about_imgs_item1.img_fit:before{

}
.home_about_imgs_item2.img_fit:before{

}
.home_about_imgs_item3.img_fit:before{

}
.home_contents_head{

}
.home_contents_head_en{
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: #FFF;
}
.home_contents_head_ja{
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-ja);
  letter-spacing: 0.02em;
  color: #FFF;
  margin-top: -5px;
  margin-bottom: 30px;
}
.home_about_line{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}
.home_about_line_title{
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-ja);
  line-height: 1.21em;
  letter-spacing: 0.025em;
  background: var(--main-color);
  color: #FFF;
  padding: 8px 7px 10px;
}
.home_about_line_title + .home_about_line_title{
  margin-top: 12px;
}
.home_contents_txt{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 2.25em;
  letter-spacing: 0.025em;
  text-align: justify;
  color: var(--txt-color);
}
.home_contents_txt.wh{
  color: #FFF;
}
/* INTERVIEW */
.home_contents_interview{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*  position: relative;*/
  background: #FFF;
  margin-top: 25px;
  padding: 13px 10px 47px;
}
.home_contents_interview_inner{

}
.home_contents_interview_box1{
  width: 100%;
}
.home_contents_interview_box2{
  width: 100%;
  /*  position: relative;*/
  margin-top: 70px;
}
.home_contents_interview_title{
  font-size: 36px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  background: var(--gra1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home_interview_txt{
  margin-top: -7px;
}
.home_contents_interview_txt1{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-ja);
  color: var(--txt-color);
  margin-top: 16px;
}
.home_contents_interview_txt1 strong{
  font-size: 15px;
  font-weight: 700;
  margin-left: 3px;
}
.home_contents_interview_img{
  width: 45%;
  position: absolute;
  right: auto;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}

/* FEATURE */
/* 右上の画像 */
.home_feature_img{
  width: 80.66%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.home_feature_img:before{
  padding-top: 75%;
}
/* 白背景 */
.home_feature_bk_wh1{
  display: block;
  width: 100vw;
  height: clamp(150px, 24vw, 370px);
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.home_feature_bk_wh2{
  display: block;
  width: clamp(50px, 25vw, 200px);
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
/* モノクロ背景 */
.home_feature_mono_bk{
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 70%;
  position: absolute;
  bottom: 0;
  z-index: -2;
}
.home_feature_mono_bk.img_fit:before{
  padding-top: 70%;
}
.home_feature{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*  width: 64.47%;*/
  width: 100%;
}
.home_feature_box1{
  width: 100%;
  margin-top: 50px;
  order: 2;
}
.home_feature_box2{
  width: 100%;
  order: 1;
}
.home_about_line.tate{
  writing-mode: vertical-rl;
  margin-left: -12px;
  margin-bottom: 0;
}
.home_feature_line_title{
  font-size: 30px;
  padding: 12px 10px 20px;
  margin-left: 10px;
}
.home_feature_line_title + .home_feature_line_title{
  margin-top: 0 !important;
  margin-left: 10px;
}
.home_feature_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -15px;
}
.home_feature_list_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  padding: 20px 10px;
  margin-bottom: 20px;
}
.home_feature_list_item:nth-child(even){
  /*  transform: translateY(80px);*/
}
.home_feature_list_box1{
  width: 100%;
}
.home_feature_list_img{

}
.home_feature_list_img:before{
  padding-top: 70%;
}
.home_feature_list_box2{
  width: 100%;
  margin-top: 5px;
}
.home_feature_list_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_feature_list_head_num{
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: var(--main-color);
}
.home_feature_list_head_en{
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--main-color);
  margin-left: 12px;
}
.home_feature_list_head_line{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0px;
  margin-bottom: 15px;
}
.home_feature_list_head_line_title{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  background: var(--gra1);
  color: #FFF;
  padding: 0px 8px;
}

/* SERVICE */
.home_service_bk_txt{
  font-size: 80px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: #FFF;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home_service_contents{

}
.home_service_contents_box{
  position: relative;
  padding-top: 25px;
}
.home_service_contents_box:nth-child(odd):before{
  content: "";
  display: block;
  background: #FFF;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -40px;
  z-index: -1;
}
.home_service_contents_box:nth-child(even):before{
  content: "";
  display: block;
  background: #FFF;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -40px;
  z-index: -1;
}
.home_service_contents_box + .home_service_contents_box{
  margin-top: 115px;
}
.home_service_contents_head{
  position: relative;
  border-bottom: 1px solid #FFF;
  padding-bottom: 5px;
}
.home_service_contents_head:before{
  content: "";
  display: block;
  width: 5px;
  height: 68%;
  background: var(--main-color);
  position: absolute;
  top: 6px;
  left: 0;
}
.home_service_contents_head_inner{
  margin-left: 18px;

}
.cmn_head_title_ja{
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  color: #FFF;
}
.home_service_contents_head_title_ja{

}
.cmn_head_title_en{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: #FFF;
  margin-top: -4px;
}
.home_service_contents_head_title_en{

}
.home_service_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.home_service_contents_box1{
  width: 100%;
  margin-top: 15px;
}
.home_service_contents_box2{
  width: 100%;
}
.home_service_contents_box:nth-child(odd) .home_service_contents_box1{
  order: 2;
}
.home_service_contents_box:nth-child(odd) .home_service_contents_box2{
  order: 1;
}
.home_service_contents_box:nth-child(even) .home_service_contents_box1{
  order: 2;
}
.home_service_contents_box:nth-child(even) .home_service_contents_box2{
  order: 1;
}
.home_service_contents_img:before{
  padding-top: 70.33%;
}

.pg_painting .section.sec4 .home_about_line_title{
  font-weight: 700;
}


/* 見出し */
.home_tt1{
  text-align: center;
  position: relative;
  z-index: 1;
}
.home_tt1_en{
  font-size: 80px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.home_tt1_line{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_tt1_line_ja{
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  background: #000;
  color: #FFF;
  padding: 0px 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

/* 施工実績 */
.home_works_bk_wh1{
  display: block;
  width: 100vw;
  height: 55vw;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.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 .webgene-item .img:before {
  padding-top: 70%;
}
.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;
}
.works_list .webgene-item .box2{
  background: #fff;
  padding: 24px 10px;
}
.works_list .webgene-item .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.works_list .webgene-item .date {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-en);
  color: var(--main-color);
  letter-spacing: 0;
  margin-right: 15px;
  margin-bottom: 10px;
}
.works_list .webgene-item .category {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #666666;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
  margin-top: 5px;
}
.body_home .works_list .webgene-item .category{
  padding: 5px 10px 4px;
  line-height: 1;
}
.works_list .webgene-item .title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 8px;
}

/* 見出し */
.tt2_ja2:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  width: 10px;
  height: 10px;
  background: var(--main-color);
  border-radius: 50%;
  margin-right: 8px;
  margin-right: 10px;
}

/* 採用情報 */
.pg_home .section.sec5:before{
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 310px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 60px;
  z-index: -1;
}
.home_recruit{

}
.home_about_contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_recruit_box1{
  width: 46%;
  /*width: 19.73%;*/
  margin-top: 5px;
  order: 1;
}
.home_recruit_box2{
  width: 100%;
  /*width: 40.84%;*/
  margin-top: 20px;
  order: 3;
}
.home_recruit_box3{
  width: 55%;
  /*width: 35.67%;*/
  margin-top: 100px;
  margin-right: var(--margin-for-device-side-w);
  order: 2;
}
.home_recruit_box1_img{
  /*  margin-left: var(--margin-for-device-side-w);*/
}

.home_recruit_box1_img:before{
  padding-top: 100%;
}
.home_about_line{

}
.home_about_line_title{

}
.home_recruit_imgs{
  aspect-ratio: 685 / 774;
  position: relative;
  margin-right: var(--margin-for-device-side-w);
  z-index: 1;
}
.home_recruit_imgs_item1{
  /* width: 100%; */
  width: 84.59%;
}
.home_recruit_imgs_item1:before{
  padding-top: 96.66%;
}
.home_recruit_imgs_item2{
  /* width: 100%; */
  width: 70.32%;
  position: absolute;
  bottom: -5px;
  left: -120px;
  z-index: 2;
}
.home_recruit_imgs_item2:before{
  padding-top: 100%;
}

/* スライドテキスト */
.home_slide_txt{
  width: 250%;
  position: absolute;
  left: 0;
  bottom: 3%;
  z-index: 2;
}

/* ブログ */
.home_blog_bk{
  width: 100vw;
  height: auto;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.home_blog_bk::after{
  content: "";
  width: auto;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.6) 80%,
    rgba(0,0,0,1) 100%
    );
}
.home_blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.home_blog_contents_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_blog_contents_box2{
  width: 100%;
  margin-top: 15px;
}
.home_blog_contents_box1_tt{

}
.home_blog_contents_box1_tt_en{
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-en);
  color: #FFF;
}
.home_blog_contents_box1_tt_ja{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.025em;
  font-family: var(--font-ja);
  color: #FFF;
  margin-top: 10px;
  margin-bottom: 25px;
}
.home_blog .read_more.left{
  margin-top: 60px;
}
.blog_list .webgene-blog{

}
.blog_list .webgene-item{
  width: 360px;
  padding-left: 10px;
  padding-right: 10px;
}
.blog_list .webgene-item .inner{
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
  color: #000;
  background: #FFF;
}
.blog_list .webgene-item .box1 {
  width: 100%;
}
.blog_list .webgene-item .box2 {
  width: 100%;
  padding: 10px 10px;
}
.blog_list .webgene-item .img:before {
  padding-top: 66.66%;
}
.blog_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog_list .webgene-item .box2 .date {
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.075;
  color: var(--main-color);
  margin-right: 15px;
}
.blog_list  .webgene-item .box2 .category {
  font-size: 13px;
  font-weight: 700;
  background: #FFF;
  color: #666666;
  border: 1px solid #b3b3b3;
  padding: 0 5px;
  line-height: 1;
}
.blog_list  .webgene-item .box2 .title{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.025;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_tt1_en{
    font-size: 72px;
  }
  .home_contents_interview_img_box{
    margin-top: 70px;
  }
  .home_contents_interview{
    padding: 25px 10px 160px;
  }
}
@media (min-width:768px){
  /* ABOUT US */
  .home_about{
    margin-top: 60px;
  }
  .home_about_box1{
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .home_about_box2{

  }
  .home_about_imgs{
    aspect-ratio: 620 / 880;
    position: relative;
    z-index: 1;
  }
  .home_about_imgs_item1{
    width: 88.70%;
  }
  .home_about_imgs_item2{
    width: 56.45%;
    bottom: 145px;
    right: 0;
    z-index: 2;
  }
  .home_about_imgs_item3{
    width: 48.38%;
    bottom: -3px;
    left: 70px;
    z-index: 2;
  }
  .home_about_imgs_item1.img_fit:before{

  }
  .home_about_imgs_item2.img_fit:before{

  }
  .home_about_imgs_item3.img_fit:before{

  }
  .home_contents_head_en{
    font-size: 62px;
  }
  .home_contents_head_ja{
    font-size: 18px;
    margin-top: -5px;
    margin-bottom: 30px;
  }
  .home_about_line{
    margin-bottom: 30px;
  }
  .home_about_line_title{
    font-size: 30px;
    padding: 8px 15px 9px;
  }
  .home_about_line_title + .home_about_line_title{
    margin-top: 12px;
  }
  .home_contents_txt{
    font-size: 16px;
  }
  .home_contents_txt.wh{
    color: #FFF;
  }
  /* INTERVIEW */
  .home_contents_interview{
    /*    position: relative;*/
    margin-top: 55px;
    padding: 20px 18px 20px;
  }
  .home_contents_interview_inner{

  }
  .home_contents_interview_box1{
    width: 57.5%;
  }
  .home_contents_interview_box2{
    width: 40%;
    position: relative;
    margin-top: 0;
  }
  .home_contents_interview_title{
    font-size: 36px;
  }
  .home_interview_txt{
    margin-top: -7px;
  }
  .home_contents_interview_txt1{
    font-size: 14px;
    margin-top: 16px;
  }
  .home_contents_interview_txt1 strong{
    font-size: 16px;
    margin-left: 4px;
  }
  .home_contents_interview_img{
    width: 40%;
    right: 3%;
    left: auto;
    bottom: 0;
    transform: translateX(0);
  }

  /* FEATURE */
  .home_feature_mono_bk.img_fit:before{
    padding-top: 55%;
  }
  .home_feature_img {
    width: 78.66%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .home_feature_bk_wh2 {
    display: block;
    width: clamp(50px, 10vw, 200px);
    background: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
  }
  .home_feature_box1 {
    width: 100%;
    margin-top: 200px;
    order: 2;
  }
  .home_feature_box2{
    width: 100%;
    margin-top: 70px;
    order: 1;
  }
  .home_feature_list {
    margin-top: 5px;
  }
  .home_feature_list_item {
    padding: 20px 20px 20px;
    margin-bottom: 25px;
  }
  .home_feature_list_head_num {
    font-size: 35px;
  }
  .home_feature_list_head_en {
    font-size: 14px;
    margin-left: 12px;
  }
  .home_feature_list_head_line_title{
    font-size: 25px;
  }
  /* SERVICE */
  .home_service_bk_txt{
    font-size: 150px;
    top: -70px;
  }
  .cmn_head_title_ja{
    font-size: 35px;
  }
  .home_service_contents_head:before {
    width: 5px;
    height: 74%;
    top: 9px;
    left: 0;
  }

  /* 見出し */
  .home_tt1{
    text-align: center;
  }
  .home_tt1_en{
    font-size: 140px;
  }
  .home_tt1_line_ja{
    font-size: 30px;
    transform: translateY(-64%) translateX(-50%);
  }
  /* 施工実績 */
  .home_works_bk_wh1{
    height: 40vw;
  }
  .works_list.home{
  }
  .home_tt1 + .works_list.home{
    margin-top: -35px;
  }
  .works_list.home .webgene-item{

  }
  .works_list.home .swiper-slide{
    width: 300px;
  }
  .works_list .webgene-item .box2 {
    padding: 15px 20px;
  }
  .works_list .webgene-item .date {
    margin-bottom: 0;
  }
  .works_list .webgene-item .category {
    margin-top: 0;
  }
  .works_list .webgene-item .title {
    font-size: 20px;
  }

  /* 採用情報 */
  .pg_home .section.sec5:before{
    top: 460px;
    bottom: 100px;
  }
  .home_recruit_box2 {
    margin-top: 35px;
    order: 3;
  }
  .home_recruit_box3 {
    width: 55%;
    margin-top: 200px;
    margin-right: var(--margin-for-device-side-w);
    order: 2;
  }

  .home_service_contents_box:nth-child(odd):before,
  .home_service_contents_box:nth-child(even):before{
    bottom: -60px;
  }
}
@media (min-width:1024px){
  /* ABOUT US */
  .home_about_box1{
    width: 40.78%;
    margin-left: 0;
    margin-right: 0;
  }
  .home_about_box2{
    width: 54.63%;
    margin-top: -30px;
  }
  /* INTERVIEW */
  .home_contents_interview_box1 {
    width: 100%;
  }
  .home_contents_interview_img{
    width: 20%;
  }

  /* FEATURE */
  /* 右上の画像 */
  .home_feature_img{
    width: 41.66%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .home_feature_img:before{
    padding-top: 75%;
  }
  /* 白背景 */
  .home_feature_bk_wh1{
    width: 100vw;
    height: clamp(150px, 24vw, 370px);
    top: 0;
    left: 0;
    z-index: -2;
  }
  .home_feature_bk_wh2{
    width: clamp(50px, 10vw, 200px);
    height: 100%;
    top: 0;
    right: 0;
    z-index: -2;
  }
  /* モノクロ背景 */
  .home_feature_mono_bk{
    padding-top: 0;
    padding-bottom: 0;
    bottom: 0;
  }
  .home_feature_mono_bk.img_fit:before{
    padding-top: 36.45%;
  }

  .home_feature{
    width: 64.47%;
  }
  .home_feature_box1{
    /*width: 100%;*/
    width: 57.55%;
    margin-top: 90px;
    order: 1;
  }
  .home_feature_box2{
    /*width: 100%;*/
    width: 29.59%;
    margin-top: 0;
    order: 2;
  }
  .home_about_line.tate{
    writing-mode: vertical-rl;
    margin-left: 10px;
    margin-bottom: 20px;
  }
  .home_feature_line_title{
    font-size: 40px;
    padding: 12px 10px 20px;
    margin-left: 10px;
  }
  .home_feature_line_title + .home_feature_line_title{
    margin-top: 0 !important;
    margin-left: 10px;
  }
  .home_feature_list{

  }
  .home_feature_list_item{
    /*width: 100%;*/
    width: 49.34%;
    padding: 20px 20px 20px;
    margin-bottom: 20px;
  }
  .home_feature_list_item:nth-child(n+2) {
    margin-top: 0px;
  }
  .home_feature_list_item:nth-child(even){
    transform: translateY(110px);
  }
  .home_feature_list_box1{
    width: 100%;
  }
  .home_feature_list_img{

  }
  .home_feature_list_img:before{
    padding-top: 70%;
  }
  .home_feature_list_box2{
    width: 100%;
    margin-top: 0;
  }
  .home_feature_list_head{

  }
  .home_feature_list_head_num{
    font-size: 30px;
  }
  .home_feature_list_head_en{
    font-size: 14px;
    margin-left: 12px;
  }
  .home_feature_list_head_line{
    margin-top: 5px;
    margin-bottom: 25px;
  }
  .home_feature_list_head_line_title{
    font-size: 24px;
    padding: 0px 8px;
  }
  /* SERVICE */
  .home_service_bk_txt{
    font-size: 260px;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0.15em;
    left: 0.45em;
  }
  .home_service_contents_box{
    padding-top: 0;
  }
  .home_service_contents_box:nth-child(odd):before{
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -60px;
    z-index: -1;
  }
  .home_service_contents_box:nth-child(even):before{
    top: -45px;
    left: var(--margin-for-device-side-w);
    right: 200px;
    bottom: -60px;
    z-index: -1;
  }
  .home_service_contents_box + .home_service_contents_box{
    margin-top: 165px;
  }
  .home_service_contents_head{
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
  }
  .home_service_contents_head:before{
    width: 5px;
    height: 68%;
    background: var(--main-color);
    position: absolute;
    top: 15px;
    left: 0;
  }
  .home_service_contents_head_inner{
    margin-left: 25px;
  }
  .cmn_head_title_ja{
    font-size: 36px;
  }
  .cmn_head_title_en{
    font-size: 16px;
    margin-top: -4px;
  }
  .home_service_contents_row{
    margin-top: 40px;
  }
  .home_service_contents_box1{
    /*width: 100%;*/
    width: 45.78%;
    margin-top: 0;
  }
  .home_service_contents_box2{
    /*width: 100%;*/
    width: 49.34%;
  }
  .home_service_contents_box:nth-child(odd) .home_service_contents_box1{
    order: 1;
  }
  .home_service_contents_box:nth-child(odd) .home_service_contents_box2{
    order: 2;
  }
  .home_service_contents_box:nth-child(even) .home_service_contents_box1{
    order: 2;
  }
  .home_service_contents_box:nth-child(even) .home_service_contents_box2{
    order: 1;
  }
  .home_service_contents_img:before{
    padding-top: 73.33%;
  }
  .home_service_contents_row .read_more.left{
    margin-top: 55px;
  }

  /* 採用情報 */
  .pg_home .section.sec5:before{
    top: 180px;
    left: 480px;
    right: var(--margin-for-device-side-w);
    bottom: 70px;
    z-index: -1;
  }
  .home_recruit_box1{
    /*width: 100%;*/
    width: 17.73%;
    margin-top: 65px;
    order: 1;
  }
  .home_recruit_box2{
    /*width: 100%;*/
    width: 38.84%;
    margin-top: 20px;
    order: 2;
  }
  .home_recruit_box3{
    /*width: 100%;*/
    width: 27.67%;
    aspect-ratio: 685 / 774;
    position: relative;
    margin-right: var(--margin-for-device-side-w);
    margin-top: -110px;
    z-index: 1;
    order: 3;
  }
  .home_recruit_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_recruit_box1_img:before{
    padding-top: 100%;
  }
  .home_recruit_imgs{
    aspect-ratio: 685 / 774;
    position: relative;
    margin-right: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .home_recruit_imgs_item1{
    /* width: 100%; */
    width: 91.59%;
  }
  .home_recruit_imgs_item1:before{
    padding-top: 96.66%;
  }
  .home_recruit_imgs_item2{
    /* width: 100%; */
    width: 56.32%;
    position: absolute;
    bottom: 25px;
    left: -20px;
    z-index: 2;
  }
  .home_recruit_imgs_item2:before{
    padding-top: 100%;
  }
  .home_recruit_box2 .read_more.left{
    margin-top: 55px;
  }
  /* スライドテキスト */
  .home_slide_txt{
    width: 180%;
    position: absolute;
    left: 0;
    bottom: 2%;
    z-index: 2;
  }
  .home_slide_txt1{
    width: 260%;
    position: absolute;
    left: 0;
    bottom: 6%;
    z-index: 2;
  }

  /* ブログ */
  .home_blog_bk{
    width: 100vw;
    height: auto;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .home_blog_bk::after{
    content: "";
    width: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.6) 80%,
      rgba(0,0,0,1) 80%
      );
  }
  .home_blog{
    padding: 40px 0px;
  }
  .home_blog_contents_box1{
    /*  width: 100%;*/
    width: 23.02%;
    position: relative;
    z-index: 1;
  }
  .home_blog_contents_box2{
    /*  width: 100%;*/
    width: 68.94%;
    margin-top: 15px;
  }
  .home_blog_contents_box1_tt{

  }
  .home_blog_contents_box1_tt_en{
    font-size: 72px;
  }
  .home_blog_contents_box1_tt_ja{
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
  .home_blog .read_more.left{
    margin-top: 60px;
  }
  .blog_list .webgene-blog{

  }
  .blog_list .webgene-item{
    width: 360px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .blog_list .webgene-item .inner{
    height: 100%;
    color: #000;
    background: #FFF;
  }
  .blog_list .webgene-item .box1 {
    width: 100%;
  }
  .blog_list .webgene-item .box2 {
    width: 100%;
    padding: 16px 15px;
  }

  .blog_list .webgene-item .img:before {
    padding-top: 66.66%;
  }
  .blog_list .webgene-item .box2 .date {
    font-size: 16px;
    margin-right: 15px;
  }
  .blog_list  .webgene-item .box2 .category {
    font-size: 13px;
    border: 1px solid #b3b3b3;
    padding: 3px 15px 2px;
  }
  .blog_list  .webgene-item .box2 .title{
    font-size: 20px;
  }
}
@media (min-width:1200px){
  /* INTERVIEW */
  .home_contents_interview_box1{
    width: 65.5%;
  }
  .home_contents_interview_img {
    width: 23%;
    right: 3%;
  }
  /* FEATURE */
  /* 右上の画像 */
  .home_feature_img{
    width: 41.66%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .home_feature_img:before{
    padding-top: 75%;
  }
  /* 白背景 */
  .home_feature_bk_wh1{
    display: block;
    width: 100vw;
    height: clamp(150px, 24vw, 370px);
    background: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .home_feature_bk_wh2{
    display: block;
    width: clamp(50px, 25vw, 200px);
    height: 100%;
    background: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
  }
  /* モノクロ背景 */
  .home_feature_mono_bk{
    padding-top: 0;
    padding-bottom: 0;
    bottom: 0;
  }
  .home_feature_mono_bk.img_fit:before{
    padding-top: 36.45%;
  }

  .home_feature{
    width: 64.47%;
  }
  .home_feature_box1{
    /*width: 100%;*/
    width: 57.55%;
    margin-top: 90px;
    order: 1;
  }
  .home_feature_box2{
    /*width: 100%;*/
    width: 29.59%;
    order: 2;
  }
  .home_about_line.tate{
    writing-mode: vertical-rl;
    margin-left: 5px;
    margin-bottom: 20px;
  }
  .home_feature_line_title{
    font-size: 45px;
    padding: 12px 10px 20px;
    margin-left: 10px;
  }
  .home_feature_line_title + .home_feature_line_title{
    margin-top: 0 !important;
    margin-left: 10px;
  }
  .home_feature_list{

  }
  .home_feature_list_item{
    /*width: 100%;*/
    width: 49.34%;
    padding: 25px 25px 25px;
    margin-bottom: 20px;
  }
  .home_feature_list_item:nth-child(n+2) {
    margin-top: 0px;
  }
  .home_feature_list_item:nth-child(even){
    transform: translateY(80px);
  }
  .home_feature_list_item.pos2{
    /*margin-top: 80px;*/
  }
  .home_feature_list_box1{
    /*width: 100%;*/
    width: 29.66%;
  }
  .home_feature_list_img{

  }
  .home_feature_list_img:before{
    padding-top: 100%;
  }
  .home_feature_list_box2{
    /*width: 100%;*/
    width: 65.8%;
    margin-top: -23px;
  }
  .home_feature_list_head{

  }
  .home_feature_list_head_num{
    font-size: 30px;
  }
  .home_feature_list_head_en{
    font-size: 14px;
    margin-left: 12px;
  }
  .home_feature_list_head_line{
    margin-top: 5px;
    margin-bottom: 25px;
  }
  .home_feature_list_head_line_title{
    font-size: 20px;
    padding: 0px 8px;
  }

  /* SERVICE */

  .home_service_contents_box{
    padding-top: 0;
  }
  .home_service_contents_box:nth-child(odd):before{
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -60px;
    z-index: -1;
  }
  .home_service_contents_box:nth-child(even):before{
    top: -45px;
    left: var(--margin-for-device-side-w);
    right: 200px;
    bottom: -60px;
    z-index: -1;
  }
  .home_service_contents_box + .home_service_contents_box{
    margin-top: 165px;
  }
  .home_service_contents_head{
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
  }
  .home_service_contents_head:before{
    width: 5px;
    height: 68%;
    background: var(--main-color);
    position: absolute;
    top: 15px;
    left: 0;
  }
  .home_service_contents_head_inner{
    margin-left: 25px;
  }
  .cmn_head_title_ja{
    font-size: 48px;
  }
  .cmn_head_title_en{
    font-size: 16px;
    margin-top: -4px;
  }
  .home_service_contents_row{
    margin-top: 60px;
  }
  .home_service_contents_box1{
    /*width: 100%;*/
    width: 45.78%;
  }
  .home_service_contents_box2{
    /*width: 100%;*/
    width: 49.34%;
  }
  .home_service_contents_img:before{
    padding-top: 73.33%;
  }
  .home_service_contents_row .read_more.left{
    margin-top: 55px;
  }
  /* 見出し */
  .home_tt1_en {
    font-size: 200px;
  }
  /* 施工実績 */
  .home_works_bk_wh1{
    height: 22vw;
  }
  .read_more.center{
    margin-top: 50px;
  }

  .blog_list .webgene-item .box2 {
    width: 100%;
    padding: 16px 15px;
  }
  .home_recruit_imgs_item2{
    left: -80px;
  }
}
@media (min-width:1366px){

}
@media (min-width:1470px){
  /* FEATURE */
  .home_feature_box1{
    margin-top: 140px;
  }
  .home_feature_list {
    margin-top: 35px;
  }
  .home_feature_list_head_line_title{
    font-size: 24px;
    padding: 0px 8px;
  }
  /* 採用情報 */
  .pg_home .section.sec5:before {
    position: absolute;
    top: 180px;
    left: 630px;
    right: var(--margin-for-device-side-w);
    bottom: 100px;
    z-index: -1;
  }
  .home_recruit_box1{
    /*width: 100%;*/
    width: 19.73%;
    margin-top: 65px;
    order: 1;
  }
  .home_recruit_box2{
    /*width: 100%;*/
    width: 40.84%;
    margin-top: 20px;
    order: 2;
  }

  /* スライドテキスト */
  .home_slide_txt1 {
    width: 260%;
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: 2;
  }

  /* ブログ */
  .home_blog_bk{
    width: 100vw;
    height: auto;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .home_blog_bk::after{
    content: "";
    width: 70%;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.6) 80%,
      rgba(0,0,0,1) 90%
      );
  }
  .home_blog{
    padding: 40px 0px;
  }
  .home_blog_contents_box1{
    /*  width: 100%;*/
    width: 23.02%;
    position: relative;
    z-index: 1;
  }
  .home_blog_contents_box2{
    /*  width: 100%;*/
    width: 68.94%;
    margin-top: 15px;
  }
  .home_blog_contents_box1_tt{

  }
  .home_blog_contents_box1_tt_en{
    font-size: 72px;
  }
  .home_blog_contents_box1_tt_ja{
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
  .home_blog .read_more.left{
    margin-top: 60px;
  }
  .blog_list .webgene-blog{

  }
  .blog_list .webgene-item{
    width: 360px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .blog_list .webgene-item .inner{
    height: 100%;
    color: #000;
    background: #FFF;
  }
  .blog_list .webgene-item .box1 {
    width: 100%;
  }
  .blog_list .webgene-item .box2 {
    width: 100%;
    padding: 25px 15px;
  }
  .blog_list .webgene-item .img:before {
    padding-top: 66.66%;
  }
  .blog_list .webgene-item .box2 .date {
    font-size: 16px;
    margin-right: 15px;
  }
  .blog_list  .webgene-item .box2 .category {
    font-size: 13px;
    border: 1px solid #b3b3b3;
    padding: 4px 8px;
  }
  .blog_list  .webgene-item .box2 .category{

  }

  .blog_list  .webgene-item .box2 .title{
    font-size: 20px;
  }
  .body_home .blog_list .webgene-item .box2{
    padding: 25px 28px 25px 27px;
  }
}
@media (min-width:1720px){
  /* ABOUT US */
  .home_about{
    margin-top: 230px;
  }
  .home_about_box1{
    /*width: 100%:*/
    width: 40.78%;
  }
  .home_about_box2{
    /*width: 100%:*/
    width: 52.63%;
    margin-top: -30px;
  }

  .home_about_imgs{
    aspect-ratio: 620 / 880;
    position: relative;
    z-index: 1;
  }
  .home_about_imgs_item1{
    width: 88.70%;
  }
  .home_about_imgs_item2{
    width: 56.45%;
    position: absolute;
    bottom: 145px;
    right: 0;
    z-index: 2;
  }
  .home_about_imgs_item3{
    width: 48.38%;
    position: absolute;
    bottom: -3px;
    left: 70px;
    z-index: 2;
  }
  .home_contents_head_en{
    font-size: 72px;
    font-weight: 600;
    font-family: var(--font-en);
    letter-spacing: 0;
    color: #FFF;
  }
  .home_contents_head_ja{
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-ja);
    letter-spacing: 0.02em;
    color: #FFF;
    margin-top: -5px;
    margin-bottom: 30px;
  }
  .home_about_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }
  .home_about_line_title{
    font-size: 58px;
    font-weight: 900;
    font-family: var(--font-ja);
    line-height: 1.21em;
    letter-spacing: 0.025em;
    background: var(--main-color);
    color: #FFF;
    padding: 8px 15px 9px;
  }
  .home_about_line_title + .home_about_line_title{
    margin-top: 12px;
  }
  .home_contents_txt{
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-ja);
    line-height: 2.25em;
    letter-spacing: 0.025em;
    color: var(--txt-color);
  }
  .home_contents_txt.wh{
    color: #FFF;
  }
  /* INTERVIEW */
  .home_contents_interview{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*    position: relative;*/
    background: #FFF;
    margin-top: 55px;
    padding: 13px 38px 47px;
  }
  .home_contents_interview_inner{

  }
  .home_contents_interview_box1{
    /*width: 100%*/
    width: 57.5%
  }
  .home_contents_interview_title{
    font-size: 36px;
    font-weight: 600;
    font-family: var(--font-en);
    letter-spacing: 0;
    background: var(--gra5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .home_interview_txt{
    margin-top: -7px;
  }
  .home_contents_interview_txt1{
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-ja);
    color: var(--txt-color);
    margin-top: 16px;
  }
  .home_contents_interview_txt1 strong{
    font-size: 16px;
    font-weight: 700;
    margin-left: 4px;
  }
  .home_contents_interview_img{
    width: 400px;
    right: 6.5%;
    bottom: 0;
    position: absolute;
    z-index: 2;
  }

  /* FEATURE */
  /* 右上の画像 */
  .home_feature_img{
    width: 41.66%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .home_feature_img:before{
    padding-top: 75%;
  }
  /* 白背景 */
  .home_feature_bk_wh1{
    display: block;
    width: 100vw;
    height: clamp(150px, 24vw, 370px);
    background: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .home_feature_bk_wh2{
    display: block;
    width: clamp(50px, 25vw, 200px);
    height: 100%;
    background: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
  }
  /* モノクロ背景 */
  .home_feature_mono_bk{
    padding-top: 0;
    padding-bottom: 0;
    bottom: 0;
  }
  .home_feature_mono_bk.img_fit:before{
    padding-top: 36.45%;
  }

  .home_feature{
    width: 64.47%;
  }
  .home_feature_box1{
    /*width: 100%;*/
    width: 57.55%;
    margin-top: 90px;
    order: 1;
  }
  .home_feature_box2{
    /*width: 100%;*/
    width: 29.59%;
    order: 2;
  }
  .home_about_line.tate{
    writing-mode: vertical-rl;
    margin-left: -12px;
    margin-bottom: 20px;
  }
  .home_feature_line_title{
    font-size: 58px;
    padding: 12px 10px 20px;
    margin-left: 10px;
  }
  .home_feature_line_title + .home_feature_line_title{
    margin-top: 0 !important;
    margin-left: 10px;
  }
  .home_feature_list {
    margin-top: -5px;
    padding-inline: 15px;
    padding-inline:0;
  }
  .home_feature_list_item{
    /*width: 100%;*/
    width: 49.34%;
    padding: 40px 40px 35px;
    margin-bottom: 20px;
  }
  .home_feature_list_item:nth-child(n+2) {
    margin-top: 0px;
  }
  .home_feature_list_item:nth-child(even){
    transform: translateY(80px);
  }
  .home_feature_list_item.pos2{
    /*margin-top: 80px;*/
  }
  .home_feature_list_box1{
    /*width: 100%;*/
    width: 29.66%;
  }
  .home_feature_list_img{

  }
  .home_feature_list_img:before{
    padding-top: 100%;
  }
  .home_feature_list_box2{
    /*width: 100%;*/
    width: 65.8%;
    margin-top: -23px;
  }
  .home_feature_list_head{

  }
  .home_feature_list_head_num{
    font-size: 30px;
  }
  .home_feature_list_head_en{
    font-size: 14px;
    margin-left: 12px;
  }
  .home_feature_list_head_line{
    margin-top: 5px;
    margin-bottom: 25px;
  }
  .home_feature_list_head_line_title{
    font-size: 24px;
    padding: 0px 8px;
  }

  /* SERVICE */
  .home_service_bk_txt{
    font-size: 350px;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0.15em;
    left: 0.6em;
  }
  .home_service_contents_box{
    padding-top: 0;
  }
  .home_service_contents_box:nth-child(odd):before{
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -60px;
    z-index: -1;
  }
  .home_service_contents_box:nth-child(even):before{
    top: -45px;
    left: var(--margin-for-device-side-w);
    right: 200px;
    bottom: -60px;
    z-index: -1;
  }
  .home_service_contents_box + .home_service_contents_box{
    margin-top: 165px;
  }
  .home_service_contents_head{
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
  }
  .home_service_contents_head:before{
    width: 5px;
    height: 68%;
    background: var(--main-color);
    position: absolute;
    top: 15px;
    left: 0;
  }
  .home_service_contents_head_inner{
    margin-left: 25px;
  }
  .cmn_head_title_ja{
    font-size: 48px;
  }
  .cmn_head_title_en{
    font-size: 16px;
    margin-top: -4px;
  }
  .home_service_contents_row{
    margin-top: 60px;
  }
  .home_service_contents_box1{
    /*width: 100%;*/
    width: 45.78%;
  }
  .home_service_contents_box2{
    /*width: 100%;*/
    width: 49.34%;
  }
  .home_service_contents_box:nth-child(odd) .home_service_contents_box1{
    order: 1;
  }
  .home_service_contents_box:nth-child(odd) .home_service_contents_box2{
    order: 2;
  }
  .home_service_contents_box:nth-child(even) .home_service_contents_box1{
    order: 2;
    width: 46.71%;
  }
  .home_service_contents_box:nth-child(even) .home_service_contents_box2{
    order: 1;

  }
  .home_service_contents_img:before{
    padding-top: 73.33%;
  }
  .home_service_contents_row .read_more.left{
    margin-top: 55px;
  }
  /* 見出し */
  .home_tt1_en{
    font-size: 350px;
  }
  .home_tt1_line_ja{
    font-size: 58px;
    transform: translateY(-64%) translateX(-50%);
  }
  /* 施工実績 */
  .home_works_bk_wh1{
    height: 30.5vw;
  }
  .works_list.home{
  }
  .home_tt1 + .works_list.home{
    margin-top: -80px;
  }
  .works_list.home .webgene-item{
    width: 500px;
  }
  .works_list.home .swiper-slide{
    width: 500px;
  }

  /* 採用情報 */
  .pg_home .section.sec5:before{
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 260px;
    left: 820px;
    /* left: var(--margin-for-device-side-w); */
    right: var(--margin-for-device-side-w);
    bottom: 136px;
    z-index: -1;
  }
  .home_recruit_box1{
    /*width: 100%;*/
    width: 19.73%;
    margin-top: 65px;
    order: 1;
  }
  .home_recruit_box2{
    /*width: 100%;*/
    width: 40.84%;
    margin-top: 20px;
    order: 2;
  }
  .home_recruit_box3{
    /*width: 100%;*/
    width: 35.67%;
    aspect-ratio: 685 / 774;
    position: relative;
    margin-right: var(--margin-for-device-side-w);
    margin-top: -150px;
    margin-right: -140px;
    z-index: 1;
    order: 3;
  }
  .home_recruit_box1_img{

  }
  .home_recruit_box1_img:before{
    padding-top: 100%;
  }
  .home_recruit_imgs{
    aspect-ratio: 685 / 774;
    position: relative;
    margin-right: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .home_recruit_imgs_item1{
    /* width: 100%; */
    width: 81.59%;
  }
  .home_recruit_imgs_item1:before{
    padding-top: 96.66%;
  }
  .home_recruit_imgs_item2{
    /* width: 100%; */
    width: 50.32%;
    position: absolute;
    bottom: 65px;
    left: -80px;
    z-index: 2;
  }
  .home_recruit_imgs_item2:before{
    padding-top: 100%;
  }
  .home_recruit_box2 .home_contents_txt{
    margin-right: 46px;
  }
  .home_recruit_box2 .read_more.left{
    margin-top: 55px;
  }
  /* スライドテキスト */
  .home_slide_txt{
    width: 180%;
    position: absolute;
    left: 0;
    bottom: 4.5%;
    z-index: 2;
  }
  .home_slide_txt1{
    width: 260%;
    position: absolute;
    left: 0;
    bottom: 16.5%;
    z-index: 2;
  }
  /* ブログ */
  .home_blog_bk::after{
    content: "";
    width: 50%;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.6) 80%,
      rgba(0,0,0,1) 100%
      );
  }

  .works_list .webgene-item .box2{
    padding: 23px 26px;
  }
  .body_home .works_list .webgene-item .title{
    margin-top: 0;
  }
  .body_home .works_list .webgene-item .category{
    padding: 4px 10px 4px;
    line-height: 1;
  }

}

/* Instagram */
.home_insta_inner{
  width: 100%;
  background: none;
  padding: 20px 10px 0;
  margin-left: auto;
  margin-right: auto;
}
.home_insta_title{

}
.home_insta_title_en{
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  color: #FFF;
  text-align: center;
  line-height: 1;
}

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

.home_insta_outer{
  position: relative;
  padding: 30px 10px;
}
.home_insta_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}
.insta_list .img:before{
  padding-top: 133.333%;
}
@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .home_insta_title_en{
    font-size: 80px;
  }
  .insta_list{
    margin-top: -1em;
  }
  .insta_list .webgene-blog{
    margin-inline: -12px;
  }
  .insta_list .webgene-item{
    padding-inline:12px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

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

  /*isnta*/
  .insta_list{
    margin-top: -2em;
  }
  .home_insta_title_en{
    font-size: 100px;
  }
  .insta_list .webgene-blog{
    margin-inline: -12px;
  }
  .insta_list .webgene-item{
    width: 20%;
    padding-inline: 12px;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top:6px;
    ;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }

}
@media (min-width:1200px){
  .home_insta_inner{
    width: 100%;
    padding: 0px 10px 0;
  }
  .home_insta_title_en{
    font-size: 120px;
  }
}
@media (min-width:768px) and  (max-width:1023px){
  .home_feature_list_box1{
    width: 27%;
  }
  .home_feature_list_box2{
    width: 67%;
  }
}
/*******************************
*　塗装工事
********************************/
.pg_painting{

}
.pg_painting .section.sec1{
  position: relative;
  padding-bottom: 100px;
}
.pg_painting .section.sec2{
  position: relative;
  background: #000;
  z-index: 0;
}
.pg_painting .section.sec3 {
  position: relative;
  padding-bottom: 80px;
}
.pg_painting .section.sec4{
  padding-bottom: 100px;
  background: #0d0d0d;
  position: relative;
  z-index: 0;
}
.pg_painting .section.sec5{
  position: relative;
}
.pg_painting .section.sec6{
  background: #f2f2f2;
  position: relative;
  z-index: 0;
  padding-bottom:80px;
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_painting .section.sec1{
    padding-bottom: 180px;
  }
  .pg_painting .section.sec2{

  }
  .pg_painting .section.sec3{
    padding-top: 80px;
    padding-bottom: 105px;
  }
  .pg_painting .section.sec4{

  }
  .pg_painting .section.sec5{
    padding-bottom: 150px;
  }
  .pg_painting .section.sec6{
    padding-bottom: 100px;
  }
}
@media (min-width:1024px){
  .pg_painting .section.sec1{
    padding-bottom: 260px;
  }
  .pg_painting .section.sec2{
    padding-top: 85px;
    padding-bottom: 100px;
  }
  .pg_painting .section.sec3{
    padding-top: 140px;
    padding-bottom: 335px;
  }
  .pg_painting .section.sec4{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pg_painting .section.sec5{

  }
  .pg_painting .section.sec6{
    padding-bottom: 100px;
  }
}
@media (min-width:1200px){


}
@media (min-width:1470px){
  .pg_painting .section.sec1{
    padding-bottom: 430px;
  }
  .pg_painting .section.sec2{
    padding-top: 115px;
    padding-bottom: 130px;
  }
  .pg_painting .section.sec3{
    padding-top: 140px;
    padding-bottom: 335px;
  }
  .pg_painting .section.sec4{
    padding-top: 135px;
    padding-bottom: 150px;
  }
  .pg_painting .section.sec5{
    padding-top: 145px;
    padding-bottom: 200px;
  }
  .pg_painting .section.sec6{
    padding-bottom: 180px;
  }
}
@media (min-width:1720px){
  .pg_painting .section.sec1{
    padding-bottom: 430px;
  }
}

/* 背景 */
.pg_painting .section.sec1:before {
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 140px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 50px;
  z-index: -1;
}

.cmn_caution_bk{
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}
.cmn_caution_bk img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.15;
}
.cmn_caution_bk:after{
  content: "";
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  position: absolute;
  z-index: 2;
  inset: 0;
}
.pg_painting .section.sec3:before {
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 75px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 0;
  z-index: -1;
}
.cmn_service_contents_box:nth-child(odd):before {
  top: 5px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -45px;
  z-index: -1;
}
.cmn_service_contents_box:nth-child(even):before {
  top: 5px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -45px;
  z-index: -1;
}
.pg_painting .section.sec5:before {
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 75px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 0;
  z-index: -1;
}

/* メイン */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_about_box1{
  width: 100%;
  margin-top: 20px;
  order: 2;
}
.cmn_about_box2{
  width: 100%;
  order: 1;
}
.cmn_about_img{

}
.cmn_about_img:before{
  padding-top: 68.75%;
}

/* CAUTUION */
.cmn_caution{

}
.cmn_caution_head{
  text-align: center;
}
.cmn_caution_head_en{
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: var(--main-color);
}
.cmn_caution_head_ja{
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  color: #FFF;
  margin-top: 5px;
  margin-bottom: 20px;
}
.cmn_caution_lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.cmn_caution_list{
  width: 100%;
  background: #FFF;
  padding: 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cmn_caution_list:nth-child(n+2){
  margin-top: 15px;
}
.cmn_caution_list_icon{
  margin-bottom: 16px;
}
.cmn_caution_list_txt{
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  line-height: 1.75;
  margin-top: auto;
  margin-bottom: auto;
}
.cmn_caution .home_contents_txt.center{
  text-align: justify;
  margin-top: 25px;
}

/* FEATURE */
.cmn_feature{

}
.cmn_feature_contents_rows{
  margin-top: 30px;
}
.cmn_feature_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_feature_contents_row:nth-child(n+2){
  margin-top: 65px;
}
.cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box1{
  order: 1;
}
.cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2{
  order: 2;
  margin-right: 0;
}
.cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box1{
  order: 1;
}
.cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2{
  order: 2;
  margin-left: 0;
}
.cmn_feature_contents_box1{
  width: 100%;
}
.cmn_feature_contents_box2{
  width: 100%;
  position: relative;
  margin-top: -25px;
}
.cmn_feature_contents_box2:after{
  content: "";
  display: block;
  width: 100vw;
  height: 120%;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 10%;
  z-index: -1;
}
.cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2:after{
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}
.cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2:after{
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}
.cmn_feature_contents_img{

}
.cmn_feature_contents_img:before{
  padding-top: 66.66%;
}
.cmn_feature_contents_num{
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  background: var(--gra1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 50vw 100%;
}
.cmn_feature_contents_num strong{
  font-size: 3.75em;
  font-weight: 600;
  margin-left: 5px;

}
.cmn_feature_contents_line{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -15px;
  margin-bottom: 35px;
}
.cmn_feature_contents_line_title{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  background: var(--gra1);
  color: #FFF;
  padding: 0px 15px;
}

/* SERVICE */
.cmn_service_contents_box .home_service_contents_head {
  padding-bottom: 5px;
}
/*.cmn_service_contents_head_title_ja{
    font-size: 60px
}*/
/*.cmn_service_contents_box:nth-child(n+2){
    margin-top: 160px;
}*/
.cmn_service_contents_box1{
  width: 100%;
}
.cmn_service_contents_box2{
  width: 100%;
}
.cmn_service_contents_box:nth-child(odd) .cmn_service_contents_box1{
  order: 2;
}
.cmn_service_contents_box:nth-child(odd) .cmn_service_contents_box2{
  order: 1;
}
.cmn_service_contents_box:nth-child(even) .cmn_service_contents_box1{
  order: 2;
}
.cmn_service_contents_box:nth-child(even) .cmn_service_contents_box2 {
  order: 1;
}
/*.cmn_service_contents_line_title{
    font-size: 36px
}*/
.cmn_service_contents_img:before{
  padding-top: 66.66%;
}

/* FLOW */
.cmn_flow{

}
.cmn_flow_contents_rows{
  margin-top: 30px;
}
.cmn_flow_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  padding: 25px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.cmn_flow_contents_row:nth-child(n+2){
  margin-top: 20px;
}
.cmn_flow_contents_box1{
  position: relative;
  width: 100%;
}
.cmn_flow_contents_box2{
  width: 100%;
  margin-top: 30px;
}
.cmn_flow_contents_box1:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #b2b2b2;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -30%;
  transform: translateY(-50%);
}
.cmn_flow_contents_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cmn_flow_contents_head_num{
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  text-align: center;
}
.cmn_flow_contents_head_num_p1{
  font-size: 1.5em;
  font-weight: 600;
}
.cmn_flow_contents_head_num_p2{
  font-size: 3.75em;
  font-weight: 600;
}
.cmn_flow_contents_head_title{
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  margin-left: 10px;
}
.flow_contents_txt{
  font-weight: 700;
}
.cmn_flow_contents_tel_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.cmn_flow_contents_tel{
  text-align: center;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}
.cmn_flow_contents_tel_txt{
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
}
.cmn_flow_contents_tel_txt strong{
  font-size: 1.5em;
  font-weight: 600;
}
.cmn_flow_contents_tel_txt1{
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0;
}
.cmn_flow_read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}
.cmn_flow_read_more_a{
  min-width: 240px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  background: var(--gra1);
  background-color: #000;
  color: #FFF !important;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.cmn_flow_read_more_a p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmn_flow_read_more_a p:before{
  content: "\f0e0";
  font-size: 24px;
  font-family: 'FontAwesome';
  color: #fff !important;
  margin-right: 20px;
}
.cmn_flow_read_more_a:hover{
  background: #000;
}
.body_painting .footer,
.body_repair .footer{
  margin-top: 0 !important;
}





@media (max-width:374px){

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

}
@media (max-width:767px){
  .cmn_feature_contents_num strong{
    font-size: 50px;
  }

  .cmn_feature_contents_line{
    margin-bottom: 20px;
  }
}
@media (min-width:768px){
  .pg_painting .section.sec1:before{
    bottom: 80px;
  }
  .pg_painting .section.sec3:before {
    top: 120px;
    left: var(--margin-for-device-side-w);
    right: var(--margin-for-device-side-w);
    bottom: 0;
    z-index: -1;
  }
  .pg_painting .section.sec5:before {
    position: absolute;
    top: 90px;
    left: var(--margin-for-device-side-w);
    right: var(--margin-for-device-side-w);
    bottom: 0;
    z-index: -1;
  }

  .cmn_caution_list{
    width: 50%;
    padding: 28px 20px;
    margin-inline: -5px;
  }
  .cmn_caution_list:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_caution_list:nth-child(n+3){
    margin-top: 20px;
  }
  .cmn_caution_head_en{
    font-size: 30px;
  }
  .cmn_caution_head_ja{
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 35px;
  }

  .cmn_feature_contents_num{
    background-size: 30vw 100%;
  }

  .cmn_feature_contents_line_title{
    font-size: 25px;
  }

  /* FLOW */
  .cmn_flow_contents_row{
    padding: 25px 20px;
  }
  .cmn_flow_contents_head_title {
    font-size: 25px;
    font-weight: 700;
    font-family: var(--font-ja);
    letter-spacing: 0.025em;
    margin-left: 20px;
  }

  .cmn_feature_contents_box2{
    padding-bottom: 30px;
  }
}
@media (min-width:1024px){
  /* 背景 */
  .pg_painting .section.sec1:before{
    top: 120px;
    left: 150px;
    bottom: 110px;
  }
  .pg_painting .section.sec3:before {
    top: 80px;
    left: 120px;
    bottom: 110px;
  }
  .cmn_feature_contents_box2:after{
    width: 70vw;
    height: 110%;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2:after {
    top: 3%;
    left: -44%;
    transform: translateX(0);
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2:after {
    top: 3%;
    left: auto;
    right: -44%;
    transform: translateX(0);
  }
  .cmn_service_contents_box:nth-child(odd):before {
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -45px;
    z-index: -1;
  }
  .cmn_service_contents_box:nth-child(even):before {
    top: -45px;
    left: var(--margin-for-device-side-w);
    right: 200px;
    bottom: -45px;
    z-index: -1;
  }
  .pg_painting .section.sec5:before {
    top: 80px;
    right: 180px;
    left: var(--margin-for-device-side-w);
    bottom: 60px;
    z-index: -1;
  }

  /* メイン */
  .cmn_about{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cmn_about_box1{
    /*width: 100%;*/
    width: 42.10%;
    margin-top: 0;
    order: 1;
  }
  .cmn_about_box2{
    /*width: 100%;*/
    width: 52.63%;
    order: 2;
  }
  .cmn_about_img{

  }
  .cmn_about_img:before{
    padding-top: 68.75%;
  }
  /* CAUTUION */
  .cmn_caution_list{
    width: 19.73%;
    padding: 28px 0px;
  }
  .cmn_caution_list:nth-child(n+3) {
    margin-top: 0;
  }

  /* FEATURE */
  .cmn_feature_contents_rows {
    margin-top: 50px;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box1{
    order: 1;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2{
    order: 2;
    margin-right: 35px;
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box1{
    order: 2;
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2{
    order: 1;
    margin-left: 35px;
  }
  .cmn_feature_contents_box1{

    width: 39.47%;
  }
  .cmn_feature_contents_box2{
    width: 51.77%;
    margin-top: 25px;
    padding-bottom: 0;
  }
  .cmn_feature_contents_row:nth-child(n+2) {
    margin-top: 180px;
  }
  .cmn_feature_contents_num{
    background-size: 20vw 100%;
  }

  /* SERVICE */
  .cmn_service_contents_box .home_service_contents_head {
    padding-bottom: 5px;
  }
  .cmn_service_contents_box:nth-child(n+2){
    margin-top: 160px;
  }
  .cmn_service_contents_box1{
    /*width: 100%;*/
    width: 56.44%;
  }
  .cmn_service_contents_box2{
    /*width: 100%;*/
    width: 39.47%;
  }
  .cmn_service_contents_box:nth-child(odd) .cmn_service_contents_box1{
    order: 2;
  }
  .cmn_service_contents_box:nth-child(odd) .cmn_service_contents_box2{
    order: 1;
  }
  .cmn_service_contents_box:nth-child(even) .cmn_service_contents_box1{
    order: 1;
  }
  .cmn_service_contents_box:nth-child(even) .cmn_service_contents_box2 {
    order: 2;
  }

  .cmn_caution_head_ja{
    font-size: 32px;
  }
}
@media (min-width:1200px){
  .pg_painting .section.sec3:before {
    top: 190px;
    left: 160px;
    bottom: 110px;
  }
  .cmn_feature_contents_box2:after{
    width: 75vw;
  }

  .cmn_caution_list_txt{
    font-size: 20px;
  }
  .cmn_caution .home_contents_txt.center {
    text-align: center;
  }

  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2 {
    order: 1;
    margin-right: 65px;
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2 {
    order: 1;
    margin-left: 65px;
  }
  .cmn_feature_contents_num{
    background-size: 15vw 100%;
  }

  .cmn_service_contents_line_title{
    font-size: 34px;
  }

  /* FLOW */
  .cmn_flow_contents_row{
    padding: 25px 20px;
  }
  .cmn_flow_contents_head_title {
    font-size: 27px;
    margin-left: 15px;
  }
  .cmn_flow_contents_box1{
    position: relative;
    /*    width: 100%;*/
    width: 49%;
  }
  .cmn_flow_contents_box2{
    /*    width: 100%;*/
    width: 50%;
    margin-top: 10px;
  }
  .cmn_flow_contents_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 120px;
    background: #b2b2b2;
    position: absolute;
    top: 50%;
    right: 5%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .cmn_flow_contents_box2 .cmn_flow_contents_tel{
    margin-left: 0;
    margin-right: 0;
  }

  .cmn_caution_head_ja{
    font-size: 36px;
  }
}
@media (min-width:1470px){
  /* 背景 */
  .pg_painting .section.sec1:before {
    top: 120px;
    left: 150px;
    bottom: 180px;
  }
  .cmn_feature_contents_box2:after{
    width: 70vw;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2:after{
    top: 3%;
    left: -38%;
    transform: translateX(0);
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2:after{
    top: 3%;
    left: auto;
    right: -38%;
    transform: translateX(0);
  }

  .cmn_about_box1 .home_about_line_title {
    font-size: 48px;
  }
  .pg_painting .section.sec5:before {
    top: 200px;
    right: 180px;
    left: var(--margin-for-device-side-w);
    bottom: 60px;
    z-index: -1;
  }

}
@media (min-width:1720px){
  /* 背景 */
  .pg_painting .section.sec1:before {
    top: 140px;
    left: 420px;
    right: var(--margin-for-device-side-w);
    bottom: 250px;
    z-index: -1;
  }
  .cmn_caution_bk{
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
  }
  .cmn_caution_bk img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: 0.15;
  }
  .cmn_caution_bk:after{
    content: "";
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    position: absolute;
    z-index: 2;
    inset: 0;
  }
  .pg_painting .section.sec3:before {
    top: 200px;
    left: 420px;
    right: var(--margin-for-device-side-w);
    bottom: 160px;
    z-index: -1;
  }
  .cmn_service_contents_box:nth-child(odd):before {
    top: -35px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -45px;
    z-index: -1;
  }
  .cmn_service_contents_box:nth-child(even):before {
    top: -35px;
    right: 200px;
    left: var(--margin-for-device-side-w);
    bottom: -45px;
    z-index: -1;
  }
  .pg_painting .section.sec5:before {
    top: 200px;
    right: 420px;
    left: var(--margin-for-device-side-w);
    bottom: 60px;
    z-index: -1;
  }

  /* メイン */
  .cmn_about{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cmn_about_box1{
    width: 42.10%;
  }
  .cmn_about_box2{
    width: 52.63%;
  }
  .cmn_about_img:before{
    padding-top: 68.75%;
  }
  .cmn_about_box1 .home_about_line_title {
    font-size: 58px;
  }

  /* CAUTUION */
  .cmn_caution{

  }
  .cmn_caution_head{
    text-align: center;
  }
  .cmn_caution_head_en{
    font-size: 30px;
  }
  .cmn_caution_head_ja{
    font-size: 48px;
    margin-top: 5px;
    margin-bottom: 65px;
  }
  .cmn_caution_lists{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cmn_caution_list{
    width: 19.73%;
    height: 240px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cmn_caution_list:nth-child(n+2) {
    margin-top: 0;
  }
  .cmn_caution_list:nth-child(n+3) {
    margin-top: 0;
  }
  .cmn_caution_list_icon{
    margin-bottom: 16px;
  }
  .cmn_caution_list_txt{
    font-size: 24px;
    line-height: 1.75;
    margin-top: auto;
    margin-bottom: auto;
  }
  .cmn_caution .home_contents_txt.center{
    text-align: center;
    margin-top: 70px;
  }

  /* FEATURE */
  .cmn_feature{

  }
  .cmn_feature_contents_rows{
    margin-top: 60px;
  }
  .cmn_feature_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cmn_feature_contents_row:nth-child(n+2){
    margin-top: 135px;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box1{
    order: 1;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2{
    order: 2;
    margin-right: 75px;
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box1{
    order: 2;
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2{
    order: 1;
    margin-left: 55px;
  }
  .cmn_feature_contents_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .cmn_feature_contents_box2{
    /*width: 100%;*/
    width: 51.77%;
    position: relative;
    margin-top: 65px;
  }
  .cmn_feature_contents_box2:after{
    width: 100vw;
    width: 55vw;
    height: 100%;
    height: 116%;
    background: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 10%;
    z-index: -1;
  }
  .cmn_feature_contents_row:nth-child(odd) .cmn_feature_contents_box2:after{
    top: -3%;
    left: -24.13%;
  }
  .cmn_feature_contents_row:nth-child(even) .cmn_feature_contents_box2:after{
    top: -3%;
    right: -27.13%;
    /*    height: 107%;*/
  }
  .cmn_feature_contents_img{

  }
  .cmn_feature_contents_img:before{
    padding-top: 66.66%;
  }
  .cmn_feature_contents_num{
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
    font-family: var(--font-en);
    letter-spacing: 0;
    background: var(--gra1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 15vw 100%;
  }
  .cmn_feature_contents_num strong{
    font-size: 2.5em;
    font-weight: 600;
    margin-left: 5px;
  }
  .cmn_feature_contents_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: -15px;
    margin-bottom: 35px;
  }
  .cmn_feature_contents_line_title{
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-ja);
    letter-spacing: 0.025em;
    background: var(--gra1);
    color: #FFF;
    padding: 0px 15px;
  }
  .cmn_feature_contents_line_title{

  }

  /* SERVICE */
  .cmn_service_contents_box .home_service_contents_head {
    padding-bottom: 5px;
  }
  .cmn_service_contents_head_title_ja{
    font-size: 60px
  }
  .cmn_service_contents_box:nth-child(n+2){
    margin-top: 160px;
  }
  .cmn_service_contents_box1{
    width: 56.44%;
  }
  .cmn_service_contents_box2{
    width: 39.47%;
  }
  .cmn_service_contents_box:nth-child(odd) .cmn_service_contents_box1{
    order: 2;
  }
  .cmn_service_contents_box:nth-child(odd) .cmn_service_contents_box2{
    order: 1;
  }
  .cmn_service_contents_box:nth-child(even) .cmn_service_contents_box1{
    order: 1;
  }
  .cmn_service_contents_box:nth-child(even) .cmn_service_contents_box2 {
    order: 2;
  }
  .cmn_service_contents_line_title{
    font-size: 36px;
    line-height: 1;
  }
  .cmn_service_contents_img:before{
    padding-top: 66.66%;
  }

  /* FLOW */
  .cmn_flow{

  }
  .cmn_flow_contents_rows{
    margin-top: 60px;
  }
  .cmn_flow_contents_row{
    align-items: center;
    background: #FFF;
    padding: 45px 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cmn_flow_contents_row:nth-child(n+2){
    margin-top: 43px;
  }
  .cmn_flow_contents_box1{
    position: relative;
    width: 49%;
  }
  .cmn_flow_contents_box2{
    width: 50%;
    margin-top: 10px;
  }
  .cmn_flow_contents_box1:after{
    width: 1px;
    height: 100px;
    top: 50%;
    right: 5%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .cmn_flow_contents_row:first-child .cmn_flow_contents_box1:after{
    height: 200px;
  }
  .cmn_flow_contents_row:first-child{
    padding: 45px 60px;
  }
  .cmn_flow_contents_row{
    padding: 62px 60px 70px;
  }
  .cmn_flow_contents_head{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .cmn_flow_contents_head_num{
    font-size: 11px;
    line-height: 1;
    color: var(--main-color);
    text-align: center;
  }
  .cmn_flow_contents_head_num_p1{
    font-size: 24px;
    font-weight: 600;
  }
  .cmn_flow_contents_head_num_p2{
    font-size: 5.45em;
    font-weight: 600;
  }
  .cmn_flow_contents_head_title{
    font-size: 30px;
    margin-left: 55px;
  }
  .flow_contents_txt{
    font-weight: 500;
  }
  .cmn_flow_contents_tel_box{
    margin-top: 20px;
  }
  .cmn_flow_contents_tel{
    text-align: center;
    line-height: 1.5;
  }
  .cmn_flow_contents_tel_txt{
    font-size: 24px;
  }
  .cmn_flow_contents_tel_txt strong{
    font-size: 1.5em;
    font-weight: 600;
  }
  .cmn_flow_contents_tel_txt1{
    font-size: 14px;
  }
  .cmn_flow_read_more{
    margin-top: 5px;
    margin-left: 35px;
  }
  .cmn_flow_read_more_a{
    min-width: 240px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .cmn_flow_read_more_a p {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cmn_flow_read_more_a p:before{
    content: "\f0e0";
    font-size: 24px;
    font-family: 'FontAwesome';
    color: #fff !important;
    margin-right: 20px;
  }
  .body_painting .footer,
  .body_repair .footer{
    margin-top: 0 !important;
  }
}



/*******************************
*　防水工事
********************************/
.pg_repair{

}
.pg_repair .section.sec1{

}
.pg_repair .section.sec2{

}
.pg_repair .section.sec3{

}
.pg_repair .section.sec4{

}
.pg_repair .section.sec5{

}
.pg_repair .section.sec6{

}

@media (max-width:374px){

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

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

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

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

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


}
@media (min-width:1470px){
  .pg_repair .section.sec2{
    padding-bottom: 90px;
  }

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

}


/* メイン */

@media (max-width:374px){

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

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

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

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

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


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


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

}


/*******************************
*　採用情報
********************************/
.pg_recruit{

}
.pg_recruit .section.sec1{
  padding-top: 80px;
  padding-bottom: 140px;
  position: relative;
}
.pg_recruit .section.sec2{
  padding-top: 60px;
  padding-bottom: 40px;
  background: #0d0d0d;
  background-image: url(https://ntk-japan.com/system_panel/uploads/images/bk_logo.png);
  background-size: 100% auto;
  aspect-ratio: 1978 / 1271;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.pg_recruit .section.sec3{
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.pg_recruit .section.sec4{

}
.pg_recruit .section.sec5{
  padding-top: 20px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_recruit .section.sec1{
    padding-top: 130px;
    padding-bottom: 160px;
  }
  .pg_recruit .section.sec2{
    padding-bottom: 80px;
  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{

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

  }
  .pg_recruit .section.sec1{
    padding-top: 200px;
    padding-bottom: 120px;
  }
  .pg_recruit .section.sec2{
    background-size: 100% auto;
    background-position: right -175px top -3%;
  }
  .pg_recruit .section.sec3{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec4{

  }
  .pg_recruit .section.sec5{

  }
}
@media (min-width:1200px){
  .pg_recruit .section.sec1{
    padding-top: 260px;
  }

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

  }
  .pg_recruit .section.sec1{
    padding-top: 270px;
    padding-bottom: 120px;
  }
  .pg_recruit .section.sec2{
    padding-top: 88px;
    padding-bottom: 80px;
    background-size: auto;
    aspect-ratio: 1978 / 1271;
    background-repeat: no-repeat;
    background-position: right -485px top -174%;
  }
  .pg_recruit .section.sec3{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec4{
    padding-top: 80px;
  }
  .pg_recruit .section.sec5{
    padding-top: 130px;
  }

}
@media (min-width:1720px){
  .pg_recruit .section.sec2{
    padding-top: 78px;
    padding-bottom: 100px;
    background-size: auto;
    aspect-ratio: 1978 / 1271;
    background-repeat: no-repeat;
    background-position: right -225px top 318%;
  }
}

/* 背景 */
.pg_recruit .section.sec1:before{
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 30px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 0;
  z-index: -1;
}
.recruit_benefits_bk{
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  opacity: 0.7;
}
.recruit_ideal_contents_box:before{
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 80px;
  left: 420px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 160px;
  z-index: -1;
}

.recruit_ideal_contents_box:nth-child(odd):before {
  top: -45px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -25px;
  z-index: -1;
}
.recruit_ideal_contents_box:nth-child(even):before {
  top: -45px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -25px;
  z-index: -1;
}

/* メイン */
.about_noslide_txt{
  width: 80%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.cmn_about.right{

}
.responsive_video iframe{
  border: none;
}
.cmn_about.right .cmn_about_box1{
  *width: 100%;
  order: 1;
}
.cmn_about.right .cmn_about_box2{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.cmn_about_video{
  position: relative;
}
.cmn_about_video,
.cmn_about_video iframe,
.cmn_about_video object,
.cmn_about_video embed {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 98%;
  height: 50%;
  transform: translateX(-50%);
}
.recruit_top_img:before{
  padding-top: 56.25%
}


/* 働く魅力 */
.recruit_appeal{

}
.recruit_appeal_list{
  margin-top: 30px;
}
.recruit_appeal_list_item{
}
.recruit_appeal_list_item:nth-child(even) {
  transform: translateY(0) !important;
}

/* 福利厚生 */
.recruit_benefits{

}
.recruit_benefits_lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  /*  padding-inline: 30px;*/
  align-items: stretch;
}
.recruit_benefits_list{
  width: 100%;
  background: #000;
  opacity: 0.8;
  padding: 20px 30px;
  /*margin-inline: -30px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruit_benefits_list:nth-child(n+2){
  margin-top: 15px;
}
.recruit_benefits_list_icon{

}
.recruit_benefits_list_title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #FFF;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.recruit_benefits_list_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.75;
  color: #FFF;
  text-align: justify;
  margin-inline: 0;
}

/* 求める人物像 */
.home_service_contents_head.bk{
  border-bottom: 1px solid #0d0d0d;
}
.cmn_head_title_ja.bk,
.cmn_head_title_en.bk{
  color: #0d0d0d;
}
.recruit_ideal_contents_box{
  position: relative;
}
.recruit_ideal_contents_box:nth-child(n+2){
  margin-top: 115px;
}

/* 募集要項 */
.recruit_tbl_item .table_rows{
  border: 1px solid #dbdbdb;
}
.recruit_tbl_items{
  margin-top: 40px;
}
.recruit_tbl_item + .recruit_tbl_item{
  margin-top: 100px;
}
.recurit_contents_head{
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  padding-left: 17px;
  margin-bottom: 25px;
  position: relative;
}
.recurit_contents_head:before{
  content: "";
  display: block;
  width: 5px;
  height: 68%;
  background: var(--main-color);
  position: absolute;
  top: 8px;
  left: 0;
}
.recruit_tbl_item .table_rows_th{
  background: #f2f2f2;
}
.recruit_tbl_ite .table_rows_th{
  color: #000;
  border-color: #dbdbdb;
  padding: 10px 10px;
  font-weight: 500;
}
.recruit_tbl_item .table_rows_th,
.recruit_tbl_item .table_rows_td{
  color: #1a1a1a !important;
  border-color: #dbdbdb !important;
  padding: 10px 10px;
  font-size: 17px !important;
  font-weight: 500;
  font-family: var(--font-ja);
}
.recruit_tbl_item p{
  letter-spacing: 0.075em !important;
  line-height: 2 !important;
}


.recruit_tbl_item.company_tbl + .recruit_tbl_item.company_tbl{
  margin-top: 50px;
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* 背景 */
  .pg_recruit .section.sec1:before{
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 30px;
    left: var(--margin-for-device-side-w);
    right: var(--margin-for-device-side-w);
    bottom: 0;
    z-index: -1;
  }


  /* メイン */
  .about_noslide_txt{
    width: 80%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .cmn_about.right{

  }
  .cmn_about.right .cmn_about_box1{
    *width: 100%;
    order: 1;
  }
  .cmn_about.right .cmn_about_box2{
    width: 100%;
    order: 2;
    margin-top: 30px;
  }
  .cmn_about_video{
    position: relative;
  }
  .cmn_about_video,
  .cmn_about_video iframe,
  .cmn_about_video object,
  .cmn_about_video embed {
    top: 7%;
    left: 50%;
    width: 98%;
    height: 60%;
    transform: translateX(-50%);
  }

  /* 福利厚生 */
  .recruit_benefits{

  }
  .recruit_benefits_lists{
    justify-content: space-between;
    margin-top: 30px;
    margin-inline: -7.5px;
    align-items: stretch;
  }
  .recruit_benefits_list{
    width: 49%;
    padding: 20px 30px;
    padding-inline: 7.5px;
  }
  .recruit_benefits_list:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_benefits_list:nth-child(n+3){
    margin-top: 15px;
  }
  .recruit_benefits_list_icon{

  }
  .recruit_benefits_list_title{
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .recruit_benefits_list_txt{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.75;
    color: #FFF;
    text-align: justify;
    margin-inline: 0;
  }

  /* 募集要項 */
  .recruit_tbl_items {
    margin-top: 80px;
  }

  .recruit_tbl_item.company_tbl + .recruit_tbl_item.company_tbl{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  /* 背景 */
  .pg_recruit .section.sec1:before{
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 100px;
    left: var(--margin-for-device-side-w);
           right: 260px;
    bottom: 0;
    z-index: -1;
  }
  .recruit_ideal_contents_box:nth-child(odd):before {
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -25px;
    z-index: -1;
  }
  .recruit_ideal_contents_box:nth-child(even):before {
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -25px;
    z-index: -1;
  }

  /* メイン */
  .cmn_about.right{

  }
  .cmn_about.right .cmn_about_box1{
    /*width: 100%;*/
    width: 43.42%;
    order: 2;
  }
  .cmn_about.right .cmn_about_box2{
    /*width: 100%;*/
    width: 52.63%;
    order: 1;
    margin-top: 0;
  }
  .cmn_about_video,
  .cmn_about_video iframe,
  .cmn_about_video object,
  .cmn_about_video embed {
    position: absolute;
    top: 100px;
    left: 24px;
    width: 69.26%;
    height: 65.4%;
    transform: translateX(0);
  }

  /* 働く魅力 */
  .recruit_appeal{

  }
  .recruit_appeal_list{
    margin-top: 30px;
  }
  .recruit_appeal_list_item{
  }
  .recruit_appeal_list_item:nth-child(even) {
    transform: translateY(0) !important;
  }

  /* 福利厚生 */
  .recruit_benefits{

  }
  .recruit_benefits_lists{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    align-items: stretch;
  }
  .recruit_benefits_list{
    width: 33.333%;
    background: #000;
    opacity: 0.8;
    padding: 60px 15px 35px;
    margin-inline: -20px;
    padding-inline: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .recruit_benefits_list:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_benefits_list:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_benefits_list:nth-child(n+4){
    margin-top: 15px;
  }
  .recruit_benefits_list:nth-last-child(2){
    margin-left: auto;
    margin-right: 0;
  }

  .recruit_benefits_list:last-child{
    margin-left: 20px;
    margin-right: auto;
  }
  .recruit_benefits_list_icon{

  }
  .recruit_benefits_list_title{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #FFF;
    text-align: center;
    margin-top: 34px;
    margin-bottom: 15px;
  }
  .recruit_benefits_list_txt{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.75;
    color: #FFF;
    text-align: justify;
    margin-inline: 34px;
  }
  .recruit_benefits_lists{

  }
  /* 募集要項 */
  .recruit_tbl_items {
    margin-top: 46px;
  }
  .recurit_contents_head {
    font-size: 30px;
  }
  .recruit_tbl_item + .recruit_tbl_item{
    margin-top: 150px;
  }
  .recruit_tbl_item .read_more {
    margin-top: 50px;
  }
}
@media (min-width:1200px){
  .pg_recruit .section.sec1:before{
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 100px;
    left: var(--margin-for-device-side-w);
    right: 360px;
    bottom: 0;
    z-index: -1;
  }
  /* メイン */
  .cmn_about_video, .cmn_about_video iframe, .cmn_about_video object, .cmn_about_video embed {
    position: absolute;
    top: 130px;
    left: 24px;
    width: 69.26%;
    height: 65.4%;
    transform: translateX(0);
  }

  /* 求める人物 */
  .recruit_ideal{
    margin-top: 100px;
  }

  /* 募集要項 */
  .recurit_contents_head{
    font-size: 36px;
    padding-left: 17px;
    margin-bottom: 25px;
  }
  .recurit_contents_head:before{
    width: 5px;
    height: 68%;
    top: 12px;
    left: 0;
  }
  .recruit_tbl_item .table_rows_th,
  .recruit_tbl_item .table_rows_td{
    padding: 15px 15px 15px !important;
  }
  .recruit_tbl_item .table_rows_th {
    width: 285px !important;
  }

  .recruit_tbl_item.company_tbl{
    margin-top: 0;
  }
  .recruit_tbl_item.company_tbl + .recruit_tbl_item.company_tbl{
    margin-top: 145px;
  }
}
@media (min-width:1470px){
  /* 背景 */
  .pg_recruit .section.sec1:before{
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 100px;
    left: var(--margin-for-device-side-w);
    right: 590px;
    /*right: var(--margin-for-device-side-w);*/
    bottom: 0;
    z-index: -1;
  }
  .recruit_ideal_contents_box:before{
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 80px;
    left: 420px;
    left: var(--margin-for-device-side-w);
    right: var(--margin-for-device-side-w);
    bottom: 160px;
    z-index: -1;
  }

  .recruit_ideal_contents_box:nth-child(odd):before {
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -45px;
    z-index: -1;
  }
  .recruit_ideal_contents_box:nth-child(even):before {
    top: -45px;
    left: 200px;
    right: var(--margin-for-device-side-w);
    bottom: -45px;
    z-index: -1;
  }


  /* メイン */
  .about_noslide_txt{
    width: 80%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .cmn_about.right{

  }
  .cmn_about.right .cmn_about_box1{
    /*width: 100%;*/
    width: 43.42%;
    order: 2;
  }
  .cmn_about.right .cmn_about_box2{
    /*width: 100%;*/
    width: 52.63%;
    order: 1;
  }
  .cmn_about_video{
    position: relative;
  }
  .cmn_about_video,
  .cmn_about_video iframe,
  .cmn_about_video object,
  .cmn_about_video embed {
    position: absolute;
    top: 133px;
    left: 100px;
    width: 64.6%;
    height: 71.4%;
  }
  .recruit_top_img:before{
    padding-top: 56.25%
  }


  /* 働く魅力 */
  .recruit_appeal{

  }
  .recruit_appeal_list{
    margin-top: 60px;
    margin-inline: -10px;
  }
  .home_feature_list.recruit_appeal_list{
    margin-inline:0;
  }
  .home_feature_list_item.recruit_appeal_list_item{
    width: 49.01%;
  }
  .recruit_appeal_list_item{
  }
  .recruit_appeal_list_item:nth-child(n+3){
    margin-top: 40px;
  }
  .recruit_appeal_list_item:nth-child(even) {
    transform: translateY(0) !important;
  }
  .recruit_appeal .read_more.center{
    margin-top: 30px;
  }

  /* 福利厚生 */
  .recruit_benefits_lists{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    align-items: stretch;
  }
  .recruit_benefits_list{
    width: 19.2%;
    background: #000;
    opacity: 0.8;
    padding: 60px 15px 35px;
    margin-inline: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .recruit_benefits_list:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_benefits_list:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_benefits_list:nth-last-child(2),
  .recruit_benefits_list:last-child{
    margin-left: 0;
    margin-right: 0;
  }
  .recruit_benefits_list_title{
    font-size: 25px;
  }
  .recruit_benefits_list_txt {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.75;
    color: #FFF;
    text-align: justify;
    margin-inline: 24px;
  }
  /* 求める人物像 */
  .recruit_ideal{
    margin-top: 100px;
  }
  .recruit_ideal_contents_box:nth-child(n+2){
    margin-top: 165px;
  }
  .recruit_ideal_contents_box{
    position: relative;
  }
}
@media (min-width:1720px){
  /* 背景 */
  .pg_recruit .section.sec1:before {
    content: "";
    display: block;
    background: #f2f2f2;
    position: absolute;
    top: 100px;
    left: var(--margin-for-device-side-w);
    right: 598px;
    /* right: var(--margin-for-device-side-w); */
    bottom: 0px;
    z-index: -1;
  }

  /* メイン */
  .about_noslide_txt {
    width: 80%;
    top: 0;
    left: 59.5%;
    z-index: 2;
    transform: translateX(-50%);
  }
  .recruit_top_img:before{
    padding-top: 56.25%
  }


  /* 福利厚生 */
  .recruit_benefits_lists{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-inline: 0;
    align-items: stretch;
  }
  .recruit_benefits_list{
    width: 18.42%;
    padding: 60px 15px 35px;
    padding-inline: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .recruit_benefits_list_title{
    font-size: 28px;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .home_feature_list_item.recruit_appeal_list_item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

/*******************************
*　先輩社員の声
********************************/
.pg_voice{

}
.pg_voice .section.sec1{
  position: relative;
}
.pg_voice .section.sec2{
  padding-bottom: 80px;
  background: #0d0d0d;
  position: relative;
  z-index: 0;
}


@media (max-width:374px){

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

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

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

  }
  .pg_voice .section.sec1{

  }
  .pg_voice .section.sec2{

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

  }
  .pg_voice .section.sec1{
    padding-bottom: 80px;
  }
  .pg_voice .section.sec2{
    padding-top: 70px;
  }
}
@media (min-width:1200px){


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

  }
  .pg_voice .section.sec1{
    padding-bottom: 200px;
  }
  .pg_voice .section.sec2{
    padding-top: 70px;
    padding-bottom: 160px;
  }
}

@media (min-width:1720px){

}

/* 背景　*/
.pg_voice .section.sec1:before {
  content: "";
  display: block;
  background: #f2f2f2;
  position: absolute;
  top: 105px;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: 0px;
  z-index: -1;
}

.pg_voice  .section.sec1:before {
  top: 105px;
  left: 595px;
  right: var(--margin-for-device-side-w);
  bottom: 0px;
  z-index: -1;
}

/* メイン */
.voice_top{

}
.voice_top_box1{
  width: 100%;
  margin-top: 30px;
  position: relative;
  z-index: 3;
}
.voice_top_box2{
  width: 100%;
}
.voice_top_box1 .tt2{
  margin-bottom: 30px;
}
.voice_top_box2_img:before{
  padding-top: 87.24%;
}


/* 先輩の声 */
.home_tt1_line_ja.gray{
  background: #313131;
}
.staffInterview_contents_items{
  margin-top: 50px;
}
.staffInterview_contents_item{
  position: relative;
  padding: 30px 0;
}
.staffInterview_contents_item:nth-child(n+2){
  margin-top: 100px;
}
/*.staffInterview_contents_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #edead7;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}*/
.staffInterview_contents_item:before{
  content: "";
  display: block;
  background: #FFF;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -60px;
  z-index: -1;
}
.staffInterview_contents_item:nth-child(odd):before {
  top: -35px;
  right: var(--margin-for-device-side-w);
  bottom: 0;
  z-index: -1;
}
.staffInterview_contents_item:nth-child(even):before {
  top: -35px;
  left: var(--margin-for-device-side-w);
  bottom: 0;
  z-index: -1;
}

.staffInterview_contents_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staffInterview_contents_hdr_box1{
  width: 100%;
  order: 1;
}
.staffInterview_contents_hdr_box1_img:before{
  padding-top: 84.03%;
}
.staffInterview_contents_hdr_box1_tt{
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  text-align: center;
  border-bottom: 1px solid #FFF;
  padding-bottom: 5px;
  padding-top: 8px;
}
.staffInterview_contents_hdr_box1_tt p{
  letter-spacing: 0.075em;
}
.staffInterview_contents_hdr_box2{
  width: 100%;
  order: 2;
  margin-top: 20px;
  ;
}
.staffInterview_contents_hdr_box2_block{

}
.staffInterview_contents_hdr_box2_block:nth-child(n+2){
  margin-top: 32px;
}
.staffInterview_contents_hdr_box2_block_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #FFF;
  background: var(--main-color);
  padding: 10px 16px;
  ;
}
.staffInterview_contents_hdr_box2_block .home_contents_txt{
  line-height: 2;
  margin-top: 16px;
}
.staffInterview_contents_hdr_box2_block .home_contents_txt p{
  letter-spacing: 0.075em;
}
.staffInterview_contents_hdr_box3{
  width: 100%;
  order: 3;
  margin-top: 32px;
}
.staffInterview_contents_hdr_box3 .staffInterview_contents_hdr_box2_block{

}

.body_voice .footer{
  margin-top: 0 !important;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* 先輩の声 */
  .staffInterview_contents_items{
    margin-top: 70px;
  }
  .staffInterview_contents_item{
    padding-top: 50px;
    padding-bottom: 42px;
  }
  .staffInterview_contents_item:nth-child(n+2){
    margin-top: 60px;
  }
  /*  .staffInterview_contents_item:before{
      width: 91.53%;
      margin-left: 0;
      margin-right: 0;
    }*/
  /*.staffInterview_contents_item:nth-child(odd):before{
      left: 8.4%;
    }
    .staffInterview_contents_item:nth-child(even):before{
      right: 8.4%;
    }*/
  .staffInterview_contents_item:nth-child(odd) .staffInterview_contents_hdr_box1{
    order: 1;
  }
  .staffInterview_contents_item:nth-child(odd) .staffInterview_contents_hdr_box2{
    order: 2;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box1{
    order: 2;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box2{
    order: 1;
  }
  .staffInterview_contents_hdr{

  }
  .staffInterview_contents_hdr_box1{
    width: 45.23%;
  }
  .staffInterview_contents_item:nth-child(odd){
    /*    padding-right: 65px;*/
  }
  .staffInterview_contents_item:nth-child(even){
    /*    padding-left: 65px;*/
  }
  .staffInterview_contents_hdr_box1_img:before{

  }
  .staffInterview_contents_hdr_box1_tt{
    font-size: 18px;
    padding-top: 15px;
  }
  .staffInterview_contents_hdr_box2{
    width: 48%;
    margin-top: 0;
  }
  .staffInterview_contents_hdr_box2_block{

  }
  .staffInterview_contents_hdr_box2_block_tt{
    font-size: 20px;
    padding: 6px 17px;
  }
  .staffInterview_contents_hdr_box2_block .content_desc{

  }
  .staffInterview_contents_hdr_box3{
    width: 84.09%;
    order: 3;
    margin-top: 38px;
  }
  .staffInterview_contents_item:nth-child(odd) .staffInterview_contents_hdr_box3{
    margin-left: auto;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box3{
    margin-right: auto;
  }
  .staffInterview_contents_hdr_box3 .staffInterview_contents_hdr_box2_block{

  }
}
@media (min-width:1024px){
  /* 背景 */
  .pg_voice .section.sec1:before {
    top: 85px;
    left: 305px;
    right: var(--margin-for-device-side-w);
    bottom: 0px;
    z-index: -1;
  }
  .staffInterview_contents_item:nth-child(odd):before {
    top: 100px;
    left: 205px;
    right: var(--margin-for-device-side-w);
    bottom: 0;
    z-index: -1;
    width: 100vw;
  }
  .staffInterview_contents_item:nth-child(even):before {
    top: 105px;
    right: 205px;
    left: var(--margin-for-device-side-w);
    bottom: 0;
    z-index: -1;

  }

  /* メイン */
  .voice_top{

  }
  .voice_top_box1{
    width: 46.38%;
    margin-top: -30px;
  }
  .voice_top_box2{
    width: 46.01%;
    margin-top: -20px;
  }
  .voice_top_box1 .tt2{
    margin-bottom: 30px;
  }
  .voice_top_box2_img:before{
    padding-top: 87.24%;
  }

  /* 先輩の声 */
  .staffInterview_contents_item{

  }
  .staffInterview_contents_item:nth-child(n+2){
    margin-top: 80px;
  }
  .staffInterview_contents_hdr{

  }
  .staffInterview_contents_hdr_box1{
    width: 37.75%;
  }
  .staffInterview_contents_hdr_box1_img:before{
    padding-top: 63.06%;
  }
  .staffInterview_contents_hdr_box1_tt{
    font-size: 20px;
    padding-top: 7px;
    padding-bottom: 0;
  }
  .staffInterview_contents_hdr_box2{
    width: 55.78%;
    margin-top: 100px;
  }
  .staffInterview_contents_hdr_box2_block{

  }
  .staffInterview_contents_hdr_box2_block_tt{
    font-size: 22px;
  }
  .staffInterview_contents_hdr_box2_block:nth-child(n+2){
    margin-top: 50px;
  }
  .staffInterview_contents_hdr_box2_block .home_contents_txt{

  }
  .staffInterview_contents_hdr_box3{

  }
  .staffInterview_contents_hdr_box3 .staffInterview_contents_hdr_box2_block{

  }
  .staffInterview_contents_items .read_more {
    margin-top: 60px;
  }
}
@media (min-width:1200px){

  /* 先輩の声 */
  .staffInterview_contents_item:nth-child(n+2){
    margin-top: 50px;
  }
}
@media (min-width:1470px){
  /* 背景 */
  .pg_voice .section.sec1:before {
    top: 105px;
    left: 445px;
    right: var(--margin-for-device-side-w);
    bottom: 0px;
    z-index: -1;
  }
  /* メイン */
  .voice_top{

  }
  .voice_top_box1{
    width: 46.38%;
    margin-top: -30px;
  }
  .voice_top_box2{
    margin-top: -10px;
  }
  .voice_top_box1 .tt2{
    margin-bottom: 30px;
  }
  .voice_top_box2_img:before{
    padding-top: 87.24%;
  }

  /* 先輩の声 */
  .staffInterview_contents_items{
    margin-top: 93px;
  }
  .staffInterview_contents_hdr_box2_block:nth-child(n+2){
    margin-top: 41px;
  }

  .staffInterview_contents_item{
    width: 96.71%;
  }
  .staffInterview_contents_item:nth-child(even){
    width: 100%;
    margin-right: auto;
    margin-left: 0;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box1{
    width: 36.51%;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box2{
    width: 54.27%;
  }
}

@media (min-width:1720px){
  /* メイン */
  .voice_top_box2{
    width: 49.01%;
    margin-top: -10px;
  }

  .pg_voice .section.sec1:before {
    top: 105px;
    left: 595px;
    right: var(--margin-for-device-side-w);
    bottom: 0px;
    z-index: -1;
  }
}


/*******************************
*　
********************************/
.pg_XXX{

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

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

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

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

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

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


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

  }

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

}


/* メイン */
.pg_blog .section.sec1 .posts_cat_item a{
  font-family: "Noto Sans JP", sans-serif;
}
.post_content img{
  margin-bottom: 30px;
}
.pg_contact .privacy_box,
.pg_contact .formTbl{
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width:374px){

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

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

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

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

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


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


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

}

@media  (min-width:768px) and (max-width:1023px){
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ftr_link{
   width:48%;
  }
  .ftr_link:nth-child(5){
   width:100%;
  }
}