@charset "UTF-8";

:root {
  --main-color: #00479d;
  --sub-color: #e7161a;
}

/* 基本フォント: ゴシック */
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;

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: 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;
}
.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:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@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;
}
.header .hdr_logo img.br{
  display: none;
}

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
    position: relative;
    z-index: 2;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contacrt_btn{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    transition: all .2s;
  }

  .hdr_outer{
    display: flex;
    align-items: center;
  }
  .gnav_outer{

  }
  .hdr_outer_top{

  }
  .hdr_outer_top{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_outer_btm{

    margin-top: 17px;
  }
  .hdr_contacrt_btn{
    display: block;
    font-family: "Outfit", serif;
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    width: 238px;
    padding: 12px 5px;
    text-align: center;
    transition: 0.2s all;
    background: var(--main-color);
    border: 1px solid transparent;
    position: relative;
    z-index: 0;
    border-radius: 15px;
    margin-left: 30px;
  }
  .hdr_contacrt_btn:hover{
    background: #fff;
    border: 1px solid var(--main-color);
  }
  .hdr_contacrt_btn p{
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_contacrt_btn p:before{
    content: "";
    display: block;
    width: 20px;
    aspect-ratio:20 / 18;
    background-image: url(/system_panel/uploads/images/mail.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    transition: all .2s;
  }
  .hdr_contacrt_btn:hover p:before{
    background-image: url(/system_panel/uploads/images/mail_br.svg);
  }


  /* ロゴ */
  .hdr_logo img{
    width: 180px;
    transition: all .2s;
  }

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
    border-bottom: 1px solid #ccc;
  }
  .header.slim .hdr_logo img.wh{
    display: none;
  }
  .header.slim .hdr_logo img.br{
    display: block;
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contacrt_btn{
    font-size: 20px;
  }

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 160px;
  }

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

  }

}
@media (min-width:1470px){
  .hdr_logo img {
    width: auto;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.mv:before{
  content: "";
  display:block;
  width: 24.53%;;
  height: 130%;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.mv_inner{
  width: 86.71%;
  position: relative;
}
.mv_inner .mv_img:before{
  padding-top: calc(100vh - 50px - 54px); 
}
.mv_inner .mv_img img{
  border-radius: 50px 50px 0 0;
}


/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  background: #FFF;
  font-size: 32px;
  font-weight: 900;
  padding: 7px 0 7px 20px;
  border-radius: 20px 0 0 0;
}
.mv_txt_h1{
  font-weight: 900;
  letter-spacing: 0;
}
.mv_txt:before{
  content: "";
  display: block;
  width: 43px;
  aspect-ratio:43 / 45;
  background-image: url(/system_panel/uploads/images/curve.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -43px;
  right: 0;
}
.mv_txt:after{
  content: "";
  display: block;
  width: 43px;
  aspect-ratio:43 / 45;
  background-image: url(/system_panel/uploads/images/curve.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -43px;
  bottom: 0;
}
.mv_txt p{
  letter-spacing: 0;
}
.mv_schroll{
  width: 3.12%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.mv_schroll:after{
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  background: #1b1b1b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translateX(-50%);
}
.mv_schroll p{
  background: #fff;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}


/* スライダーの場合 */
.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:before{
    width: 49.53%;
  }

  .mv_schroll{
    display: none;
  }
  .mv_txt{
    font-size: 28px; 
    padding-right: 16px;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv:before{
    width: 27.53%;;
  }
  .mv_inner{

  }
  .mv_inner .mv_img:before{
    padding-top: 650px;
  }


  /* MVテキスト */
  .mv_txt{
    font-size: 36px;
    padding: 7px 0 7px 20px;
    border-radius: 30px 0 0 0;
  }

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


  /* MV */
  .mv{
  }
  .mv:before{
    width: 24.53%;;
  }
  .mv_inner{

  }
  .mv_inner .mv_img:before{
    padding-top:calc(100vh - 86px);
  }
  .mv_txt:before{
    top: -43px;
    right: 0;
  }
  .mv_txt:after{
    left: -40px;
    bottom: 0;
  }


  /* MVテキスト */
  .mv_txt{
    font-size: 40px;
    padding: 7px 0 7px 86px;
    border-radius: 50px 0 0 0;
  }

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

  /* MV */
  .mv{
  }
  .mv:before{

  }
  .mv_inner{

  }
  .mv_inner .mv_img:before{
    padding-top:calc(100vh - 86px);
  }
  .mv_txt:before{
    top: -43px;
    right: 0;
  }
  .mv_txt:after{
    left: -43px;
    bottom: 0;
  }


  /* MVテキスト */
  .mv_txt{
    font-size: 50px;
    padding: 7px 0 7px 86px;
    border-radius: 50px 0 0 0;
  }

}
@media (min-width:1280px){
  /* MVテキスト */
  .mv_txt{
    font-size: 65px;
  }
}

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

/* サイドバー */
.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: 30px;
  position: relative;
  padding-right: 2.7%;
}
.pg_header:before{
  content: "";
  display: block;
  width: 27.53%;
  height: 130%;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.pg_header_inner{
  width: 89.58%;
  margin-left: auto;
  position: relative;
}
.pg_header_img{

}
.pg_header_img img{
  border-radius: 50px 50px 0 50px;
}
.pg_header_img:before{
  padding-top: 180px;
}

.pg_header .mv_txt{
  width: 64.86%;
  font-size: 24px;
}
.mv_txt_h1{
  font-size: 24px;
}

@media (max-width:767px){
  .pg_header:before{
    height: 130%;
    width: 47.53%;
  }
  .pg_header .mv_txt:after{
    left: -40px;
  }
  
  .pg_header_img img{
    border-radius: 20px 20px 0 20px;
  }
  .mv_txt:before{
    width: 20px;
  top: -20px;
  }
  .pg_header .mv_txt:after{
    width: 20px;
    left: -19px;
  }
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }


  .pg_header_img:before{
    padding-top: 350px;
  }
  .pg_header .mv_txt_h1{
    font-size: 40px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header:before{
    width: 24.53%;
  }
  .pg_header_img:before{
    padding-top: 400px;
  }

  .pg_header .mv_txt_h1{
    font-size: 65px;
  }

}
@media (min-width:1200px){
  .pg_header_img:before{
    padding-top: 591px;
  }

}



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

.footer{
  background: var(--main-color);
  margin-top: 80px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}
.ftr_copy p{
  letter-spacing: 0.075em;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid var(--main-color);
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid var(--main-color);
}
.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{
  border-bottom: 1px solid #a8a385;
  padding: 80px 0 50px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1_tt{
  color: #fff;
}
.ftr_contact_box1_sub_tt{
  font-size: 16px;
  font-weight: 500;
}
.ftr_contact_box1_sub_tt strong{
  line-height: 1;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.ftr_contact_box1_ja{
  font-size: 24px;
  font-weight: 700;
}
.ftr_contact_box2{
  width: 100%;
}
.ftr_contact_box2 .content_desc{
  color: #fff;

}
.ftr_contact_box3{
  width: 100%;
}
.ftr_contact_box3 .read_more{
  margin-top: 0;
}
.ftr_contact_box3 .read_more a{
  color: #ffffff;
  font-family: "Outfit", sans-serif;
}
.ftr_contact_box3 .read_more a:hover{
  color: #a6a6a6
}
.ftr_contact_box3 .read_more p{
  letter-spacing: 0.1em;
}

.ftr_1{
  text-align: center;
  padding-top: 50px; 
}
.ftr_add{
  text-align: center;
  color: #fff;
  font-weight: 500;
}
.ftr_add_block{
  width: 220px;
  display: flex;
  align-items: center;
  margin-inline:auto;
  font-weight: 400;
}
.ftr_add_block:nth-child(n+2){
  margin-top: 15px;
}
.ftr_add_txt1{
  width: 93px;
  line-height: 1;
  border-right: 1px solid #fff;
  text-align: left;
}
.ftr_add_txt2{
  padding-left: 15px;
  margin-right:-5px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_2{
    display: none;
  }

  .ftr_copy{
    padding: 50px 0 10px;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{
    padding: 70px 0 70px;
  }
  .ftr_contact_box{
    justify-content: space-between;
  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_sub_tt{

  }
  .ftr_contact_box1_sub_tt strong{

  }
  .ftr_contact_box1_ja{
    font-size: 30px;
  }
  .ftr_contact_box2{
    width: 65%;
  }
  .ftr_contact_box2 .content_desc{
    margin-top: 0;
  }
  .ftr_contact_box3{
    width: 30%;
  }
  .ftr_contact_box3 .read_more{

  }
  .ftr_contact_box3 .read_more a{
    font-size: 20px;
    width: 100%;
    justify-content: space-between;
    padding-left: 20px;
  }

  .ftr_1{
    padding-top: 80px; 
  }
  .ftr_add{
    text-align: center;
    color: #fff;
  }
  .ftr_add_block{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }

  .ftr_copy{
    padding: 20px 0;
  }

  .ftr_2{
    background: #fff;
    padding: 13px;
    margin-top: 50px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ftr_link{
    text-align: center;
    width: 16.66666%;
    font-size: 15px;
    font-weight: 400;
  }
  .ftr_link:nth-child(n+7){
    margin-top: 10px;
  }
  .ftr_link p{
    letter-spacing: 0; 
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 250px;
  }

  .ftr_contact_box{

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

  }
  .ftr_contact_box1_sub_tt{

  }
  .ftr_contact_box1_sub_tt strong{

  }
  .ftr_contact_box1_ja{
    font-size: 40px;
  }
  .ftr_contact_box2{
    width: 40.09%;
    padding-left: 35px;
  }
  .ftr_contact_box2 .content_desc{

  }
  .ftr_contact_box3{
    width: 22.97%;
  }
  .ftr_contact_box3 .read_more{

  }
  .ftr_contact_box3 .read_more a{
    font-size: 24px;
  }

  .ftr_copy{
    padding: 30px 0;
  }

  .ftr_1{
    padding-top: 104px; 
  }
  .ftr_add{
    text-align: center;
    color: #fff;
  }
  .ftr_add_block{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }

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

  }
  .ftr_link{

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

}
@media (min-width:1470px){
  .ftr_link{
    width: auto;
    text-align: left;
    padding: 0 15px;
  } 
  .ftr_link:nth-child(n+7){
    margin-top: 0;
  }
}

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


/* テーブル用 */
.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: #e5e5e5;
}  
.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:auto;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: none;
  /*border-radius: 27px;*/
  color: #f8532b;
  padding: 16px 0;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  display: block;
  width: 61px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/circle_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  right: 0;
  margin-left: 22px;
}
.read_more a:hover{
  background: none;
  color: var(--main-color);
}
.read_more a:hover:after{
  margin-right:0;
  right: -10px;
}
.read_more p{
  letter-spacing: 0;
}


/* 見出し */
.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{
  color: var(--main-color);
  margin-bottom: 10px;
}
.sec_title:before{

}
.sec_title_ja{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}
.sec_title_ja:before{
  content: "■";
  color: var(--main-color);
  margin-right: 18px;
}
.sec_title_ja strong{
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  margin-left: 4px;
}
.sec_title_sub{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.47em;
}
.sec_title_sub p{
  letter-spacing: 0;
}

.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc p:nth-child(n+2){
  margin-top: 16px;
}
@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: -150px;
  }

  /* ページネーション */
  .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{

  }
  .read_more a:after{

  }
  .read_more a:hover:after{

  }

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

  }
  .sec_title_ja{
    font-size: 18px;
  }
  .sec_title_sub{
    font-size: 28px;
  }
  .sec_title_sub.lg{
    font-size: 30px;
  }

  .content_desc{

  }
  .content_desc p:nth-child(n+2){
    margin-top: 32px;
  }
}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .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{

  }
  .sec_title_ja{

  }
  .sec_title_sub{
    font-size: 30px;
    margin-right: -16px;
  }
  .sec_title_sub.lg{
    font-size: 34px;
  }

  .content_desc{

  }
}
@media (min-width:1200px){
  /* コンテナ */
  .container.wide{
    max-width: 1620px;
    padding-left: 50px;
    padding-right: 50px;
  }

  /*タイトル*/
  .sec_title_sub{
    font-size: 32px;
    margin-right: -16px;
  }
  .sec_title_sub.lg{
    font-size: 38px;
  }

}
@media (min-width:1470px){
  .sec_title_sub{
    font-size: 38px;
  }
}
@media (min-width:1536px){

}


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

}
.pg_home .section.sec1{
  margin-top: 80px;
}
.pg_home .section.sec2{

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

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

/*コイケについて*/
.contents_items{

}
.contents_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.contents_box2{
  width: 100%;
  order: 1;
}
.contents_box2_img img{
  border-radius: 20px;
}
.contents_box2_img:before{
  padding-top: 70.58%;
}


/*コイケが選ばれる理由*/
.home_contents2_wrap{

}
.home_contents2_wrap .contents_item{
  position: relative;
} 
.home_contents2_wrap .contents_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 93.61%;
  position: absolute;
  top: 14.15%;
  background: #eef4fa;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents2_wrap .contents_box1,
.home_contents2_wrap .contents_box2{
  position: relative;
  z-index: 1;
}

/*コイケが選ばれる理由*/
.home_oither_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_oither_item{
  padding-top: 10px;
}
.home_oither_left{
  width: 100%;
  overflow: hidden;
}
.home_oither_right{
  width: 100%;
}
.home_oither_item_inner{
  display: block;
  position: relative;
}
.home_oither_item_inner:after{
  content: "";
  display: block;
  width: 61px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/circle_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  transition: 0.2s all;
  right: 3.9%;
  bottom: 20px;
}
.home_oither_item_inner:hover:after{
  right: 2.9%;
}
.home_oither_item_meta{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: #fff;
  padding: 16px;
}
.home_oither_item_meta .sec_title_ja{
  text-shadow    : 
    2px  2px 2px #ffffff,
    -2px  2px 2px #ffffff,
    2px -2px 2px #ffffff,
    -2px -2px 2px #ffffff,
    2px  0px 2px #ffffff,
    0px  2px 2px #ffffff,
    -2px  0px 2px #ffffff,
    0px -2px 2px #ffffff;  
}

.sec_title_md{
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.sec_title_md p{
  letter-spacing: 0;
}
.home_oither_item_img{
  overflow: hidden;
  border-radius: 20px;
}
.home_oither_item_img img{
  border-radius: 20px;
  transition: all .2s;
}
.home_oither_item_inner:hover .home_oither_item_img img{
  transform: scale(1.05);
}
.home_oither_item_img:after{
  content:"" ;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 20px;
}
.home_oither_item_img:before{
  padding-top: 200px;
}
.home_oither_left .home_oither_item_img:before{

}
.home_oither_right .home_oither_item_img:before{

}

/*その他サービス*/
.home_contents4_wrap .sec_title{
  margin-bottom: 0;
}
.home_contents4_wrap .home_oither_item_meta{
  position: relative;
  padding: 10px 0 0;
}
.home_contents4_wrap .sec_title_md{
  color: #181818;
  font-size: 18px;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 16px;
} 
.home_contents4_wrap .sec_title_ja{
  font-size: 14px;
}
.card_items{
  display: flex;
  flex-wrap: wrap;
}
.card_item{
  width: 100%;
}
.card_item:nth-child(n+2){
  margin-top: 30px;;
}
.card_item_inner{
  overflow: hidden;
  position: relative;
}
.card_item_inner:after{
  /*  content: "";
    display: block;
    width: 61px;
    aspect-ratio: 1 / 1;
    background-image: url(/system_panel/uploads/images/circle_btn.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 1;
    transition: 0.2s all;
    right: 0;
    bottom: 0;*/
}
.card_item_inner:hover .card_item_img img{
  transform: scale(1.05);
}
.card_item_inner:hover .arrow{
  margin-right: -5px;
}
.card_item_inner .content_desc{
  color: #181818;
}
.card_item_inner:hover .content_desc{
  color: #181818;
}
.card_item_img{
  overflow: hidden;
  border-radius: 20px;
}
.card_item_img img{
  transition: all .2s;
  border-radius: 20px;
  overflow: hidden;
}
.card_item_img:before{
  padding-top: 74.28%;
}
.card_item .content_desc{
  line-height: 1.875em;
  margin-top: 11px;
}
.arrow{
  text-align: right;
  margin-top: 23px;
  transition: all .2s;
}

/*採用*/
.home_recruit_box{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.home_recruit_box1{
  width: 100%; 
}
.home_recruit_box1_img{

}
.home_recruit_box1_img img{
  border-radius: 50px;
}
.home_recruit_box1_img:before{
  padding-top: 450px;
}
.home_recruit_box2{
  width: 100%; 
  margin-top: 20px;;
}
.home_recruit_box2 a:hover{
  color: #181818;
}
.home_recruit_box2 a:hover .arrow{
  margin-right: -5px;
}
.home_recruit_box2 a:hover .sec_title_sub{
  color: var(--main-color);
}

.home_recruit_box2 .arrow{
  margin-top: 13px;
}
.home_recruit_box2_top{

}
.bold_desc{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.888em;
  margin-top: 8px;
}
.home_recruit_box2 a:hover .bold_desc{
  color: #181818;
}
.bold_desc p{
  letter-spacing: 0;
}
.home_recruit_box2_btm{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;;
}
.home_recruit_box2_btm_left{
  width: 66%;
}
.home_recruit_box2_btm_left:before{
  padding-top: 58.58%;
}
.home_recruit_box2_btm_left img{
  border-radius: 50px 0 0 50px;
}
.home_recruit_box2_btm_right{
  width: 32.66%;
}
.home_recruit_box2_btm_right:before{
  padding-top: 117.8%;
}
.home_recruit_box2_btm_right img{
  border-radius: 0 50px 50px 0;
}

@media (max-width:374px){

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

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

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

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

  }
  .pg_home .section.sec3{
    padding-top: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 80px;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*コイケについて*/
  .contents_items{

  }
  .contents_item{

  }
  .contents_box1{

  }
  .contents_box1 .content_desc{
    margin-top: 30px;
  }
  .contents_box1 .read_more{
    margin-top: 27px;
  }
  .contents_box2{

  }
  .contents_box2_img img{

  }
  .contents_box2_img:before{

  }

  /*コイケが選ばれる理由*/
  .home_contents2_wrap .contents_item:before{
    height: 93.61%;
    top: 12.15%;
    right: auto;
  }

  /*コイケが選ばれる理由*/
  .home_oither_items{

  }
  home_oither_item{
    padding-top: 30px;
  }
  .home_oither_left{

  }
  .home_oither_right{

  }
  .home_oither_item_inner{

  }
  .home_oither_item_meta{
    padding: 24px 28px;
  }
  .sec_title_md{
    font-size: 24px;
  }
  .home_oither_item_img:before{
    padding-top: 300px;
  }
  .home_oither_left .home_oither_item_img:before{

  }
  .home_oither_right .home_oither_item_img:before{

  }

  /*その他サービス*/
  .home_contents4_wrap .home_oither_item_meta{
    position: relative;
    padding: 10px 0 0;
  }
  .home_contents4_wrap .sec_title_ja{
    font-size: 14px;
  }
  .home_contents4_wrap .sec_title_md{
    color: #181818;
    font-size: 20px;
  } 
  .card_items{
    margin-inline:-5px;
  }
  .card_item{
    width: 33.333%;
    padding-inline:5px;
  }
  .card_item:nth-child(n+2){
    margin-top: 0;
  }
  .card_item_inner{

  }
  .card_item_img{

  }
  .card_item_img img{

  }
  .card_item_img:before{

  }
  .content_desc{

  }

  /*採用*/
  .home_recruit_box{

  }
  .home_recruit_box1{

  }
  .home_recruit_box1_img{

  }
  .home_recruit_box1_img img{

  }
  .home_recruit_box1_img:before{
    padding-top: 700px;
  }
  .home_recruit_box2{
    margin-top: 30px;
  }
  .home_recruit_box2_top{

  }
  .bold_desc{
    font-size: 18px;
  }
  .home_recruit_box2_btm{
margin-top: 30px;;
  }
  .home_recruit_box2_btm_left{

  }
  .home_recruit_box2_btm_left:before{

  }
  .home_recruit_box2_btm_left img{

  }
  home_recruit_box2_btm_right{

  }
  .home_recruit_box2_btm_right:before{

  }
  .home_recruit_box2_btm_right img{

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

  .pg_home .section.sec1{
    margin-top: 245px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 115px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 95px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*コイケについて*/
  .contents_items{

  }
  .contents_item{

  }
  .contents_box1{
    width:43.34%;
    margin-top: 0;
  }
  .home_contents1_wrap .contents_box1{
    order: 1;
  }
  .home_contents1_wrap .contents_box2{
    order: 2;
  }
  .contents_box2{
    width: 51.71%;
    padding-top: 7px;
  }
  .contents_box2_img img{

  }
  .contents_box2_img:before{

  }

  /*コイケが選ばれる理由*/
  .home_contents2_wrap .contents_item{
    align-items: center;
  }
  .home_contents2_wrap .contents_item:before{
    height: 93.61%;
    top: 12.15%;
    right: 14.44%;
    margin-left: 0;
    margin-right: 0;
  }

  /*コイケが選ばれる理由*/
  .home_oither_items{

  }
  .home_oither_item{
    padding-top: 0;
  }
  .home_oither_left{
    width: 49.67%;
  }
  .home_oither_right{
    width: 49.67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .home_oither_item_inner{

  }
  .home_oither_item_meta{

  }
  .sec_title_md{
    font-size: 22px;
  }
  .home_oither_item_img{

  }
  .home_oither_left .home_oither_item_img:before{
    padding-top: 90.06%;
  }
  .home_oither_right .home_oither_item_img:before{
    padding-top: 44.37%;
  }

  /*その他サービス*/
  .home_contents4_wrap .home_oither_item_meta{
    position: relative;

    padding: 10px 0 0;
  }
  .home_contents4_wrap .sec_title_md{
    color: #181818;
    font-size: 24px;
    margin-right: -16px;
  } 
  .card_items{
    margin-inline:-15px;
  }
  .card_item{
    padding-inline:15px;
  }
  .card_item_inner{

  }
  .card_item_img{

  }
  .card_item_img img{

  }
  .card_item_img:before{

  }
  .content_desc{

  }

  /*採用*/
  .home_recruit_box{

  }
  .home_recruit_box1{
    width: 31.53%;
  }
  .home_recruit_box1_img{

  }
  .home_recruit_box1_img img{
    border-radius: 50px 0 0 50px;
  }
  .home_recruit_box1_img:before{
    padding-top: 173.71%;
  }
  .home_recruit_box2{
    width: 67.56%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
  }
  .home_recruit_box2_top{
    padding-left: 20px;
  }
  .bold_desc{

  }
  .home_recruit_box2_btm{
margin-top: 0;
  }
  .home_recruit_box2_btm_left{

  }
  .home_recruit_box2_btm_left:before{

  }
  .home_recruit_box2_btm_left img{
    border-radius: 0;
  }
  home_recruit_box2_btm_right{

  }
  .home_recruit_box2_btm_right:before{

  }
  .home_recruit_box2_btm_right img{

  }
}
@media (min-width:1200px){
  /*コイケについて*/
  .contents_items{

  }
  .contents_item{
    width: 86.51%;
  }
  .contents_item.right{
    margin-left: auto;
  }
  .contents_item.left{
    margin-right: auto;
  }
  .contents_box1{

  }
  .contents_box2{

  }
  .contents_box2_img img{

  }
  .contents_box2_img:before{

  }

  /*コイケが選ばれる理由*/
  .home_contents2_wrap .contents_item:before{
    height: 93.61%;
    top: 14.15%;
    right: 14.44%;
  }
  .sec_title_md{
    font-size: 32px;
  }

  /*採用*/
  .home_recruit_box1_img:before{
    padding-top: 165.71%;
  }

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

}

/*******************************
*　コイケについて
********************************/
.pg_about{

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  overflow:hidden;
}
.pg_about .section.sec3{

}
.pg_about .section.sec4{

}
.pg_about .section.sec5{

}

/*見出し*/
.page_hdr_img{
  margin-top: 40px;
}
.page_hdr_img img{
  border-radius: 20px;
}
.page_hdr_img:before{
  padding-top: 37.83%;
}

/*代表インタビュー*/
.about_contents2_wrap{

}
.about_interview_items{
  margin-top: 40px;
}
.about_interview_item{
  position: relative;
  padding: 30px 0;
}
.about_interview_item .sec_title{
  position: relative;
  z-index: 1;
}
.about_interview_item:nth-child(odd):before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #eef4fa;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.about_interview_item:nth-child(n+2){

}
.about_contents2_wrap .content_desc{
  position: relative;
  z-index: 1;
}
.about_interview_item_tt{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about_interview_item_num{
  font-size: 24px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: var(--main-color);
}
.about_interview_item_tt .sec_title_sub{
  position: relative;
  z-index: 1;
}

/*沿革*/
.timeline_items{
  position: relative;
  margin-top:30px;
}
.timeline_item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.timeline_item:nth-child(n+2){
  margin-top: 40px;
}
.timeline_items:after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #c9c9c9;
  position: absolute;
  top: 0;
  left: 9px;
  z-index: 0;
}
.timeline_box1{
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.timeline_box1 p{
  letter-spacing: 0;
  padding-left: 66px;
}
.timeline_box1 p:before{
  content: "";
  display: block;
  width: 52px;
  aspect-ratio:52 / 17;
  background-image: url(/system_panel/uploads/images/dots.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position:absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: 1;
}
.timeline_box2{
  width: 100%;
  padding: 16px 0 16px 65px;
}
.lg_txt{
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .about_interview_item_tt .sec_title_sub{
    font-size: 18px;
  }
  
  .about_interview_item_tt{
    align-items: flex-start;
  }
}
@media (min-width:768px){
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{

  }
  .pg_about .section.sec5{

  }

  /*見出し*/
  .page_hdr_img{
    margin-top: 51px;
  }
  .page_hdr_img img{

  }
  .page_hdr_img:before{

  }
  .page_head .content_desc{
    margin-top: 32px;
  }

  /*代表インタビュー*/
  .about_contents2_wrap{

  }
  .about_contents2_wrap .content_desc{
    margin-top: 30px;
  }
  .about_interview_item_tt{

  }
  .about_interview_items{
    margin-top: 60px;
  }
  .about_interview_item{
    padding: 50px 0;
  }
  .about_interview_item_num{
    font-size: 30px;
  }
  .about_interview_item_tt .sec_title_sub{
    font-size: 28px;
  }

  /*沿革*/
  .timeline_items{
    padding: 66px 0 90px;
    margin-top: 30px;
  }
  .timeline_item{

  }
  .timeline_item:nth-child(n+2){
    margin-top: 87px;
  }
  .timeline_box1{
    font-size: 24px;
    width: 34.23%;
  }
  .timeline_box1 p{
    padding-left: 66px;
  }
  .timeline_box1 p:before{

  }
  .timeline_box2{
    width: 59.9%;
    padding: 0;
  }
  .lg_txt{
    font-size: 20px;
  }
}
@media (min-width:1024px){
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 62px;
  }

  /*見出し*/
  .page_hdr_img{

  }
  .page_hdr_img img{

  }
  .page_hdr_img:before{

  }

  /*代表インタビュー*/
  .about_interview_items{
    margin-top: 71px;
  }
  .about_interview_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_interview_item:nth-child(odd):before{
    margin-left: 0;
    margin-right: 0;
  }

  .about_interview_item.left:before{
    right: 17.11%;
  }
  .about_interview_item.right:before{
    left: 17.11%;
  }
  .about_interview_item_tt{

  }
  .about_interview_item_num{
    font-size: 38px;
  }
  .about_interview_item_tt .sec_title_sub{
    font-size: 32px;
  }
  .about_interview_item{
    padding: 73px 0;
  }

  /*沿革*/
  .timeline_items{
    margin-top: 37px;
  }
  .timeline_item{

  }
  .timeline_box1{
    font-size: 26px;
  }
  .timeline_box1 p{
    padding-left: 66px;
  }
  .timeline_box1 p:before{
    top: 56%;
  }
  .timeline_box2{

  }
  .lg_txt{

  }
}
@media (min-width:1200px){
  .about_interview_item_tt .sec_title_sub{
    font-size: 38px;
  }

  /*沿革*/
  .timeline_box1{
    font-size: 32px;
  }
  .timeline_box1 p:before{
    top: 50%;
  }

}

/*******************************
*　選ばれる理由
********************************/
.pg_reason{

}
.pg_reason .section.sec1{

}
.pg_reason .section.sec2{

}
.pg_reason .section.sec3{

}
.pg_reason .section.sec4{

}
.pg_xxx .section.sec5{

}

/*見出し*/
.sec_title_sub.center{
  text-align: center;
}
.content_desc.no_br p:nth-child(n+2){
  margin-top: 0;
}

/*繰り返し*/
.reason_contents_items{

}
.reason_contents_item{
  display: flex;
  flex-wrap: wrap;
}
.reason_contents_item:nth-child(n+2){
  margin-top: 50px;
}
.reason_contents_box1{
  width: 100%;
  background: #fff;
  border-radius: 20px;
  order: 2;
  margin-top: -20px;
  padding: 36px 16px 16px;
  position: relative;
  z-index: 1;
}
.reason_contents_box1 .sec_title{

}
.reason_contents_box1 .content_desc{

}
.reason_contents_box2{
  width: 100%;
  order: 1;
  position: relative;
  z-index: 0;
}

.reason_contents_box2_img{

}
.reason_contents_box2_img img{
  border-radius: 20px;
}
.reason_contents_box2_img:before{
  padding-top: 56.37%;
}

@media (max-width:374px){

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

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

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

  }
  .pg_reason .section.sec1{

  }
  .pg_reason .section.sec2{

  }
  .pg_reason .section.sec3{

  }
  .pg_reason .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  /*見出し*/
  .pg_hdr_wrap .content_desc{
    margin-top: 30px;
  }

  /*繰り返し*/
  .reason_contents_items{

  }
  .reason_contents_item{

  }
  .reason_contents_item:nth-child(n+2){
    margin-top: 70px;
  }
  .reason_contents_box1{
    margin-top: 30px;
  }
  .reason_contents_box1 .sec_title{

  }
  .reason_contents_box1 .content_desc{

  }
  .reason_contents_box2{

  }
  .reason_contents_box2_img{

  }
  .reason_contents_box2_img img{

  }
  .reason_contents_box2_img:before{

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

  }
  .pg_reason .section.sec1{

  }
  .pg_reason .section.sec2{
    padding-top: 62px;
  }
  .pg_reason .section.sec3{

  }
  .pg_reason .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  /*見出し*/
  .pg_hdr_wrap .content_desc{
    margin-top: 41px;
  }
  .content_desc.center{
    text-align: center;
  }

  /*繰り返し*/
  .reason_contents_items{

  }
  .reason_contents_item{
    position: relative;
  }
  .reason_contents_item:nth-child(n+2){
    margin-top: 92px;
  }
  .reason_contents_item:nth-child(odd) {
    justify-content: flex-start;
  }
  .reason_contents_item:nth-child(even) {
    justify-content: flex-end;
  }
  .reason_contents_box1{
    width: 55.51%;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    order: 1;
  }
  .reason_contents_item:nth-child(odd) .reason_contents_box1{
    padding: 50px 50px 50px 0;
  }
  .reason_contents_item:nth-child(even) .reason_contents_box1{
    padding: 50px 0 50px 50px;
  }
  .reason_contents_box1 .sec_title{

  }
  .reason_contents_box1 .content_desc{
    margin-top: 30px;
  }
  .reason_contents_box2{
    width: 56.65%;
    position:absolute;
    z-index: 0;
    order: 2;
  }
  .reason_contents_item:nth-child(odd) .reason_contents_box2{
    right: 0;
  }
  .reason_contents_item:nth-child(even) .reason_contents_box2{
    left: 0;
  }
  .reason_contents_box2_img{

  }
  .reason_contents_box2_img img{

  }
  .reason_contents_box2_img:before{

  }
  .reason_contents_item .sec_title_sub.lg{
    font-size: 26px;
  }
  
  .reason_contents_box2:before{
  content: "";
  display: block;
  width: 4.02%;;
  aspect-ratio:30 / 28;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  z-index: 5;
}
.reason_contents_item:nth-child(odd) .reason_contents_box2:before{
  left: 21.3%;
  background-image: url(/system_panel/uploads/images/kado1.png);
}
.reason_contents_item:nth-child(even) .reason_contents_box2:before{
   right: 21.3%;
   background-image: url(/system_panel/uploads/images/kado2.png);
}
}
@media (min-width:1200px){
  /*繰り返し*/
  .reason_contents_item{
    width: 86.51%;
  }
  .reason_contents_item:nth-child(odd) {
    margin-left: auto;
  }
  .reason_contents_item:nth-child(even) {
    margin-right: auto;
  }
  .reason_contents_item:nth-child(odd) .reason_contents_box1{
    min-height: 422px;
    padding: 22px 96px 22px 0;
  }
  .reason_contents_item:nth-child(even) .reason_contents_box1{
    padding: 22px 0 22px 96px;
  }

  .reason_contents_item .sec_title_sub.lg{
    font-size: 26px;
  }
}
@media (min-width:1470px){
  .reason_contents_item .sec_title_sub.lg{
    font-size: 32px;
  }
}
@media (min-width:1536px){
  .reason_contents_item .sec_title_sub.lg{
    font-size: 38px;
    margin-right: -51px;
  }
}

/*******************************
*　事業について
********************************/
.pg_service{

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_service .section.sec3{
  padding-top: 50px;
  border-top: 1px solid #c9c9c9;
}
.pg_service .section.sec4{

}
.pg_xxx .section.sec5{

}

/*カテゴリ*/
.service_cate_box{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-15px;
}
.service_cate_item{

}
.service_cate_item:nth-child(n+2){
  margin-top: 16px;
}
.service_cate_item a{
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  padding: 16px 5px;
  text-align: center;
  transition: 0.2s all;
  background: var(--main-color);
  border: 1px solid transparent;
  position: relative;
  z-index: 0;
  border-radius: 15px;
}
.service_cate_item a:after{
  content: "➡";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #fff;
}
.service_cate_item a:hover{
  background: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.service_cate_item a:hover:after{
  color:var(--main-color);
}
.service_cate_item p{
  letter-spacing: 0;
}

/*内容*/
.service_items{
  margin-top: 40px;
}
.service_item{

}
.service_item_hdr{

}
.service_item_hdr_img{

}
.service_item_hdr_img img{
  border-radius: 20px;
}
.service_item_hdr_img:before{
  padding-top: 37.83%;
}
.service_item_hdr_content{
  margin-top: 20px;
}
.service_item_hdr_content .content_desc{

}


/*内容2*/
.service_item_body1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 40px 0 50px;
  margin-top: 50px;
}
.service_item_body1:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #eef4fa;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.service_body1_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.service_body1_box1_img{

}
.service_body1_box1_img img{
  border-radius: 20px;
}
.service_body1_box1_img:before{
  padding-top: 84.21%;
}
.service_body1_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.service_body1_box2 .content_desc{

}

/*飼料といっても、実はこんなに違いがあります*/
.service_item_body2{
  margin-top: 50px;
}
.service_item_body2 .sec_title_sub{

}
.service_item_body2 .card_item_inner{
  pointer-events: none;
}
.service_item_body2 .home_contents4_wrap{
  margin-top: 40px;
}

/*コイケは養豚飼料を製造しています*/
.service_item_body3{
  position: relative;
  padding: 50px 0 50px;
  margin-top: 90px; 
}
.service_item_body3:before{
  content: "";
  display: block;
  width: 136.93%;
  height: 100%;
  background: #eef4fa;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
}
.service_item_body3_tt{
  width: 100%;
  font-size:18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  border-radius: 16px;
  padding: 9px;
  position: absolute;
  top: -30px;
  z-index: 1;
}
.service_item_body3_tt p{
  letter-spacing: 0;
}
.service_item_body3 .sec_title_sub{
  position: relative;
  z-index: 1;
}
.service_item_body3 .content_desc{
  position: relative;
  z-index: 1;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .service_item_body3_tt{
    top: -23px;
  }
}
@media (min-width:768px){
  .pg_service{

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{
    padding-bottom: 80px;
  }
  .pg_service .section.sec3{
    padding-top: 80px;
  }
  .pg_service .section.sec4{

  }

  /*カテゴリ*/
  .service_cate_box{

  }
  .service_cate_item{

  }
  .service_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_cate_item a{
    font-size: 18px;
  }

  /*内容*/
  .service_items{
    margin-top: 60px;
  }
  .service_item{

  }
  .service_item_hdr{

  }
  .service_item_hdr_img{

  }
  .service_item_hdr_img img{

  }
  .service_item_hdr_img:before{

  }
  .service_item_hdr_content{
    margin-top: 30px
  }
  .service_item_hdr_content .content_desc{
    margin-top: 30px;
  }


  /*内容2*/
  .service_item_body1{
    padding: 70px 0 90px;
    margin-top: 80px;
  }
  .service_body1_box1{
    width: 51.35%;
    padding-top: 10px;
  }
  .service_body1_box1_img{

  }
  .service_body1_box1_img img{

  }
  .service_body1_box1_img:before{

  }
  .service_body1_box2{
    width: 42.79%;
    margin-top: 0;
  }
  .service_body1_box2 .content_desc{
    margin-top: 41px;
  }

  /*飼料といっても、実はこんなに違いがあります*/
  .service_item_body2{
    margin-top: 90px;
  }
  .service_item_body2 .sec_title_sub{

  }
  .service_item_body2 .home_contents4_wrap{
    margin-top: 53px;
  }

  /*コイケは養豚飼料を製造しています*/
  .service_item_body3{
    padding: 68px 0 80px;
    margin-top: 100px;
  }
  .service_item_body3_tt{
    font-size: 22px;
    top: -24px;
  }
  .service_item_body3 .sec_title_sub{

  }
  .service_item_body3 .content_desc{

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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{
    padding-top: 21px;
    padding-bottom: 120px;
  }
  .pg_service .section.sec3{
    padding-top: 120px;
  }
  .pg_service .section.sec4{

  }

  /*カテゴリ*/
  .service_cate_box{

  }
  .service_cate_item{

  }
  .service_cate_item a{

  }

  /*内容*/
  .service_items{
    margin-top: 80px;
  }
  .service_item{

  }
  .service_item_hdr{

  }
  .service_item_hdr_img{

  }
  .service_item_hdr_img img{

  }
  .service_item_hdr_img:before{

  }
  .service_item_hdr_content{

  }
  .service_item_hdr_content .content_desc{

  }


  /*内容2*/
  .service_item_body1{
    padding: 107px 0 121px;
    margin-top: 110px;
  }
  .service_item_body1:before{
    margin-left: 0;
    margin-right: 0;
    right: 17.11%;
  }
  .service_body1_box1{

  }
  .service_body1_box1_img{

  }
  .service_body1_box1_img img{

  }
  .service_body1_box1_img:before{

  }
  .service_body1_box2{

  }
  .service_body1_box2 .content_desc{

  }

  /*飼料といっても、実はこんなに違いがあります*/
  .service_item_body2{
    margin-top: 107px;
  }
  .service_item_body2 .sec_title_sub{
    margin-bottom: 45px;
  }
  .service_item_body2 .home_contents4_wrap{

  }

  /*コイケは養豚飼料を製造しています*/
  .service_item_body3{
    padding: 68px 0 113px;
    margin-top: 123px;
  }
  .service_item_body3_tt{
    font-size: 28px;
    top: -30px;
  }
  .service_item_body3 .sec_title_sub{

  }
  .service_item_body3 .content_desc{
    margin-top: 42px;
  }
}
@media (min-width:1200px){


}

/*******************************
*菓子屑　
********************************/
.pg_crumbs{

}
.pg_crumbs .section.sec1{
  overflow: hidden;
}
.pg_crumbs .section.sec2{

}
.pg_crumbs .section.sec3{

}
.pg_crumbs .section.sec4{

}
.pg_xxx .section.sec5{

}

.pg_crumbs .section.sec1 .service_item_body3_tt{
  position: relative;
  top: auto;
  margin-top: 40px;
}
.pg_crumbs .section.sec1 .home_contents4_wrap{
  margin-top: 31px;
}
.pg_crumbs .section.sec1 .card_item_img:before{
  padding-top: 62.85%;
}
.pg_crumbs .section.sec1 .home_contents4_wrap .sec_title_md{
  padding-bottom: 8px;
}
.pg_crumbs .section.sec1 .card_item_inner{
  /*    pointer-events: none;*/
}
.pg_crumbs .section.sec1 .card_item_inner:hover img{
  transform: none
}

/*製造工程*/
.crumbs_contents_items{
  margin-top: 40px;
}
.crumbs_contents_item{
  border: 1px solid var(--main-color);
  border-radius: 15px;
  padding: 32px 16px;
  position: relative;
}
.crumbs_contents_item:nth-child(n+2){
  margin-top: 60px;
}
.crumbs_contents_item:after{
  content: "";
  display: block;
  width: 2.7%;
  aspect-ratio:30 / 65;
  background-image: url(/system_panel/uploads/images/arrrrr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -36.58%;
  left: 50%;
  transform:translateX(-50%);
}
.crumbs_contents_item:last-child:after{
  display: none;
}
.crumbs_contents_iitem_tt{
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 13px;
}
.crumbs_contents_wrap .sec_title.sm{
  margin-bottom: 5px;
}
.crumbs_contents_wrap .sec_title.sm .sec_title_ja{
  font-size: 14px;
  letter-spacing: 0;
}
.crumbs_contents_wrap .sec_title.sm .sec_title_ja:before{
  margin-right: 14px;
}
.crumbs_contents_iitem_text{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.crumbs_contents_item .content_desc{
  line-height: 1.875em;
  margin-top: 10px;
}

/*テーブル*/
.crumbs_tbl_wrap .sec_title_sub{
  margin-bottom: 40px;
}
.company_tbl{

}
.company_tbl .table_rows{
  min-width: 800px;
}
.company_tbl p{
  letter-spacing: 0;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  font-size: 16px;
  text-align: center;
  border: 1px solid #e5e5e5;
  padding: 12px 15px;
}
.company_tbl .table_rows_th{
  font-weight: 700;
  background: #f5f5f5;
}
.company_tbl .table_rows_th.sm{
  width: 180px;
}
.company_tbl .table_rows_th.mid{
  width: 223px;
}
.company_tbl .table_rows_th.lg{
  width:308px;
}
.company_tbl .table_rows_td{
  font-weight: 400;
  background: #fff;
}

.tbl_hosok{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.86em;
  margin: 22px 0 30px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .crumbs_contents_item:after{
    width: 20px;
    bottom: -54px;
  }
}
@media (min-width:768px){
  .pg_crumbs{

  }
  .pg_crumbs .section.sec1{

  }
  .pg_crumbs .section.sec2{

  }
  .pg_crumbs .section.sec3{

  }
  .pg_crumbs .section.sec4{

  }

  .pg_crumbs .section.sec1 .service_item_body3_tt{
    margin-top: 60px;
  }
  .pg_crumbs .section.sec1 .sec_title_md{
    font-size: 22px;
  }
  .pg_crumbs .section.sec1 .service_item_body3{
    padding: 70px 0 80px;
  }

  /*製造工程*/
  .crumbs_contents_items{
    margin-top: 51px;
  }
  .crumbs_contents_item{
    height: 260px;
    padding: 29px 36px;
  }
  .pg_bread .section.sec2 .crumbs_contents_item{
    height: 320px;
  }
  .crumbs_contents_item:after{
    bottom: -50px;
  }
  .crumbs_contents_item:nth-child(n+2){
    margin-top: 70px;
  }
  .crumbs_contents_iitem_tt{

  }
  .crumbs_contents_iitem_tt{

  }
  .crumbs_contents_iitem_text{
    font-size: 20px;
  }
  .crumbs_contents_item .content_desc{

  }

  /*テーブル*/
  .crumbs_tbl_wrap .sec_title_sub{
    margin-bottom: 51px;
  }
  .company_tbl{

  }
  .company_tbl .table_rows{
    min-width: 1110px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_td{

  }

  .tbl_hosok{
    margin: 22px 0 60px;
  }
}
@media (min-width:1024px){
  .pg_crumbs{

  }
  .pg_crumbs .section.sec1{

  }
  .pg_crumbs .section.sec2{

  }
  .pg_crumbs .section.sec3{
    padding-top: 65px;
  }
  .pg_crumbs .section.sec4{

  }

  .pg_crumbs .section.sec1 .service_item_body3_tt{
    margin-top: 72px;
  }
  .pg_crumbs .section.sec1 .service_item_body3{
    padding: 106px 0 113px;
  }

  /*製造工程*/
  .crumbs_contents_items{

  }
  .crumbs_contents_item{
    height: 234px;
    padding: 29px 64px 27px;
  }
  .pg_bread .section.sec2 .crumbs_contents_item{
    height: auto;
  }
  .crumbs_contents_item:after{
    bottom: -70px;
  }
  .crumbs_contents_item:nth-child(n+2){
    margin-top: 97px;
  }
  .crumbs_contents_iitem_tt{

  }
  .crumbs_contents_iitem_tt{

  }
  .crumbs_contents_iitem_text{
    font-size: 24px;
  }
  .crumbs_contents_item .content_desc{

  }

  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows{
    width: auto;
    min-width: inherit;
    height: 100%;
  }
  .company_tbl .js-scrollable{
   
  } 
  .scroll-hint-icon{
    height: 70px;
  }
  .scroll-hint-icon-wrap{
    display: none;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_td{

  }

  .tbl_hosok{
    margin: 22px 0 71px;
  }
}
@media (min-width:1200px){
  .crumbs_contents_item{
    height: auto;
  }
  .crumbs_contents_item:after{
    bottom: -36.58%;
  }

}

/*******************************
*　資料用菓子屑
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.bread_img{
  /*  width: 100%;
    position: absolute;
    top: -300px;*/
}
.pg_bread .service_item_body3:before{
  height: calc(100% - 275px);
  top: auto;
  bottom: 0;
}
.bread_img img{
  border-radius: 20px;
}
.bread_img:before{
  padding-top: 200px;
}
.pg_bread .section.sec1 .sec_title_sub{
  padding-top: 48px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_bread .section.sec1 .service_item_body3:before{
    height: 755px;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_bread .section.sec1 .service_item_body3{
    margin-top: 0;
  }
  .bread_img:before{
    padding-top: 350px;
  }
}
@media (min-width:1024px){

  .pg_bread .section.sec1 .service_item_body3{
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .pg_bread .crumbs_contents_item{
    height: 234px;
  }
  .service_item_body3 .content_desc{
    margin-inline:-10px;
  }

}

/*******************************
*　保有設備
********************************/
.pg_facilities{

}
.pg_facilities .section.sec1{

}
.pg_facilities .section.sec2{

}

.facilities_items{
  margin-top: 50px;
}
.facilities_item{

}
.facilities_item:nth-child(n+2){
  margin-top:60px;
}
.facilities_item .sec_title_sub{
  letter-spacing: 0;
}
.facilities_contents_items{
  margin-top: 30px;
}
.facilities_contents_item{

}
.facilities_contents_item:nth-child(n+2){
  margin-top: 40px;
}
.facilities_contents_item_tt{
  background: #f5f5f5;
  border-radius: 15px;
  padding: 13px 22px;
}
.facilities_contents_item_text{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  padding-left: 23px;
}
.facilities_contents_item_text:before{
  content: "";
  display: block;
  width: 3px;
  height: 25px;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-50%);
}
.facilities_contents_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.facilities_contents_box1{
  width: 100%;
}
.facilities_contents_box1_img{

}
.facilities_contents_box1_img img{
  border-radius: 17.5px;
}
.facilities_contents_box1_img:before{
  padding-top: 61.4%;
}
.facilities_contents_box2{
  width: 100%;
  margin-top: 20px;
}
.facilities_contents_tbl{

}
.facilities_contents_tbl .table_rows_th,
.facilities_contents_tbl .table_rows_td{
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #dbdbdb;
  padding: 19px 0 19px 15px;
}
.facilities_contents_tbl .table_rows_th{
  background: #eef4fa;

  width: 190px;
}
.facilities_contents_tbl .table_rows_td{
  background: #fff;

}
.facilities_contents_tbl .content_desc{

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

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

}
@media (max-width:767px){
  .facilities_contents_tbl .table_rows_th,
  .facilities_contents_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .facilities_contents_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dbdbdb;
  }
}
@media (min-width:768px){
  .pg_facilities{

  }
  .pg_facilities .section.sec1{

  }
  .pg_facilities .section.sec2{

  }

  .facilities_items{
    margin-top: 80px;
  }
  .facilities_item{

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

  }
  .facilities_contents_items{
    margin-top: 50px;
  }
  .facilities_contents_item{

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

  }
  .facilities_contents_item_text{
    font-size: 20px;
  }
  .facilities_contents_box{
    margin-top: 50px;
  }
  .facilities_contents_box1{

  }
  .facilities_contents_box1_img{

  }
  .facilities_contents_box1_img img{

  }
  .facilities_contents_box1_img:before{

  }
  .facilities_contents_box2{
    margin-top: 30px;
  }
  .facilities_contents_tbl{

  }
  .facilities_contents_tbl .table_rows_th,
  .facilities_contents_tbl .table_rows_td{

  }
  .facilities_contents_tbl .table_rows_th{
    border-right: 0;
  }
  .facilities_contents_tbl .table_rows_td{
    border-left: 0;
  }
  .facilities_contents_tbl .content_desc{

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

  }
  .pg_facilities .section.sec1{

  }
  .pg_facilities .section.sec2{

  }

  .facilities_items{
    margin-top: 110px;
  }
  .facilities_item{

  }
  .facilities_item:nth-child(n+2){
    margin-top: 136px;
  }
  .facilities_item .sec_title_sub{

  }
  .facilities_contents_items{

  }
  .facilities_contents_item{

  }
  .facilities_contents_item_tt{

  }
  .facilities_contents_item_text{
    font-size: 24px;
  }
  .facilities_contents_box{

  }
  .facilities_contents_box1{
    width: 51.35%;
  }
  .facilities_contents_box1_img{

  }
  .facilities_contents_box1_img img{

  }
  .facilities_contents_box1_img:before{

  }
  .facilities_contents_box2{
    width: 42.79%;
    margin-top: 0;
  }
  .facilities_contents_tbl{

  }
  .facilities_contents_tbl .table_rows_th,
  .facilities_contents_tbl .table_rows_td{

  }
  .facilities_contents_tbl .table_rows_th{

  }
  .facilities_contents_tbl .table_rows_th p{
    margin-right: -5px;
  }
  .facilities_contents_tbl .table_rows_td{

  }
  .facilities_contents_tbl .content_desc{

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


}

/*******************************
*　工場見学
********************************/
.pg_factory{

}
.pg_factory .section.sec1{

}
.pg_factory .section.sec2{
  overflow: hidden;
}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.page_hdr_img:before{
  padding-top: 31.53%;;
}
.factory_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid var(--main-color);
  border-radius: 20px;
  padding: 24px 16px;
  margin-top: 40px;
  position: relative;
}
.factory_contact_box:before{
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.factory_contact_box1{
  width: 100%;
}
.factory_contact_box1 + .factory_contact_box1{
  margin-top: 30px;
  padding-top: 50px;
}
.factory_contact_box1 .content_desc{
  margin-top: 17px;
}
.factory_contact_tel{
  margin-top: 23px;
}
.factory_contact_tel1{
  font-size: 32px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.factory_contact_tel2{
  font-size: 16px;
  font-weight: 700;
  margin-top: 9px;
}
.factory_contact_box1 .read_more a{
  font-weight: 700;
  color: #f84007;
  padding: 0;
}

.pg_factory .service_item_body3{
  margin-top:40px;;
}

.service_item_body3 .content_desc .block1{
    margin-top: 16px!important;
  }
@media (max-width:374px){

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

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

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

  }
  .pg_factory .section.sec1{

  }
  .pg_factory .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .factory_contact_box{
    padding: 24px 30px;
    margin-top: 60px;
    position: relative;
  }
  .factory_contact_box:before{
    top: 50%;
  }
  .factory_contact_box1{
padding-right: 30px;
  }
  .factory_contact_box1 + .factory_contact_box1{
    margin-top: 60px;
    padding-top: 30px;
  }
  .factory_contact_box1 .content_desc{

  }
  .factory_contact_tel{

  }
  .factory_contact_tel1{
    font-size: 40px;
  }
  .factory_contact_tel2{

  }

  .pg_factory .service_item_body3{
    margin-top: 52px;;
  }
  
  .service_item_body3 .content_desc .block1{
    margin-top: 30px!important;;
  }
}
@media (min-width:1024px){
  .pg_factory{

  }
  .pg_factory .section.sec1{

  }
  .pg_factory .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .content_desc p{
    letter-spacing: 0;
  }

  .factory_contact_box{
    padding: 24px 24px 24px 30px;
    position: relative;
    margin-top: 80px;
  }
  .factory_contact_box:before{
    content: "";
    display: block;
    width: 1px;
    height: 330px;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .factory_contact_box1{
    width: 48.64%;
  }
  .factory_contact_box1 + .factory_contact_box1{
    margin-top: 0;
    padding-top: 0;
  }
  .factory_contact_box1:nth-child(even){
    padding-left: 30px;
  }
  .factory_contact_box1 .content_desc{

  }
  .factory_contact_tel{

  }
  .factory_contact_tel1{
    font-size: 45px;
  }
  .factory_contact_tel2{

  }
  .factory_contact_box1 .read_more{
    margin-right: 40px;
  }

  .pg_factory .service_item_body3{
    margin-top: 52px;;
  }

  .factory_contact_box .sec_title_sub.lg{
    font-size: 32px;
  }
}
@media (min-width:1200px){
  .content_desc p{
    letter-spacing: 0.075em;
  }

  .factory_contact_box .sec_title_sub.lg{
    font-size: 38px;
  }

}

/*******************************
*　SDGs
********************************/
.pg_sdgs{

}
.pg_sdgs .section.sec1{

}
.pg_sdgs .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.pg_sdgs .page_hdr_img{
  text-align: center;
}
.pg_sdgs .page_hdr_img img{
  border-radius: 0; 
}

/*繰り返し*/
.sdgs_contents_items{
  margin-top: 50px;
}
.sdgs_contents_item{
  border-bottom: 1px solid #f1f0ee;
  padding-bottom: 30px;
}
.sdgs_contents_item:nth-child(n+2){
  /*  margin-top: 40px;*/
  padding-top: 30px;
}
.sdgs_contents_item:last-child{
  border: none;
  padding-bottom: 0;
}
.sdgs_contents_box1{

}
.sdgs_contents_box1 .content_desc{

}
.sdgs_contents_box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.sdgs_contents_box2_left{
  width: 100%;
}
.sdgs_contents_box2_left .content_desc{
  margin-top: 0;
}
.sdgs_contents_box2_right{
  width: 100%;
  margin-top: 30px;
}
.sdgs_contents_box2_img{
  text-align: right;
}
@media (max-width:374px){

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

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

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

  }
  .pg_sdgs .section.sec1{

  }
  .pg_sdgs .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  /*繰り返し*/
  .sdgs_contents_items{
    margin-top: 80px;
  }
  .sdgs_contents_item{
    padding-bottom: 52px;
  }
  .sdgs_contents_item:nth-child(n+2){
    /*    margin-top:80px;*/
    padding-top: 52px;
  }
  .sdgs_contents_box1{

  }
  .sdgs_contents_box2_left .content_desc{
    margin-top: 0;
  }
  .sdgs_contents_box2{
    margin-top: 35px;
  }

  .sdgs_contents_box2_left{
    width: 100%;
  }
  .sdgs_contents_box2_right{

  }
  .sdgs_contents_box2_img{

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

  }
  .pg_sdgs .section.sec1{

  }
  .pg_sdgs .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


  .sdgs_contents_wrap .content_desc{
    margin-top: 45px;
  }

  /*繰り返し*/
  .sdgs_contents_items{
    margin-top: 105px;
  }
  .sdgs_contents_item{

  }
  .sdgs_contents_box1{

  }
  .sdgs_contents_box1 .content_desc{

  }
  .sdgs_contents_box2{

  }
  .sdgs_contents_box2_left{
    width: 57.2%;
  }
  .sdgs_contents_box2_left .content_desc{
    margin-top: 0;
  }
  .sdgs_contents_box2_right{
    padding-top: 10px;
    width: 37.2%;
    margin-top: 0;
  }
  .sdgs_contents_box2_img{

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


}



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

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}
.pg_recruit .section.sec3{
  overflow: hidden;
}
.pg_recruit .section.sec4{

}
.pg_recruit .section.sec5{
  overflow: hidden;
  padding-bottom: 0;
}

/*カテゴリ*/
.recruit_contents1_cate{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-15px;
}
.recruit_contents1_cate .service_cate_item{

}
.recruit_contents1_cate .service_cate_item:nth-child(n+2){
  margin-top: 16px;;
}

.recruit_contents2_wrap{
  margin-top: 60px;
}
.recruit_contents2_wrap .reason_contents_items{
  margin-top:40px;
}
.recruit_contents2_wrap .sec_title_sub{
  letter-spacing: 0;
}
.recruit_sub_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 700;

  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.recruit_sub_tt p{
  letter-spacing: 0;
}
.recruit_sub_tt:before{
  content: "ー";
}
.recruit_sub_tt:after{
  content: "ー";
}

/*こんな方と一緒に働きたい*/
.recruit_contents3_wrap{
  position: relative;
  padding: 40px 0;
}
.recruit_contents3_wrap:before{
  content: "";
  display: block;
  width: 136.93%;
  height: 100%;
  background: #eef4fa;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pg_recruit .sec_title_sub{
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
.recruit_contents3_items{
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.recruit_contents3_item{

}
.recruit_contents3_item_inner{
  background: #fff;
  padding: 31px 10px;
}
.recruit_contents3_item_inner .sec_title{
  margin-bottom: 4px;
  padding:0 14px;
}
.recruit_contents3_item_inner .sec_title_ja{
  font-size: 14px;

}
.recruit_contents3_item_inner .sec_title_md{
  font-size: 18px; 
  color: #181818;
  padding:0 14px;
  padding-bottom: 0;
}
.recruit_contents3_item_inner .content_desc{
  border-top: 1px solid #c9c9c9;
  line-height: 1.875em;
  margin-top: 13px;
  padding: 10px 20px 0 15px;
}

/*一日*/
.recruit_contents4_wrap .sec_title_sub{
  margin-bottom: 50px;
}
.recruit_timeline_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit_timeline_box1{
  width: 100%;
  margin-top: 0;
}
.recruit_timeline_box1 .timeline_item{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.recruit_timeline_box1 .timeline_box1{
  width: 100%;
}
.recruit_timeline_box1 .timeline_box2{
  width: 100%;
  padding-left: 66px;
}
.recruit_timeline_box2{
  width: 100%;

}
.recruit_timeline_imgs{

}
.recruit_timeline_img{

}
.recruit_timeline_img img{
  border-radius: 20px;
}
.recruit_timeline_img:before{
  padding-top: 76.31%;
}

.recruit_contents5_wrap .sec_title_sub.center{
  margin-bottom: 40px;
}
.recruit_contents5_wrap{

}
.recruit_contents5_items{

}
.recruit_contents5_items:nth-of-type(n+2) {
  margin-top: 38px; 
}
.recruit_contents5_item{

}
.recruit_contents5_item.multi{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.recruit_contents5_item .content_desc{
  position: relative;
  z-index: 1;
}
.recruit_contents5_item:nth-child(n+2){
  border-bottom: 1px solid #c9c9c9;
}
.recruit_contents5_wrap .about_interview_item:nth-child(odd):before{
  display: none;
}
.recruit_contents5_wrap .recruit_contents5_item:last-child{
  border-bottom: 0;
}

.recruit_contents5_box1{

}
.recruit_contents5_box2{
  width: 100%;
}
.recruit_contents5_box2_img{

}
.recruit_contents5_box2_img img{
  border-radius: 19px;
}
.recruit_contents5_box2_img .img_fit:before{
  padding-top: 64.95%;
}

/*テーブル*/
.pg_recruit .section.sec6 .sec_title_sub{
  margin-bottom: 40px;
}
.recruit_tbl_items{
  margin-top: 60px;
}
.recruit_tbl_item:nth-child(n+2){
  margin-top: 60px;
}
.recruit_tbl{
  margin-top: 40px;
}
.recruit_tbl .table_rows_th,
.recruit_tbl .table_rows_td{
  border: 1px solid #dbdbdb;
  padding: 19.5px 15px;
}
.recruit_tbl .table_rows_th{
  background: #eef4fa;
}
.recruit_tbl .table_rows_td{
  background: #fff;
  line-height: 1.88em;
}
@media (max-width:374px){

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

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

  .recruit_contents3_item_inner{
    padding: 31px 32px;
  }

  .recruit_timeline_img{
    margin-left: 66px; 
  }
  .recruit_timeline_box .content_desc{
    margin-top: 0;
  }

  .recruit_contents5_box1{
    order: 2;
    margin-top: 20px;
  }
  .recruit_contents5_box2{
    order: 1;
  }

  /*テーブル*/
  .recruit_tbl{

  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .recruit_tbl .table_rows_th{

  }
  .recruit_tbl .table_rows_td{
    padding-left: 22px;
  }
  .recruit_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dbdbdb;
  }
}
@media (min-width:768px){
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 63px;
  }
  .pg_recruit .section.sec3{
    padding-top: 80px;
  }
  .pg_recruit .section.sec4{

  }
  .pg_recruit .section.sec5{

  }

  /*カテゴリ*/
  .recruit_contents1_cate{

  }
  .recruit_contents1_cate .service_cate_item{

  }
  .recruit_contents1_cate .service_cate_item:nth-child(n+2){
    margin-top: 0;;
  }
  .recruit_contents1_cate .service_cate_item:nth-child(n+3){
    margin-top: 24px;;
  }

  .recruit_contents2_wrap{
    margin-top:80px;
  }
  .recruit_sub_tt{
    font-size: 20px;
  }
  .recruit_contents2_wrap .reason_contents_items{
    margin-top: 60px;
  }
  .recruit_contents2_wrap .reason_contents_box1{
    margin-top: 0;
  }

  /*こんな方と一緒に働きたい*/
  .recruit_contents3_wrap{
    padding: 80px 0;
  }
  .recruit_contents3_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-15px;
    margin-top:60px;
  }
  .recruit_contents3_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_contents3_item:nth-child(n+3){
    margin-top: 20px;;
  }
  .recruit_contents3_item_inner{
    display: block;
    border: 1px solid var(--main-color);
    border-radius: 17.5px;
  }
  .recruit_contents3_item_inner .sec_title_md{
    font-size: 20px;  
  }
  .recruit_contents3_item_inner .content_desc{

  }

  /*一日*/
  .recruit_contents4_wrap .sec_title_sub{
    margin-bottom: 68px;
  }
  .recruit_timeline_box{

  }
  .recruit_timeline_box1{
    width: 59.9%;
    padding: 75px 0 58px;
  }
  .recruit_timeline_box1 .timeline_item{

  }
  .recruit_timeline_box1 .timeline_box1{

  }
  .recruit_timeline_box1 .timeline_box2{

  }
  .recruit_timeline_box2{
    width: 34.23%;
    padding-top: 82px;
  }
  .recruit_timeline_imgs{

  }
  .recruit_timeline_img{

  }
  .recruit_timeline_img:nth-child(n+2){
    margin-top: 58px;
  }
  .recruit_timeline_img img{

  }
  .recruit_timeline_img:before{

  }
  .recruit_contents4_wrap .timeline_item:nth-child(n+2){
    margin-top: 58px;
  }

  .recruit_contents5_items:nth-of-type(odd) .recruit_contents5_box1{
    order: 1;
  }
  .recruit_contents5_items:nth-of-type(odd) .recruit_contents5_box2{
    order: 2;
  }
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box1{
    order: 2;
  }
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box2{
    order: 1;
  }
  .recruit_contents5_box1{
    width: 57.2%;
  }
  .recruit_contents5_item .content_desc{
    margin-top: 34px;
  }

  .recruit_contents5_wrap .sec_title_sub.center{
    margin-bottom: 60px;
  }
  .recruit_contents5_box2{
    width: 34.23%;
    position: relative;
    padding-top: 5px;
  }
  .recruit_contents5_box2_img .img_fit:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #eef4fa;
    position: absolute;
    top: -60px;
    border-radius: 19px;
  }
  .recruit_contents5_items:nth-of-type(odd) .recruit_contents5_box2_img .img_fit:after{
    left: 125px;
  }
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box2_img .img_fit:after{
    right: 125px;
  }
  .recruit_contents5_box2_img{
    width: 290px;
  }
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box2_img{
    right: 60px;
    position: relative;
  }
  .recruit_contents5_box2_img img{

  }
  .recruit_contents5_box2_img:before{

  }
  .recruit_contents5_item:nth-child(n+2){
    padding: 50px 0 55px;
  }

  /*テーブル*/
  .pg_recruit .section.sec6 .sec_title_sub{
    margin-bottom: 50px;
  }
  .recruit_tbl_items{
    margin-top: 80px;
  }
  .recruit_tbl_item:nth-child(n+2){
    margin-top: 120px;
  }
  .recruit_tbl{
    margin-top: 52px;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    font-size: 17px;
  }
  .recruit_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .recruit_tbl .table_rows_td{
    border-left: 0;
    padding-left: 22px;
  }
}
@media (min-width:1024px){
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{

  }
  .pg_recruit .section.sec3{
    padding-top: 107px;
  }
  .pg_recruit .section.sec4{

  }
  .pg_recruit .section.sec5{

  }

  /*カテゴリ*/
  .recruit_contents1_cate{

  }
  .recruit_contents1_cate .service_cate_item{

  }
  .recruit_contents1_cate .service_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_contents1_cate .service_cate_item:nth-child(n+4){
    margin-top: 24px;
  }

  .recruit_sub_tt{
    font-size: 22px;
  }
  .recruit_contents2_wrap{
    margin-top: 107px;
  }
  .recruit_contents2_wrap .reason_contents_items{
    margin-top: 73px;
  }
  .recruit_contents2_wrap .reason_contents_box1{
    margin-top: 50px;
  }

  /*こんな方と一緒に働きたい*/
  .recruit_contents3_wrap{
    padding: 110px 0 120px;
  }
  .recruit_contents3_items{
    margin-top: 73px;
  }
  .recruit_contents3_item{
    width: 33.333%;
  }
  .recruit_contents3_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_contents3_item:nth-child(n+4){
    margin-top: 30px;
  }
  .recruit_contents3_item_inner{

  }
  .recruit_contents3_item_inner .sec_title_md{
    font-size: 20px;  
  }
  .recruit_contents3_item_inner .content_desc{

  }

  /*一日*/
  .recruit_contents4_wrap .sec_title_sub{
    margin-bottom: 68px;
  }
  .recruit_timeline_box{

  }
  .recruit_timeline_box1{

  }
  .recruit_timeline_box1 .timeline_item{

  }
  .recruit_timeline_box1 .timeline_box1{

  }
  .recruit_timeline_box1 .timeline_box2{

  }
  .recruit_timeline_box2{

  }
  .recruit_timeline_imgs{

  }
  .recruit_timeline_img{

  }
  .recruit_timeline_img img{

  }
  .recruit_timeline_img:before{

  }

  .recruit_contents5_box1{

  }
  .recruit_contents5_box2{

  }
  .recruit_contents5_box2_img{
    width: 350px;
  }
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box2_img{
    right: 30px; 
  } 
  .recruit_contents5_box2_img img{

  }
  .recruit_contents5_box2_img:before{

  }

  /*テーブル*/
  .recruit_tbl_items{
    margin-top: 107px;
  }
  .recruit_tbl{

  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{

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

  }
}
@media (min-width:1200px){
  .recruit_contents3_item_inner .sec_title_md{
    font-size: 24px;  
  }

  .recruit_contents5_box2_img{
    width: 400px;
  }

}
@media (min-width:1470px){
  .recruit_contents5_box2_img{
    width: 585px;
  }
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box2_img{
    position: relative;
    right: 208px; 
  }
}
@media (min-width:1536px){
  .recruit_contents5_items:nth-of-type(even) .recruit_contents5_box2_img{
    right: 208px; 
  }
}

/*******************************
*　会社概要
********************************/
.pg_company{

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{
  margin-top: 50px;
  padding-bottom: 50px;
}
.pg_company .section.sec3{
  border-top: 1px solid #dbdbdb;
}
.pg_company .section.sec4{

}
.pg_company .section.sec5{

}

.pg_company .sec_title_sub{
  letter-spacing: 0;
}
/*地図*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: 0;
  height:250px;
}

/*テーブル*/
.pg_company .recruit_tbl .table_rows_th,
.pg_company .recruit_tbl .table_rows_td{
  padding: 15.5px 15px;
}

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

}
.company_gallery_item_img img{
  border-radius: 20px;
}
.company_gallery_item_img:before{
  padding-top: 80%;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .addArea.day{
    display: flex;
    align-items: center;
  }

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

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{
    margin-top: 68px;
    padding-bottom: 80px;
  }
  .pg_company .section.sec3{
    padding-top:80px;
  }
  .pg_company .section.sec4{

  }
  .pg_company .section.sec5{

  }

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

  /*テーブル*/
  .pg_company .recruit_tbl .table_rows_td{
    padding-left: 18px;
  }

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

  }
  .company_gallery_item_img img{

  }
  .company_gallery_item_img:before{

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

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{
    padding-bottom: 103px;
  }
  .pg_company .section.sec3{
    padding-top: 106px;
  }
  .pg_company .section.sec4{

  }
  .pg_company .section.sec5{

  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 380px;
  }


  /*ギャラリー*/
  .company_gallery_items{
    margin-inline:-15px;
  }
  .company_gallery_item{

    padding-inline:15px;
  }
  .company_gallery_item_img{

  }
  .company_gallery_item_img img{

  }
  .company_gallery_item_img:before{

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


}

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

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

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

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

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横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 #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 16px 15px 16px 20px;
  background: #eef4fa;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 0;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 8px 16px;
}
.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: 15px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd input[name="day1"],
.pg_contact .formTd input[name="day2"]{
  max-width: 150px;
  border: 1px solid #f5f1eb;
}
.pg_contact .formTd select[name="time1"],
.pg_contact .formTd select[name="time2"]{
  max-width: 110px;
  padding: 7px 24px 6.5px 24px;
  margin-left: 21px;
  border: 1px solid #f5f1eb;
}
.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;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.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: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  width: auto;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: none;
  /* border-radius: 27px; */
  color: #f8532b;
  padding: 16px 0;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  margin: 19px auto 0;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  display: block;
  width: 61px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/circle_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  right: 0;
  margin-left: 22px;
}
.pg_contact .formBtn.formSend:hover:after{
  right: -10px;;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.25em;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.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.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}
.contact_form{
  margin-top: 52px;
}
@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%;
  }
}


/* プライバシー */
.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;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #00479d;
  letter-spacing: 0.04em;
}
.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: 46px;
}
.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 #dbdbdb;
  margin-top: 0;
  margin-top: 100px;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1023px){ 
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){  
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .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 {
    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;
  }

  .pg_contact .formTd input[name="day1"],
  .pg_contact .formTd input[name="day2"] {
    max-width: 130px;
  }

  .privacy_item_box{
    padding: 30px 10px;
    margin-top: 80px;
  }
  .contact_tt.privacy{
    font-size: 19px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.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{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .thanks_text{
    margin-top: 30px;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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

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


}