@charset "UTF-8";

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

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

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


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  background: rgba(0,0,0,0.9);
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contact_btn{
    display: none;
  }
  .hdr_logo img{
    width: 130px;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-inline: 30px 10px;
  }
  .hdr_outer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    display: block;
    width: 200px;
    background: #c60202;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 24px 0;
    margin-left: 23px;
    border: 1px solid transparent;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before{
    content: "\f003";
    font-family: "fontAwesome";
    margin-right: 8px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    color: #c60202;
    border: 1px solid #c60202;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

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

.mv_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt1{
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}
.mv_txt2{
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-ja);
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 18px;
}

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

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

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

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

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

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


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

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

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img_item_img:before{
    padding-top: 900px;
    padding-top: 100vh;
  }

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

}


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

/* サイドバー */
.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: 1;
}
.pg_header_img{
  position: relative;
  z-index: 1;
}
.pg_header_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_img:after{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_hdr_txt{
  color: #FFF;
  position: absolute;
  z-index: 2;
  top: 61%;
  left: 0;
  right: 0;
  text-align: left;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_hdr_txt1{
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.pg_hdr_txt2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 18px;
}




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

  .pg_hdr_txt1{
    font-size: 40px;
    font-weight: 500;

  }
  .pg_hdr_txt2{
    font-size: 18px;
  }

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

  .pg_hdr_txt1{
    font-size: 60px;
    font-weight: 500;

  }
  .pg_hdr_txt2{

  }

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

  .pg_header{
    margin-bottom: 140px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 400px;
  }

  .pg_hdr_txt1{
    font-size: 82px;
    font-weight: 500;

  }
  .pg_hdr_txt2{

  }

}



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

.footer{
  margin-top: 0;
  position: relative;
  z-index: 1;
  background: #fff;
  padding-top: 60px;
}

.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;
  background: var(--main-color);
  color: #fff;
  padding: 6px 0;
}
.ftr_copy a:hover{
  color: #181818;
}

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


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

}
.ftr_contact_box1_tt1.home_sec2_slide_tt2{
  font-weight: 400;
  letter-spacing: 0;
}
.ftr_contact_box1_tt2.tt2_ja{
  font-size: 16px;
  letter-spacing: 0;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  line-height: 2.125em;
  margin-top: 37px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-ja);
  padding: 17px 25px;
  margin-inline:auto;
  transition: all .2s;
}
.link_0.item1:hover{
  background: var(--main-color);
  color: #fff;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background: var(--main-color);
}
.link_0.item1{
  background: #fff;
  border: 1px solid #000;
  color: #181818;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #183663;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #183663;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  color: #fff;
  padding: 17px 13px 17px 25px;
}
.link_0 + .link_0{
  margin-top: 11px;
}
.link_0 .tel{
  font-size: 20px;
  font-weight: 600;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 40px;
}
.ftr_contact_box2_inner{

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

.ftr_1{
  padding-top: 50px;
  padding-bottom: 40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr__add{
  margin-top: 30px;
}
.ftr__add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
.ftr__add_item{
  display: flex;
  align-items: center;
}
.ftr__add_txt.left{
  position: relative;
  padding-right: 10px;
  margin-right: 14px;
}
.ftr__add_txt.left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}

.ftr_1 a:hover{
  color: var(--main-color);
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

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

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_logo{
    width: 60%;
    display: block;
    margin-inline: auto;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr__add_item{
    display: flex;
    align-items: center;
    width: 295px;
    margin-inline: auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 0;
    padding-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding-top: 54px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{

  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

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

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

  }
  .ftr_contact_box2_img:before{

  }

  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    margin-inline: -30px;
    position: relative;
  }
  .ftr_links:before{

  }
  .ftr_link{
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 30px;

  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/arrr2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .ftr_link p{
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }

  .ftr_1{
    padding-top: 120px;
    padding-bottom: 140px;
  }
  .ftr_1_box{

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

  }
  .ftr__add{
    margin-top: 44px;
  }
  .ftr__add_txt{

  }
  .ftr__add_item{

  }
  .ftr__add_txt.left{

  }
  .ftr__add_txt.left:after{
    content: "";
    display: block;
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .ftr_1_box2{
    width: 52.22%;
    padding-top: 105px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 0;
    padding-top: 194px;
  }

  .ftr_link:nth-child(n+3){
    margin-top: 20px;
  }
}
@media (min-width:1200px){

  .ftr_contact_wrap{
    padding: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 61.51%;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

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

  .ftr_links{
    position: relative;
  }
  .ftr_link{
    width: 33.333%;
  }
  .ftr_link:nth-child(n+3) {
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 8px;
  }

  .ftr_1_box{

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

  }
  .ftr__add{

  }
  .ftr__add_txt{

  }
  .ftr__add_item{

  }
  .ftr__add_txt.left{

  }
  .ftr__add_txt.left:after{
    content: "";
    display: block;
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .ftr_1_box2{
    width: 58.22%;
  }
}
@media (min-width:1400px){
  .ftr_links{
    position: relative;
    margin-inline:-40px;
  }
  .ftr_link{
    width: 33.333%;
    padding-inline:40px;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 25px;
  }
}
@media (min-width:1536px){

}

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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  max-width: 350px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 5%;
  right: 0.85%;

  transition: 0.2s all;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 12px 12px;
  border-color: transparent transparent #fff transparent;
}
.read_more a:hover{
  color: #FFF;
  background: #000;
}
.read_more a:hover:after{
  right: 0.85%;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size:clamp(2.5rem, 1.625rem + 4.38vw, 6.875rem);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #181818;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.tt2_ja.wh{
  color: #fff;
}
.tt2_en.red{
  color: #b50000;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

}



.lg_en{
  font-size: clamp(2.5rem, 1.625rem + 4.38vw, 6.875rem);
  font-weight: 900;
  /*  font-family: var(--font-en);*/
  color: var(--main-color);
  line-height: 1.36em;
}
.lg_en p{
  letter-spacing: 0;
}
.italic_txt{
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 600;
  font-style: italic;
}
.italic_txt.noto{
  font-style: normal;
}
.italic_txt.md p{

}
.italic_txt p{
  letter-spacing: 0.05em;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.55em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc p{
  letter-spacing: 0.05em;
}

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

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

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

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

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

/* 0→1→0→1 の2往復風。最後は1で終わる */
@keyframes letterFlicker{
  0%   {
    opacity: 0;
  }
  25%  {
    opacity: 1;
  }
  50%  {
    opacity: 0;
  }
  75%  {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

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

  }
  .tt2_ja{
    font-size: 18px;
    margin-top:9px;
  }

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

  .lg_en{

  }
  .italic_txt{
    font-size: 28px;
  }
  .content_desc{

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

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

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

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

  .lg_en{

  }
  .italic_txt{
    font-size: 36px;
  }
  .content_desc{
    font-size: 18px;
  }
}


@media (min-width:1366px){

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

  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 18px;
  }

  .lg_en{

  }
  .italic_txt{
    font-size: 40px;
  }
}

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



@media (min-width:1470px){
  .italic_txt{
    font-size: 50px;
  }
}
@media (min-width:1720px){
  .italic_txt{
    font-size: 50px;
  }
  .italic_txt.mid{
    font-size: 46px;
  }

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

}
.pg_home .section:nth-child(n+3){
  position: relative;
  z-index: 2;
  background: #fff;
}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{
  position: relative
}
.pg_home .section.sec3{
  background: #fff;
}
.pg_home .section.sec4{
  padding-bottom: 0;
}
.pg_home .section.sec5{
  position: relative;
  padding: 50px 0;
}
.pg_home .section.sec5:before{
  content: "";
  display: block;
  width:1920px;
  height: 100%;
  background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/bgg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

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

  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 106px;
  }
  .pg_home .section.sec5{
    padding: 100px 0;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 95px;
  }
  .pg_home .section.sec8{
    padding-top: 100px;
  }

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


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

  .pg_home .section.sec1{
    padding-top: 160px;
  }
  .pg_home .section.sec2{
    padding-top: 330px;
  }
  .pg_home .section.sec3{
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec4{
    padding-top: 106px;
  }
  .pg_home .section.sec5{
    padding: 120px 0 106px;
  }
  .pg_home .section.sec6{
    padding-top: 120px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{
    padding-top: 110px;
  }
  .pg_home .section.sec9{
    padding-top: 111px;
  }
}
@media (min-width:1470px){


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


}

/*メイン*/

.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.home_sec1_box1{
  width: 100%;
}

.home_sec1_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.bg_logo{
  position: absolute;
  width: 65.73%;
  aspect-ratio:680 / 685;
  left: auto;
  right: 0;
  top: 16%;
  z-index: -1;
}

/*sec2*/

.home_sec2_bg_outer{
  width: 100%;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: none;
}
.home_sec2_bg{

}
.home_sec2_bg:before{
  padding-top: 600px;
}
.home_sec2_bg:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec2_wrap{
  position: relative;
  z-index: 2;
  text-align: center;
}
.home_sec2_tt{
  position: absolute;
  display: inline-block;
  font-family: var(--font-en);
  line-height: 1;
  top: -55px;
  left: 50%;
  transform:translateX(-50%);
}
.home_sec2_wrap .tt2_ja.wh{
  padding-top: 55px;
}

.tt_black{
  color:#222;
  position:relative;
  z-index:1;
}
.tt_white{
  position:absolute;
  left:0;
  top:0;
  color:#fff;
  z-index:2;
  clip-path: inset(56px 0 0 0);
}
.italic_txt.center{
  text-align: center;
  color: #fff;
}
.content_desc{

}
.home_sec2_wrap .content_desc.center{
  color: #fff;
  line-height: 2.33em;
  text-align: center;
}

/*sec2 スライド部*/
.home_sec2_slide_wrap{
  position: relative;
  z-index: 2;
  padding-top: 40px;
}
.home_sec2_bg_outer{
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home_sec2_slide_tt{

}
.home_sec2_slide_tt1{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.home_sec2_slide_tt1_en{
  font-size: 21px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color);
}
.home_sec2_slide_tt1_en strong{
  font-size: 28px;
  font-weight: 400;
}
.home_sec2_slide_tt1_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
}
.home_sec2_slide_tt1_ja:before{
  content: "";
  display: block;
  width: 28px;
  aspect-ratio:1;
  height: 100%;
  border-bottom: 1px solid #fff;
  margin: 0 8px;
}
.home_sec2_slide_tt2{
  font-size: 28px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

.home_sec2_slide_box{
  margin-top: 50px;
}

.gjs-dashed .home_sec2_slide_items{
  display: flex;
  flex-wrap: wrap;
  width: auto;
}
.home_sec2_slide_items{
  display: flex;
  flex-wrap: wrap;
}
.home_sec2_slide_item{
  width: 100%;
}
.home_sec2_slide_item_inner{
  color: #fff;
  position: relative;
  display: block;
}
.home_sec2_slide_item_inner:hover img{
  transform: scale(1.05);
}
.home_sec2_slide_item_inner:after{
  content: "";
  display: block;
  width: 38px;
  aspect-ratio:1;
  background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/arrr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  transition: all .2s;
}
.home_sec2_slide_item_inner:hover:after{
  right: 10px;
}
.home_sec2_slide_item_img:before{
  padding-top: 425px;
}
.home_sec2_slide_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top:0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  transition: all .2s;
}
.home_sec2_slide_item_inner:hover .home_sec2_slide_item_img:after{
  background: rgba(0,0,0,0);
}
.home_sec2_slide_item_img img{
  transition: all .2s;
}
.home_sec2_slide_item_content{
  position: absolute;
  left: 0;
  top: 215px;
  z-index: 2;
  color: #fff;
  padding-inline: 23px;
}
.home_sec2_slide_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.home_sec2_slide_tt:after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 10px 0;
}
.home_sec2_slide_item_inner .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}
.home_sec2_slide_item_inner .content_desc p{
  letter-spacing: 0;
}
.home_sec4_wrap .home_sec2_slide_tt:after{
  display: none;
}

/*sec3*/
.home_sec3_wrap{
  position: relative;
  z-index: 2;
}
.sec_sub_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px solid #181818;
  padding-bottom: 15px;
}
.home_sec2_slide_tt2.red{
  color: var(--main-color);
}
.home_sec2_slide_tt2.lg{
  font-weight: 700;
  margin-right: 21px;
}
.home_sec2_slide_tt1_ja.bk{
  color: #181818;
}
.home_sec2_slide_tt1_ja.sm{
  font-size: 16px;
  letter-spacing: 0;
}
.home_sec2_slide_tt1_ja.no_space:before{
  display: none;
}

.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_sec3_item{
  width: 100%;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 40px;
}
.home_sec3_item_inner{
  text-align: center;
  background: #f2f2f2;
  padding: 25px 16px 23px;
  position: relative;
}
.home_sec3_item_num{
  font-size: 21px;
  font-weight: 400;
  font-family: var(--font-en);
  color: var(--main-color);
  letter-spacing: 0.05em;
  line-height: 1;
}
.home_sec3_item_num strong{
  font-size: 28px;
  font-weight: 400;
}
.home_sec3_item_tt1{
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border-radius: 15px;
  padding: 5px 20px;
  margin-top: 18px;
}
.home_sec3_item_tt1 p{
  letter-spacing: 0;
}
.home_sec3_item_tt2{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 11px;
}
.home_sec3_item_tt2:after{
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #181818;
  margin: 14px auto 0;
}
.home_sec3_item .content_desc{
  text-align: center;
  line-height: 1.6em;
  margin-top: 15px;
}
.home_sec3_item .content_desc p{
  letter-spacing: 0;
}

/*sec3*/
.home_sec4_bg{

}
.home_sec4_bg .img_fit:before{
  padding-top: 2300px;
}
.home_sec4_bg .img_fit:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec4_wrap_outer{
  width: 100%;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;

}
.home_sec4_wrap{

}
.home_sec4_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_slide_tt{

}
.home_sec4_head .home_sec2_slide_tt{

}
.home_sec4_head_right{

}
.home_sec4_head_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec4_head_right .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
}
.home_sec4_head_right .content_desc p{
  letter-spacing: 0.05em;
}

.recruit_benefit_outer{
  background: rgba(0,0,0,0.8);
  padding: 20px 34px;
  margin-top: 44px;
}
.recruit_benefit{
  display: flex;
  flex-wrap: wrap;
  /*margin: 0 -5px;*/
  overflow: hidden;

}
.recruit_benefit_item{
  width: 100%;
  padding: 15px 15px;
  /*padding: 0 5px;*/
  position: relative;
  z-index: 1;
}
.recruit_benefit_item_inner{

}


/*sec4*/
/* ボーダー用 */
.recruit_benefit_item:before,
.recruit_benefit_item:after{
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.recruit_benefit_item:before{
  width: 2px;
  height: 100000px;
}
.recruit_benefit_item:after{
  height: 2px;
}
.recruit_benefit_item .home_sec4_item_tt{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.recruit_benefit_item .home_sec4_item_tt:after{
  content: "";
  display: block;
  width: 35px;
  height: 1px;
  background: #fff;
  margin-top: 8px;
}
.recruit_benefit_item .content_desc{
  font-size: 16px;
  line-height: 1.875em;
  margin-top: 13px;
}
.recruit_benefit_item .content_desc p{
  letter-spacing: 0.02em;
}
.recruit_benefit_item .link_1{
  width: 100%;
  display: block;
  border: 1px solid #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  margin-top: 26px;
}
.recruit_benefit_item .link_1 p{
  letter-spacing: 0.05em;
}
.recruit_benefit_item .link_1:hover{
  background: #fff;
  color: #181818;
}

/*sec5*/
.home_sec5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.home_sec5_box1{

}
.lg_en.os{
  font-family: var(--font-en);
}
.home_sec5_box1 .lg_en{

}
.home_sec5_box1 .italic_txt{
  line-height: 1.33em;
  margin-top: 21px;
}
.home_sec5_box1 .italic_txt p{
  letter-spacing: 0;
}
.home_sec5_wrap .read_more {
  width: 100%;
}
.home_sec5_box2{
  margin-top: 20px;
}
.home_sec5_box2_tt{

}
.home_sec5_box2_tt_en{
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0;
}
.home_sec5_box2_tt_ja{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.home_sec5_box2_items{
  margin-top: 38px;
}
.home_sec5_box2_item{
  border-bottom: 1px solid #181818;
  padding-bottom: 36px;
}
.home_sec5_box2_item:nth-child(n+2){
  padding-top: 30px;
}
.home_sec5_box2_item:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.home_sec5_box2_item_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_sec5_box2_item_tt1{
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 220px;
  background: #181818;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 2px 0;
  margin-right: 25px;
}
.home_sec5_box2_item_tt2{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.home_sec5_box2_item_sub{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.home_sec5_box2_item .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 12px;
}
.home_sec5_box2_item .content_desc p{
  letter-spacing: 0.05em;
}

/*sec6*/
.home_sec6_wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sub_title{
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  background: #181818;
  color: #fff;
  padding: 8px 0 8px;
  position: relative;
  padding-right: 14px;
  margin-bottom: 48px;
}
.sub_title:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #181818;
  position: absolute;
  top: 0;
  right: 0;
}
.sub_title:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0px 0px 32px;
  border-color: transparent transparent transparent #181818;
  position: absolute;
  right: -32px;
  top: 0;
}
.sub_title_t1{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-right: 30px;
  position: relative;
  z-index: 2;
}
.sub_title_t2{
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.sub_title_t2:before{
  content: "／";
  margin-right: 18px;
}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item .img:before{
  padding-top: 80%;
}
.news_list .webgene-item .box2{
  margin-top: 16px;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
}
.home_sec6_wrap .read_more{
  width: 100%;
}

/*sec7*/
.home_sec7_wrap{
  display: flex;
  flex-wrap: wrap;

}
.home_sec7_box1{
  width: 100%;
  position: relative;
}
.home_sec7_box1_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  padding: 0 15px;
}
.home_sec7_box1_tt{
  text-align: center
}
.home_sec7_box1 .home_sec2_slide_tt2{
  letter-spacing: 0.05em;
}
.home_sec7_box1 .tt2_ja.wh{

}
.home_sec7_box1 .italic_txt{
  margin-top: 16px;
}
.italic_txt .sm{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.home_sec7_box1 .content_desc{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.home_sec7_box1 .content_desc p{
  letter-spacing: 0.05em;
}
.home_sec7_box1 .read_more{
  margin-top: 20px;
}
.home_sec7_box1_img{

}
.home_sec7_box1_img .img_fit:before{
  padding-top: 550px;
}
.home_sec7_box1_img .img_fit:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec7_box2{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.home_sec7_box2_item{
  width: 49.5%;
  background: #f2f2f2;
  transition: all .2s;
  padding: 50px 0 100px;
}
.home_sec7_box2_item_inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.home_sec7_box2_item_inner:hover{
  background: #fff;
  color: var(--main-color);
}
.home_sec7_box2_tt{
  text-align: center;
  /*display: flex;
  align-items: center;*/
  position: relative;
}
.home_sec7_box2_tt:after{
  content: "";
  display: block;
  width: 38px;
  aspect-ratio:1;
  background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -77px;
  transform: translateY(-50%);
  transition: all .2s;
}
.home_sec7_box2_item:hover .home_sec7_box2_tt:after{
  right: -82px;
}
.home_sec7_box2_tt1{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
}
.home_sec7_box2_tt2{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.075em;
}

/*insta*/
.insta_list video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.insta_list {
  position: relative;
  padding: 10px 0;
  margin-top: 0;
}
.insta_list:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -2px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline: 2px;
}
.insta_list .webgene-item:nth-child(n+3) {
  margin-top: 4px;
}
.insta_list .webgene-item .img:before{
  padding-top: 132.17%;
}
/*sec8*/
.home_sec8_wrap{
  background: #f2f2f2;
  padding: 40px 15px;
}
.home_sec8_tt{
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}

/*sec9*/
.home_sec9_wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_sec9_wrap .news2_list{
  width: 100%;
}
.news2_list{

}
.news2_list .webgene-blog{

}
.news2_list .webgene-item{

}
.news2_list .webgene-item:nth-child(n+2){
  margin-top: 20px;
}
.news2_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #192a4d;
  padding: 16px;
}
.news2_list .date{
  width: 36%;
  font-size: 16px;
  font-family: var(--font-en);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.075em;
  position: relative;
}
.news2_list .date:after{
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  background: #a7a7a7;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.news2_list .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
.home_sec9_wrap .read_more{
  width: 100%;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*sec2*/
  .home_sec2_bg_outer{
    top: 31px;
  }
  .home_sec2_wrap .tt2_ja.wh{
    padding-top: 20px;
  }
  .home_sec2_tt{
    font-size: 60px;
  }
  .home_sec2_wrap .italic_txt.center{
    margin-top: 30px;
  }
  .tt_white{
    clip-path: inset(33px 0 0 0);
  }
  .home_sec2_slide_item_content{
    top: 50%;
    left:0;
    transform: translateY(-50%);
  }
  .home_sec2_slide_item_img:before{
    padding-top: 350px;
  }

  /*sec3*/

  .home_sec3_item_inner:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0px 20px;
    border-color: #b50000 transparent transparent transparent;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform:translateX(-50%);
  }
  .home_sec3_item:last-child .home_sec3_item_inner:after{
    display: none;
  }

  /*sec4*/
  .recruit_benefit_outer{
    padding: 20px 10px;
  }
  .recruit_benefit_item{
    border-bottom: 2px solid #fff;
    padding-bottom: 30px;
  }
  .recruit_benefit_item:last-child{
    border-bottom:none;
    padding-bottom: 0;
  }
  .recruit_benefit_item:nth-child(n+2){
    margin-top: 10px;
  }

  /*sec7*/
  .home_sec7_box2_tt:after{
    width: 28px;
    top:auto;
    bottom: -50px;
    right: auto;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*メイン*/

  .home_sec1_wrap{

  }
  .home_sec1_box1{

  }

  .home_sec1_box2{
    margin-top: 30px;
    ;
  }
  .home_sec1_box2 .content_desc{
    margin-top: 30px;
  }
  .home_sec1_box2 .read_more{
    margin-top: 63px;
  }

  /*sec2*/
  .home_sec2_bg_outer{
    width: 100%;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
  }
  .home_sec2_bg{

  }
  .home_sec2_bg:before{
    padding-top: 848px;
  }
  .home_sec2_wrap{

  }
  .home_sec2_tt{

  }
  .italic_txt.center{

  }
  content_desc{

  }

  /*sec2 スライド部*/
  .home_sec2_slide_wrap{
    padding-top: 100px;
  }
  .home_sec2_slide_tt{

  }
  .home_sec2_tt p{
    text-align: center;
    font-size: 100px;
    background: none;
    mix-blend-mode: difference;
  }
  .home_sec2_slide_tt1{

  }
  .home_sec2_slide_tt1_en{

  }
  .home_sec2_slide_tt1_en strong{

  }
  .home_sec2_slide_tt1_ja{
    font-size: 24px;
  }
  .home_sec2_slide_tt2{
    font-size: 40px;
  }

  .home_sec2_slide_item{
    width: 50%;
  }
  .home_sec2_slide_item_inner{

  }
  .home_sec2_slide_item_img:before{

  }
  .home_sec2_slide_item_content{

  }
  .home_sec2_slide_tt{
    font-size: 20px;
  }
  .home_sec2_slide_item_inner .content_desc{
    margin-top: 12px;
  }

  /*sec3*/
  .home_sec3_wrap{
    position: relative;
    z-index: 2;
  }
  .sec_sub_tt{

  }
  .home_sec2_slide_tt2.lg{

  }
  .home_sec2_slide_tt1_ja.sm{
    font-size: 20px;
  }

  .home_sec3_items{
    margin-inline:-20px;
  }
  .home_sec3_item{
    width: 50%;
    padding-inline:20px;
  }

  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 40px;
    ;
  }
  .home_sec3_item_inner{
    position: relative;
    height: 100%;
  }
  .home_sec3_item_inner:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0px 20px 20px;
    border-color: transparent transparent transparent #b50000;
    position: absolute;
    top: 50%;
    right: -20px;
    ;
    transform: translateY(-50%);
  }
  .home_sec3_item:nth-child(2n) .home_sec3_item_inner:after{
    display: none;
  }
  .home_sec3_item_num{

  }
  .home_sec3_item_num strong{

  }
  .home_sec3_item_tt1{

  }
  .home_sec3_item_tt2{
    font-size: 24px;
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .home_sec4_bg{

  }
  .home_sec4_bg .img_fit:before{
    padding-top: 100vh;
  }

  .home_sec4_wrap_outer{
    top: 56%;
  }
  .home_sec4_wrap{

  }
  .home_sec4_head{

  }
  .home_sec2_slide_tt{

  }
  .home_sec4_head .home_sec2_slide_tt{
    width:100%;
    padding-top: 6px;
  }
  .home_sec4_head_right{
    width:63.48%;
  }
  .home_sec4_head_tt{
    font-size: 20px;
  }
  .home_sec4_head_right .content_desc{
    margin-top: 10px;
  }

  /* 福利厚生 */
  .recruit_benefit_outer{
    padding: 20px 32px;
    margin-top: 10px;
  }
  .recruit_benefit{
    margin-inline: -51px;
  }
  .recruit_benefit_item{
    width: 50%;
    padding: 30px 51px;
  }
  .recruit_benefit_item_title{
    font-size: 19px;
    margin-bottom: 10px;
  }
  .recruit_benefit_item_txt{
    line-height: 2.125;
  }
  .recruit_benefit_item .home_sec4_item_tt{
    font-size: 20px;
  }
  .recruit_benefit_item .content_desc{

  }
  .recruit_benefit_item .link_1{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{

  }
  .lg_en.os{

  }
  .home_sec5_box1 .lg_en{

  }
  .home_sec5_box1 .lg_en{
    font-size:100px;
  }
  .home_sec5_box1 .italic_txt{

  }
  .home_sec5_box1 .read_more{
    margin-top: 49px;
  }
  .home_sec5_box2{
    margin-top: 30px;
  }
  .home_sec5_box2_tt{

  }
  .home_sec5_box2_tt_en{
    font-size: 24px;
  }
  .home_sec5_box2_tt_ja{
    font-size: 20px;
  }
  .home_sec5_box2_items{

  }
  .home_sec5_box2_item{

  }
  .home_sec5_box2_item:nth-child(n+2){
    padding-top: 45px;
  }
  .home_sec5_box2_item_tt{

  }
  .home_sec5_box2_item_tt1{
    font-size: 18px;
  }
  .home_sec5_box2_item_tt2{
    font-size: 16px;
    margin-top: 0;
  }
  .home_sec5_box2_item_sub{
    font-size: 21px;
  }
  .home_sec5_box2_item .content_desc{

  }

  /*sec6*/
  .sub_title:after{
    border-width: 40px 0px 0px 32px;
  }
  .home_sec6_wrap .read_more{
    margin-top: 46px;
  }

  /*sec7*/
  .home_sec7_wrap{

  }
  .home_sec7_box1{

  }
  .home_sec7_box1_inner{
    padding: 0;
  }
  .home_sec7_box1_tt{

  }
  .home_sec7_box1 .home_sec2_slide_tt2{

  }
  .home_sec7_box1 .tt2_ja.wh{
    margin-top: 5px;
  }
  .italic_txt .sm{
    font-size: 20px;
  }
  .home_sec7_box1 .italic_txt{
    margin-top: 16px;
  }
  .home_sec7_box1 .content_desc.center{
    text-align: center;
  }
  .home_sec7_box1 .read_more{

  }
  .home_sec7_box1_img{

  }
  .home_sec7_box1_img .img_fit:before{
    padding-top: 500px;
  }
  .home_sec7_box1_img .img_fit:after{

  }
  .home_sec7_box2{

  }
  .home_sec7_box2_item{
    padding: 50px 0;
  }
  .home_sec7_box2_item_inner{

  }
  .home_sec7_box2_tt{

  }
  .home_sec7_box2_tt1{
    font-size: 30px;
  }
  .home_sec7_box2_tt2{
    font-size: 18px;
  }

  /*insta*/
  .home_insta_wrap .sub_tt_txt{
    margin-bottom: 44px;
  }
  .insta_list{
    padding: 20px 33px 0 33px;
  }
  .insta_list .webgene-blog {
    margin-inline: -7px;
  }
  .insta_list .webgene-item {
    width: 33.333%;
    padding-inline: 7px;
  }
  .insta_list .webgene-item:nth-child(n+3) {
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 14px;
  }
  .home_insta_wrap .read_more{
    margin-top: 60px;
  }
  /*sec8*/
  .home_sec8_wrap{
    background: #f2f2f2;
    padding: 20px 0 33px;
  }
  .home_sec8_tt{
    font-size: 40px;
  }
  .home_sec8_wrap .read_more{
    margin-top: 26px;
  }

  /*sec9*/
  .news2_list{

  }
  .news2_list .webgene-blog{

  }
  .news2_list .webgene-item{

  }
  .news2_list .webgene-item a{
    padding: 30px 0;
    position: relative;
  }
  .news2_list .webgene-item a:before{
    content: "▶";
    display: block;
    font-size: 13px;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
  }
  .news2_list .webgene-item a:after{
    content: "";
    display: block;
    width: 1px;
    max-height: 60px;
    height: 100%;
    background: #a6a6a6;
    position: absolute;
    top: 50%;
    right: 6.31%;
    transform: translateY(-50%);
  }
  .news2_list .date{
    width: 13.28%;
    text-align: center;
    position: relative
  }
  .news2_list .date:after{
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background: #a7a7a7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .news2_list .title{
    width: calc(100% - 13.28% - 6.31%);
    padding-left: 10px;
    padding-right: 30px;
    margin-top: 0;
  }

  .home_sec9_wrap .read_more{
    margin-top: 56px;
  }
}
@media (min-width:1024px){

  /*横スライド*/
  .home_sec2_pin_area {
    position: relative;
    /*  overflow: hidden;*/
  }

  .home_sec2_bg_outer {
    position: absolute;
    /*    inset: 0;*/
    transform: none;
    inset: 0;
  }

  .home_sec2_slide_wrap {
    position: relative;
    z-index: 2;
    /*  overflow: hidden;*/
  }

  .home_sec2_slide_box {
    overflow: hidden;
    margin-top: 62px;
    margin-right: var(--margin-for-device-side-w);
    background: #fff;
    border-top: 10px solid #fff;
    border-left: 10px solid #fff;
  }

  .home_sec2_slide_items {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
  }

  .home_sec2_slide_item {
    width: 395px;
    margin-right: 0;
  }

  .home_sec2_slide_item:last-child {
    margin-right: 0;
  }

  /*sec4*/
  /* 縦 */
  .recruit_benefit_item:nth-child(2):before,
  .recruit_benefit_item:nth-child(3):before{
    content: "";
  }
  /* 横 */
  .recruit_benefit_item:nth-child(3n+1):not(:first-child):after{
    content: "";
    width: 300%;
  }
  .home_sec4_head .home_sec2_slide_tt{
    width: 30.01%;
  }
  .home_sec4_bg .img_fit:before{
    padding-top:100vh;
  }
  /* 福利厚生 */
  .recruit_benefit{
    margin-inline: -30px;
  }
  .recruit_benefit_item{
    width: 33.3333333%;
    padding: 10px 30px 30px;
  }
  .recruit_benefit_item:nth-child(n+4){
    padding-top: 30px;
    padding-bottom: 10px;
  }

  /*sec5*/
  .home_sec5_box1{
    width: 38.48%;
  }
  .home_sec5_box2{
    width: 57.23%;
    padding-top: 20px;
    margin-top: 0;
  }
  .home_sec5_box1 .lg_en{
    font-size: clamp(2.5rem, 1.625rem + 4.38vw, 6.875rem);
  }

  /*sec6*/
  .sub_title:after{
    border-width: 44px 0px 0px 32px;
  }
  .sub_title_t1{
    font-size: 24px;
  }
  .sub_title_t2{
    font-size: 16px;
  }
  .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:20px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 20px;
    ;
  }
  .news2_list .webgene-item a:before{
    right: 3%;
  }
}
@media (min-width:1200px){
  /*メイン*/

  .home_sec1_wrap{

  }
  .bg_logo{
    width: 44.73%;
    right: 0;
    left: 0;
  }
  .home_sec1_box1{
    width: 42.76%;
  }

  .home_sec1_box2{
    width: 50.98%;
    padding-top: 24px;
    margin-top: 0;
  }
  .home_sec1_box2 .content_desc{
    margin-top: 45px;
  }

  /*sec2*/
  .home_sec2_bg_outer{
    top: 0;
  }
  .home_sec2_bg{

  }
  .home_sec2_bg:before{
    padding-top: 848px;
  }
  .home_sec2_wrap{

  }
  .home_sec2_tt{

  }
  .italic_txt.center{

  }
  .italic_txt.md{
    font-size: 46px;
  }
  .home_sec2_wrap .italic_txt{
    margin-top: 33px;
  }

  .content_desc.center{
    text-align: center
  }
  .home_sec2_wrap .content_desc.center{
    margin-top: 11px;
  }

  .home_sec2_tt p{
    text-align: center;
    font-size: 100px;
    background:none;
    mix-blend-mode: difference;
  }

  /*sec2 スライド部*/
  .home_sec2_slide_wrap{
    padding-top: 140px;
  }
  .home_sec2_bg_outer{
    transform: none;
    inset: 0;
  }
  .home_sec2_slide_tt{

  }
  .home_sec2_slide_tt1{

  }
  .home_sec2_slide_tt1_en{

  }
  .home_sec2_slide_tt1_en strong{

  }
  .home_sec2_slide_tt1_ja{

  }
  .home_sec2_slide_tt2{
    font-size: 50px;
  }

  .home_sec2_slide_item{

  }
  .home_sec2_slide_item_inner{

  }
  .home_sec2_slide_item_img:before{

  }
  .home_sec2_slide_item_content{

  }
  .home_sec2_slide_tt{
    font-size: 24px;
  }
  .home_sec2_slide_item_inner .content_desc{

  }

  /*sec3*/
  .home_sec3_wrap{
    position: relative;
    z-index: 2;
  }
  .sec_sub_tt{

  }
  .home_sec2_slide_tt2.lg{
    font-size: 60px;
  }
  .home_sec2_slide_tt1_ja.sm{
    font-size: 20px;
  }

  .home_sec3_items{

  }
  .home_sec3_item{
    width: 25%;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+5){
    margin-top: 40px;
    ;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item:nth-child(2n) .home_sec3_item_inner:after{
    display: block;
  }
  .home_sec3_item:nth-child(4n) .home_sec3_item_inner:after{
    display: none;
    ;
  }
  .home_sec3_item_num{

  }
  .home_sec3_item_num strong{

  }
  .home_sec3_item_tt1{

  }
  .home_sec3_item_tt2{

  }
  .home_sec3_item .content_desc{
    font-size: 16px;
  }

  /*sec3*/
  .home_sec4_bg{

  }
  .home_sec4_bg .img_fit:before{
    padding-top:100vh;
  }
  .home_sec4_bg .img_fit:after{

  }
  .home_sec4_wrap_outer{

  }
  .home_sec4_wrap{

  }
  .home_sec4_head{

  }
  .home_sec4_head .home_sec2_slide_tt{
    width: 24.01%;
  }
  .home_sec4_head_right{

  }
  .home_sec4_head_tt{
    font-size: 28px;
  }
  .home_sec4_head_right .content_desc{

  }

  /* 福利厚生 */
  .recruit_benefit_item_title{
    font-size: 21px;
  }

  .recruit_benefit_item .home_sec4_item_tt{
    font-size: 20px;
  }
  .recruit_benefit_item .content_desc{

  }
  .recruit_benefit_item .link_1{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width: 38.48%;
  }
  .lg_en.os{

  }
  .home_sec5_box1 .lg_en{

  }
  .home_sec5_box1 .italic_txt{
    font-size: 40px;
  }
  .home_sec5_box1 .read_more{

  }
  .home_sec5_box2{
    width: 57.23%;
    padding-top: 20px;
  }
  .home_sec5_box2_tt{

  }
  .home_sec5_box2_tt_en{
    font-size: 34px;
  }
  .home_sec5_box2_tt_ja{

  }
  .home_sec5_box2_items{

  }
  .home_sec5_box2_item{

  }
  .home_sec5_box2_item_tt{

  }
  .home_sec5_box2_item_tt1{

  }
  .home_sec5_box2_item_tt2{

  }
  .home_sec5_box2_item_sub{

  }
  .home_sec5_box2_item .content_desc{

  }

  /*sec6*/
  .sub_title:after{
    border-width: 50px 0px 0px 32px;
  }
  .pg_home .section.sec9 .sub_title:after{
    border-width: 50.5px 0px 0px 32px;
  }
  .sub_title_t1{
    font-size: 30px;
  }
  .sub_title_t2{
    font-size: 18px;
  }
  .news_list .webgene-item{
    width: 25%;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /*sec7*/
  .home_sec7_wrap{

  }
  .home_sec7_box1{
    width: 70.57%;
  }
  .home_sec7_box1_inner{

  }
  .home_sec7_box1_tt{

  }
  .home_sec7_box1 .home_sec2_slide_tt2{
    font-size: 42px;
  }
  .home_sec7_box1 .tt2_ja.wh{

  }
  .italic_txt .sm{
    font-size: 26px;
  }
  .home_sec7_box1 .content_desc{

  }
  .home_sec7_box1 .read_more{

  }
  .home_sec7_box1_img{

  }
  .home_sec7_box1_img .img_fit:before{

  }
  .home_sec7_box1_img .img_fit:after{

  }
  .home_sec7_box2{
    width: 29.42%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .home_sec7_box2_item{
    width: 100%;
    height: 49.8%;
    padding: 0;
  }
  .home_sec7_box2_inner{

  }
  .home_sec7_box2_tt{

  }
  .home_sec7_box2_tt:after{
    right: -77px;
  }
  .home_sec7_box2_tt1{
    font-size: 34px;
  }
  .home_sec7_box2_tt2{

  }

  /*insta*/
  .insta_list .webgene-item {
    width: 16.666%;
  }
  .insta_list .webgene-item:nth-child(n+4) {
    margin-top: 0;
  }
  /*sec8*/
  .home_sec8_wrap{
    background: #f2f2f2;
  }
  .home_sec8_tt{
    font-size: 60px;
  }

  /*sec9*/
  .news2_list{

  }
  .news2_list .webgene-blog{

  }
  .news2_list .webgene-item{

  }
  .news2_list .webgene-item a{

  }
  .news2_list .date{

  }
  .news2_list .title{
    width: calc(100% - 13.28% - 6.31%);
    padding-left: 60px;
    padding-right: 30px;
  }


}
@media (min-width:1470px){
  .home_sec4_bg .img_fit:before{
    padding-top: 100vh;
  }
  .home_sec5_box1 .italic_txt{
    font-size: 50px;
  }

  .home_sec7_box1 .italic_txt{
    font-size: 52px;
  }
  .home_sec3_item_tt1{
    padding: 5px 26px;
  }
}
@media (min-width:1720px){
  .home_sec5_box1 .italic_txt{
    font-size: 60px;
  }

  .recruit_benefit_outer{
    padding: 20px 64px;
    margin-top: 44px;
  }
  .recruit_benefit{
    margin-inline: -51px;
  }
  .recruit_benefit_item{
    padding: 10px 51px 30px;
  }

  .home_sec4_head_right .content_desc{
    margin-top: 20px;
  }

  .recruit_benefit_item .home_sec4_item_tt{
    font-size: 24px;
  }

}
@media (min-width:768px) and (max-width:1023px){
  /* 縦 */
  .recruit_benefit_item:nth-child(2):before{
    content: "";
  }
  /* 横 */
  .recruit_benefit_item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }

}


/*******************************
*　home せり上がり部
********************************/

@media (max-width:374px){

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

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

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

}
@media (min-width:1024px){
  /*.pg_home .section.sec4{
    position: relative;
    z-index: 1;
    height: 200vh;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .home_sec4_over{
    position: sticky;
    top: 0;
    height: 100vh;
  }
  
  .pg_home .section.sec5{
    position: relative;
    z-index: 2;
    background: #fff;
  }*/
  .pg_home .section.sec4{
    position: relative;
    z-index: 1;
    height: 300vh;  /* 調整してください */
    padding-top: 0;
    padding-bottom: 0;
  }
  .home_sec4_over{
    position: relative;
  }

  .home_sec4_over.is-fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }

  .home_sec4_over.is-end{
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }
  .home_sec4_over,
  .home_sec4_bg,
  .home_sec4_wrap_outer{
    width: 100%;
  }

  .home_sec4_over.is-fixed .home_sec4_bg,
  .home_sec4_over.is-fixed .home_sec4_wrap_outer,
  .home_sec4_over.is-end .home_sec4_bg,
  .home_sec4_over.is-end .home_sec4_wrap_outer{
    width: 100%;
  }
  .pg_home .section.sec5{
    position: relative;
    z-index: 2;
    background: #fff;
  }
  .pg_home .section.sec5{
    position: relative;
    z-index: 2;
    background: #fff;
    margin-top: -100vh;
  }

  .pg_home .section.sec5{
    position: relative;
    z-index: 2;
    background: #fff;
    margin-top: -100vh;
    box-shadow: 0 -30px 60px rgba(0,0,0,0.16);
  }

  .home_sec4_over.is-fixed::after{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.14);
    z-index: 1;
  }

  .home_sec4_wrap_outer{
    z-index: 2;
  }

  .pg_home .section.sec5{
    position: relative;
    z-index: 2;
    background: #fff;
    margin-top: -100vh;
    box-shadow: 0 -30px 60px rgba(0,0,0,0.16);
  }

  .pg_home .section.sec5::before{
    /*  content: "";
      display: block;
      width: 100%;
      height: 120px;
      position: absolute;
      left: 0;
      top: -120px;
      pointer-events: none;
      background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0));*/
  }
  .pg_home .section.sec5::before{
    content: "";
    display: block;
    width: 1920px;
    aspect-ratio:1920 / 1181;
    background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/sbg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .pg_home .section.sec5{
    position: relative;
    z-index: 2;
    background: #fff;
    margin-top: -100vh;
    box-shadow: 0 -30px 60px rgba(0,0,0,0.16);
  }

  .pg_home .section.sec5::after{
    /*    content: "";
        display: block;
        width: 100%;
        height: 30px;
        position: absolute;
        top: -30px;
        left: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0.7), #fff);*/
  }
}
@media (min-width:1200px){


}


/*******************************
*　about
********************************/
.body_about .footer{
  padding-top: 0;
}
/* セクション設定 */
.pg_about{

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}
.pg_about .section.sec4{
  position: relative;
}
.pg_about .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 310px;
  z-index: -1;
}
.body_about .section:last-child{
  padding-bottom: 80px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 75px;
  }
  .pg_about .section.sec4{
    padding-top: 90px;
  }

  .body_about .section:last-child{
    padding-bottom: 100px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .body_about .section:last-child{
    padding-bottom: 200px;
  }
}
@media (min-width:1470px){


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


}

/* メイン部分 */

/*見出し*/
.pg_contents_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.pg_contents_hdr_box1{
  width: 100%;
}
.italic_txt.big{
  line-height: 1.33em;
}
.italic_txt.big p{
  letter-spacing: 0;
}
.en_desc{
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  color: var(--main-color);
  letter-spacing: 0;
}
.pg_contents_hdr_box1 .en_desc{
  margin-top: 20px;
}
.pg_contents_hdr_box1 .content_desc{
  line-height: 2.25em;
}
.pg_contents_hdr_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.pg_contents_hdr_box2_img:before{
  padding-top: 66.666%;
}
.pg_contents_hdr .bg_logo{
  top: 46%;
}

/*信頼を支えるものづくりの姿勢*/
.about_sec1_wrap{
  position: relative
}
.about_sec1_img:before{
  padding-top: 700px;
}
.about_sec1_img:after{
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.about_sec1_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;
  padding-inline:16px;
}
.about_sec1_box_tt{
  text-align: center;
  position: relative;
}
.about_sec1_box_tt_en{
  font-size: clamp(3.75rem, 2rem + 7.75vw, 12.5rem);
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255,255,255,0.1);
}
.about_sec1_box_tt_ja{
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-ja);
  font-style: italic;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.about_sec1_box .content_desc{
  line-height: 2.25em;
}

/*強み*/
.about_sec2_wrap{

}
.about_sec2_head{
  display: flex;
  flex-wrap: wrap;
}
.about_sec2_head_box1{

}
.about_sec2_head_box1_img:before{
  padding-top: 50%;
}
.about_sec2_head_box2{

}
.lg_en.main{

}
.about_sec2_head .sub_title{
  padding: 12px 0 12px;
}
.about_sec2_head_box2 .sub_title:after{
  border-width: 44px 0px 0px 32px;
}
.about_sec2_head .sub_title_t1{
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about_sec2_items{
  margin-top: 40px;
}
.about_sec2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 15px;
  border: 1px solid #181818;
}
.about_sec2_item:nth-child(n+2){
  margin-top: 40px;
}
.about_sec2_item_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.about_sec2_item_box1_tt{
  position: relative
}
.about_sec2_item_box1_sub_en{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color);
  position: relative;
  z-index: 1;
}
.about_sec2_item_box1_num{
  font-size: clamp(3.75rem, 0.75rem + 15vw, 18.75rem);
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #f2f2f2;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: 0;
}
.about_sec2_item_box1_h2{
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0.05em;
  margin-top: 16px;
  border-bottom: 1px solid #181818;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}
.about_sec2_item_box1 .content_desc{
  font-size: 16px;
  line-height: 2.25em;
  position: relative;
  z-index: 1;
}
.about_sec2_item_box2{
  width: 100%;
  order: 1;
}
.about_sec2_item_box2_img:before{
  padding-top: 75%;
}


.about_sec3_cards{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.about_sec3_card{
  width: 100%;
}
.about_sec3_card:nth-child(n+2){
  margin-top: 30px;
}
.about_sec3_card_inner{
  background: #fff;
  border: 1px solid #181818;
  padding: 16px;
}
.about_sec3_card_img:before{
  padding-top: 66.66%;
}
.about_sec3_card_tt{
  font-size: 18px;
  font-weight: 700;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-top:16px;
}
.about_sec3_card_tt:after{
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #181818;
  margin: 13px auto;
}
.about_sec3_card_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
  text-align: justify;
}
.about_sec3_card_desc p{
  letter-spacing: 0;
}
@media (max-width:767px){

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

  }
  .pg_contents_hdr_box1{

  }
  .italic_txt.big{

  }
  .en_desc{
    font-size: 20px;
  }
  .pg_contents_hdr_box1 .en_desc{
    margin-top: 30px;
  }
  .pg_contents_hdr_box1 .content_desc{
    margin-top: 47px;
  }
  .pg_contents_hdr_box2{
    margin-top: 30px;
    ;
  }
  .pg_contents_hdr_box2_inner{

  }
  .pg_contents_hdr_box2_img:before{

  }
  .pg_contents_hdr .bg_logo{
    top: 0;
  }

  /*信頼を支えるものづくりの姿勢*/
  .about_sec1_wrap{

  }
  .about_sec1_img:before{
    padding-top: 547px;
  }
  .about_sec1_img:after{

  }
  .about_sec1_box{
    top: 46%;
  }
  .about_sec1_box_tt{

  }
  .about_sec1_box_tt_en{
  font-size: clamp(3.75rem, 2rem + 8.75vw, 12.5rem);
  }
  .about_sec1_box_tt_ja{
    font-size: 28px;
    top: 54%;
  }

  .about_sec1_box .content_desc{
    font-size: 16px;
    text-align: justify;
  }

  /*強み*/
  .about_sec2_wrap{

  }
  .about_sec2_head{

  }
  .about_sec2_head_box1{

  }
  .about_sec2_head_box1_img:before{

  }
  .about_sec2_head_box2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .lg_en.main{

  }
  .about_sec2_head .sub_title{
    padding: 12px 30px 12px 0;
  }
  .about_sec2_head_box2 .sub_title:after{
    border-width: 44px 0px 0px 32px;
  }
  .about_sec2_head .sub_title_t1{

  }

  .about_sec2_items{
    margin-top: 100px;
  }
  .about_sec2_item{
    padding: 40px 20px;
  }

  .about_sec2_item:nth-child(n+2){
    margin-top: 40px;
  }
  .about_sec2_item_box1{
    margin-top: 30px;
  }
  .about_sec2_item_box1_tt{

  }
  .about_sec2_item_box1_sub_en{

  }
  .about_sec2_item_box1_num{

  }
  .about_sec2_item_box1_h2{
    font-size: 24px;
    padding-bottom: 30px;
  }
  .about_sec2_item_box1 .content_desc{
    font-size: 16px;
    margin-top: 30px;
  }
  .about_sec2_item_box2{

  }
  .about_sec2_item_box2_img:before{

  }

  .about_sec3_cards{
    margin-top: 60px;
    margin-inline:-14px;
  }
  .about_sec3_card{
    width: 50%;
    padding-inline:14px;
  }
  .about_sec3_card:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec3_card:nth-child(n+3){
    margin-top: 30px;
  }
  .about_sec3_card_inner{
    height: 100%;
    padding: 27px 28px;
  }
  .about_sec3_card_img:before{

  }
  .about_sec3_card_tt{
    font-size: 20px;
    margin-top: 20px;
  }
  .about_sec3_card_desc{

  }
}
@media (min-width:1024px){
  /*信頼を支えるものづくりの姿勢*/
  .about_sec1_box .content_desc{
    font-size: 16px;
    text-align: center;
  }

  /*強み*/
  .about_sec2_head_box2 .sub_title:after{
    border-width: 48px 0px 0px 32px;
  }
}
@media (min-width:1200px){
  /*見出し*/
  .pg_contents_hdr{

  }
  .pg_contents_hdr_box1{
    width: 50.98%;
  }
  .italic_txt.big{
    font-size: 40px;
  }
  .en_desc{
    font-size: 30px;
  }
  .pg_contents_hdr_box1 .en_desc {
    margin-top: 46px;
  }
  .pg_contents_hdr_box1 .content_desc{
    font-size: 16px;
  }
  .pg_contents_hdr_box2{
    width: 46.05%;
    padding-top: 20px;
    margin-top: 0;
  }
  .pg_contents_hdr_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .pg_contents_hdr_box2_img:before{

  }
  .pg_contents_hdr .bg_logo{
    top: 19%;
    right: auto;
    left: -17%;
  }

  /*信頼を支えるものづくりの姿勢*/
  .about_sec1_wrap{

  }
  .about_sec1_img:before{
    padding-top: 547px;
  }
  .about_sec1_img:after{

  }
  .about_sec1_box{
    padding-inline:0;
  }
  .about_sec1_box_tt{

  }
  .about_sec1_box_tt_en{

  }
  .about_sec1_box_tt_ja{
    font-size: 52px;
  }
  .about_sec1_box .content_desc{

  }

  /*強み*/
  .about_sec2_wrap{

  }
  .about_sec2_head{

  }
  .about_sec2_head_box1{
    width: 46.05%;
    padding-top: 36px;
  }
  .about_sec2_head_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .about_sec2_head_box1_img:before{

  }
  .about_sec2_head_box2{
    width: 53.94%;
    padding-left: 60px;
  }
  .lg_en.main{

  }
  .about_sec2_head .sub_title{
    margin-top: 40px;
  }
  .about_sec2_head .sub_title_t1{

  }
  .about_sec2_head_box2 .sub_title:after{
    border-width: 54.5px 0px 0px 32px;
  }
  .about_sec2_item{
    padding: 63px 60px;
  }
  .about_sec2_item:nth-child(n+2){
    margin-top: 40px;
  }
  .about_sec2_item:nth-child(odd) .about_sec2_item_box1{
    order: 1;
  }
  .about_sec2_item:nth-child(odd) .about_sec2_item_box2{
    order: 2;
  }
  .about_sec2_item:nth-child(even) .about_sec2_item_box1{
    order: 2;
  }
  .about_sec2_item:nth-child(even) .about_sec2_item_box2{
    order: 1;
  }
  .about_sec2_item_box1{
    width: 61.42%;
    padding-top: 35px;
    margin-top: 0;
  }
  .about_sec2_item_box1_tt{

  }
  .about_sec2_item_box1_sub_en{

  }
  .about_sec2_item_box1_num{
    left: -4%;
  }
  .about_sec2_item_box1_h2{
    font-size: 40px;
  }
  .about_sec2_item_box1 .content_desc{

  }
  .about_sec2_item_box2{
    width: 34.28%;
  }
  .about_sec2_item_box2_img:before{

  }


  .pg_contents_hdr.about_sec3_wrap{

  }
  .pg_contents_hdr.about_sec3_wrap .pg_contents_hdr_box1{
    order: 2;
    width: 49.01%;
  }
  .pg_contents_hdr.about_sec3_wrap .pg_contents_hdr_box2{
    order: 1;
  }
  .pg_contents_hdr.about_sec3_wrap .pg_contents_hdr_box2_inner{
    margin-right: 0;
    margin-left: var(--margin-for-device-side-w);
  }
  .pg_contents_hdr.about_sec3_wrap .pg_contents_hdr_box1 .en_desc{
    margin-top: 14px;
  }
  .pg_contents_hdr.about_sec3_wrap .pg_contents_hdr_box2_img:before{
    padding-top: 50%;
  }

  .about_sec3_cards{

  }
  .about_sec3_card{
    width: 25%;
  }
  .about_sec3_card:nth-child(n+3){
    margin-top: 0;
  }
  .about_sec3_card_inner{

  }
  .about_sec3_card_img:before{

  }
  .about_sec3_card_tt{
    font-size: 24px;
  }
  .about_sec3_card_desc{

  }
}
@media (min-width:1470px){
  .italic_txt.big{
    font-size: 60px;
  }
  .italic_txt.noto{
    font-size: 52px;
  }
  .italic_txt.noto p{
    letter-spacing: 0.05em;
  }

  .italic_txt.big{
    font-size: 46px;
  }
}
@media (min-width:1720px){
  .italic_txt.big{
    font-size: 50px;
  }

}



/*******************************
*　板金加工
********************************/
.body_processing .footer{
  padding-top: 0;
}
/* セクション設定 */
.pg_processing{

}
.pg_processing .section.sec1{

}
.pg_processing .section.sec2{

}
.pg_processing .section.sec3{
  padding:50px 0 80px;
}


@media (max-width:374px){

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

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

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

  }
  .pg_processing .section.sec1{

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

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


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

  }
  .pg_processing .section.sec1{

  }
  .pg_processing .section.sec2{
    padding-bottom: 160px;
  }
  .pg_processing .section.sec3{
    padding: 154px 0 155px;
  }

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


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


}

/* メイン部分 */
/*カテゴリ*/
.processing_links{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.processing_links_item{
  width: 100%;
}
.processing_links_item:nth-child(n+2){
  margin-top: 16px;
}
.processing_links_item a{
  display: block;
  border: 1px solid #181818;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-ja);
  position: relative;
  transition: all .2s;
  padding: 16px 0;
}
.processing_links_item a:hover{
  background: var(--main-color);
  color: #fff;
}
.processing_links_item a:after{
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) translateX(-50%);
}
.processing_links_item p{
  letter-spacing: 0;
}

/*見出し*/
.pg_contents_hdr.processing{

}
.pg_contents_hdr.processing .pg_contents_hdr_box1{

}
.pg_contents_hdr.processing .pg_contents_hdr_box1 .italic_txt{
  font-weight: 500;
}
.pg_contents_hdr.processing .pg_contents_hdr_box2{

}
.pg_contents_hdr.processing .pg_contents_hdr_box2_img:before{
  padding-top: 50%;
}

/*sec2*/
.about_sec2_items.processing_sec1_items{
  margin-top: 0;
}
.processing_sec1_item{
  border: 1px solid #181818;
  padding: 30px 16px;
}
.processing_sec1_item:nth-child(n+2){
  margin-top: 40px;
}
.processing_sec1_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.processing_sec1_item_head .about_sec2_item_box1{

}
.processing_sec1_item_head .about_sec2_item_box1_tt{
  border-bottom: 1px solid #181818;
  ;
  padding-bottom: 16px;
}
.processing_sec1_item_head .about_sec2_item_box1_h2{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: 6px;
  border-bottom: 0;
}
.processing_sec1_item_head .about_sec2_item_box1_sub_en{

}
.processing_sec1_item_head .content_desc{
  margin-top: 19px;
}
.processing_sec1_item_head .about_sec2_item_box2{

}
.processing_sec1_item_head .about_sec2_item_box2_img:before{
  padding-top: 66.666%;
}
.processing_sec1_item_cases{
  background: #f2f2f2;
  padding: 30px 16px;
  margin-top: 34px;
}
.processing_sec1_item_cases_tt{
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  background: #181818;
  color: #fff;
  border-radius: 16px;
  padding: 6px 25px 8px;
}
.processing_sec1_case_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 20px;
}
.processing_sec1_case_item{
  width: 100%;
  padding-inline:5px;
}
.processing_sec1_case_item:nth-child(n+2){
  margin-top: 30px;
  ;
}
.processing_sec1_case_item_inner{

}
.processing_sec1_case_item_img:before{
  padding-top: 75%;
}
.processing_sec1_case_item_tt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 11px;
}

/*製品紹介*/
.processing_sec3_wrap{
  position: relative;
}
.bg_gra{
  position: relative;
}
.bg_gra:before{

}
.bg_gra:before{
  content: "";
  display: block;
  width: 3300px;
  aspect-ratio:1920 / 2034;
  background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/bg_gra.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
.bg_gra.long:before{
  width: 1920px;
  aspect-ratio:1920 / 3278;
  background-image: url(https://yamakin-matex.co.jp/system_panel/uploads/images/bgg2.jpg);
}
.processing_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.processing_sec3_item{
  width: 100%;
}
.processing_sec3_item:nth-child(n+2){
  margin-top:30px;
  ;
}
.processing_sec3_item_inner{

}
.processing_sec3_item_img:before{
  padding-top: 75%;
}
.processing_sec3_item_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 16px;
}
.processing_sec3_item .content_desc{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.142em;
}
.processing_sec3_item .content_desc p{
  letter-spacing: 0.05em;
}

/*事例*/
.about_sec3_cases{
  margin-top: 40px;
}
.about_sec3_cases_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  background: #181818;
  color: #fff;
  padding: 12px;
}
.about_sec3_case_items{

  background: #fff;
  padding: 30px 16px;
}
.about_sec3_case_item_outer{
  display: flex;
  flex-wrap: wrap;
}
.about_sec3_case_item{
  width: 100%;
}
.about_sec3_case_item:nth-child(n+2){
  margin-top: 20px;
}
.about_sec3_case_item_inner{

  border: 1px solid #181818;
  padding: 12px 21px;
}
.about_sec3_case_item_box_outer{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cases_txt{
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
.about_sec3_case_item_box{
  width: 100%;

}
.about_sec3_case_item_img:before{
  padding-top: 71.87%;
}
.about_sec3_case_item_tt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 6px;
}

@media (max-width:767px){
  .processing_sec1_item_head .about_sec2_item_box1_h2{
    font-size: 22px;
    margin-top: 0;
  }

  .about_sec3_case_item_box + .about_sec3_case_item_box{
    margin-top: 16px;
  }
}
@media (min-width:768px){
  /*カテゴリ*/
  .processing_links{
    margin-inline:-10px;
    margin-bottom: 100px;
  }
  .processing_links_item{
    width: 50%;
    padding-inline:10px;
  }
  .processing_links_item:nth-child(n+2){
    margin-top: 0;
  }
  .processing_links_item:nth-child(n+3){
    margin-top: 20px;
    ;
  }
  .processing_links_item a{
    font-size: 20px;
    padding: 22px 0;
  }
  .processing_links_item a:after{
  width: 30px;
  }

  /*見出し*/
  .pg_contents_hdr.processing{

  }
  .pg_contents_hdr.processing .pg_contents_hdr_box1{

  }
  .pg_contents_hdr.processing .pg_contents_hdr_box2{

  }

  /*sec2*/
  .about_sec2_items.processing_sec1_items{
    margin-top: 0;
  }
  .processing_sec1_item{

  }
  .processing_sec1_item:nth-child(n+2){
    margin-top: 40px;
  }
  .processing_sec1_item_head{

  }
  .processing_sec1_item_head .about_sec2_item_box1{

  }
  .processing_sec1_item_head .about_sec2_item_box1_tt{
    padding-bottom: 27px;
  }
  .processing_sec1_item_head .about_sec2_item_box1_h2{

  }
  .processing_sec1_item_head .about_sec2_item_box1_sub_en{

  }
  .processing_sec1_item_head .content_desc{

  }
  .processing_sec1_item_head .about_sec2_item_box2{

  }
  .processing_sec1_item_head .about_sec2_item_box2_img:before{

  }
  .processing_sec1_item_cases{
    padding: 30px;
  }
  .processing_sec1_item_cases_tt{
    font-size: 18px;
  }
  .processing_sec1_case_items{
    margin-inline:-10px;
  }
  .processing_sec1_case_item{
    width: 50%;
    padding-inline:10px;
  }
  .processing_sec1_case_item:nth-child(n+2){
    margin-top: 0;
  }
  .processing_sec1_case_item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  /*  .processing_sec1_case_item:nth-child(n+4){
      margin-top: 30px;;
    }*/
  .processing_sec1_case_item_inner{

  }
  .processing_sec1_case_item_img:before{

  }
  .processing_sec1_case_item_tt{

  }

  /*製品紹介*/
  .bg_gra:before{
    width: 2500px;
  }
  .processing_sec3_wrap{

  }
  .processing_sec3_items{
    margin-inline:-20px;

  }
  .processing_sec3_item{
    width: 50%;
    padding-inline:20px;
  }
  .processing_sec3_item:nth-child(n+2){
    margin-top: 0;
    ;
  }
  .processing_sec3_item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  .processing_sec3_item_inner{

  }
  .processing_sec3_item_img:before{

  }
  .processing_sec3_item_tt{
    font-size: 20px;
    margin-top: 23px;
  }
  .processing_sec3_item .content_desc{
    margin-top: 18px;
  }

  /*事例*/
  .about_sec3_cases{
    margin-top: 60px;
  }
  .about_sec3_cases_tt{
    font-size: 22px;
  }
  .about_sec3_case_items{
    padding: 47px;
  }
  .about_sec3_case_item_outer{
    margin-inline:-10px;
  }
  .about_sec3_case_item{
    padding-inline:10px;
  }

  .about_sec3_case_item_inner{
    padding: 12px 21px 20px;
  }
  .about_sec3_case_item_box_outer{
    margin-inline:-10px;
  }
  .cases_txt{
    font-size: 20px;
  }
  .about_sec3_case_item_box{
    width: 50%;
    padding-inline:10px;
  }
  .about_sec3_case_item_img:before{

  }
  .about_sec3_case_item_tt{
    font-size: 18px;
  }
}
@media (min-width:1024px){
  .bg_gra:before{
    width: 2500px;
  }
  .processing_links_item a:after{
  width: 38px;
  }
}
@media (min-width:1200px){
  /*カテゴリ*/
  .processing_links{
    margin-bottom: 140px;
  }
  .processing_links_item{

  }
  .processing_links_item a{
    font-size: 24px;
  }
  .processing_links_item a:after{

  }

  /*見出し*/
  .pg_contents_hdr.processing{

  }
  .pg_contents_hdr.processing .pg_contents_hdr_box1{
    order: 2;
    padding-left: 35px;
  }
  .pg_contents_hdr.processing .pg_contents_hdr_box1 .en_desc{
    margin-top: 18px;
  }
  .pg_contents_hdr.processing .pg_contents_hdr_box2{
    order: 1;
  }
  .pg_contents_hdr.processing .pg_contents_hdr_box2_inner{
    margin-right: 0;
    margin-left: var(--margin-for-device-side-w);
  }

  /*sec2*/
  .about_sec2_items.processing_sec1_items{
    margin-top: 0;
  }
  .processing_sec1_item{
    padding: 29px 53px 62px;
  }
  .processing_sec1_item_head{

  }
  .processing_sec1_item:nth-child(odd) .about_sec2_item_box1{
    order: 1;
  }
  .processing_sec1_item:nth-child(odd) .about_sec2_item_box2{
    order: 2;
  }
  .processing_sec1_item:nth-child(even) .about_sec2_item_box1{
    order: 2;
  }
  .processing_sec1_item:nth-child(even) .about_sec2_item_box2{
    order: 1;
  }
  .processing_sec1_item_head .about_sec2_item_box1{
    width: 65%;
    padding-top: 0;
  }
  .processing_sec1_item_head .about_sec2_item_box1_tt{

  }
  .processing_sec1_item_head .about_sec2_item_box1_h2{
    font-size: 36px;
    border-bottom: 0;
  }
  .processing_sec1_item_head .about_sec2_item_box1_sub_en{

  }
  .processing_sec1_item_head .content_desc{

  }
  .processing_sec1_item_head .about_sec2_item_box2{
    width: 32.14%;
    padding-top: 28px;
  }
  .processing_sec1_item_head .about_sec2_item_box2_img:before{

  }
  .processing_sec1_item_cases{

  }
  .processing_sec1_item_cases_tt{

  }
  .processing_sec1_case_items{

  }
  .processing_sec1_case_item{
    width: 25%;
  }
  .processing_sec1_case_item:nth-child(n+3){
    margin-top: 0;
  }
  .processing_sec1_case_item:nth-child(n+5){
    margin-top: 30px;
    ;
  }
  .processing_sec1_case_item_inner{

  }
  .processing_sec1_case_item_img:before{

  }
  .processing_sec1_case_item_tt{

  }

  /*製品紹介*/
  .bg_gra:before{
    width: 1920px;
  }
  .processing_sec3_wrap{

  }
  .processing_sec3_items{

  }
  .processing_sec3_item{
    width: 33.333%;
  }
  .processing_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .processing_sec3_item:nth-child(n+4){
    margin-top: 51px;
  }
  .processing_sec3_item_inner{

  }
  .processing_sec3_item_img:before{

  }
  .processing_sec3_item_tt{

  }
  .processing_sec3_item .content_desc{

  }

  /*事例*/
  .about_sec3_cases_tt{
    font-size: 24px;
  }
  .about_sec3_case_items{

  }
  .about_sec3_case_item{
    width: 50%;
  }
  .about_sec3_case_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec3_case_item:nth-child(n+3){
    margin-top: 21px;
  }
  .about_sec3_case_item_inner{

  }
  .cases_txt{
    font-size: 20px;
  }
  .about_sec3_case_item_box{

  }
  .about_sec3_case_item_img:before{

  }
  .about_sec3_case_item_tt{

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


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


}







/*******************************
*　機械加工
********************************/
.body_machining .footer{
  padding-top: 0;
}
/* セクション設定 */
.pg_machining{

}
.pg_machining .section.sec1{

}
.pg_machining .section.sec2{

}
.pg_machining .section.sec3{
  padding: 50px 0px 80px;
}


@media (max-width:374px){

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

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

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

  }
  .pg_machining .section.sec1{

  }
  .pg_machining .section.sec2{
    padding-bottom: 100px;
  }
  .pg_machining .section.sec3{
    padding: 100px 0px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_machining .section.sec1{

  }
  .pg_machining .section.sec2{
    padding-bottom: 160px;
  }
  .pg_machining .section.sec3{
    padding: 152px 0 160px;
  }

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


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


}

/* メイン部分 */
.machining_sec1_items{
  display: flex;
  flex-wrap: wrap;
}
.machining_sec1_item{
  width: 100%;
}
.machining_sec1_item:nth-child(n+2){
  margin-top: 20px;
  ;
}
.machining_sec1_item_inner{
  border: 1px solid #181818;
  padding: 16px;
}
.machining_sec1_item_img{
  text-align: center;
}
.machining_sec1_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-top: 16px;
}
.machining_sec1_item_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #181818;
  margin: 16px auto;
}
.machining_sec1_item .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
}
.machining_sec1_item .content_desc p{
  letter-spacing: 0.05em;
}

/*support*/
.machining_sec2_wrap .home_sec2_slide_tt1_ja{
  margin-top: 16px;
  ;
}
.machining_sec2_head{
  display: flex;
  flex-wrap: wrap;
  margin-top: 44px;
}
.machining_sec2_head_box1{
  width: 100%;
}
.machining_sec2_head_box1_img:before{
  padding-top: 300px;
}
.machining_sec2_head_box2{
  width: 100%;
  background: #fff;
  padding: 10px 16px 30px;
}
.machining_sec2_head_box2 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
}
.machining_sec2_head_box2 .content_desc p{
  letter-spacing: 0.05em;
}


.machining_sec2_details{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.machining_sec2_detail_item{
  width: 100%;
}
.machining_sec2_detail_item_inner{
  position: relative;
}
.machining_sec2_detail_item_img:before{
  padding-top: 400px;
}
.machining_sec2_detail_item_img:after{
  content: "";
  display:block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 2%, rgba(44, 44, 44, 1) 82%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
  z-index: 1;
}
.machining_sec2_detail_item_content{
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translateY(-50%) translateX(-50%);
  z-index: 2;
  padding: 0 16px;
}
.machining_sec2_detail_item .machining_sec1_item_tt{
  text-align: left;
}
.machining_sec2_detail_item .machining_sec1_item_tt:after{
  margin-left: 0;
  background: #fff;
}
.machining_sec2_detail_item .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
}
@media (max-width:767px){
  .machining_sec2_detail_item + .machining_sec2_detail_item{
    margin-top: 20px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .machining_sec1_items{
    margin-inline:-20px;
  }
  .machining_sec1_item{
    width: 50%;
    padding-inline:20px;
  }
  .machining_sec1_item:nth-child(n+2){
    margin-top: 0;
  }
  .machining_sec1_item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  .machining_sec1_item_inner{
    height: 100%;
    padding: 40px 28px 27px;
  }
  .machining_sec1_item_img{

  }
  .machining_sec1_item_tt{
    font-size: 22px;
    margin-top: 28px;
  }
  .machining_sec1_item_tt:after{
    margin: 25px auto;
  }
  .machining_sec1_item .content_desc{

  }

  /*support*/
  .machining_sec2_wrap .home_sec2_slide_tt1_ja{
    margin-top: 16px;
    ;
  }
  .machining_sec2_head{

  }
  .machining_sec2_head_box1{

  }
  .machining_sec2_head_box1_img:before{
    padding-top: 400px;
  }
  .machining_sec2_head_box2{
    padding: 10px 30px 30px;
  }
  .machining_sec2_head_box2 .content_desc{

  }
  .machining_sec2_head_box2 .content_desc p{

  }

  .machining_sec2_details{
    margin-inline:-10px;
    margin-top: 58px;
  }
  .machining_sec2_detail_item{
    width: 50%;
    padding-inline:10px;
  }
  .machining_sec2_detail_item_inner{

  }
  .machining_sec2_detail_item_img:before{
    padding-top: 500px;
  }
  .machining_sec2_detail_item_content{
    top: 100px;
    transform: translateX(-50%);
    padding: 0 37px;
  }
  .machining_sec1_item_tt{

  }
  .machining_sec2_detail_item .content_desc{

  }
}
@media (min-width:1024px){
  /*support*/
  .machining_sec2_detail_item_content{
    top: 150px;
  }
  .machining_sec2_detail_item_img:before{
    padding-top: 500px;
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .machining_sec1_items{

  }
  .machining_sec1_item{
    width: 33.33%;
  }
  .machining_sec1_item:nth-child(n+3){
    margin-top: 0;
    ;
  }
  .machining_sec1_item:nth-child(n+4){
    margin-top: 41px;
  }
  .machining_sec1_item_inner{

  }
  .machining_sec1_item_img{

  }
  .machining_sec1_item_tt{
    font-size: 30px;
  }
  .machining_sec1_item .content_desc{

  }

  /*support*/
  .machining_sec2_wrap .home_sec2_slide_tt1_ja{
    margin-top: 0;
  }
  .machining_sec2_head{

  }
  .machining_sec2_head_box1{
    width: 39.47%;
  }
  .machining_sec2_head_box1_img:before{
    padding-top: 450px;
  }
  .machining_sec2_head_box2{
    width: 60.52%;
    padding: 16px 63px 16px 49px;
  }
  .machining_sec2_head_box2 .content_desc{

  }
  .machining_sec2_head_box2 .content_desc p{

  }

  .machining_sec2_details{

  }
  .machining_sec2_detail_item{

  }
  .machining_sec2_detail_item_inner{

  }
  .machining_sec2_detail_item_img:before{
    padding-top: 500px;
  }
  .machining_sec2_detail_item_content{
    top: 200px;
  }
  .machining_sec1_item_tt{

  }
  .machining_sec2_detail_item .content_desc{

  }
}

@media (min-width:1366px){
  .machining_sec2_detail_item_content{
    top: 220px;
  }
}
@media (min-width:1470px){
  /*support*/
  .machining_sec2_head_box1_img:before{
    padding-top: 400px;
  }

  .machining_sec2_detail_item_content{
    top: 150px;
  }

  .machining_sec2_detail_item_img:before{
    padding-top: 400px;
  }

}
@media (min-width:1720px){
  /*support*/
  .machining_sec2_head_box1_img:before{
    padding-top: 300px;
  }

  .machining_sec2_detail_item_content{
    top: 230px;
  }

  .machining_sec2_detail_item_img:before{
    padding-top: 500px;
  }
}

/*******************************
*　採用
********************************/
.body_recruit .footer{
  padding-top: 0;
}
/* セクション設定 */
.pg_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}

.pg_recruit .section.sec6{
  padding: 50px 0 80px;
}
.pg_recruit .section.sec6.bg_gra:before{
  top: 75px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 75px;
  }
  .pg_recruit .section.sec3{
    padding: 160px 0 100px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px;
    padding-bottom: 116px;
  }
  .pg_recruit .section.sec6{
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec6.bg_gra:before{
    top: 85px;
  }
}
@media (min-width:1024px){
  .pg_recruit .section.sec6.bg_gra:before{
    top: 90px;
  }

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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 75px;
  }
  .pg_recruit .section.sec3{
    padding: 234px 0 86px;
  }
  .pg_recruit .section.sec5{
    padding-top: 120px;
    padding-bottom: 116px;
  }
  .pg_recruit .section.sec6{
    padding-bottom: 170px;
  }

  .pg_recruit .section.sec6.bg_gra:before{
    top: 95px;
  }
}
@media (min-width:1366px){
  .pg_recruit .section.sec6.bg_gra:before{
    top: 99px;
  }
}
@media (min-width:1470px){
  .pg_recruit .section.sec6.bg_gra:before{
    top: 102px;
  }

}
@media (min-width:1720px){
  .pg_recruit .section.sec6.bg_gra:before{
    top: 113px;
  }

}

/* メイン部分 */
.pg_recruit .section.bg_gra:before{
  width: 2700px;
  top: 80px;
}
.recruit_sec2_wrap{

}
.recruit_sec2_wrap .about_sec2_item{
  background: rgba(255,255,255,0.4);
  border: none;
}
.recruit_sec2_wrap .about_sec2_item_box1_num{
  color: rgba(0,0,0,0.08);
}

/*福利厚生*/
.recruit_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 40px;
}
.recruit_sec3_item{
  width: 50%;
  padding-inline:5px;
}
.recruit_sec3_item:nth-child(n+3){
  margin-top: 10px;
  ;
}
.recruit_sec3_item_inner{
  text-align: center;
  background: #f2f2f2;
  padding: 20px 16px;
}
.recruit_sec3_item_en{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  color: #c60202;
}
.recruit_sec3_item_en strong{
  font-size: 24px;
  font-weight: 400;
}
.recruit_sec3_item_img{
  margin-top: 25px;
}
.recruit_sec3_item .machining_sec1_item_tt{

}
.recruit_sec3_item .machining_sec1_item_tt:after{
  width: 80px;
  margin: 14px auto 0;
}
.recruit_sec3_item .content_desc{
  text-align: justify;
  margin-top: 8px;
}
.content_desc.sm{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
}
.content_desc.sm p{
  letter-spacing: 0.05em;
}

/*人物像*/
.recruit_sec4_wrap{

}
.recruit_sec4_wrap .tt2{

}

/*インタビュー*/
.recruit_sec5_items{
  margin-top: 100px;
}
.recruit_sec5_item{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 0 30px;
}
.recruit_sec5_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f4f4f4;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  pointer-events: none;
  z-index: -1;
}
.recruit_sec5_item:nth-child(n+2) {
  margin-top: 80px;
}
.recruit_sec5_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.recruit_sec5_contents{

}
.recruit_sec5_content{

}
.recruit_sec5_content + .recruit_sec5_content{
  margin-top: 20px;
}
.recruit_sec5_content_tt{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #181818;
  color: #fff;
  padding: 5px 15px;
}
.recruit_sec5_box1 .content_desc{
  line-height: 2;
}
.recruit_sec5_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.recruit_sec5_box2{
  width: 100%;
  order: 1;
  margin-top: -50px;
}
.recruit_sec5_box2_img:before{
  padding-top:63.06%;
}
.recruit_sec5_box2_txt{
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.075em;
  background: var(--main-color);
  color: #fff;
  padding: 2px;
}

/*entry*/
.entry_form{
  margin-top: 50px;
}
.entry_form .sec_sub_tt{
  margin-bottom: 40px;
}
@media (max-width:767px){
  .recruit_sec2_wrap .about_sec2_items{
    margin-top: 0;
  }
}
@media (min-width:768px){
  .pg_recruit .section.bg_gra:before{
    width: 3100px;
    top: 116px;
  }
  .recruit_sec2_wrap .about_sec2_items{
    margin-top: 45px;
  }

  /*福利厚生*/
  .recruit_sec3_items{
    margin-inline:-20px;
  }
  .recruit_sec3_item{
    width: 33.333%;
    padding-inline:20px;
  }
  .recruit_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_sec3_item:nth-child(n+4){
    margin-top: 30px;
    ;
  }
  .recruit_sec3_item_inner{
    padding: 20px 0;
  }
  .recruit_sec3_item_en{
    font-size: 21px;
  }
  .recruit_sec3_item_en strong{
    font-size: 28px;
  }
  .recruit_sec3_item_img{

  }
  .recruit_sec3_item .machining_sec1_item_tt{
    margin-top: 12px;
  }
  .content_desc.sm{

  }
  .recruit_sec3_item .content_desc{
    padding-inline: 19px;
  }
  .recruit_sec3_wrap .content_desc.center{
    margin-top: 27px;
  }


  /*人物像*/
  .recruit_sec4_wrap{

  }
  .recruit_sec4_wrap .tt2{
    margin-bottom: 86px;
  }

  /*インタビュー*/
  .recruit_sec5_items{
    margin-top: 140px;
  }
  .recruit_sec5_item{
    padding: 0 0 52px;
  }
  .recruit_sec5_item:nth-child(n+2) {
    margin-top: 100px;
  }
  .recruit_sec5_box1{
    margin-top: 30px;
  }
  .recruit_sec5_contents{

  }
  .recruit_sec5_content{

  }
  .recruit_sec5_content + .recruit_sec5_content{
    margin-top: 39px;
  }
  .recruit_sec5_content_tt{
    font-size: 22px;
  }
  .recruit_sec5_box1 .content_desc{

  }
  .recruit_sec5_box2{
    margin-top: -50px;
  }
  .recruit_sec5_box2_img:before{

  }
  .recruit_sec5_box2_txt{
    font-size: 20px;
  }

  /*募集要項*/
  .recruit_sec6_wrap .tt2{
    margin-bottom: 88px;
  }
  .recruit_sec6_wrap .read_more{
    margin-top: 73px;
  }

  /*entry*/
  .entry_form{
    margin-top: 92px;
  }
  .entry_form .sec_sub_tt{
    margin-bottom: 81px;
  }
}
@media (min-width:1024px){
  .pg_recruit .section.bg_gra:before{
    width: 3400px;
    top: 130px;
  }

  .recruit_sec3_item .content_desc{
    text-align: center;
  }
}
@media (min-width:1200px){

  .pg_recruit .section.bg_gra:before{
    width: 2100px;
    top: 130px;
  }
  .recruit_sec2_wrap .about_sec2_head_box2{
    padding-left: 0;
  }
  .recruit_sec2_wrap .about_sec2_head .sub_title{
    margin-top: 28px;
  }
  .recruit_sec2_wrap .about_sec2_head .sub_title_t1{
    padding-left: 50px;
  }

  /*福利厚生*/

  .recruit_sec3_items{
    justify-content: center;
    margin-inline:-10px;
  }
  .recruit_sec3_item{
    width: 25%;
    padding-inline:10px;
  }
  .recruit_sec3_item:nth-child(n+4){
    margin-top: 0;
  }
  .recruit_sec3_item:nth-child(n+5){
    margin-top: 20px;
  }
  .recruit_sec3_item_inner{

  }
  .recruit_sec3_item_en{

  }
  .recruit_sec3_item_en strong{

  }
  .recruit_sec3_item_img{

  }
  .recruit_sec3_item .machining_sec1_item_tt{
    font-size: 24px;
  }
  .content_desc.sm{

  }

  /*人物像*/
  .recruit_sec4_wrap{

  }

  /*インタビュー*/
  .recruit_sec5_items{
    margin-top: 140px;
  }
  .recruit_sec5_item{
    padding: 52px 0 40px;
  }
  .recruit_sec5_item:nth-child(n+2) {
    margin-top: 120px;
  }
  .recruit_sec5_item:nth-child(odd) .recruit_sec5_box1{
    order: 1;
    padding-left: 49px;
  }
  .recruit_sec5_item:nth-child(odd) .recruit_sec5_box2{
    order: 2;
  }
  .recruit_sec5_item:nth-child(even) .recruit_sec5_box1{
    order: 2;
    padding-right: 49px;
  }
  .recruit_sec5_item:nth-child(even) .recruit_sec5_box2{
    order: 1;
  }

  .recruit_sec5_item:before{
    width: 86.51%;
    margin-left: 0;
    margin-right: 0;
  }
  .recruit_sec5_item:nth-child(odd):before{
    left: 0;
  }
  .recruit_sec5_item:nth-child(even):before{
    right: 0;
  }
  .recruit_sec5_box1{
    width: 57.23%;
  }
  .recruit_sec5_contents{

  }
  .recruit_sec5_content{

  }
  .recruit_sec5_content_tt{

  }
  .recruit_sec5_box1 .content_desc{

  }
  .recruit_sec5_box2{
    width: 36.51%;
    position: relative;
    top: -100px;
    margin-top: 0;
  }
  .recruit_sec5_box2_img:before{

  }
  .recruit_sec5_box2_txt{

  }
}
@media (min-width:1366px){
  .pg_recruit .section.bg_gra:before{
    width: 1960px;
    top: 137px;
  }



}
@media (min-width:1470px){
  .pg_recruit .section.bg_gra:before{
    width: 1920px;
    top: 153px;
  }

}
@media (min-width:1720px){
  .pg_recruit .section.bg_gra:before{
    width: 1920px;
    top: 153px;
  }

}


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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

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

}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.gmap{
  margin-top: 50px;
}
.access_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

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

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

/*見出し*/
.pg_contents_hdr.company{

}
.pg_contents_hdr.company .pg_contents_hdr_box1{

}
.pg_contents_hdr.company .bg_logo{

}
.pg_contents_hdr.company .italic_txt{
  margin-top: 20px;
}

.company_sec1_wrap{
  margin-top: 50px;
}
.company_tbl.sec1{

}
.company_tbl.sec1 .table_rows_th,
.company_tbl.sec1 .table_rows_td{

}
.company_tbl.sec1 .table_rows_th{
  background: #e4e6e4;
}
.company_tbl.sec1 .table_rows_td{

}
.company_tbl.sec1 .table_rows_td a:hover{
  color: var(--main-color);
}

/*沿革*/
.company_sec2_tbl{
  margin-top: 40px;
}
.company_sec2_tbl .table_rows_th,
.company_sec2_tbl .table_rows_td{
  background: none;
  font-weight: 500;
}
.company_sec2_tbl .table_rows_th{
  background: none;
}
.company_sec2_tbl .table_rows_td{
  line-height: 2.11em;
}

/*フォーム*/
.company_sec3_wrap .sec_sub_tt{
  margin-bottom:40px;
}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    border:1px solid #959595;
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #959595;
  }

  .company_sec2_tbl .table_rows_th,
  .company_sec2_tbl .table_rows_td{
    width: 100%;
    display: block;
    border:none;
    border-bottom: none;
    padding: 16px 10px;
  }
  .company_sec2_tbl .table_rows_th{
    border-bottom: 1px solid #181818;
  }
  /*  .company_sec2_tbl .table_rows_tr:last-child .table_rows_td{
        border-bottom: 1px solid #888888;
    }*/
  .company_sec2_tbl .table_rows_td{
    border-bottom: 1px solid #888888;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 16px 16px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
    line-height: 1.88em;
  }

  /* マップ */
  .gmap{
    margin-top: 104px;
  }
  .access_map iframe{
    height: 450px;
  }


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

  /*見出し*/
  .pg_contents_hdr.company{

  }
  .pg_contents_hdr.company .pg_contents_hdr_box1{

  }
  .pg_contents_hdr.company .bg_logo{

  }
  .pg_contents_hdr.company .italic_txt{
    margin-top: 42px;
  }
  .pg_contents_hdr.company .bg_logo{
    width: 58.55%;
    left: auto;
    right: -19%;
  }

  .company_sec1_wrap{
    margin-top: 100px;
  }
  .company_tbl.sec1{

  }
  .company_tbl.sec1 .table_rows_th,
  .company_tbl.sec1 .table_rows_td{
    border: 1px solid #888888;
  }
  .company_tbl.sec1 .table_rows_th{
    background: #e4e6e4;
  }
  .company_tbl.sec1 .table_rows_td{

  }

  /*沿革*/
  .company_sec2_tbl{
    margin-top: 81px;
  }
  .company_sec2_tbl .table_rows_th,
  .company_sec2_tbl .table_rows_td{
    font-size: 17px;
    padding: 20px 17px;
  }
  .company_sec2_tbl .table_rows_th{
    width: 200px;
    border-left: none;
    border-bottom: 1px solid #181818;
  }
  .company_sec2_tbl .table_rows_tr:first-child .table_rows_th{
    border-top: 1px solid #181818;
  }
  .company_sec2_tbl .table_rows_td{
    border-right: none;
    border-bottom: 1px solid #888888;
  }

  /*フォーム*/
  .company_sec3_wrap .sec_sub_tt{
    margin-bottom: 80px;
  }
}
@media (min-width:1024px){
  /*見出し*/
  .pg_contents_hdr.company .bg_logo{
    width: 58.55%;
    left: auto;
    right: -19%;
  }

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 17px;
    padding: 16px 16px 16px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
  }

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

  /*見出し*/
  .pg_contents_hdr.company{

  }
  .pg_contents_hdr.company .pg_contents_hdr_box1{
    width: 100%;
  }
  .pg_contents_hdr.company .bg_logo{
    width: 58.55%;
    left: auto;
    right: -19%;
    top: -12%;
  }

  .company_sec1_wrap{
    margin-top: 157px;
  }

  /*沿革*/
  .company_sec2_tbl{

  }
  .company_sec2_tbl .table_rows_th,
  .company_sec2_tbl .table_rows_td{

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

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


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


}



/* カテゴリNav */
.cmn_cat_nav{

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

.news_detail{
  border-bottom: 1px solid #181818;
  padding-bottom: 22px;
}
.news_detail .date{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.news_detail .title{
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 12px;
  margin-top: 16px;
}
.news_detail .post_content{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.875em;
  padding-top: 30px;
}
@media (max-width:767px){

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

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

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

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

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

  }

  .news_detail{

  }
  .news_detail .date{

  }
  .news_detail .title{
    font-size: 18px;
    margin-top: 20px;
  }
  .news_detail .post_content{
    padding-top: 42px;
  }

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

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


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

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

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

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

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

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

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

  .news_detail{

  }
  .news_detail .date{

  }
  .news_detail .title{
    font-size: 20px;
  }
  .news_detail .post_content{

  }

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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}

.news_list.kasou .webgene-item .img:before{
  padding-top: 73.68%;
}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #b50000;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 5px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}
.posts_cat_item a:hover{
  color: var(--main-color);
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}



/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

.news2_list.kasou .date{

}
.news2_list .title{

}
.news_list .webgene-item a:hover,
.news2_list .webgene-item a:hover{
  color: var(--main-color);
}
.news2_list .webgene-item a:before{

}
.news2_list .webgene-item a:after{

}


.topics_detail{
  border-bottom: 1px solid #181818;
  padding-bottom: 30px;
}
.topics_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
}
.topics_detail .post_content{
  padding-top: 30px;
}
.topics_detail .post_content h3{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #efefef;
  padding: 10px;
  margin-bottom: 20px;
}
.topics_detail .post_content h3 + h3{
  margin-top: 60px;
}
.topics_detail .post_content .txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2.125em;
}
.topics_detail .post_content img{
  margin-bottom: 19px;
}
.topics_detail .txt h3:nth-of-type(n+2) {
  margin-top: 40px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

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

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 0;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 155px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .topics_detail{
    padding-bottom: 92px;
  }
  .topics_detail .title{
    font-size: 18px;
  }
  .topics_detail .post_content{

  }
  .topics_detail .post_content h3{
    font-size: 18px;
    padding: 10px 21px;
    margin-bottom: 36px;
  }
  .topics_detail .post_content .txt{

  }
  .topics_detail .txt h3:nth-of-type(n+2) {
    margin-top: 70px;
  }
  .posts_layout_box1 .read_more{
    margin-top: 75px;
  }

  .news2_list.kasou .webgene-item:nth-child(n+2){
    margin-top: 15px;
  }
  .news2_list.kasou .date{
    width: 100px;
  }
  .news2_list .title{
    width: calc(100% - 100px - 88px);
  }
  .news2_list .webgene-item a:before{
    right: 40px;
  }
  .news2_list .webgene-item a:after{
    right: 88px;
  }

  .pg_news .read_more{
    margin-top: 56px;
  }
}
@media (min-width:1024px){

  /* リスト */
  .posts_list{

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

  }

  .topics_detail{

  }
  .topics_detail .title{

  }
  .topics_detail .post_content{
    padding-top: 40px;
  }
  .topics_detail .post_content h3{

  }
  .topics_detail .post_content .txt{

  }

  .news2_list.kasou .date{
    width: 200px;
  }
  .news2_list .title{
    width: calc(100% - 200px - 88px);
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 0;
  }

  .news_list.kasou{

  }
  .body_topics .posts_layout_box1{
    width: 80.26%;
  }
  .body_topics .posts_layout_box2{
    width: 16.77%;
  }
  .pg_news .posts_layout_box2{
    width: 22.97%;
  }
  .news_list.kasou .webgene-blog{

  }
  .news_list.kasou .webgene-item{
    width: 33.333%;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 77px;
  }
}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


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

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}





/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  font-weight: 500;
  padding: 15px 15px 15px 20px;
  background: #e4e6e4;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.label label{
  margin-left: 10px;
}
.formWrap .formTd.label .d-inline-block{
  margin-left: 26px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
  flex-wrap:wrap;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd input[name="year"]{
  max-width: 70px;
}
.formTd input[name="month"]{
  max-width: 43px;
}
.formTd input[name="day"]{
  max-width: 43px;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd input[name="toshi"],
.formTd input[name="calear"]{
  max-width: 45px;
}
.formWrap label[name="toshi"]
.formWrap label[name="calear"]{
  margin-left: 10px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 56px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 600;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #b50000;
}
.formBtn.formSend {
  display: block;
  max-width: 350px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #FFF;
  padding: 19px 20px;
  margin: 30px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 5%;
  right: 0.85%;
  transition: 0.2s all;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 12px 12px;
  border-color: transparent transparent #fff transparent;
}
.formBtn.formSend:hover {
  color: #FFF;
  background: var(--sub-color);
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 27px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8;
}

@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 24px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #b50000;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  font-weight: 500;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 46px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
  margin-right: 22px;
}
.formWrap .d-inline input{
  margin-right: 10px;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}
.privacy_box {
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 0;
}

@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
    font-size: 19px;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
    line-height: 1.75;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }

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

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
