@charset "UTF-8";

:root {
  --main-color: #4087c9;
  --sub-color: #004986;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

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



/* 管理画面の余白調整 */
.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;
}
.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: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{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

/* メニュー全般 */
.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{
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{

}
.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;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

  .hdr_outer_box1 .sns_item,
  .hdr_link{
    display: none; 
  }
  .hdr_outer{
    display: block;
  }
  .hdr_outer .gnav{
    display: block!important;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 30px;
    background:rgba(255,255,255,0.7);
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_outer_box1{
    margin-right: 20px;
  }
  .hdr_link{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100px;
    aspect-ratio:1 / 1;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    position: relative;
  }
  .hdr_link.main{
    background:#1d2088;
  }
  .hdr_link.sub{
    background: #69c8e9;
  }
  .hdr_link_img{
    margin-bottom: 20px;
    transition: all .2s;
  }
  .hdr_link:hover{
    color: #fff;
  }
  .hdr_link:hover .hdr_link_img{
    margin-bottom: 30px;
  }
  .hdr_link p{
    text-align: center;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 13px;
    transform: translateX(-50%);
  }
  .sns_item{
    text-align: right;
  }


  .hdr1{
    padding: 0 15px 0;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  .header{
    padding-left: 60px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_link{
    width: 110px;
  }

  .hdr_outer_box1{
    margin-right: 51px;
  }
}
@media (min-width:1200px){

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

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

  }

}


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

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;

  color: #FFF;
  font-size: 32px;
  font-weight: 800;
}
.mv_text{
  position: absolute;
  z-index: 1;
  bottom: 7.2%;
  left: 7.8%;
  color: #FFF;
  font-size: 28px;
  line-height: 1.25em;
  font-weight: 800;
}

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

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

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

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

  /* MVテキスト */
  .mv_text{
    font-size: 46px;
  }

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


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

  /* MVテキスト */
  .mv_text{
    font-size: 60px;
  }

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

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

  /* MVテキスト */
  .mv_text{
    font-size: 80px;
  }

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

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

  /* MVテキスト */
  .mv_text{
    font-size: 100px;
  }

}

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

/* サイドバー */
.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: 80px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_txt{
  text-align: center;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 400px;
  }

  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header_txt{
    font-size: 36px;
    top: 60%;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 200px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_img:before{
    padding-top: 580px;
  }
  .pg_header_txt{
    font-size: 50px;
  }
}
@media (min-width:1200px){
  .pg_header{
    margin-bottom: 150px;
  }
  .pg_header_txt{
    font-size: 60px;
  }
}



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

.footer{
  background: #d4dde6;
  margin-top: 0;
  padding-top: 40px;
}

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

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

}
.ftr1_box2{

}

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


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

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

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

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--sub-color);
  text-decoration: none;
  line-height: 1.2;
  color: #fff;
}
.footer_fix .footer_fix_item_1{
  width: 25.3%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}
.ftr_contact_wrap{
  background: #d4dde6;
  position: relative;
  padding: 50px 0;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
.ftr_contact_wrap:after{

}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.ftr_contact_box2_item{
  width: 100%;
}
.ftr_contact_box2_item:nth-child(n+2){
  margin-top: 16px;
}
.ftr_contact_box2_item_outer{
  background: var(--main-color);
  padding: 5px;
  border-radius: 15px;
}
.ftr_contact_box2_item.sub .ftr_contact_box2_item_outer{
  background: var(--sub-color);
}
.ftr_contact_box2_item_inner:hover{
  transform: scale(1.03);
  color: #fff;
}
.ftr_contact_box2_item_inner{
  display: block;
  border:1px solid #fff;
  border-radius: 15px;
  color: #fff;
  padding: 13px 0;
  transition: all .2s;
}
.ftr_contact_box2_item_title{
  text-align: center;
}
.ftr_contact_box2_item_title:after{
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #fff;
  margin-top: 4px;
  margin-inline:auto;
}
.ftr_contact_box2_item_tt{
  font-size: 18px;
  font-weight: 700;
}
.ftr_contact_box2 .content_desc{
  padding: 0 16px;
}

.ftr_img_box{

}
.ftr_img:before{
  padding-top: 535px;
}
.ftr_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.ftr_1{
  text-align: center;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 30px;
  margin-top: 30px;
}
.ftr_add:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ftr_add p:nth-child(n+2){
  margin-top: 12px;
}
.ftr_1 .sns_item{
  text-align: center;
  margin-top: 30px;
}
.ftr_2{

}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_2{
    display: none;
  }
  .ftr_add strong{
    display: none;
  }

  .ftr_img:before{
    padding-top: 200px;
  }
}
@media (min-width:768px){
  .footer{
    margin-top:0;
    padding-top: 50px;
  }

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

  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box2{

    justify-content: space-between;
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 49.15%;
  }
  .ftr_contact_box2_item:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_contact_box2_item_outer{
    padding: 5px;
    height: 100%;
  }
  .ftr_contact_box2_item_inner{
    height: 100%;
  }
  .ftr_contact_box2_item_title{

  }
  .ftr_contact_box2_item_tt{
    font-size: 18px;
  }
  .ftr_contact_box2 .content_desc{
    padding: 0 28px;
  }

  .ftr_img_box{

  }
  .ftr_img:before{

  }
  .ftr_img:after{

  }
  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{
    font-size: 17px;
    padding-bottom: 45px;
    margin-top: 55px;
  }
  .ftr_add:after{
    width: 67.05%;
    left: 50%;
    transform:translateX(-50%);
  }
  .ftr_add p:nth-child(n+2){
    margin-top: 19px;
  }
  .ftr_1 .sns_item{
    margin-top: 50px;
  }
  .ftr_2{
    background: #fff;
    padding: 10px 0;
    margin-top: 30px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
  }
  .ftr_link{
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    border-right: 1px solid;
    padding: 0 24px;
  }
  .ftr_link:last-child{
    border-right: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 0;
    padding-top: 62px;
  }

  .ftr_contact_wrap{
    margin-top: 160px;
  }
  .body_home .ftr_contact_wrap{
    margin-top: 160px;
  }  
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 22.97%;
  }
  .ftr_contact_box2{
    width: 69.63%;
    margin-top: 0;
  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item_outer{

  }
  .ftr_contact_box2_item_inner{

  }
  .ftr_contact_box2_item_title{

  }
  .ftr_contact_box2_item_tt{
    font-size: 20px;
  }
  .ftr_contact_box2 .content_desc{

  }

  .ftr_img_box{

  }
  .ftr_img:before{

  }
  .ftr_img:after{

  }
  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_1 .sns_item{

  }
  .ftr_2{
    margin-top: 48px;
  }
  .ftr_links{

  }
  .ftr_link{

  }
  .ftr_add:after{
    width: 54.05%;
  }
}
@media (min-width:1200px){

}


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


/* テーブル用 */
.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 #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: var(--main-color);
  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{
  width: 365px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  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:before{
  content: "";
  display: block;
  width: 97.80%;
  height: 86.15%;
  border: 1px solid #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
}
.read_more a p{
  letter-spacing: 0.1em;
}
.read_more a:after{
  display: none;
}
.read_more a:hover{
  color: #FFF;
  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;
}


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

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

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

}

/*タイトル*/
.sec_title{
  font-size: 30px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  color: var(--main-color);
}
.sec_title.center{
  text-align: center;
}

.sec_title:after{
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background:#000000;
  margin-top: 4px;
}
.sec_title.center:after{
  margin-inline:auto;
}
.sec_title_ja{
  margin-top: 20px;
}
.sec_title_ja.center{
  text-align: center; 
}
.sec_title_ja em{
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_title_ja em:before{
  content: "─";
}
.sec_title_ja em:after{
  content: "─";
}
.ja_tt{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.36em;
}




/*内容*/
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  text-align: justify;
  margin-top: 20px;
}


/*背景上部カーブ*/
.top_curve{
  width: 1920px;
  aspect-ratio:1920 / 50;
  background-image: url(/system_panel/uploads/images/top_curve.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -49px;
  left: 50%;
  transform:translateX(-50%);
}
/*背景下部カーブ*/
.btm_curve{
  width: 1920px;
  aspect-ratio:1920 / 50;
  background-image: url(/system_panel/uploads/images/2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform:translateX(-50%);
}
@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;
  }

  /*ボタン*/
  .read_more{
    width: 100%;
  }
  .read_more a{
    max-width: 100%;
    width: 100%;
  }

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

  .anchor{
    top: -140px;
  }

  /* ページネーション */
  .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{
    width: 365px;
    font-size: 15px;
    padding: 24px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "→";
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .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;
  }

  /*タイトル*/
  .sec_title{
    font-size: 40px;
  }
  .sec_title.tate:after{
    width: 1px;
    height: 45px;
  }
  .tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .sec_title_ja{
    margin-top: 30px;
  }
  .sec_title_ja em{
    font-size: 24px;
  }
  .ja_tt{
    font-size: 25px;
  }


  /*内容*/
  .content_desc{

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

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

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

  /*タイトル*/
  .sec_title{
    font-size: 46px;
  }
  .sec_title_ja{
    margin-top: 40px;
  }
  .sec_title_ja em{
    font-size: 28px;
  }
  .ja_tt{
    font-size: 32px;
  }


  /*内容*/
  .content_desc.center{
    text-align: center;
  }
}
@media (min-width:1200px){
  /*タイトル*/
  .ja_tt{
    font-size: 38px;
  }

}



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

}
.pg_home .section.sec1{
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}
.pg_home .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
  background: #d4dde6;
  position: relative;
  margin-top: 140px;
}
.pg_home .section.sec3{
  padding-top: 80px;;
  padding-bottom: 0;
  background: #d4dde6;
}
.pg_home .section.sec4{
  position: relative;
  padding-top: 22px;
}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec6{
  margin-top: 0;
}
.pg_home .section.sec7{
  border-top: 1px solid var(--main-color);
}

/*イラスト*/
.home_pos{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  z-index: -1;
}
.sec1_pos1{
  width:16.97%; ;
  aspect-ratio:326 / 443;
  background-image: url(/system_panel/uploads/images/about_left.png);
  left: calc(50% - 916px);
  bottom: 0;
}
.sec1_pos2{
  width: 21.14%;
  aspect-ratio:406 / 476;
  background-image: url(/system_panel/uploads/images/about_right.png);
  right: calc(50% - 960px);
  top: -28px;
}
.sec2_pos1{
  width: 16.45%;
  aspect-ratio:316 / 293;
  background-image: url(/system_panel/uploads/images/sec2_left.png);
  left: 0;
  bottom: 0;
  z-index: 1;
}
.sec2_pos2{
  width: 11.4%;
  aspect-ratio:219 / 442;
  background-image: url(/system_panel/uploads/images/sec2_right.png);
  right: 0;
  top: 0;
  z-index: 1;
}
.sec5_pos1{
  width: 19.21%;
  aspect-ratio:369 / 370;
  background-image: url(/system_panel/uploads/images/20250612194550915900.png);
  left: 0;
  bottom: -120px;
}
.sec5_pos2{
  width: 26.19%;
  aspect-ratio:503 / 345;
  background-image: url(/system_panel/uploads/images/20250612194550161648.png);
  right: 0;
  top: -135px;
}


/*about*/
.home_about_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
}
.home_about_box1 .content_desc{

}
.home_about_box2{
  width: 100%;
}
.home_about_box2_img{

}
.home_about_box2_img:before{
  padding-top: 97.59%;
}
.home_about_box2_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/20250612111141548293.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
}

/*story*/
.home_story_wrap{
  padding-top: 30px;
}
.home_story_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_story_top_box1{
  width: 100%;
  order: 2;
  margin-top: 10px;
}
.home_story_top_box1 .content_desc{
  line-height: 2.1875em;
}
.home_story_top_box2{
  width: 100%;
  order: 1;
}
.home_story_top_box2 .sec_title{

}
.home_story_btm{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-15px;
  margin-top: 40px;
}
.home_story_btm_item{

}
.home_story_btm_item:nth-child(n+2){
  margin-top: 36px;
}
.home_story_btm_item_inner{

}
.home_story_btm_item_img:before{
  padding-top: 51.85%;
}
.home_story_btm_item_txt{
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
  margin-top: 12px;
}
.home_story_btm_item_tt{
  font-size: 17px;
  font-weight: 700;
}
.home_story_btm_item .content_desc{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86em;
  margin-top: 10px;
}

/*reason*/
.home_reason_cate{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.home_reason_cate_item{
  width: 50%;
}
.home_reason_cate_item a{
  display: block;
  background: #ffffff;
  padding: 16px 10px 16px;
  position: relative;
}
.home_reason_cate_item a:after{
  content: "↓";
  display: block;
  font-size: 16px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform:translateX(-50%);
  color: var(--main-color);
  transition: all .2s;
}
.home_reason_cate_item a:hover,
.home_reason_cate_item a.active{
  background: var(--main-color);
  color: #fff;
}
.home_reason_cate_item a:hover .home_reason_cate_txt1{
  background: #fff;
  color: var(--main-color);
}
.home_reason_cate_item a:hover:after{
  color: #fff;
}
.home_reason_cate_item a:hover{
  background: var(--main-color);
  color: #fff!important;
}
.home_reason_cate_item a:hover,
.home_reason_cate_item a.active:after{
  color: #fff;
}
.home_reason_cate_txt1{
  width: 60px;
  font-size: 18px;
  font-family: "Bellefair", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 12px;
}
.home_reason_cate_item a.active .home_reason_cate_txt1{
  background: #fff;
  color: var(--main-color);
}
.home_reason_cate_txt2{
  font-size: 17px;
  font-weight: 700;
  margin-top: 7px;
}

.home_reason_contents{
  position: relative;
  padding: 50px 0;
}
.home_reason_contents:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_reason_content_item{
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  display: none;
}
.home_reason_content_item.active{
  display: flex;
}
.gjs-dashed .home_reason_content_item{
  display: block;
}
.home_reason_content_box1{
  width: 100%;
  color: #fff;
  padding-top: 22px;
  order: 2;
}
.home_reason_content_box1_tt{

}
.home_reason_content_box1_tt:after{
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background:#fff;
  margin-top: 13px;
}
.home_reason_content_box1_text{
  font-size: 20px;
  font-weight: 700;
}
.home_reason_content_item .content_desc{
  line-height: 2.125em;
}
.home_reason_content_box2{
  width: 100%;
  order: 1;
}
.home_reason_content_box2_img:before{
  padding-top: 70.37%;
}

/*イメージ*/
.home_img_items{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.home_img_items:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.25);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.home_img_item_left{
  width: 100%;

}
.home_img_item_left_img:before{
  padding-top: 81.25%;
}
.home_img_item_right{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.home_img_item_right_top{
  width: 100%;
}
.home_img_item_right_top:before{
  padding-top: 45.83%;
}
.home_img_item_right_btm{
  width: 50%;
}
.home_img_item_right_btm:before{
  padding-top: 70.83%;
}
.home_img_text{
  text-align: center;
  width: 100%;
  color: #fff;
  /*  text-shadow    : 
      1px  1px 0px #dddddd,
      -1px  1px 0px #dddddd,
      1px -1px 0px #dddddd,
      -1px -1px 0px #dddddd,
      1px  0px 0px #dddddd,
      0px  1px 0px #dddddd,
      -1px  0px 0px #dddddd,
      0px -1px 0px #dddddd; */
  position: absolute;
  bottom: 8.8%;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.home_img_txt1{
  font-size: 17px;
  font-weight: 600;
}
.home_img_txt2{
  font-size: 36px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  animation: flowing 40s linear infinite;
  margin-top: 16px;
}
.gjs-dashed .home_img_txt2{
  animation:none;
}

@keyframes flowing {
  0% { transform:translateX(100%); }
  100% { transform:translateX(-100%); }
}


/*採用*/
.home_recruit_items{
  margin-top: 40px;
}
.home_recruit_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_recruit_item:nth-child(n+2){
  margin-top: 50px;
}
.home_recruit_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_recruit_box1_title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42em;
}
.home_recruit_box1 .content_desc{
  line-height: 1.875em;
}
.home_recruit_box1 .read_more{

}
.home_recruit_box2{
  width: 100%;
  order: 1;
}
.home_recruit_box2_img:before{
  padding-top: 71.57%;
}
.home_recruit_box2_img_txt{
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--sub-color);
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  z-index: 1;
  padding: 13px 6px;
}
.home_recruit_item:nth-child(odd) .home_recruit_box2_img_txt{
  left: 0;
}
.home_recruit_item:nth-child(even) .home_recruit_box2_img_txt{
  right: 0;
}

/*お知らせ*/
.home_news_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_news_box1{
  width: 100%;
}
.home_news_box1 .read_more{

}
.home_news_box2{
  width: 100%;
  margin-top: 30px;
}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--main-color);
  padding: 16px 0;
}
.news_list .webgene-item:last-child a{
  border-bottom: 1px solid var(--main-color);
}
.news_list .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  width: 125px;
}
.news_list .webgene-item .category{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: var(--main-color);
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 4px 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}

/*概要*/
.company_tbl_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.company_tbl_box1{
  width: 100%;
}
.company_tbl_box1 .table_rows_th,
.company_tbl_box1 .table_rows_td{
  font-size: 16px;
  border: none;

}
.company_tbl_box1 .table_rows_th{
  font-weight: 500;
  border-bottom: 1px solid var(--main-color);
}
.company_tbl_box1 .table_rows_td{
  font-weight: 400;
  border-bottom: 1px solid #d9d9d9;
}
.company_tbl_box2{
  width: 100%;
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*イラスト*/
  .home_pos{
    /*   width: 50%;
      position: relative;
      display: inline-block;*/
  }
  .sec1_pos1{

    left:0;
    bottom: -90px;
  }
  .sec1_pos2{
    right:0;
    top: 0;
  }
  .sec2_pos1{
    bottom: -50px;
  }  
  .sec5_pos1{
    bottom: -36px;
  }
  .sec5_pos2{
    top: -60px;
  }

  .home_reason_cate_item:first-child a{
    border-radius: 10px 0 0 0;
  }
  .home_reason_cate_item:nth-child(2) a{
    border-radius: 0 10px 0 0;
  }

  .news_list .webgene-item .date{
    width: 110px
  }
  .news_list .webgene-item .category{

    padding: 4px 16px;
  }
  .news_list .webgene-item .title{
    margin-top: 10px;
  }

  .company_tbl_box1 .table_rows_th,
  .company_tbl_box1 .table_rows_td{
    border: 1px solid #d9d9d9;
    display: block;
    width: 100%;
    background: none;
    border-bottom: 0;
  }
  .company_tbl_box1 .table_rows_th{
    border-bottom: 1px solid var(--main-color);
    line-height: 1.4em;
  }
  .company_tbl_box1 .table_rows_td{
    border-top: none;
  }
  .company_tbl_box1 .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #d9d9d9;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 150px;
  }
  .pg_home .section.sec3{
    padding-top: 90px;;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    margin-top: 70px;
  }
  .pg_home .section.sec7{
    padding-top: 70px;
  }

  /*イラスト*/
  .sec1_pos1{
    left: calc(50% - 460px);
    bottom: auto;
  }
  .sec1_pos2{
    right: 0;
    top: -28px;
  }
  .sec2_pos1{
    left: calc(50% - 420px);
    bottom: 0;
    z-index: 1;
  }
  .sec2_pos2{
    width: 5.4%;
    right: 0;
    top: 20%;
    z-index: 1;
  }
  .sec5_pos2{
    top: -60px;
  }

  /*about*/
  .home_about_wrap{

  }
  .home_about_box1{
    width:45.45%;
  }
  .home_about_box1 .content_desc{

  }
  .home_about_box2{
    width:51%;
    padding-top: 26px;
  }
  .home_about_box2_img{

  }
  .home_about_box2_img:before{

  }
  .home_about_box2_img img{

  }

  /*story*/
  .home_story_wrap{

  }
  .home_story_top{

  }
  .home_story_top_box1{
    width: 71.81%;
    padding-top: 45px;
    order: 1;
    margin-top: 0;
  }
  .home_story_top_box1 .content_desc{

  }
  .home_story_top_box2{
    width: 19.09%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-left: 5px;
    order: 2;
  }
  .home_story_top_box2 .ja_tt{
    margin-top: 0;
    line-height: 1.57em;
  }
  .home_story_btm{
    margin-top: 55px;
  }
  .home_story_btm_item{

  }
  .home_story_btm_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_story_btm_item_inner{

  }
  .home_story_btm_item_img:before{

  }
  .home_story_btm_item_txt{

  }
  .home_story_btm_item_tt{
    font-size: 18px;
  }
  .home_story_btm_item .content_desc{

  }
  .pg_home .section.sec2 .read_more{
    margin-top: 50px;
  }

  /*reason*/
  .home_reason_cate{
    margin-inline:-2.5px;
    margin-top: 55px;
  }
  .home_reason_cate_item{
    width: 25%;
    padding: 0 2.5px;
  }
  .home_reason_cate_item a{
    display: block;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px 32px;
  }
  .home_reason_cate_txt1{

  }
  .home_reason_cate_txt2{
    font-size: 17px;
  }

  .home_reason_contents{
    padding: 80px 0;
  }
  .home_reason_content_item{

  }
  .home_reason_content_box1{
    width: 48.64%;
    order: 1;
    margin-top: 0;
  }
  .home_reason_content_box1_tt{

  }
  .home_reason_content_box1_text{
    font-size: 24px;
  }
  .home_reason_content_item .content_desc{
    margin-top: 26px;
  }
  .home_reason_content_box2{
    width: 48.64%;
    order: 2;
  }
  .home_reason_content_box2_img:before{

  }

  /*イメージ*/
  .home_img_items{

  }
  .home_img_item_left{
    width: 50%;
  }
  .home_img_item_left_img:before{

  }
  .home_img_item_right{
    width: 50%;
  }
  .home_img_item_right_top:before{

  }
  .home_img_item_right_btm{
    width: 50%;
  }
  .home_img_item_right_btm:before{

  }
  .home_img_text{
    bottom: 12.8%;
  }
  .home_img_txt1{
    font-size: 20px;
  }
  .home_img_txt2{
    font-size: 50px;
  }

  /*採用*/
  .home_recruit_items{
    margin-top: 50px;
  }
  .home_recruit_item{

  }
  .home_recruit_box1{
    width: 51.35%;
    margin-top: 0;
  }
  .home_recruit_item:nth-child(n+2){
    margin-top: 88px;
  }
  .home_recruit_item:nth-child(odd) .home_recruit_box1{
    order: 1;
  }
  .home_recruit_item:nth-child(odd) .home_recruit_box2{
    order: 2;
  }
  .home_recruit_item:nth-child(even) .home_recruit_box1{
    order: 2;
  }
  .home_recruit_item:nth-child(even) .home_recruit_box2{
    order: 1;
  }
  .home_recruit_box1_title{
    font-size: 22px;
  }
  .home_recruit_box1 .content_desc{

  }
  .home_recruit_box1 .read_more{

  }
  .home_recruit_box2{
    width: 42.79%;
    padding-top: 10px;
  }
  .home_recruit_box2_img:before{

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

  /*お知らせ*/
  .home_news_wrap{

  }
  .home_news_box1{

  }
  .home_news_box1 .read_more{

    margin-top: 85px;

  }
  .home_news_wrap .read_more{
    width: 100%;
    justify-content: center;
  }
  .home_news_wrap .read_more a:before{
    width: 96%;
  }
  .home_news_box2{
    margin-top: 50px;
  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    padding: 22px 0;
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{
    width: 120px;
  }
  .news_list .webgene-item .title{
    width: calc(100% - 120px - 125px);
    padding-left: 16px;
  }

  /*概要*/
  .company_tbl_box{
    margin-top: 60px;
  }
  .company_tbl_box1{
    width: 57.2%;
  }
  .company_tbl_box1 .table_rows_th,
  .company_tbl_box1 .table_rows_td{
    background: #fff;
    padding: 24px 15px 12px;
  }
  .company_tbl_box1 .table_rows_th{
    width: 102px;
    padding-left: 0;
  }
  .company_tbl_box1 .table_rows_td{
    padding-left: 28px;;
    padding-right: 0;
  }
  .company_tbl_box2{
    width: 40.09%;
    margin-top: 0;
  }
  .access_map iframe{
    height: 300px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 123px;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 190px;
  }
  .pg_home .section.sec3{
    padding-top: 110px;;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    margin-top: 73px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec7{
    padding-top: 140px;
  }

  /*イラスト*/
  .sec1_pos1{
    left:0;
    bottom:auto;
  }
  .sec1_pos2{
    right:0;
    top: -28px;
  }
  .sec2_pos1{
    left:0;
    bottom: -50px;
  }
  .sec2_pos2{
    right:0;
    top: 260px;
    z-index: 1;
  }
  .sec5_pos2{
    top: -50px;
  }

  /*about*/
  .home_about_wrap{

  }
  .home_about_box1{

  }
  .home_about_box1 .content_desc{
    margin-top: 35px;
    padding-right: 25px;
  }
  .home_about_box2{
    width:53%;
  }
  .home_about_box2_img{

  }
  .home_about_box2_img:before{

  }
  .home_about_box2_img img{

  }

  /*story*/
  .home_story_wrap{

  }
  .home_story_top{

  }
  .home_story_top_box1{

  }
  .home_story_top_box1 .content_desc{

  }
  .home_story_top_box2{

  }
  .home_story_top_box2 .sec_title{

  }
  .home_story_btm{

  }
  .home_story_btm_item{

  }
  .home_story_btm_item_inner{

  }
  .home_story_btm_item_img:before{

  }
  .home_story_btm_item_txt{

  }
  .home_story_btm_item_tt{
    font-size: 20px;
  }
  .home_story_btm_item .content_desc{

  }

  /*reason*/
  .home_reason_cate{

  }
  .home_reason_cate_item{
    width: 25%;
  }
  .home_reason_cate_item a{

  }
  .home_reason_cate_txt1{

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

  .home_reason_contents{
    padding: 100px 0;
  }
  .home_reason_content_item{

  }
  .home_reason_content_box1{

  }
  .home_reason_content_box1_tt{

  }
  .home_reason_content_box1_text{
    font-size: 30px;
  }
  .home_reason_content_item .content_desc{
    padding-right: 39px;
  }
  .home_reason_content_box2{

  }
  .home_reason_content_box2_img:before{

  }

  /*イメージ*/
  .home_img_items{

  }
  .home_img_item_left{

  }
  .home_img_item_left_img:before{

  }
  .home_img_item_right{

  }
  .home_img_item_right_top:before{

  }
  .home_img_item_right_btm{

  }
  .home_img_item_right_btm:before{

  }
  .home_img_text{
    bottom: 8.8%;
  }
  .home_img_txt1{

  }
  .home_img_txt2{
    font-size: 68px;
  }

  /*採用*/
  .home_recruit_items{
    margin-top: 65px;
  }
  .home_recruit_item{

  }
  .home_recruit_box1{

  }
  .home_recruit_box1_title{
    font-size: 28px;
  }
  .home_recruit_box1 .content_desc{

  }
  .home_recruit_box1 .read_more{
    margin-left: 0;
  }
  .home_recruit_box2{

  }
  .home_recruit_box2_img:before{

  }
  .home_recruit_box2_img_txt{

  }

  /*お知らせ*/
  .home_news_wrap{

  }
  .home_news_box1{
    width: 17.11%;
  }
  .home_news_box1 .read_more{

  }
  .home_news_box1 .read_more a{
    padding: 20px;
  }
  .home_news_box2{
    width: 77.02%;
    margin-top: 0;
  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{
    padding-left: 41px;
  }

  /*概要*/
  .company_tbl_box{
    margin-top: 66px;
  }
  .company_tbl_box1{

  }
  .company_tbl_box1 .table_rows_th,
  .company_tbl_box1 .table_rows_td{

  }
  .company_tbl_box1 .table_rows_th{
    width: 160px;
  }
  .company_tbl_box1 .table_rows_td{

  }
  .company_tbl_box2{
    padding-top: 10px;
  }
  .access_map iframe{
    height: 477px;
  }
}
@media (min-width:1200px){
  /*reason*/
  .home_reason_cate_txt2{
    font-size: 20px;
  }

  /*イラスト*/
  .sec1_pos1{
    left:0;
    bottom:auto;
  }
  .sec2_pos1{
    left:0;
    bottom: -50px;
  }
  .sec2_pos2{
    width: 11.4%;
    right:calc(50% - 700px);
    top: 260px;
    z-index: 1;
  }
  .sec5_pos2{
    top: -50px;
  }
}
@media (min-width:1400px){
  .sec2_pos2{
    width: 11.4%;
    right:calc(50% - 750px);
    top: 260px;
    z-index: 1;
  }
}
@media (min-width:1540px){
  .sec1_pos1{
    left: calc(50% - 850px);
    bottom: 75px;
  }
  .sec2_pos1{
    left:0;
    bottom: -88px;
  }
  .sec2_pos2{
    right:0;
    top: 260px;
    z-index: 1;
  }
  .sec5_pos2{
    top: -135px;
  }
}
@media (min-width:1740px){
  .sec1_pos1{
    left: 40px;
    bottom: 75px;
  }
}

/*******************************
*　私たちについて
********************************/
.pg_about{

}
.pg_about .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
  position:relative;
}
.pg_about .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  margin-top: 80px;
}
.pg_about .section.sec3{
  padding-top: 80px;;
  padding-bottom: 0;
  position: relative;
}
.pg_about .section.sec4{
  background: #d4dde6;
  position: relative;
  padding-top: 10px;
  padding-bottom: 40px;
  margin-top:100px;
}
.pg_about .section.sec5{
  padding-top: 70px;
  position: relative;
}

/*イラスト*/
.pg_about .section.sec1 .sec1_pos2{
  top: -80px;
}
.pg_about .section.sec3 .sec2_pos1{
  width: 18.22%;
  background-image: url(/system_panel/uploads/images/sec2_2_2.png);
  bottom: 450px;
}
.pg_about .section.sec3 .sec2_pos2{

}
.pg_about .sec4_pos2{
  width: 24.16%;
  aspect-ratio: 464 / 345;
  background-image: url(/system_panel/uploads/images/recruit_tbl_right.png);
  right: 0;
  top: 50px;
}

/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_hdr_box1{
  width: 100%;
}
.page_hdr_box1 .content_desc{

}
.page_hdr_box2{
  width: 100%;
  margin-top: 30px;;
}
.page_hdr_box2 .home_about_box2_img:before{
  padding-top: 97.76%;
}

/*サービス*/
.about_service_wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.about_service_wrap .content_desc{

}
.about_service_img{
  z-index: 0;
}
.about_service_img:before{
  padding-top: 350px;
} 
.about_service_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/*強み*/
.about_feture_items{

}
.about_feture_item{
  padding-top: 30px;
}
.about_feture_item:nth-child(n+2){
  margin-top: 30px;
}
.about_feture_item_tt{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.about_feture_item_left{
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  padding-right: 13px;
}
.about_feture_item_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #000000;
  position: absolute;
  right: 0;
  top: 4px;
}
.about_feture_item_right{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.61em;
  padding-left: 20px;
  padding-top: 15px;
}
.about_feture_contents{
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.about_feture_contents_item{
  width: 100%;
}
.about_feture_contents_item:nth-child(n+2){
  margin-top: 60px;
}
.about_feture_contents_item_inner{
  background: #f6f6f6;
  position: relative;
  padding: 49px 12px 40px;
}
.about_feture_contents_tt{
  font-size: 18px;
  font-weight: 700;
}
.about_feture_contents_img_outer{
  border: 5px solid #fff;
  margin-top: 7px;
}
.about_feture_contents_img:before{
  padding-top: 53.84%;
}
.about_feture_contents_item .content_desc{
  margin-top: 12px;
  padding: 0 5px;
}
.about_feture_contents_num{
  font-family: "Bellefair", serif;
  display: flex;
  align-items: center;
  position: absolute;
  top: -30px;
  right: 1.85%;
}
.about_feture_contents_num_tt1{
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 10px;
}
.about_feture_contents_num_tt2{
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*トラック*/
.about_truck_items{
  margin-top: 60px;
}
.about_truck_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_truck_item:nth-child(n+2){
  margin-top: 60px;
}
.about_truck_box1{
  width: 100%;
}
.about_truck_box1_img:before{
  padding-top: 61.4%;
}
.about_truck_box2{
  width: 100%;
  margin-top: 20px;
}
.about_truck_box2_tbl .table_rows_th,
.about_truck_box2_tbl .table_rows_td{
  font-size: 16px;;
  font-weight: 500;
  border: 1px solid #5997d0;
  padding: 9px 10px;
}
.about_truck_box2_tbl .table_rows_th{
  text-align: center;
  width: 130px;
  background: var(--main-color);
  color: #fff;
}
.about_truck_box2_tbl .table_rows_td{
  background: #fff;
}
.about_truck_box2 .content_desc{
  font-weight: 500;
  line-height: 1.875em;
}
.about_truck_box1_txt{
  font-size: 17px;
  font-weight: 500;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  width: 188px;
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 1;
  padding: 3px;
}

/*フォーム*/
.content_desc.sm{
  font-size: 15px;
  font-weight: 400;
}
.content_desc.sm p{
  letter-spacing: 0;
}
/* コピー用 */
@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 120px;
  }
  .pg_about .section.sec3{
    padding-top: 100px;;
    padding-bottom: 0;
  }
  .pg_about .section.sec4{
    padding-top: 70px;
    padding-bottom: 100px;
    margin-top: 200px;
  }
  .pg_about .section.sec5{
    padding-top: 100px;
  }

  /*イラスト*/
  .pg_about .section.sec1 .sec1_pos1{
    bottom: auto;
    left: 0;
  }
  .pg_about .section.sec1 .sec1_pos2{
    top: -100px;
    right: 0;
  }
  .pg_about .section.sec3 .sec2_pos1{
    bottom: 730px;
    left: 0;
  }
  .pg_about .section.sec3 .sec2_pos2{
    top: 100px;
    right: 0;
  }
  .pg_about .sec4_pos2{
    top: 80px;
    right: 0;
  }

  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    width: 42.61%;
  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_box2{
    width: 52.61%;
    padding-top: 26px;
    margin-top: 0;
  }
  .page_hdr_box2 .home_about_box2_img:before{

  }

  /*サービス*/
  .about_service_wrap{

  }
  .about_service_wrap .content_desc{

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


  /*強み*/
  .about_feture_items{

  }
  .about_feture_item{
    padding-top: 50px;
  }
  .about_feture_item:nth-child(n+2){
    margin-top: 45px;
  }
  .about_feture_item_tt{

  }
  .about_feture_item_left{
    font-size: 36px;
  }
  .about_feture_item_right{
    font-size: 19px;
    padding-left: 30px;
  }
  .about_feture_contents{
    margin-inline:-5px;
    margin-top: 70px;
  }
  .about_feture_contents_item{
    width: 50%;
    padding: 0 5px;
  }
  .about_feture_contents_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_feture_contents_item:nth-child(even){
    margin-top: 43px;
  }
  .about_feture_contents_item_inner{
    padding: 49px 12px 40px;
  }
  .about_feture_contents_tt{
    font-size: 22px;
  }
  .about_feture_contents_img_outer{

  }
  .about_feture_contents_img:before{

  }
  .about_feture_contents_item .content_desc{

  }
  .about_feture_contents_num{
    top: -30px;
  }
  .about_feture_contents_num_tt1{
    font-size: 70px;
  }
  .about_feture_contents_num_tt2{
    font-size: 18px;
  }

  /*トラック*/
  .about_truck_items{
    margin-top: 60px;
  }
  .about_truck_item{

  }
  .about_truck_item:nth-child(n+2){
    margin-top: 85px;
  }
  .about_truck_box1{
    width: 51.17%;
  }
  .about_truck_box1_img:before{

  }
  .about_truck_box2{
    width: 42.7%;
    margin-top: 0;
  }
  .about_truck_box2_tbl .table_rows_th,
  .about_truck_box2_tbl .table_rows_td{
    font-size: 14px;
  }
  .about_truck_box2_tbl .table_rows_th{
    width: 110px;
    text-align: center;
  }
  .about_truck_box2_tbl .table_rows_td{
    padding-left: 10px;
  }
  .about_truck_box2 .content_desc{
    margin-top: 30px;
    padding-right: 9px;
  }
  .about_truck_box1_txt{
    font-size: 18px;
    top: -23px;
  }

  .pg_contact .content_desc{
    text-align: center;
    margin-top: 28px;
  }
}
@media (min-width:1024px){
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 157px;
  }
  .pg_about .section.sec3{
    padding-top: 145px;;
    padding-bottom: 0;
  }
  .pg_about .section.sec4{
    padding-top: 90px;
    padding-bottom: 145px;
    margin-top: 300px;
  }
  .pg_about .section.sec5{
    padding-top: 150px;
  }

  /*イラスト*/
  .pg_about .section.sec1 .sec1_pos1{
    left: 0;
    bottom: auto;
  }
  .pg_about .section.sec1 .sec1_pos2{
    top: -200px;
    right:45px;;
  }
  .pg_about .section.sec3 .sec2_pos1{
    bottom: 730px;
    left: 0;
  }
  .pg_about .section.sec3 .sec2_pos2{
    top: 100px;
  }
  .pg_about .sec4_pos2{
    top: 136px;
    right: 0;
  }

  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    width: 42.61%;
  }
  .page_hdr_box1 .content_desc{
    margin-top: 35px;
  }
  .page_hdr_box2{
    width: 52.61%;
    padding-top: 26px;
  }
  .page_hdr_box2 .home_about_box2_img:before{

  }

  /*サービス*/
  .about_service_wrap{

  }
  .about_service_wrap .content_desc{
    margin-top: 34px;
  }
  .about_service_img:before{

  } 

  /*強み*/
  .about_feture_items{

  }
  .about_feture_item{

  }
  .about_feture_item_tt{

  }
  .about_feture_item_left{
    font-size: 42px;
  }
  .about_feture_item_right{
    font-size: 21px;
    padding-left: 42px;
  }
  .about_feture_contents{
    margin-inline:-15px;
    margin-top: 90px;
  }
  .about_feture_contents_item{
    padding: 0 15px;
  }
  .about_feture_contents_item_inner{

  }
  .about_feture_contents_tt{
    font-size: 26px;
  }
  .about_feture_contents_img_outer{

  }
  .about_feture_contents_img:before{

  }
  .about_feture_contents_item .content_desc{

  }
  .about_feture_contents_num{
    top: -50px;
  }
  .about_feture_contents_num_tt1{
    font-size: 100px;
  }
  .about_feture_contents_num_tt2{
    font-size: 20px;
  }

  /*トラック*/
  .about_truck_items{
    margin-top: 70px;
  }
  .about_truck_item{

  }
  .about_truck_box1{

  }
  .about_truck_box1_img:before{

  }
  .about_truck_box2{

  }
  .about_truck_box2_tbl .table_rows_th,
  .about_truck_box2_tbl .table_rows_td{
    font-size: 16px;
  }
  .about_truck_box2_tbl .table_rows_th{
    width: 189px;
  }
  .about_truck_box2_tbl .table_rows_td{
    padding-left: 29px;
  }
  .about_truck_box2 .content_desc{

  }
  .about_truck_box1_txt{
    font-size: 21px;
  }
}
@media (min-width:1200px){
  /*イラスト*/
  .pg_about .section.sec1 .sec1_pos1{
    bottom: auto;
  }
  .pg_about .section.sec3 .sec2_pos2{
    top: 100px;
  }

}
@media (min-width:1540px){
  /*イラスト*/
  .pg_about .section.sec1 .sec1_pos1{
    bottom: 0;
  }
  .pg_about .section.sec1 .sec1_pos2{
    top: -150px;
  }

  .pg_about .section.sec3 .sec2_pos2{
    top: 200px;
  }
}


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

}
.pg_recruit .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.pg_recruit .section.sec2{
  padding-top: 60px;;
  padding-bottom: 0;
  position:relative;
}
.pg_recruit .section.sec3{
  padding-top: 40px;;
  padding-bottom:40px;;
  background: #d4dde6;
  position: relative;
  margin-top:120px;
}
.pg_recruit .section.sec4{
  padding-top: 70px;
  position:relative;
}
.pg_recruit .section.sec5{
  position: relative;
}

/*イラスト*/
.pg_recruit .sec1_pos1{

}
.pg_recruit .sec1_pos2{
  top: -300px;
}
.pg_recruit .sec1_pos1{
  top: 0;
  bottom: auto;
}
.pg_recruit .sec2_pos2{

}
.pg_recruit .sec4_pos1{
  width:18.12%;
  aspect-ratio: 348 / 293;
  background-image: url(/system_panel/uploads/images/recruit_tbl_left.png);
  left: 0;
  top: 50px;
}
.pg_recruit .sec4_pos2{
  width: 24.16%;
  aspect-ratio: 464 / 345;
  background-image: url(/system_panel/uploads/images/recruit_tbl_right.png);
  right: 0;
  top: 0;
}

/*理由*/
.recruit_merit_wrap{

}
.recruit_merit_items{
  margin-top: 50px;
}
.recruit_merit_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f6f6f6;
  padding: 20px 16px;
  position: relative;
  padding: 50px 16px 30px;
}
.recruit_merit_item:nth-child(n+2){
  margin-top: 50px;
}
.recruit_merit_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.recruit_merit_box1_tt{
  font-size: 20px;
  font-weight: 800;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 5px;
}
.recruit_merit_box1 .content_desc{

}
.recruit_merit_box2{
  width: 100%;
  order: 1;
}
.recruit_merit_box2_img:before{
  padding-top: 68.29%;
}
.recruit_merit_item_num{
  font-size: 50px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  position: absolute;
  top: -24px;
}
.recruit_merit_item:nth-child(odd) .recruit_merit_item_num{
  left: 0;
}
.recruit_merit_item:nth-child(even) .recruit_merit_item_num{
  right: 0;
}

/*福利厚生*/
.recruit_benefit_items{
  margin-top: 40px;
}
.recruit_benefit_item{

}
.recruit_benefit_item_inner{
  background: #fff;
  height: 100%;
  padding: 57px 16px;
}
.recruit_benefit_item_img{
  text-align: center;
  min-height: 132px;
  display: flex;
  align-items:center;
  justify-content: center;
}
.recruit_benefit_item_tt{
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin-top: 20px;
}
.recruit_benefit_item .content_desc{
  line-height: 1.375em;
  margin-top: 10px;
}

/*インタビュー*/
.recruit_interview_wrap{
  padding-top: 70px;  
} 
.recruit_interview_items{
  margin-top: 40px;
}
.recruit_interview_item{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.recruit_interview_item:nth-child(n+2){
  margin-top: 50px;
}
.recruit_interview_box1{
  width: 100%;
}
.recruit_interview_box1_img:before{
  padding-top: 65.78%;
}
.recruit_interview_box1_name{
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #181818;
  padding-bottom: 9px;
  margin-top: 10px;
}
.recruit_interview_box2{
  width: 100%;
  background: #fff;
  position: relative;
}
.recruit_interview_box2_inner{
}
.recruit_interview_box2_item{

}
.recruit_interview_box2_item:nth-child(n+2){
  margin-top: 20px;
}
.recruit_interview_box2_tt{
  font-size: 17px;
  font-weight: 700;
  background: var(--main-color);
  color: #fff;
  padding: 10px;
}
.recruit_interview_box2 .content_desc{
  line-height: 1.375em;
  margin-top: 11px;
}

/*テーブル*/
.company_tbl{

}
.tbl_outer{
  margin-top: 40px;
}
.company_tbl + .company_tbl{
  margin-top: 50px;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #dbdbdb;
  padding: 15.5px 15px;
}
.company_tbl .table_rows_th{
  background: #f6f6f6;
}
.company_tbl .table_rows_td{
  background: #fff;
  line-height: 1.88em;
}

.contact_form.recruit{
  margin-top: 40px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*イラスト*/
  .pg_recruit .sec1_pos1{

  }
  .pg_recruit .sec1_pos2{
    top: -80px;
  }

  /*福利厚生*/
  .recruit_benefit_item_inner{
    padding: 32px 16px;
  }

  /*インタビュー*/
  .recruit_interview_box1{
    position: relative;
    z-index: 1;
  }
  .recruit_interview_box2{
    margin-top: -100px;
  }
  .recruit_interview_box2:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #fff;
    position: absolute;
    bottom: 0;
    z-index: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .recruit_interview_box2_inner{
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 30px;
  }

  /*テーブル*/
  .company_tbl{

  }
  .tbl_outer{

  }
  .company_tbl + .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{
    background: #f6f6f6;
  }
  .company_tbl .table_rows_td{
    background: #fff;
    line-height: 1.88em;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dbdbdb;
  }
}
@media (min-width:768px){
  .pg_recruit{

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

  /*イラスト*/
  .pg_recruit .sec1_pos1{

  }
  .pg_recruit .sec1_pos2{
    top: -100px;
    right: 0;
  }
  .pg_recruit .sec1_pos1{
    top: 600px;
    bottom: auto;
    left: 0;
  }
  .pg_recruit .sec4_pos1{
    left: 0;
    top: 243px;;
    z-index: -1;
  }
  .pg_recruit .sec4_pos2{
    right: 0;
    top: 0;
    z-index: -1;
  }


  /*理由*/
  .recruit_merit_wrap{

  }
  .recruit_merit_items{
    margin-top: 70px;
  }
  .recruit_merit_item{
    padding: 30px 20px;
  }
  .recruit_merit_box1{
    width: 51.53%;
    padding-top: 12px;
    margin-top: 0;
  }
  .recruit_merit_item:nth-child(n+2){
    margin-top: 80px;
  }
  .recruit_merit_item:nth-child(odd) .recruit_merit_box1{
    order: 1;
  }
  .recruit_merit_item:nth-child(odd) .recruit_merit_box2{
    order: 2;
  }
  .recruit_merit_item:nth-child(even) .recruit_merit_box1{
    order: 2;
  }
  .recruit_merit_item:nth-child(even) .recruit_merit_box2{
    order: 1;
  }
  .recruit_merit_box1_tt{
    font-size: 22px;
  }
  .recruit_merit_box1 .content_desc{

  }
  .recruit_merit_box2{
    width: 41.83%;
  }
  .recruit_merit_box2_img:before{

  }
  .recruit_merit_item_num{
    font-size: 70px;
    top: -35px;
  }

  /*福利厚生*/
  .recruit_benefit_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-10px;
    margin-top: 52px;
  }
  .recruit_benefit_item{
    width: 50%;
    padding: 0 10px;
  }
  .recruit_benefit_item:nth-child(n+3){
    margin-top: 30px;
  }
  .recruit_benefit_item_inner{
    padding: 39px 24px;
  }
  .recruit_benefit_item_img{

  }
  .recruit_benefit_item_tt{
    font-size: 18px;
    margin-top: 15px;
  }
  .recruit_benefit_item .content_desc{

  }

  /*インタビュー*/
  .recruit_interview_wrap{
    padding-top: 100px;  
  } 
  .recruit_interview_items{
    margin-top: 53px;
  }
  .recruit_interview_item{
    position: relative;
  }
  .recruit_interview_item:nth-child(n+2){
    margin-top: 80px;
  }
  .recruit_interview_box1{
    width: 34.23%;
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .recruit_interview_item:nth-child(odd) .recruit_interview_box1{
    left: 0;
  }
  .recruit_interview_item:nth-child(even) .recruit_interview_box1{
    right: 0;
  }
  .recruit_interview_box1_img:before{

  }
  .recruit_interview_box1_name{

  }
  .recruit_interview_box2{
    width: 74.32%;
    margin-top: 30px;
  }
  .recruit_interview_item:nth-child(odd) .recruit_interview_box2{
    margin-left: auto;
  }
  .recruit_interview_item:nth-child(even) .recruit_interview_box2{
    margin-right: auto;
  }
  .recruit_interview_box2_inner{
    padding-top: 28px;
    padding-bottom: 30px;
  }
  .recruit_interview_item:nth-child(odd) .recruit_interview_box2_inner{
    padding-left: 19.39%;
    padding-right: 30px;
  }
  .recruit_interview_item:nth-child(even) .recruit_interview_box2_inner{
    padding-right: 19.39%;
    padding-left: 30px;
  }
  .recruit_interview_box2_item{

  }
  .recruit_interview_box2_tt{
    font-size: 18px;
    padding: 10px 38px;
  }
  .recruit_interview_box2 .content_desc{

  }

  /*テーブル*/
  .company_tbl{

  }
  .tbl_outer{
    margin-top: 53px;
  }
  .company_tbl + .company_tbl{
    margin-top: 87px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 17px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .company_tbl .table_rows_td{
    padding-left: 20px;
    border-left: 0;
  }

  .contact_form.recruit{
    margin-top: 50px;
  }
}
@media (min-width:1024px){
  .pg_recruit{

  }
  .pg_recruit .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_recruit .section.sec2{
    padding-top: 133px;;
    padding-bottom: 0;
  }
  .pg_recruit .section.sec3{
    padding-top: 77px;
    padding-bottom: 150px;;
    margin-top: 220px;
  }
  .pg_recruit .section.sec4{
    padding-top: 145px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px; 
  }

  .recruit_hdr_wrap .content_desc{
    margin-top: 42px;
  }

  /*イラスト*/
  .pg_recruit .sec1_pos1{

  }
  .pg_recruit .sec1_pos2{
    top: -200px;
  }
  .pg_recruit .sec2_pos1{

  }
  .pg_recruit .sec2_pos2{
    top: 67%;
  }

  /*理由*/
  .recruit_merit_wrap{

  }
  .recruit_merit_items{
    margin-top: 90px;
  }
  .recruit_merit_item{
    padding: 37px 65px;
  }
  .recruit_merit_box1{

  }
  .recruit_merit_box1_tt{
    font-size: 28px;
  }
  .recruit_merit_box1 .content_desc{

  }
  .recruit_merit_box2{

  }
  .recruit_merit_box2_img:before{

  }
  .recruit_merit_item_num{
    font-size: 92px;
    top: -46px;
  }

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

  }
  .recruit_benefit_item_img{

  }
  .recruit_benefit_item_tt{

  }
  .recruit_benefit_item .content_desc{

  }

  /*インタビュー*/
  .recruit_interview_wrap{
    padding-top: 147px;  
  }  
  .recruit_interview_items{

  }
  .recruit_interview_item{

  }
  .recruit_interview_item:nth-child(n+2){
    margin-top: 100px;
  }
  .recruit_interview_box1{

  }
  .recruit_interview_box1_img:before{

  }
  .recruit_interview_box1_name{

  }
  .recruit_interview_box2{

  }
  .recruit_interview_box2_inner{

  }
  .recruit_interview_item:nth-child(odd) .recruit_interview_box2_inner{
    padding-left: 19.39%;
    padding-right: 65px;
  }
  .recruit_interview_item:nth-child(even) .recruit_interview_box2_inner{
    padding-right: 19.39%;
    padding-left: 65px;
  }
  .recruit_interview_box2_item{

  }
  .recruit_interview_box2_tt{

  }
  .recruit_interview_box2 .content_desc{

  }

  /*テーブル*/
  .company_tbl{

  }
  .company_tbl + .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{

  }

  .contact_form.recruit{
    margin-top: 54px;
  }
}
@media (min-width:1200px){
  .pg_recruit .sec1_pos2{
    top: -150px;
  }

}

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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

@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{
  }


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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0;
}
.pg_news .section.sec1{
  position: relative;
}
.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;
}

/*イラスイと*/
.pg_news .sec1_pos1{
  bottom: auto;
  top: 60px;
  left: 0;
}
.pg_news .sec1_pos2{
  width: 23.38%;
  top: -50px;
  right: 0;
  background-image: url(/system_panel/uploads/images/sv.png);
}

/* リスト */
.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{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #d4dde6;
  color: #3b3b3b;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left:0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 11px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 34px;
  line-height: 1.5;
  letter-spacing: 0;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: var(--main-color);
}
.body_news .posts_layout{
  margin-top: 50px; 
}
.body_news .news_list .webgene-item .title{
  font-weight: 400;
  letter-spacing: 0.075em;
  width: calc(100% - 50px);
}
.body_news .news_list .webgene-item a{
  border-top: 1px solid #b9b9b9;
  position: relative;
  transition: all .2s;
}
.body_news .news_list .webgene-item a:hover:after{
  right:20px;
}
.body_news .news_list .webgene-item a:after{
  content: "";
  display: block;
  width: 40px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right:25px;
  transform: translateY(-50%);
  transition: all .2s;
}
.body_news .news_list .webgene-item:nth-last-child(2) a{
  border-bottom: 1px solid #b9b9b9;
}


/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #b9b9b9;
  padding: 0 0 30px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  align-items: center;

  padding-bottom: 5px;
  margin-bottom: 5px;
}
.posts_detail .meta .category{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: var(--main-color);
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 4px 0;
  margin-left: 20px;
}
.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{
  width: 118px;
  border-right: 1px solid #aaaaaa;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.posts_detail .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 11px;
}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
  padding-top: 20px;
}
.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;
}

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

  .pg_news .sec1_pos1{
    top: 5px;
    bottom: auto;
  }
  .pg_news .sec1_pos2{
    top: -80px;
  }
  .body_news .news_list .webgene-item a:after{
    right: 5px;
  }
  .posts_category_sp{
    margin-top: 50px;
  }

  .posts_detail .meta{
    display: flex;
    align-items: center;
  }
  .posts_detail .meta .category{
    width: 118px;
  }
}
@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;
  }

  /*イラスイと*/
  .pg_news .sec1_pos1{
    bottom: auto;
    top: 800px;
    left: 0;
  }
  .pg_news .sec1_pos2{
    top: -140px;
  }

  /* リスト */
  .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: 100px;
  }
  .body_news .posts_layout{
    margin-top: 53px; 
  }
  .body_news .news_list .webgene-item a{
    padding: 27px 0;
  }
  .body_news .news_list .webgene-item .category{
    padding: 5px 0;
  }
  .body_news .news_list .webgene-item .title{
    font-size: 14px;
    width: calc(100% - 120px - 125px - 80px);
  }


  /* 詳細 */
  .posts_detail{
    padding: 0 0 73px;
  }
  .posts_detail .webgene-item{

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


}
@media (min-width:1024px){
  /*イラスイと*/
  .pg_news .sec1_pos1{
    top: auto;
    bottom: auto;
  }
  .pg_news .sec1_pos2{
    top: -210px;
  }

  /* リスト */
  .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{

  }

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

  .pg_news{
    padding-top: 0;
  }

  .pg_news .sec1_pos1{
    bottom: auto;
    top: auto;
    left: 0;
  }
  .pg_news .sec1_pos2{
    top: -175px;
    right: 0;
  }

}
@media (min-width:1540px){
  .pg_news .sec1_pos1{
    bottom: auto;
    top: auto;
    left: 0;
  }
}
@media (min-width:1740px){
  .pg_news .sec1_pos1{
    bottom: auto;
    top: 516px;
    left: 0;
  }
}

/*******************************
*　ギャラリー（サムネ横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;
}

/* フォーム */
.pg_contact .formTbl{  
  border: 1px solid #e6eaee;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #e6eaee;
}
.pg_contact .formTh {
  padding: 16px 15px 18px 20px;
  background: #d4dde6;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd.center{
  display: flex;
  align-items: center;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.04em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #4087c9;
  font-size: 17px;
  font-weight: 500;

}
.pg_contact .formBtn.formSend {
  display: block;
  width: 365px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 20px;
  margin: 38px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.pg_contact .formBtn.formSend:before{
  content: "";
  display: block;
  width: 97.80%;
  height: 86.15%;
  border: 1px solid #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 5px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing:0.08em;
}
.radioArea .d-inline-block{
  margin-right: 29px;
}
.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.78em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}


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

  .contact_form{
    margin-top: 110px;
  }

  .pg_contact .formBtn.formSend {
    padding: 24px 20px;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #4087c9;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.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: 400;
  letter-spacing: 0.2em;
  margin-bottom: 45px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}
.privacy_item_box {
  padding: 30px 64px 30px 29px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #4087c9;
  margin-top: 65px;;
}

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


  .privacy_ttl{
    font-size: 18px;
  }

  .contact_form{
    margin-top: 80px;
  }

}

@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;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 13px;
    padding: 10px;
  } 
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

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

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

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


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

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

  .contact_form{
    margin-top: 60px;
  }

  label.label.zipcode_i{
    line-height: 1.76em;
  }
  .pg_contact .formBtn.formSend{
    width: 100%;

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

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

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


/*******************************
*　
********************************/
.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;
}
.body_newsDetail .posts_layout{
  margin-top: 40px;
}

.posts_layout .read_more{
  margin-top: 50px;
}

.body_thanksEntry .contact_tt, .body_thanksPartner .contact_tt{
margin:30px 0 0;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .body_thanksEntry .contact_tt,
  .body_thanksPartner .contact_tt{
    margin-top: 30px;
  }
}
@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;
  }
  .body_newsDetail .posts_layout{
    margin-top: 53px;
  }

  .posts_layout .read_more{
    margin-top: 95px;
  }
}
@media (min-width:1024px){
  .body_thanksEntry .contact_tt,
  .body_thanksPartner .contact_tt{
    margin-top: 50px;
  }
  .thanks_text{
    text-align: center;
  }



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


}
