@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Montserrat", 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;
}
.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{
    position: relative;
    z-index: 2;
  }
  .hdr1 {
    justify-content: center;
  }
  .hdr_logo{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
  }

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

  .hdr_contact_btns{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 80px;
  }
  .body_home{
    padding-top: 0;
  }
  .header{
    --logo-height: 48px;
    background: #fff;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;;
    align-items: center;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    /*    position: absolute;
        top: 40px;
        left: 50px;*/
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

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

  }
  .header.slim .hdr_logo img{
    height: auto;
  }
  .header.slim .hdr_logo{
    top: 20px;
    left: 30px;
    width: 250px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btns{
    display: flex;
  }
  .hdr_contact_box{
    width: 90px;
    height: 80px;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hdr_contact_box.bk{
    background: #000000;
    color: #fff;
    text-align: center;
  }
  .hdr_contact_box.bk:hover{
    background: var(--main-color);
    color: #fff;
  }
  .hdr_contact_btn.mail{

  }
  .hdr_contact_btn.mail p{
    transition: all .2s;
  }
  .hdr_contact_btn.mail p:before{
    content:"\f0e0";
    display: block;
    font-size: 28px;
    font-family: "fontAwesome";
    color: var(--main-color);
    transition: all .2s;
  }
  .hdr_contact_box.bk:hover .hdr_contact_btn.mail p,
  .hdr_contact_box.bk:hover .hdr_contact_btn.mail p:before{
    color: #fff;
  }
  .hdr_contact_box p{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    font-family: var(--font-en);
  }

  .hdr_contact_box.wh p{
    color: #000;
  }
  .hdr_contact_box.wh:hover p{
    color:  var(--main-color);
  }
  .hdr_contact_box.wh:hover .btnHamburger .line{
    background: var(--main-color);
  }

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_tel{
    text-align: center;
    margin-left: 30px;
  }
  .hdr_tel1{
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
    line-height: 1;
  }
  .hdr_tel1 strong{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
  }
  .hdr_tel2{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 2px;
  }
  .hdr_btn{
    width: 90px;
    height: 80px;
    background: #4cc764;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
  }
  .hdr_btn p{
    letter-spacing: 0;    
  }
  .hdr_btn p:before{
    content: "";
    display: block;
    width: 35px;
    aspect-ratio:35 / 34;
    background-image: url(/system_panel/uploads/images/line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline:auto;
  }
}
@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;
  }

  .hdr_outer{

  }
  .hdr_tel{

  }
  .hdr_tel1{
    font-size: 30px;
  }
  .hdr_tel1 strong{
    font-size: 20px;
  }
  .hdr_tel2{

  }
  .hdr_btn{

  }
  .hdr_btn p{

  }
  .hdr_btn p:before{

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_tel1{
    font-size: 24px;
  }
}
@media (min-width:1470px){
  .hdr_tel1{
    font-size: 24px;
  }
}
@media (min-width:1720px){
  .hdr_tel1{
    font-size: 30px;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before {
  /* padding-top: 250px; */
  padding-top: calc(100svh - 64px);
  padding-top: 100svh;
}
.mv_contents{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.mv_contents_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.mv_contents_box1{
  width: 100%;
}
.mv_contents_logo{

}
.mv_contents_box1_txt1{
  display: inline-block;
  font-size: clamp(2rem, 0.4rem + 8vw, 10rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  background: #ffe958;
  padding-bottom: 4px;
  margin-top: 20px;
  padding-inline: 5px;
}
.mv_contents_box1_txt2{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 20px;
}
.mv_contents_box1_txt2 p{
  display: inline-block;
  background: #1283c8;
  color: #ffe958;
  letter-spacing: 0;
  position: relative;
  padding-left: 47px;
}
.mv_contents_box1_txt2 p:nth-child(n+2){
  margin-top: 14px;
}
.mv_contents_box1_txt2 p:before{
  content: "";
  display: block;
  width: 31px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/circle-check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 8px;
  top: 10px;;
}
.mv_contents_box2{
  width: 100%;
  margin-top: 40px;
}
.mv_contents_box2_links{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.mv_contents_box2_link{
  width: 33.333%;
  padding-inline:5px;
}
.mv_contents_box2_link a{
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px  solid #ffe958;
  transition: all .2s;
  cursor: pointer;
}
.mv_contents_box2_link a:hover{
  transform: scale(1.05);
}
.mv_contents_box2_link_img{
  border-radius: 50%;
}
.mv_contents_box2_link_img img{
  border-radius: 50%;
}
.mv_contents_box2_link p{
  width: 100%;
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1px 0 16px;
  z-index: 2;
}

/* MVテキスト */



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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

/*装飾*/
@media (max-width:767px){
  .mv_contents_box1_txt2 p:before{
    width: 20px;
    top: 5px;
  }
  .mv_contents_box1_txt2 p{
    padding:3px 2px 3px 37px;
  }

  .mv_contents_box2_link p{
    bottom: -19px;
    font-size: 11px;
  }
}

@media (min-width:768px){

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

  .mv_contents{

  }
  .mv_contents_inner{

  }
  .mv_contents_box1{
    width: 100%;
  }
  .mv_contents_logo{

  }
  .mv_contents_box1_txt1{
    padding-bottom: 15px;
  }
  .mv_contents_box1_txt2{
    font-size: 18px;
    margin-top: 46px;
  }
  .mv_contents_box1_txt2 p{
    white-space: nowrap;
  }
  .mv_contents_inner a{
    border: 5px  solid #ffe958;
  }

  .mv_contents_box2{
    width: 100%;
    margin-top: 60px;
  }
  .mv_contents_box2_links{
    margin-inline:-15px;
  }
  .mv_contents_box2_link{
    width: 33.333%;
    padding-inline:15px;
  }
  .mv_contents_box2_link_img{

  }
  .mv_contents_box2_link p{
    width: 100%;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1px 0 24px;
    z-index: 2;
  }
}
@media (min-width:1024px){


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

  }
  .mv_contents_inner{

  }
  .mv_contents_box1{
    width: 44.73%;
  }
  .mv_contents_logo{

  }
  .mv_contents_box1_txt1{

  }
  .mv_contents_box1_txt2{
    font-size: 20px;
  }
  .mv_contents_box1_txt2 p{

  }
  .mv_contents_box2{
    width: 51%;
    margin-top: 0;
  }
  .mv_contents_box2_links{
    margin-inline:-15px;
  }
  .mv_contents_box2_link{
    width: 33.333%;
    padding-inline:15px;
  }
  .mv_contents_box2_link_img{

  }
  .mv_contents_box2_link p{
    font-size: 16px;
  }

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

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

  }
  .mv_contents_inner{

  }
  .mv_contents_box1{
    width: 44.73%;
  }
  .mv_contents_logo{

  }
  .mv_contents_box1_txt1{

  }
  .mv_contents_box1_txt2{
    font-size: 32px;
  }
  .mv_contents_box1_txt2 p{

  }
  .mv_contents_box2{
    width: 51%;
    padding-top: 20px;
  }
  .mv_contents_box2_links{

  }
  .mv_contents_box2_link{

  }
  .mv_contents_box2_link_img{

  }
  .mv_contents_box2_link p{
    font-size: 16px;
  }

}
@media (min-width:1366px){
  .mav_cara{
    width: 44.01%;;
  }

  .mv_contents_box1_txt2{
    font-size: 32px;
  }
  .mv_contents_box2_link p{
    font-size: 22px;
    bottom: -33px;
    padding: 1px 0 29px;
  }
}
@media (min-width:1470px){
  .mav_cara{
    width: 44.01%;;
  }
}
@media (min-width:1536px){
  .mav_cara{
    width: 44.01%;;
  }
}
/*******************************
*　サイドバー
********************************/

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

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

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


@media (min-width:768px){

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

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


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

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

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

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #1283c8;
  color: #fff;
  padding: 8px;
}
.ftr_copy p{
  letter-spacing: 0.05em;
}

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

.gmap{

}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

.ftr_contact_wrap{
  background: #1283c8;
  color: #fff;
  padding: 40px 0;
} 
.ftr_contact_wrap .tt2_en{
  color: #fff;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .content_desc{
  line-height: 1.875em;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.ftr_contact_box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 40px;;
}
.ftr_contact_btn{
  display: block;
}
.ftr_contact_btn img{
  transition: all .2s;
}
.ftr_contact_btn:hover img{
  transform: scale(1.02);
}

.ftr_contact_btn.no2{
  margin-top: 20px;
}

.ftr_1{
  background: #fff;
  padding-top: 46px;
  padding-bottom: 40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 30px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}
.ftr_add_items{

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

.ftr_contact_btn.no1{
  background: #ffe958;
  text-align: center;
  color: #000;
  padding: 34px;
  padding: 30px 34px;
  transition: all .2s;
}
.ftr_contact_btn.no1:hover{
  background: #000;
  color: #fff;
}
.ftr_contact_btn_txt1{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  width: 100%;
}
.ftr_contact_btn.no1:hover .ftr_contact_btn_txt1{
  border-color: #fff;
}
.ftr_contact_btn_txt2{
  font-size: 27px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0em;
  line-height: 1;
  margin-top: 17px;
}
.ftr_contact_btn_txt2 strong{
  font-size: 20px;
  font-weight: 600;
}
.ftr_contact_btn_txt3{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@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);
  }

  .gmap{

  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }
  .ftr_add_item{
    width:200px;
    margin-inline:auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }


  .ftr_contact_wrap{
    padding: 80px 0;
  }  
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box2{
    margin-top: 40px;;
  }
  .ftr_contact_btn{

  }

  .ftr_1{
    padding-top: 80px;
    padding-bottom: 76px;
  }
  .ftr_1 a:hover{
    color: var(--main-color);
  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 42.23%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_1_box2{
    width: 56%;
  }
  .ftr_links {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -20px;
    position: relative;
  }
  .ftr_link {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 8px;
  }


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/arr6.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_contact_btn_txt1{

  }
  .ftr_contact_btn_txt2{
    font-size: 40px;
    font-size: clamp(1.75rem, 1.6rem + 0.75vw, 2.5rem);
  }
  .ftr_contact_btn_txt2 strong{
    font-size: 24px;
  }
  .ftr_contact_btn_txt3{

  }

  .ftr_contact_btn.no1{
    width: 400px;;
    margin-inline:auto;
  }
  .ftr_contact_btn.no2{
    text-align: center;
    width: 100%;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .body_home .footer{
    margin-top: 210px;
  }

  .gmap{

  }
  .access_map iframe{
    height: 400px;
  }

  .ftr_contact_box{
    align-items: flex-start;
  }
  .ftr_contact_box1{
    width: 46.71%;
    padding-top: 15px;
  }
  .ftr_contact_box2{
    width: 50.98%;
    /*    align-items: flex-start;*/
    justify-content: space-between;
    margin-top: 0;
  }
  .ftr_contact_btn{

  }
  .ftr_contact_btn.no1{
    width: 59.35%;
    width: 100%;;
    /*    width: auto;
        max-width: 460px;
        width: 100%;*/
    /*    padding: 34px 34px 43px;*/
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-inline:0;
    padding: 0 34px;
  }
  .ftr_contact_btn.no2{
    width: 38.7%;
    width: 100%;;
    /*     width: auto;
            max-width: 300px;
        width: 100%;*/
    margin-top: 10px;;
  }

  .ftr_1_box1{
    width: 33.23%;
  }
  .ftr_1_box2{
    width: 65.28%;
  }

  .ftr_link{
    width: 33.333%;
  }
  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }

  .ftr_contact_box1 .content_desc{
    font-size: 14px;
  }
}
@media (min-width:1200px){
  .ftr_1_box2{
    width: 60.28%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    padding-inline: 20px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 8px;
  }
  .ftr_link p:after {
    width: 100%;
  }

  .ftr_contact_box1{
    width: 40.71%;
  }
  .ftr_contact_box2{
    width: 55.98%;
  }
  .ftr_contact_btn.no1{
    width: 50.35%;
    padding: 0 16px;
  }
  .ftr_contact_btn.no2{
    width: 38.7%;
    width: 299px;
    margin-top: 0;
  }
  .ftr_contact_btn_txt2{
    font-size: 24px;
  }
}
@media (min-width:1366px){
  .ftr_1_box2{
    width: 53.28%;
  }

  .ftr_contact_box1{
    width: 46.71%;
  }
  .ftr_contact_box2{
    width: 50.98%;
  }
  .ftr_contact_btn.no1{
    width: 53.35%;
    padding: 0 34px;
  }
  .ftr_contact_btn_txt2{
    font-size: 30px;
  }
}
@media (min-width:1536px){
  .ftr_contact_btn.no1{
    width: 56.35%;
  }
  .ftr_contact_btn_txt2{
    font-size: 30px;
  }
}
@media (min-width:1720px){
  .ftr_contact_btn.no1{
    width: 59.35%;
  }
  .ftr_contact_btn_txt2{
    font-size: 40px;
  }

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

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


/* テーブル用 */
.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;
}



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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 300px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid transparent;
  background: #000000;
  /*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: "";
  width: 24px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #000;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


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

}
.tt2_ja.wh:before{
  background: #fff;
}

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

}

.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5em;
  text-align: justify;
}
@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;
  }


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

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

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


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


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

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


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{
  background: #1283c8;
}
.pg_home .section.sec3{
  position: relative;
}
.pg_home .section.sec3:after{
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: #ffe958;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec4{
  position: relative;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 100vw;
  height: 666px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.pg_home .section.sec5{
  position: relative;

}
.pg_home .section.sec5:after{
  content: "";
  display: block;
  width: 100vw;
  height: 666px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .pg_home .section.sec5{
    padding-bottom: 40px;
  }
  .pg_home .section.sec4,
  .pg_home .section.sec5{
    margin-top: 50px;
  }
  .pg_home .section.sec4:before,
  .pg_home .section.sec5:after{
    top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    transform: none;
    height: 100%;
    left: auto;
    right: auto;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding: 100px 0;
  }
  .pg_home .section.sec3{
    padding-top: 67px;
    padding-bottom: 74px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec4:before{
    width: 78.9%;
    height: 1380px;
    left: 0;
    top: 89px;
    transform:none;
  }
  .pg_home .section.sec5{
    padding-top: 160px;
  }
  .pg_home .section.sec5:after{
    height: 1300px;
    width: 78.9%;
    right: 0;
    top: 198px;
    transform:none;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }
  .pg_home .section.sec3:after{
    height: 350px;
  }
}
@media (min-width:1024px){

  .pg_home .section.sec5:after{
    height: 1300px;
  }
  .pg_home .section.sec3:after{
    height: 500px;
  }
}
@media (min-width:1200px){

  .pg_home .section.sec1{
    padding-bottom: 137px;
  }
  .pg_home .section.sec2{
    padding: 130px 0 140px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec4:before{
    height: 666px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec5:after{
    height: 650px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

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

  .pg_home .section.sec5:after{
    height: 612px;
  }
}
@media (min-width:1720px){


}

/*main*/

/*sec1*/
.cmn_tt_en.kahen{
  font-size: clamp(2rem, -1.35rem + 16.75vw, 18.75rem);
}
.cmn_tt_en.sm{
  font-size: clamp(1.875rem, 0.375rem + 7.5vw, 9.375rem);
}

.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -0.2em;
}
.home_sec1_box1{
  width: 100%;
  margin-top:20px;
  order: 2;
}
.home_sec1_box1_img:before{
  padding-top: 66.666%;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.cover_tt{
  font-size: 19px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cover_tt p{
  letter-spacing: 0;
  background: #ffe958;
  padding: 1px 16px;
}
.cover_tt p:nth-child(n+2){
  margin-top: 6px;
}
.home_sec1_box2 .cover_tt{

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

}
.home_sec1_box2 .read_more{

}

/*sec2*/
.sec_header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.sec_header.bk{
  color: #000;
}
.sec_header_box1{
  width: 100%;
}
.tt2_en.wh{
  color: #fff;
}
.tt2_en.kahen{
  font-size: clamp(1.875rem, 1.25rem + 3.13vw, 5rem);
}
.sec_header_box2{
  width: 100%; 
}

/*sec3*/
.home_sec2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item:nth-child(n+2){
  margin-top: 40px;;
}
.home_sec2_item_inner{

}
.home_sec2_item_inner img{
  transition: all .2s;
}
.home_sec2_item_inner:hover img{
  transform: scale(1.02);
}
.home_sec2_item_outer{
  position:relative;
}
.home_sec2_item_num{
  font-size: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #ffe958;
  position: absolute;
  top: -28px;
  left: 19px;
  z-index: 1;
}
.home_sec2_item_img{
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_sec2_item_img:before{
  padding-top: 63.82%;
}
.home_sec2_item_tt{
  background: #000;
  color: #ffe958;
  padding-right: 30px;
  position: relative;
  padding: 18px 30px 18px 20px;
}
.home_sec2_item_tt:after{
  content: "";
  display: block;
  width: 36px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}
.home_sec2_item_h3{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec2_item_list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.home_sec2_item_list_txt{
  min-width: 100px;
  font-size: 16px; 
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #ffe958;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  padding: 5px 7px 5px 14px;
  margin-bottom: 10px;
  margin-right: 10px;
  transition: all .2s;
}
.home_sec2_item_list_txt:hover{
  background: #000;
  color: #fff;
}
.home_sec2_item_list_txt:after{
  content: "";
  display: block;
  width: 20px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
  transition: all .2s;
  position: relative;
  right: 0;
}

.link_2{
  display: block;
  max-width:600px; 
  background: #e03e3e;
  color: #fff;
  border: 1px solid #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-inline:auto;
  margin-top: 30px;
  padding: 16px 0;
}
.link_2:hover{
  background: #000;
  color: #fff;
}
.link_2 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.link_2 p:before{
  content: "";
  display: block;
  width: 20px;
  aspect-ratio:29 / 36;
  background-image: url(/system_panel/uploads/images/file-pdf.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 18px;
}

/*sec3*/
.works_outer{
  margin-top: -20px;  
}
.sec_tt_box{
  text-align: center;
  position: relative;
}
.sec_tt_en{
  font-size:clamp(2.625rem, 0.15rem + 12.38vw, 15rem);
  font-weight: 600;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.sec_tt_ja{
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.works_outer{

}
.works_outer .webgene-blog{
  display: flex;
  flex-wrap: nowrap;
}
.pg_home .section.sec3 .works_outer .webgene-blog{
  margin-inline:0;
}
.pg_home .section.sec3 .webgene-item{
  width: 250px; 
  margin-right: 10px;
  border: 2px solid #000;
  padding-inline:0;
}
.pg_home .section.sec3 .works_outer .webgene-item:nth-child(n+3){
  margin-top: 0;
}
.pg_home .section.sec3 .news_list_thumb .webgene-item .title{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.pg_home .section.sec3 .news_list_thumb .webgene-item .img:before{
  padding-top: 70%;
}

/*sec4*/
.home_sec4_wrap{

}
.home_sec4_wrap .sec_header{

}
.home_sec4_wrap .sec_header .sec_header_box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.home_sec4_wrap .sec_header .content_desc{
  width: 100%;
}
.home_sec4_wrap .sec_header .read_more{
  width: 100%;
}

.home_sec4_wrap{
  position: relative;
}

.home_sec4_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.home_sec4_item{
  width: 100%;
}
.home_sec4_item:nth-child(n+2){
  margin-top: 30px;
}
.home_sec4_item_inner{
  display: block;
  position: relative;
}
.home_sec4_item_img:before{
  padding-top: 415px; 
}
.home_sec4_item_img{
  overflow: hidden;
}
.home_sec4_item_img img{
  transition: all .2s;
}
.home_sec4_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  transition: all .2s;
}
.home_sec4_item_inner:hover .home_sec4_item_img img{
  transform: scale(1.02);
}
.home_sec4_item_inner:hover .home_sec4_item_img:after{

}
.pg_recruit .home_sec4_item_inner:hover img{
  transform: none;
}
.home_sec4_item_content{
  width: 100%;
  position: absolute;
  top:0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 1;
  padding: 37px 5px 37px 39px;
  /*  display: flex;
    flex-direction: column;
    justify-content: space-between;*/
}
.home_sec4_item_txt1{
  font-size: 18px;
  font-weight: 700;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #ffe958;
}
.home_sec4_item_txt1 strong{
  font-size: 28px;
  font-weight: 600;
}
.home_sec4_item_content .mv_contents_box1_txt1{
  font-size: 20px;
  padding: 6px 11px;
}
.home_sec4_item_content .content_desc{
  font-weight: 500;
  line-height: 2.25em;
  color: #fff;
  padding-right: 39px;
}
.home_sec4_item_content .content_desc p{
  letter-spacing: 0.025em;
}
.link_4{
  display: flex;
  justify-content: flex-end;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  margin-top: 30px;
  padding-right: 31px;
}
.link_4 p{
  border-bottom: 1px solid #fff;;
  letter-spacing: 0.025em;
  position: relative;
  padding-right: 50px;
  padding-bottom: 6px;
}
.link_4 p:after{
  content: "→";
  display: block;
  /*  font-family: "fontAwesome";*/
  position: absolute;
  top: 43%;
  right: 0;
  transform: translateY(-50%);
}

/*sec5*/
.home_sec5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec5_box1{
  width: 100%;
}
.home_sec5_box1_img:before{
  padding-top: 75%;
}
.home_sec5_box2{
  width: 100%;
  margin-top: 20px;
}
.cover_tt.bl p{
  letter-spacing: 0.075em;
  background: #1283c8;
  color: #fff;
}
.home_sec5_box2 .cover_tt{
  margin-top: 20px;
}
.home_sec5_box2 .content_desc{
  margin-top: 20px;
}
.home_sec5_box2 .read_more{

}

.pg_home .section.sec3 .news_list_thumb .webgene-item .meta .date{
  margin-right: 20px;
}
.pg_home .section.sec3 .news_list_thumb .webgene-item .meta .category{
  border-radius: 0;
  background: #ffe958;
  border: 1px solid #000;
  color: #000;
  padding: 1px 8px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .cover_tt p{
    padding: 1px 9px;
  }

  .pg_home .section.sec3:after{
    height: 250px;
  }
  .works_outer{
    margin-top: -7px;
  }

  .cmn_tt_en.kahen,
  .cmn_tt_en.row2{
    text-shadow: 1px 1px 0 #1283c8, -1px 1px 0 #1283c8, 1px -1px 0 #1283c8, -1px -1px 0 #1283c8;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -0.5em;
  }
  .home_sec1_box1{
    margin-top: 40px;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{

  }
  .cover_tt{
    font-size: 28px;
  }
  .cover_tt p{

  }
  .home_sec1_box2 .cover_tt{

  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{
    margin-top: 40px;
  }
  .home_sec1_box2 .read_more{
    margin-top: 56px;
  }

  /*sec2*/
  .sec_header{

  }
  .sec_header_box1{

  }
  .sec_header_box2{

  }

  /*sec3*/
  .home_sec2_items{
    margin-top: 75px;
  }
  .home_sec2_item{

  }
  .home_sec2_item:nth-child(n+2){
    margin-top: 50px;;
  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_outer{

  }
  .home_sec2_item_num{
    font-size: 70px;
  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{
    padding: 18px 30px 18px 20px;
  }
  .home_sec2_item_h3{
    font-size: 22px;
  }
  .home_sec2_item_list{
    margin-top: 30px;
  }
  .home_sec2_item_list_txt{
    font-size: 18px; 
  }
  .link_2{
    font-size: 24px;
    padding: 21px 0;
    margin-top: 85px;
  }
  .link_2 p:before{
    content: "";
    display: block;
    width: 29px;
  }

  /*sec3*/
  .works_outer{
    margin-top: -20px;  
  }
  .sec_tt_box{

  }
  .sec_tt_en{

  }
  .sec_tt_ja{
    font-size: 40px;
    top: 43%;
  }
  .works_outer{

  }
  .pg_home .section.sec3 .works_outer .webgene-item{
    width: 350px; 
    padding: 0;
    margin-right: 20px;
  }
  .pg_home .section.sec3 .works_outer .webgene-item:nth-child(n+3){
    margin-top: 0;
  }

  .pg_home .section.sec3 .news_list_thumb .webgene-item .title{
    font-size: 20px;
  }

  .pg_home .section.sec3 .read_more{
    margin-top: 62px;
  }

  /*sec4*/
  .home_sec4_wrap{

  }

  .home_sec4_wrap .sec_header{

  }
  .home_sec4_wrap .sec_header .sec_header_box2{

  }
  .home_sec4_wrap .sec_header .content_desc{

  }
  .home_sec4_wrap .sec_header .read_more{

  }

  .home_sec4_items{
    margin-inline:-5px;
    margin-top: 55px;
  }
  .home_sec4_item{
    width: 50%;
    padding-inline:5px;
  }
  .home_sec4_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec4_item:nth-child(n+3){
    margin-top: 10px;
  }
  .home_sec4_item_inner{

  }
  .home_sec4_item_img:before{
    padding-top: 450px;
  }
  .home_sec4_item_img:after{

  }
  .home_sec4_item_content{

  }
  .home_sec4_item_txt1{
    font-size:18px;


  }
  .home_sec4_item_txt1 strong{
    font-size: 30px;

  }
  .home_sec4_item_content .mv_contents_box1_txt1{
    font-size: 30px;
    margin-top: 23px;
  }
  .home_sec4_item_content .content_desc{
    padding-right: 50px;
  }
  .link_4{
    padding-right: 31px;
    margin-top: 60px;
  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{

  }
  .home_sec5_box1_img:before{

  }
  .home_sec5_box2{
    margin-top: 30px;
  }
  .cover_tt.bl{

  }
  .home_sec5_box2 .cover_tt{
    margin-top: 53px;
  }
  .home_sec5_box2 .content_desc{
    margin-top: 45px;
  }
  .home_sec5_box2 .read_more{
    margin-top: 51px;
  }
}
@media (min-width:1024px){
  .home_sec1_wrap{
    margin-top: -1.5em;
  }

  .works_outer{
    margin-top: -50px;  
  }

}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -1.5em;
  }
  .home_sec1_box1{
    width: 39.47%;
    order: 1;
    margin-top: 0;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 57.23%;
    order: 2;
  }
  .cover_tt{
    font-size: 32px;
  }
  .cover_tt p{

  }
  .home_sec1_box2 .cover_tt{

  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }
  .home_sec1_box2 .read_more{

  }

  /*sec2*/
  .sec_header{

  }
  .sec_header_box1{
    width: 32.23%; 
  }
  .sec_header_box2{
    width: 66.64%; 
  }
  .sec_header_box2 .content_desc{
    width: 70.44%;
    margin-top: 0;
  }

  /*sec3*/
  .home_sec2_items{
    margin-inline:-27.5px;
  }
  .home_sec2_item{
    width: 33.333%;
    padding-inline:27.5px;
  }
  .home_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_outer{

  }
  .home_sec2_item_num{
    font-size: 80px;
  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{

  }
  .home_sec2_item_h3{
    font-size: 22px;
  }
  .home_sec2_item_list{

  }
  .home_sec2_item_list_txt{
    font-size: 15px; 
  }

  /*sec3*/
  .works_outer{
    margin-top: -30px;  
  }
  .sec_tt_box{    

  }
  .sec_tt_en{

  }
  .sec_tt_ja{
    font-size: 60px;
  }
  .works_outer{

  }
  .pg_home .section.sec3 .works_outer .webgene-item{
    width: 500px;
    padding: 0;
    margin-right: 30px;
  }
  .pg_home .section.sec3 .works_outer .webgene-item:nth-child(n+3){
    margin-top: 0;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_wrap .sec_header{

  }
  .home_sec4_wrap .sec_header .sec_header_box1{
    width: 24.01%;
  }
  .home_sec4_wrap .sec_header .sec_header_box2{
    width: 74.01%;
    align-items: flex-end;
  }
  .home_sec4_wrap .sec_header .content_desc{
    width: 64.88%;
  }
  .home_sec4_wrap .sec_header .read_more{
    width: 26.666%;
  }

  .home_sec4_items{

  }
  .home_sec4_item{
    width: 33.333%;
  }
  .home_sec4_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sec4_item_inner{

  }
  .home_sec4_item_img:before{
    padding-top: 415px; 
  }
  .home_sec4_item_img:after{

  }
  .home_sec4_item_content{

  }
  .home_sec4_item_txt1{

  }
  .home_sec4_item_content .mv_contents_box1_txt1{
    font-size: 30px;
  }
  .home_sec4_item_content .content_desc{

  }
  .link_4{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width: 39.47%;
  }
  .home_sec5_box1_img:before{

  }
  .home_sec5_box2{
    width: 57.23%;
    margin-top:0;
  }
  .cover_tt.bl{

  }
  .home_sec5_box2 .cover_tt{
    font-size: 40px;
  }
  .home_sec5_box2 .content_desc{

  }
  .home_sec5_box2 .read_more{

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

  .home_sec1_wrap{
    margin-top: -3.5em;
  }
  .cover_tt{
    font-size: 40px;
  }

  /*sec2*/
  .home_sec2_item_h3{
    font-size: 30px;
  }

  /*sec3*/
  .works_outer{
    margin-top: -48px;  
  }

  /*sec4*/
  .home_sec4_item_content .mv_contents_box1_txt1{
    font-size: 40px;
  }
}
@media (min-width:1720px){
  .home_sec2_item_list_txt{
    font-size: 18px; 
  }
  .cover_tt{
    font-size: 48px;
  }

  /*sec4*/
  .home_sec4_item_content .mv_contents_box1_txt1{
    font-size: 60px;
  }
}




/*******************************
*　aboutus
********************************/

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

}
.pg_aboutus .section.sec1{

}
.pg_aboutus .section.sec2{
  background: #1283c8;
  padding-bottom:80px;
}

/*.body_aboutus .footer{
  margin-top: 0;
}*/
@media (max-width:374px){

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

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

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

  }
  .pg_aboutus .section.sec1{
    padding-bottom: 100px;
  }
  .pg_aboutus .section.sec2{
    padding-top: 80px;
    padding-bottom: 100px;
  }

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


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

  }
  .pg_aboutus .section.sec1{
    padding-bottom: 168px;
  }
  .pg_aboutus .section.sec2{
    /*padding-bottom: 160px;*/
  }

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


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


}

/* メイン部分 */
/*sec1*/
.company_box.multi{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -23px;
}
.company_box.multi .company_box1.multi{
  display: flex;
  flex-wrap: wrap;
} 
.company_box.multi .company_box1.multi .company_box1_img{
  width: 50%;
}
.company_box.multi .company_box1.multi .company_box1_img:before{
  padding-top: 66.666%;
}
.company_box.multi .company_box2{

}
.company_box.multi .company_box2 .cover_tt{

}
.company_box.multi .company_box2 .content_desc{

}

/*sec2*/
.aboutus_msg_box{
  position: relative;
  margin-top: 40px;
}
.aboutus_msg_img:before{
  padding-top: 980px;
}
.aboutus_msg_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.aboutus_msg_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  padding: 0 16px;
}
.aboutus_msg_inner .home_sec4_item_txt1{

}
.aboutus_msg_inner .cover_tt{
  line-height: 1;
  margin-top: 20px;
}
.aboutus_msg_inner .cover_tt p{
  padding: 4px 15px;
}
.aboutus_msg_inner .content_desc{
  color: #fff;
  line-height: 2.25em;
}

.tt2_ja.wh{
  color: #fff;
}
.tt2_ja.wh:before{
  color: #fff;
  background: #fff;
}
.cover_tt.multi{
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffe958;
  padding: 5px;
}
.cover_tt_outer{
  display: flex;
}
.cover_tt.multi p{
  display: inline-block;
  background: none;
}
.cover_tt.multi p:nth-child(n+2){
  margin-top: 0;
}
.cover_tt .en{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: -3px;
}
.cover_tt .en strong{
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.cover_tt .ja{
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
}
.pg_aboutus_wrap2_item .content_desc{
  color: #181818;
}
.pg_aboutus_wrap2_items{
  margin-top: 40px;
}
.pg_aboutus_wrap2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
}
.pg_aboutus_wrap2_item:before{
  content: "";
  display: block;
  background: #fff;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 0;
}
.pg_aboutus_wrap2_item:nth-child(n+2){
  margin-top: 40px;
}
.pg_aboutus_wrap2_item_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 2;
  margin-top: 20px;
}
.pg_aboutus_wrap2_item_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.pg_aboutus_wrap2_item_img{

}
.pg_aboutus_wrap2_item_img:before{
  padding-top: 83.333%;
}
@media (max-width:767px){
  .aboutus_msg_inner .cover_tt{
    line-height: 1.6em;
  }
}
@media (min-width:768px){
  /*sec1*/
  .company_box.multi{
    margin-top: -30px;
  }
  .company_box.multi .company_box1.multi{

  } 
  .company_box.multi .company_box1.multi .company_box1_img{

  }
  .company_box.multi .company_box1.multi .company_box1_img:befpre{

  }
  .company_box.multi .company_box2{

  }
  .company_box.multi .company_box2 .cover_tt{

  }
  .company_box.multi .company_box2 .content_desc{
    margin-top: 48px;
  }

  /*sec2*/
  .aboutus_msg_box{
    margin-top: 100px;
  }
  .aboutus_msg_img:before{
    padding-top: 700px;
  }
  .aboutus_msg_img:after{

  }
  .aboutus_msg_inner{
    padding: 0 30px;
  }
  .aboutus_msg_inner .home_sec4_item_txt1{

  }
  .aboutus_msg_inner .cover_tt{
    margin-top: 27px;
  }
  .aboutus_msg_inner .content_desc{

  }

  .cover_tt .en{
    font-size: 30px;
  }
  .cover_tt .en strong{
    font-size: 40px;
  }
  .cover_tt .ja{
    font-size: 40px;
  }
  .pg_aboutus_wrap2_item .content_desc{
    margin-top: 30px;
  }
  .pg_aboutus_wrap2_items{
    margin-top: 60px;
  }
  .pg_aboutus_wrap2_item{
    padding: 40px 0;
  }
  .pg_aboutus_wrap2_item:nth-child(n+2){
    margin-top: 100px;
  }
  .pg_aboutus_wrap2_item_box1{
    margin-top: 30px;
  }
  .pg_aboutus_wrap2_item_box2{

  }
  .pg_aboutus_wrap2_item_img{

  }
  .pg_aboutus_wrap2_item_img:before{
    padding-top: 70.333%;
  }
}
@media (min-width:1024px){
  .company_box.multi{
    margin-top: -20px;
  }
  /*sec2*/
  .aboutus_msg_img:before{
    padding-top: 600px;
  }

  .cover_tt .ja{
    font-size: 40px;
  }

  .pg_aboutus_wrap2_item_img:before{
    padding-top: 83.333%;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .company_box.multi{
    margin-top: -30px;
  }
  .company_box.multi .company_box1.multi{
    width: 39.47%;
  } 
  .company_box.multi .company_box1.multi .company_box1_img{

  }
  .company_box.multi .company_box1.multi .company_box1_img:befpre{

  }
  .company_box.multi .company_box2{
    width: 56.9%; 
  }
  .company_box.multi .company_box2 .cover_tt{

  }
  .company_box.multi .company_box2 .content_desc{

  }

  /*sec2*/
  .aboutus_msg_box{
    margin-top: 160px;
  }
  .aboutus_msg_img:before{
    padding-top: 600px;
  }
  .aboutus_msg_img:after{

  }
  .aboutus_msg_inner{
    padding: 0 95px;
  }
  .aboutus_msg_inner .home_sec4_item_txt1{

  }
  .aboutus_msg_inner .cover_tt{

  }
  .aboutus_msg_inner .content_desc{

  }
  .cover_tt.multi{
    align-items: center
  }
  .cover_tt .en{

  }
  .cover_tt .en strong{
    font-size: 50px;
  }
  .cover_tt .ja{
    font-size: 40px;
  }
  .pg_aboutus_wrap2_items{
    margin-top: 90px;
  }
  .pg_aboutus_wrap2_item{
    position: relative;
    padding: 80px 0;
  }
  .pg_aboutus_wrap2_item:before{
    content: "";
    display: block;
    width: 1515px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .pg_aboutus_wrap2_item:nth-child(odd):before{
    right: 205px;
  }
  .pg_aboutus_wrap2_item:nth-child(even):before{
    left: 205px;
  }
  .pg_aboutus_wrap2_item:nth-child(n+2){
    margin-top: 120px;
  }
  .pg_aboutus_wrap2_item:nth-child(odd) .pg_aboutus_wrap2_item_box1{
    order: 1;
  }
  .pg_aboutus_wrap2_item:nth-child(odd) .pg_aboutus_wrap2_item_box2{
    order: 2;
  }
  .pg_aboutus_wrap2_item:nth-child(even) .pg_aboutus_wrap2_item_box1{
    order: 2;
  }
  .pg_aboutus_wrap2_item:nth-child(even) .pg_aboutus_wrap2_item_box2{
    order: 1;
  }
  .pg_aboutus_wrap2_item_box1{
    width: 57.23%;
    margin-top: 0;
  }
  .pg_aboutus_wrap2_item_box2{
    width: 39.47%;
  }
  .pg_aboutus_wrap2_item_img{
    margin-top: -118px;
  }
  .pg_aboutus_wrap2_item_img:before{

  }
}
@media (min-width:1366px){
  .cover_tt .ja{
    font-size: 40px;
  }
  .cover_tt.multi{
    align-items: flex-end;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .company_box.multi{
    margin-top: -47px;
  }

  .cover_tt .en{

  }
  .cover_tt .en strong{

  }
  .cover_tt .ja{
    font-size: 60px;
  }

  .aboutus_msg_inner .cover_tt{
    font-size: 50px;
  }
  .aboutus_msg_img:before{
    padding-top: 500px;
  }
}
@media (min-width:1720px){
  /*sec2*/
  .aboutus_msg_img:before{
    padding-top: 421px;
  }
  .aboutus_msg_inner .cover_tt{
    font-size: 60px;
  }
  .aboutus_msg_img:before{
    padding-top: 421px;
  }

}



/*******************************
*　銅・非鉄金属
********************************/

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

}
.pg_copperNonferrous .section.sec1{

}
.pg_copperNonferrous .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_copperNonferrous .section.sec1{
    padding-bottom: 100px;
  }
  .pg_copperNonferrous .section.sec2{

  }

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


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

  }
  .pg_copperNonferrous .section.sec1{

  }
  .pg_copperNonferrous .section.sec2{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.cmn_tt_en.row2{
  line-height: 0.89em;
}
.copperNonferrous_sec1_wrap{

}
.copperNonferrous_sec1_wrap .company_box1{

}
.copperNonferrous_sec1_wrap .company_box2{

}
.copperNonferrous_sec1_wrap .company_box1_img:before{
  padding-top: 66.666%;
}

/*sec2*/
/*カテゴリ*/
.cate_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cate_item{
  width: 100%;
}
.cate_item:nth-child(n+2){
  margin-top: 10px;
}
.cate_item_inner{
  display: block;
  font-size: 16px;
  font-weight: 700;
  min-width: 300px;
  line-height: 1.2;
  text-align: left;
  border: 1px solid transparent;
  background: #000000;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 17px 20px;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.cate_item_inner:after{
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background-image: url(/system_panel/uploads/images/arr5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cate_item_inner:hover:after{
  margin-right: -5px;
}
.cate_item_inner p{
  letter-spacing: 0.05em;
}

.cate_item_inner:hover{
  color: #000;
  background: var(--sub-color);
}

/*リスト*/
.content_blocks{
  margin-top: 50px;
}
.content_block{

}
.content_block:nth-child(n+2){
  margin-top: 50px;
}
.content_block_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
}
.content_block_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.content_block_item{
  width: 100%;
}
.content_block_item:nth-child(n+2){
  margin-top: 30px;
}
.content_block_item_inner{

}
.content_block_item_img:before{
  padding-top: 62.5%;
}
.content_block_item_desc{
  background: #000000;
  font-size: 22px;
  font-weight: 700;
  padding: 14px 13px 19px 20px;
}
.content_block_item_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.content_block_item_price{
  letter-spacing: 0.05em;
  text-align: right;
  color: #ffe958;
}
.content_block_item_price .price_unit{
  font-size:16px;
  font-weight: 700;
}

.hosok_box{
  margin-top: 40px;
}
.hosok_box .content_desc{
  font-size: 17px;
  font-weight: 700;
  line-height: 2.08em;
}
.hosok_box .content_desc p{
  letter-spacing: 0.05em;
}
.hosok_box .link_2{

}
@media (max-width:767px){
  .copperNonferrous_sec1_wrap .company_box.multi{
    margin-top: -28px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .copperNonferrous_sec1_wrap{

  }
  .copperNonferrous_sec1_wrap .company_box.multi{
    margin-top: -29px;
  }
  .copperNonferrous_sec1_wrap .company_box1{

  }
  .copperNonferrous_sec1_wrap .company_box2{

  }

  /*カテゴリ*/
  .cate_items{
    margin-inline:-20px;
    margin-top: 51px;
  }
  .cate_item{
    width: 50%;
    padding-inline:20px;
  }
  .cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .cate_item:nth-child(n+3){
    margin-top: 10px;
  }
  .cate_item_inner{
    font-size: 18px;
  }

  /*リスト*/
  .content_blocks{
    margin-top: 86px;
  }
  .content_block{

  }
  .content_block:nth-child(n+2){
    margin-top: 100px;
  }
  .content_block_tt{
    font-size: 30px;
    padding-bottom: 18px;
  }
  .content_block_items{
    margin-inline:-20px;
    margin-top: 79px;
  }
  .content_block_item{
    width: 50%;
    padding-inline:20px;
  }
  .content_block_item:nth-child(n+2){
    margin-top: 0;
  }
  .content_block_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .content_block_item_inner{

  }
  .content_block_item_img:before{

  }
  .content_block_item_desc{
    font-size: 22px;
    padding: 14px 13px 19px 20px;
  }
  .content_block_item_tt{
    font-size: 22px;
  }
  .content_block_item_price{

  }

  .hosok_box{
    margin-top: 70px;
  }
  .hosok_box .content_desc{
    font-size: 18px;
  }
  .hosok_box .link_2{
    margin-top: 45px;
  }

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


}
@media (min-width:1200px){
  /*sec1*/
  .copperNonferrous_sec1_wrap{

  }
  .copperNonferrous_sec1_wrap .company_box1{
    order: 2;
  }
  .copperNonferrous_sec1_wrap .company_box2{
    order: 1;
  }

  .copperNonferrous_sec1_wrap .company_box.multi{
    margin-top: -29px;
  }

  /*カテゴリ*/
  .cate_items{

  }
  .cate_item{
    width: 33.333%;
  }
  .cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .cate_item:nth-child(n+4){
    margin-top: 28px;
  }
  .cate_item_inner{

  }

  /*リスト*/
  .content_blocks{

  }
  .content_block{

  }
  .content_block:nth-child(n+2) {
    margin-top: 137px;
  }
  .content_block_tt{
    font-size: 38px;
  }
  .content_block_items{

  }
  .content_block_item{
    width: 33.333%;
  }
  .content_block_item:nth-child(n+3){
    margin-top: 0;
  }
  .content_block_item:nth-child(n+4){
    margin-top: 50px;
  }
  .content_block_item_inner{

  }
  .content_block_item_img:before{

  }
  .content_block_item_desc{
    font-size: 32px;
  }
  .content_block_item_tt{
    font-size: 32px;
  }
  .content_block_item_price{

  }

  .hosok_box{

  }
  .hosok_box .content_desc{
    font-size: 22px;
  }
  .hosok_box .link_2{

  }
}
@media (min-width:1470px){
  .content_block_tt{
    font-size: 45px;
  }
  .copperNonferrous_sec1_wrap .company_box.multi{
    margin-top: -29px;
  }
}
@media (min-width:1720px){
  .hosok_box .content_desc{
    font-size: 24px;
  }

}







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

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


}

/* メイン部分 */
.company_box.scrapIron{

}
.company_box.scrapIron .company_box1{

}
.company_box.scrapIron .company_box2{

}
.copperNonferrous_sec1_wrap .company_box.scrapIron{
  margin-top: -23px;
}
@media (max-width:767px){

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

  }
  .company_box.scrapIron .company_box1{

  }
  .company_box.scrapIron .company_box2{

  }
  .copperNonferrous_sec1_wrap .company_box.scrapIron{
    margin-top: -25px;
  }
}
@media (min-width:1024px){
  .copperNonferrous_sec1_wrap .company_box.scrapIron{
    margin-top: -8px;
  }

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

  }
  .company_box.scrapIron .company_box1{
    order: 1;
  }
  .company_box.scrapIron .company_box2{
    order: 2;
  }
  .copperNonferrous_sec1_wrap .company_box.scrapIron{
    margin-top: -6px;
  }

}
@media (min-width:1470px){
  .copperNonferrous_sec1_wrap .company_box.scrapIron{
    margin-top: -6px;
  }

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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */
.company_box.outdoor{

}
.company_box.outdoor .company_box1{

} 
.company_box.outdoor .company_box2{

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

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

  }
  .company_box.outdoor .company_box1{

  } 
  .company_box.outdoor .company_box2{

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


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

  }
  .company_box.outdoor .company_box1{
    order: 1;
  } 
  .company_box.outdoor .company_box2{
    order: 2;
  } 

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


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


}



/*******************************
*　採用
********************************/
.pg_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}
.pg_recruit .section.sec3{
  background: #ffe958;
}
.pg_recruit .section.sec4{
  background: #1283c8;
}
.pg_recruit .section.sec5{

}
.pg_recruit .section.sec6{
  padding-top: 30px;
}
.pg_recruit .section.sec7{
  padding-top: 0;
}

.content_block .right{
 text-align: center;
  font-weight:500;
  margin-top:10px;
}
.content_block_item_tt strong{
  font-size:16px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_recruit .section.sec1{
    padding-bottom: 80px;
  }
  .pg_recruit .section.sec2{
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec3{
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec4{
    padding-top: 81px;
    margin-top: 100px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px;
  }

  .pg_recruit .section.sec7 .privacy_box{
    margin-top: 37px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-bottom: 235px;
  }
  .pg_recruit .section.sec3{

  }
  .pg_recruit .section.sec4{
    margin-top: 153px;
    padding-bottom: 152px;
  }
  .pg_recruit .section.sec5{
    padding-top: 136px;
  }

}

/*メイン*/
.company_box.recruit{

}
.company_box.recruit .company_box1{

}
.company_box.recruit .company_box2{

}
.company_box.recruit .cmn_box1_img:before{
  padding-top: 66.666%;
}

.sec_header.recruit{
  color: #000; 
}
.pg_aboutus_wrap2.bg_wh{
  position: relative;
  padding: 40px 0;
}
.pg_aboutus_wrap2.bg_wh:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.sec_header.recruit .sec_header_box1{

}
.sec_header.recruit .sec_header_box2{

}

/*福利厚生*/
.recruit_benefit_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: -54px;
  position: relative;
  z-index: 1;
}
.recruit_benefit_item{
  width: 100%;
}
.recruit_benefit_item:nth-child(n+2){
  margin-top: 30px;;
}
.recruit_benefit_item_inner{
  background: #434343;
  color: #fff;
  padding: 30px 16px;
}
.recruit_benefit_item_icon{
  text-align: center;
}
.recruit_benefit_item_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.recruit_benefit_item .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  margin-top: 10px;
}
.recruit_benefit_item .content_desc p{
  letter-spacing: 0.025em;
}

.recruit_person_wrap .pg_aboutus_wrap2_item_img:before{
  padding-top: 75%;
}

/*テーブル*/
.pg_recruit .section.sec5 .company_tbl .table_rows_td{
  line-height: 1.88em; 
}
.company_tbl .table_rows_td .list{
  margin-bottom: 30px;
}
.pg_recruit .section.sec5 .tt2{
  margin-bottom: 44px;
}
.pg_recruit .section.sec5  .company_tbl{
  margin-top: 0;;
}

.pg_recruit .section.sec7 .contact_bnr{
  display: block;
}
.pg_recruit .section.sec6 .contact_bnr img{
  transition: all .2s;
}
.pg_recruit .section.sec6 .contact_bnr:hover img{
  transform: scale(1.02);
}
@media (max-width:767px){
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #bababa;
  }
}
@media (min-width:768px){
  /*メイン*/
  .company_box.recruit{

  }
  .company_box.recruit .company_box1{

  }
  .company_box.recruit .company_box2{

  }

  .pg_aboutus_wrap2.bg_wh{
    padding: 0;
  }
  .pg_aboutus_wrap2.bg_wh:before{
    content: "";
    display: block;
    width: 1515px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 46px;
    right: 205px;
    margin-left: 0;
    margin-right:0;
    z-index: -1;
  }

  /*福利厚生*/
  .recruit_benefit_items{
    margin-inline:-15px;
    margin-top: -20px;
  }
  .recruit_benefit_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_benefit_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_benefit_item:nth-child(n+3){
    margin-top: 30px;
  }
  .recruit_benefit_item_inner{
    height: 100%;
    padding: 49px 40px 42px;
  }
  .recruit_benefit_item_icon{

  }
  .recruit_benefit_item_tt{
    font-size: 28px;
  }
  .recruit_benefit_item .content_desc{

  }

  .pg_recruit .section.sec5 .company_tbl .table_rows_th,
  .pg_recruit .section.sec5 .company_tbl .table_rows_td{
    padding: 16px 15px 16px;
  }
}
@media (min-width:1024px){
  .pg_aboutus_wrap2.bg_wh:before{
    content: "";
    display: block;
    width: 1515px;
    height: 100%;
  }

  /*福利厚生*/
  .recruit_benefit_items{
    margin-top: -20px;
  }
}
@media (min-width:1200px){
  /*メイン*/
  .company_box.recruit{

  }
  .company_box.recruit .company_box1{
    order: 2;
  }
  .company_box.recruit .company_box2{
    order: 1;
  }

  .pg_aboutus_wrap2.bg_wh:before{
    content: "";
    display: block;
    width: 1515px;
    height: 106%;
  }
  .pg_aboutus_wrap2.bg_wh .home_sec4_items{
    margin-top: 33px;
  }
  .sec_header.recruit .sec_header_box1{
    width: 24.01%;
  }
  .sec_header.recruit .sec_header_box2{
    width:74.01%;
  }

  /*福利厚生*/
  .recruit_benefit_items{
    margin-top: -30px;
  }
  .recruit_benefit_item{
    width: 25%;
  }
  .recruit_benefit_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_benefit_item:nth-child(n+5){
    margin-top: 30px;
  }
  .recruit_benefit_item_inner{

  }
  .recruit_benefit_item_icon{

  }
  .recruit_benefit_item_tt{
    font-size: 20px;
    margin-inline: -10px;
  }
  .recruit_benefit_item .content_desc{

  }

  .recruit_person_wrap .cover_tt{
    font-size: 40px;
  }
  .recruit_person_wrap .pg_aboutus_wrap2_item .content_desc{
    margin-top: 47px;
  }
}

@media (min-width:1720px){
  /*福利厚生*/
  .recruit_benefit_items{
    margin-top: -54px;
  }
  .recruit_benefit_item_tt{
    font-size: 35px;
  } 
}