@charset "UTF-8";


/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
}
#root{
  overflow: hidden;
}
/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

.flex{
  display: flex;
  flex-wrap: wrap;
}
@media (max-width:767px){
  body{
    font-size: 14px;
  } 

  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}
.outfit{
  font-family: 'Outfit', sans-serif;
}
p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
}

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;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}

/* 動画埋め込みのレスポンシブ対応 */
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:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* 指定デバイスで改行を消す */
@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{
  position: relative;
  z-index: 2;
  background: #000;
}
.header:after{
  content: "";
  display: block;
  background: #000000;
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  z-index: -1;
}
.header_box1{
  display: flex;
  align-items: center;
}
.header_box1_txt{
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.075em;
  color: #fff;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
}
.header_box1_txt strong{
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.075em;
}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 10px;
  /*background: rgba(255,255,255,0.85);*/
}
.hdr1_box1{

}
.hdr1_box2{

}
.hdr_contact{

}
.hdr_contact_link a{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 11px 5px;
}
.hdr_contact_link a:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.gnav_item_contact{
  display: block;
}

.pg_header{
  margin-bottom: 60px;
  position: relative;
  margin-top: -20px;
}
.pg_header_mv{
  height: 150px;
  overflow: hidden;
}
.pg_header_mv_img{
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.mv{
  position: relative;
}
.mv_img{
  position: relative;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/*下層ヘッダー*/
.hdr_img:before{
  padding-top: 200px;
}
.hdr_txt{
  background:rgba(255,255,255,0.9);
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  padding: 15px;
}
.hdr_en{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.hdr_ttl{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.hdr_txt_inner1{
  position: relative
}
.hdr_txt_inner1:before,
.career_skill_item_inner_top:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/left_top.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.hdr_txt_inner1:after,
.career_skill_item_inner_top:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/top_right.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
.hdr_txt_inner2{
  position: relative;
}
.hdr_txt_inner2:before,
.career_skill_item_inner_bottom:before{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/left_bottom.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hdr_txt_inner2:after,
.career_skill_item_inner_bottom:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/right_bottom.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hdr_inner_txt{
  padding: 20px 0;  
}


.mv_item_single{
  position: relative;
}
.mv_item_single_img:before{
  padding-top: calc(100vh - 100px - 57px); 
}
.mv_item_single_txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.769em;
  color: #fff;
  z-index: 1;
  text-align: center;
  border: 3px solid;
  padding: 26px 0;
}
.mv_item_single_img:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.mv_txt{
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #fff;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
@media (min-width:375px){

}

@media (min-width:768px){
  .header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 20px;

  }
  .header:after{
    height:120px;
  }
  .hdr_logo{
    width: 210px;
  }
  .header_box1{
    display: flex;
    align-items: center;
  }
  .header_box1_txt{
    font-size: 21px;
    margin-top: 33px;
    margin-left: 20px;
  }
  .header_box1_txt strong{
    font-size: 14px;
  }
  .header_box2{

  }
  .header_box2_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 10px;
  }
  .header_box2_bottom{
    margin-top: 10px;
  }
  .gnav_item_contact{
    width: 190px;

    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.075em;
    padding: 3px;
  }
  .gnav_item_contact:hover{
    color: #fff;
  }
  .gnav_item_contact.recruit{
    background: #1b3c99;
    margin-right: 10px;
  }
  .gnav_item_contact.consulting{
    background: #c41f1f;
  }
  .gnav_item_contact_txt1{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .gnav_item_contact_txt2{
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0;
    border-top: 1px solid #fff;
  }
  .gnav_item_contact_txt2:before{
    content: "\f0e0";
    font-family: 'FontAwesome';
    font-weight: 900;
    display: inline-block;
    padding-right: 5px;
  }

  .pg_header{
    margin-bottom: 100px;
    margin-top: -10px;
  }
  .pg_header_mv{
    height: 350px;
  }

  .gnav {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav .gnav_item {
    width: 25%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding: 0 5px;
    /*line-height: 2;*/
    font-weight: normal;
    letter-spacing: 0.075em;
  }
  .gnav .gnav_item:nth-child(n+5){
    margin-top: 10px;
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /*下層ヘッダー*/
  .hdr_img:before{
    padding-top: 400px;
  }
  .hdr_txt{
    width: 500px;
  }
  .hdr_en{
    font-size: 42px;
  }
  .hdr_ttl{
    font-size: 18px;
  }

  .hdr_txt_inner1:before,
  .hdr_txt_inner1:after,
  .hdr_txt_inner2:before,
  .hdr_txt_inner2:after{
    width: 60px;
    height: 60px;
  }
  .hdr_inner_txt{
    padding: 30px 0;  
  }

  .mv_items.flex{
    justify-content: space-between;
  }
  .mv_item_single{
    width:49.89%;

  }
  .mv_item_single:nth-child(n+3){
    margin-top: 5px;
  }
  .mv_item_single_img:before{
    padding-top: 110%;
  }
  .mv_item_single_txt{
    font-size: 22px;
    width: 360px;
  }
  .mv_txt{
    font-size: 100px;
  }

}
@media (min-width:1024px){
  .header{
    padding-right: 40px;
    background: transparent;
  }
  .header:after{
    height:140px;
  }
  .hdr_logo{
    width: auto;
  }
  .pg_header{
    margin-bottom: 150px;
    margin-top: -30px;
  }
  .pg_header_mv{
    height: 550px;
  }
  .gnav .gnav_item{
    letter-spacing: 0;
    font-size: 15px;
    padding: 0;
  }

  .header_box2_top{
    margin-top: 10px;
  }

  .header_box2_bottom{
    margin-top: 10px;
  }
  .gnav_item_contact_txt1,
  .gnav_item_contact_txt2{
    font-size: 14px;
  }
  .gnav_item_contact{
    width: 200px;
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }

  .mv{
    margin-top: -20px;
  }
  .mv_txt{
    font-size: 74px;

  }
  .mv_item_single_img:before{
    padding-top: 280px;
  }
  /*下層ヘッダー*/
  .hdr_img:before{
    padding-top: 500px;
  }
  .hdr_txt{
    width:730px;
  }
  .hdr_en{
    font-size: 50px;
  }
  .hdr_ttl{
    font-size: 20px;
  }

  .mv_item_single_txt{
    font-size: 26px;
    width: 460px;
  }
  .hdr_inner_txt{
    padding: 30px 0 45px 0;
  }
  .header_box2{
    width: 70%;
  }
}
@media (min-width:1100px){
  .mv{
    margin-top: -40px;
  }
}
@media (min-width:1200px){
  .header_box2{
    width: auto;
  }
  .header:after{
    height:160px;
  }
  .mv{
    margin-top: -40px;
  }
  .mv_img.img_fit:before{
    padding-top: 880px;
  }
  .mv_txt{
    font-size: 120px;
  }
  .header_box2_top{
    margin-top: 16px;
  }
  .header_box2_bottom{
    margin-top: 16px;
  }
  .gnav .gnav_item{
    letter-spacing: 0.075em;
    padding: 0 5px;
  }

  .mv_item_single_img:before{
    padding-top: 41.75%;
  }
  /*下層ヘッダー*/
  .hdr_img:before{
    padding-top: 650px;
  }
}
@media (min-width:1400px){
  .header:after{
    height:150px;
  }
  .header_box2_bottom{
    margin-top: 26px;
  }
  .mv{
    margin-top: -30px;
  }
  .gnav .gnav_item{
    width: auto;
    text-align: left;
    padding: 0 5px;
    font-size: 14px;
  }
  .gnav .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .header_box1_txt{
    font-size: 18px;
  }

}
@media (min-width:1500px){
  .gnav .gnav_item{
    padding: 0 5px;
    font-size: 15px;
  }
  .header_box1_txt{
    font-size: 21px;
  }
}
@media (min-width:1600px){
  .gnav .gnav_item{
    padding: 0 10px;
  }
}
@media (min-width:1700px){
  .gnav .gnav_item{
    padding: 0 16px;
  }
}
@media (max-width:767px){

  .hdr1 {
  }
  .hdr_contact{
    display: none;
  }
  .header_box2_top{
    display: none;
  }
  .hdr_logo{
    width: 100px;
  }
  .header_box1_txt{
    font-size: 16px;
    margin-left: 10px;
  }
  .header_box1_txt strong{
    font-size: 12px;
  }

  .mv_item_single_txt{
    width: 95%;
  }
  .mv_txt{
    top: 60%;
  }
  .mv_item_single_txt{
    top: 40%;
    padding: 10px 0;
  }
  /* スマホ用 */
  .gnav{
    display:block !important;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
    display: block;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav .gnav_item{
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
    color: inherit;
    justify-content: center;
    display: block;
    text-align: left;
  }
  .gnav_item:before{
    display: none;
  }
  .gnav .gnav_item + .gnav_item,
  .gnav .gnav_item:first-child,
  .gnav .gnav_item:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .gnav_bg{
    padding: 0;
    background: inherit;
  }

  .gnav_item .gnav_item_sub{
    display: block;
    position: static;
    width: 100%;
    background: aliceblue;
    padding: 15px;
    margin-top: 20px;
  }
  .gnav .gnav_item:hover{
    color: #000000;
  }

  .hdr_txt_inner1:before,
  .hdr_txt_inner1:after,
  .hdr_txt_inner2:before,
  .hdr_txt_inner2:after{
    width: 35px;
    height: 35px;
  }
  .hdr_txt{
    width: 330px;
  }

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

  .gnav{
    display: block;
    position: fixed;
    left: 100%;
    top: auto;
    z-index: 10;
    height: 0;
    /* background: #47a3cd; */
    /* padding: 20px 15px; */
    font-size: 16px;
    /* overflow: hidden; */
    border-radius: 0;
    transition: all 1.8s;
    opacity: 0;
    color: #fff;
    margin: auto;
  }
  .gnav.active {
    /* background: #fff; */
    /* display: block; */
    /* align-items: center; */

    /*    -webkit-transform: translate(0, -50%);*/
    /*    transform: translate(0, -50%);*/
    height: auto;
    opacity: 1;
  }
  .gnav.active{
    width: 90%;
    top: 50%;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 0;
    background: #181818;
  }
  .gnav .inner{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
  }
  .tb_burger{
    margin-top: 5px;
    z-index: 1;
    position: relative;
    min-width: 100px;
    text-align: center;
  }
  .gnav .inner .gnav_item{
    font-size: 15px;
    /* line-height: 2; */
    font-weight: 500;
    width: 25%;
    text-align: center;
    padding: 0;
    border: 1px solid #eee;
    color: #fff;
    background: #181818;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header:after{
    height: 130px;
  }
  .header_box2_top .flex{
    justify-content: flex-end;
    width: 100%;
  }
  .gnav .inner .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .tb_burger p,
  .tb_burger .fa{
    color: #fff;
  }
  .tb_burger .fa{
    font-size: 36px;
  }
  .header{
    align-items: flex-start;
    background: #000000;
  }
  .header_box1{
    width: 45%;
  }
  .header_box2{
    width: 54%;
  }

  .shop_concept_item1_title{
    width: 100%;
  }
  .shop_concept_item1_title:before{
    width: 95px;
  }
  .shop_concept_item1_title:after{
    width: 95px;
  }
  .shop_concept_item1_title{
    margin-bottom: 50px;
  }
  .shop_concept_item2{
    padding-top: 10px;
  }
  .message_item_title_txt{
    line-height: 1.6em;  
  }

}


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

.footer{
  background: #000000;
  margin-top: 80px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.footer .ftr_border{
  height: 3px;
  background: #fff;
  position: relative;
  margin-bottom: 40px;
}
.footer .ftr_border:before{
  content: "";
  display: block;
  background: #1b3c99;
  width: 100%;
  height: 5px;
  position: absolute;
  top: -8px;
}
.footer .ftr_border:after{
  content: "";
  display: block;
  background: #c41f1f;
  width: 100%;
  height: 5px;
}
.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_info_box{
  text-align: center;
}
.ftr_contact_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.ftr_contact_btns .gnav_item_contact{
  padding: 2px 5px;
}
.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}

/*.ftr_info_wrap{
  display: flex;
}
.ftr_info_box1{
  width: 90px;
  padding-right: 20px;
  position: relative;
}
.ftr_info_box1:after{
  content: " /";
  position: absolute;
  right: 5px;
  top: 0;
}
.ftr_info_box2{
  width: calc(100% - 90px);
}*/

.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;
  letter-spacing: 0.075em;
  text-align: center;
  background: #fff;
  color: #181818;
  padding: 5px;
  margin-top: 40px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  z-index: 1000;
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 10px;
  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 #000000;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  color: #fff;
  background: #000000;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.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;
  right: 10px;
  bottom: 70px;
  z-index: 100;
}
/* チャットボットより上に */
.pagetop.on{
  z-index: 1000000000;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4e4f50;
}
.pagetop a i{
  font-size: 40px;
}

/*店舗紹介*/
.ftr_shop_items{
  display: flex;
  flex-wrap: wrap;
  margin: 25px -15px 0;
  position: relative;
  padding-top: 30px;
}
.ftr_shop_items:before{
  content: "";
  display: block;
  width: 100vw;
  background: #fff;
  height: 1px;
  position: absolute;
  top: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.ftr_shop_item{
  color: #fff;
}
.ftr_shop_item_img:before{
  padding-top: 82.35%;
}
.ftr_shop_item_name{
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.666em;
  text-align: center;
  margin-top: 16px;
}
.ftr_shop_address{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2em;
  text-align: center;
  margin-top: 16px;
}
.ftr_link:hover{
  color: #fff;
}
@media (min-width:375px){

}

@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-bottom: 30px;
  }

  .ftr_links {
    margin: 24px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    padding: 12px 0;
  }
  .ftr_link {
    width: 25%;
    text-align: center;
    font-size: 15px;
    padding: 0;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.075em;
    position: relative;
    color: #fff;
  }
  .ftr_links .ftr_link:first-child {
    padding-left: 0;
  }
  .ftr_links .ftr_link:last-child {
    padding-right: 0;
    border-right: none;
  }
  .ftr_link:nth-child(n+5) {
    margin-top: 16px;
  }

  .ftr_shop_items{
    padding-top: 50px;
  }
  .ftr_shop_item{

  }
  .ftr_shop_item:nth-child(n+3){
    margin-top: 36px;
  }
  .ftr_shop_item_name{
    font-size: 18px;
    margin-top: 20px;
  }
  .ftr_shop_address{
    margin-top: 20px;
  }

  .ftr_copy{
    margin-top: 60px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .ftr_link {
    width: auto;
    text-align: left;
    padding: 0 5px;
  }
  .ftr_link:nth-child(n+5) {
    margin-top: 0;
  }
  .footer .ftr_border{
    margin-bottom: 50px;
  }
  .ftr_shop_item:nth-child(n+3){
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .ftr_link {
    padding: 0 16px;
  }
}
@media (max-width:767px){
  .ftr_addr em{
    display: block;
  }

  .ftr_contact_btns .gnav_item_contact {
    width: 65%;;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.075em;
    padding: 5px;
  }
  .ftr_contact_btns .gnav_item_contact.recruit{
    background: #1b3c99;
  }
  .ftr_contact_btns .gnav_item_contact.consulting{
    background: #c41f1f;
  }
  .ftr_contact_btns .gnav_item_contact:nth-child(n+2){
    margin-top: 16px;
  }
  .gnav_item_contact_txt1 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .gnav_item_contact_txt2 {
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0;
    border-top: 1px solid #fff;
  }
  .ftr_links{
    display: none;
  }

  /*店舗紹介*/
  .ftr_link:nth-child(n+2) {
    margin-top: 20px;;
  }
  .ftr_shop_item:nth-child(n+2){
    margin-top: 20px;
  }
}



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

/* Flexテーブルレイアウト */
.fl_tbl_items{
  border: 1px solid #cab386;
  margin-bottom:80px;
}
.fl_tbl_items_item{
  display: flex;
  letter-spacing: 0.05em;
}
.fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #cab386;
}

.fl_tbl_items_item_box1,
.fl_tbl_items_item_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 70px;
}
.fl_tbl_items_item_box1{
  width:31.53%;
  background: #eeeeee;
  padding: 10px 5px;
  border-right: 1px solid #cab386;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fl_tbl_items_item_box2{
  width:68.47%;
  background: #fff;
}
.fl_tbl_items_item_txt{
  width: 100%;
  padding: 10px 10px;
}
.fl_tbl_items_item_txt + .fl_tbl_items_item_txt{
  border-top: 1px solid #cab386;
}

/* 青 */
.fl_tbl_items.blue{
  border: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item_box1{
  background: #eff8fc;
  border-right: 1px solid #7ecef4;
}

@media (min-width:375px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px;
  }
}
@media (min-width:768px){
}
@media (min-width:1024px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px 10px 60px;
  }
  .fl_tbl_items_item_txt{
    padding: 10px 10px 10px 25px;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .footer_fix{
    display: flex;
  }

  body{
    padding-bottom: 56px;
  }
}


/* テーブル用 */
.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: 20px 15px;
}
.table_rows_th{
  background-color: #eeeeee;
}
.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: 100px 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;
}

/* もっとみるボタン */
.read_more{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.read_more a{
  width: 200px;
  font-size: 15px;
  font-weight: 300;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
  background: #ffffff;
  border: 1px solid #808080;
  padding: 16px 5px;
}


@media (max-width:374px){

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

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

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

  /* もっとみるボタン */
  .read_more{
  }
  .read_more a{
    width: 350px;
    font-size: 15px;
  }

  .webgene-pagination{
    margin-top: 100px;
  }
}
@media (min-width:1024px){


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


}


/*******************************
*　下層共通
********************************/

/* コンテナ */
.container-w{
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* セクション */
.section{
  position: relative;
  z-index: 1;
}
.section + .section{
  margin-top: 50px;
}

/* tt2 */
.tt2_box{
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.tt2_txt{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #959595;
  position: relative;
  z-index: 1;
}
.tt2_txt.en{
  font-size: 24px;
  font-weight: 200;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
}
.tt2_box:after{
  content: "";
  background: #f9f7f7;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
}

.link_1{
  max-width: 350px;
  width: 100%;
  font-size: 15px;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  margin: 32px auto 0;
  padding: 5px;
  display: block;
  text-align: center;
  position: relative;
  letter-spacing: 0.075em;
  font-weight: 500;
  background-image:url(/system_panel/uploads/images/link_bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;;
}
.link_1 p{
  background: #fff;
  padding: 14px 0;
}
.link_1:hover{

}

@media (max-width:767px){

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

  /* セクション */
  .section + .section{
    margin-top: 80px;
  }

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

  /* セクション */
  .section + .section{
    margin-top: 120px;
  }

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

}


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

}
.pg_home .section.sec1{
  margin-top: 50px;
}
.pg_home .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  padding-top: 60px;
  border-top: 1px solid #000000;
}


/*コンセプト*/
.home_concept_wrap{

}
.home_concept_title{
  text-align: center;
  position: relative;
  z-index: 1;
}
.home_concept_title_txt{
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.home_concept_img{
  margin-top: -16px;
}
.home_concept_img .img_fit:before{
  padding-top: 34.23%;
}
.home_concept_msg{
  background:rgba(248,248,248,0.9);
  position: relative;
  padding: 12px;
  margin-top: -16px;
}
.home_concept_msg_title{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 16px 5px;
}
.home_concept_msg_desc{
  text-align: justify;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;

}
.home_concept_wrap .hdr_txt_inner2{
  padding-bottom: 10px;
}
.home_concept_wrap .link_1{

}

/*繰り返し*/
.home_contents_wrap{

}
.home_contents_items{

}
.home_contents_item.flex{
  justify-content: space-between;
}
.home_contents_item:nth-child(n+2){
  margin-top: 50px;
}
.home_contents_item:nth-child(odd){
  position: relative;
}
.home_contents_item:nth-child(odd):before{
  content: "";
  display: block;
  width: 100vw;
  height:450px;;
  background: #f5f5f5;
  margin-left: calc(-50vw + 50%);
  z-index: -1;
  position: absolute;
  top: 150px;
  right: 26px;
}
.home_contents_item:nth-child(even){
  position: relative;
}
.home_contents_item:nth-child(even):before{
  content: "";
  display: block;
  width: 100vw;
  height:450px;;
  background: #f5f5f5;
  margin-right: calc(-50vw + 50%);
  z-index: -1;
  position: absolute;
  top: 150px;
  left: 26px;
}
.home_contents_item:first-child:before{
  display: none;
}
.home_contents_item.first .home_contents_item1_title_en:after{

}
.home_contents_item1{
  width: 100%;
}
.home_contents_item1_title_en{
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.136em;
  color: #f3f3f3;
  position: relative;
  z-index: 1;
}
.home_contents_item.first .home_contents_item1_title_en:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/item1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 114px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
}
.home_contents_item.second .home_contents_item1_title_en:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/item2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 167px;
  height: 140px;
  position: absolute;
  top: 0;
  right: 0;
}
.home_contents_item.third .home_contents_item1_title_en:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/item3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 97px;
  height: 141px;
  position: absolute;
  top: 0;
  right: 0;
}
.home_contents_item1_title_ja{

}
.home_contents_item.first .home_contents_item1_title_ja{
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.home_contents_item1_title_ja .txt1{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
}
.home_contents_item1_title_ja .txt2{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.home_contents_item1_desc{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  margin-top: 24px;
  text-align: justify;
}
.home_contents_wrap .link_1{

}
.home_contents_item2{
  width: 100%;
  margin-top: 28px;
}
.home_contents_item2.double{
  display: flex;
  position: relative;
  margin-top: 28px;
}
.home_contents_item2.double .home_contents_item2_img{
  -webkit-mask-image: url(/system_panel/uploads/images/slash_bg.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 79% auto;
  mask-image: url(/system_panel/uploads/images/slash_bg.png);
  mask-repeat: no-repeat;
  mask-size: 79% auto;
}
.home_contents_item2.double .home_contents_item2_left{
  width: 52.77%;
  position: relative;
  /*  position: absolute;
    left: 0;
    bottom: 0;*/
}
.home_contents_item2.double .home_contents_item2_img{
  width: 480px;
}
.home_contents_item2.double .home_contents_item2_right{
  width: 47.2222%;
  position: relative;
  /*  position: absolute;
    : 0;
    bottom: 0;*/
}
.home_contents_item2.double .home_contents_item2_img:before{
  padding-top: 66.6666%;
}
.home_contents_item2_img:before{
  padding-top: 73.68%;
}

.home_contents_msg_wrap{
  margin-top: 60px;
}
.home_contents_msg_txt{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.9em;
  text-align: justify;
}
.home_contents_msg_wrap .link_1{

}
/*コンサルティング事業*/
.home_consulting_wrap{

}
.home_consulting_box{
  background: #f5f5f5;
  border: 2px solid #000000;
  padding: 10px 20px 20px;;
}
.home_consulting_title{
  text-align: center;
}
.home_consulting_title_en{
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: #fff;
}
.home_consulting_title_ja{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.home_consulting_desc{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.9em;
  text-align: justify;
  margin-top: 20px;
}
.home_consulting_image{
  margin-top: 20px;
}
.home_consulting_img:before{
  padding-top: 32.65%;
}
.home_consulting_wrap .link_1{

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

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

}
@media (max-width:767px){
  .body_home .footer{
    margin-top: 100px;
  }
  .home_concept_msg_title{
    padding: 30px 10px 0;
  }
  .home_concept_msg_desc{
    margin-top: 16px;
  }
  .home_concept_wrap .link_1{
    max-width: 260px;
  }
  .home_concept_wrap .hdr_txt_inner2{
    padding-bottom: 36px;
  }
  .home_contents_item2.double{
    flex-wrap: wrap;
  }
  .home_contents_item2.double .home_contents_item2_left{
    width: 100%;
  }
  .home_contents_item2.double .home_contents_item2_right{
    width: 100%;
    margin-top: 16px;
  }
  .home_contents_item2.double .home_contents_item2_img{
    width: 100%;
    -webkit-mask-size: 100% auto;
  }

  .home_contents_item1_title_en{
    display: block;
    font-size: 42px;
    display: inline-block;
  }
  .home_contents_item.first .home_contents_item1_title_en:after{
    top: -10px;
    right: -20px;
  }
  .home_contents_item.second .home_contents_item1_title_en:after{

  }
  .home_contents_item.third .home_contents_item1_title_en:after{
    top: -35px;
    right: 0;
  }
  .home_contents_item:nth-child(odd):before{
    margin-right: calc(-50vw + 50%);
    right: 0;
    top: 90px;
  }
  .home_contents_item:nth-child(even):before{
    margin-left: calc(-50vw + 50%);
    left: 0;
    top: 90px;
  }
  .home_contents_item.first .home_contents_item1_title_ja{
    margin-top: -12px;
  }
  .home_contents_wrap .link_1{
    background-image: url(/system_panel/uploads/images/link_bg2.png);
    max-width: 220px;
    margin-top: 23px;
    font-size: 15px;
  }
  .home_contents_item.first .home_contents_item1_title_en:after{
    width: 73px;
    height: 62px;
  }
  .home_contents_item.second .home_contents_item1_title_en:after{
    width: 72px;
    height: 60px;
  }
  .home_contents_item.third .home_contents_item1_title_en:after{
    width: 53px;
    height: 84px;
  }
  .home_contents_item1_title_ja{
    margin-top: 16px;
  }

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

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

  /*コンセプト*/
  .home_concept_wrap{

  }
  .home_concept_title{

  }
  .home_concept_title_txt{
    font-size: 56px;
  }
  .home_concept_img{
    margin-top: -30px;
  }

  .home_concept_msg{
    width: 65.76%;
    margin:-45px auto 0;
  }
  .home_concept_msg_title{
    font-size: 24px;
    padding: 20px 5px;
  }
  .home_concept_msg_desc{
    text-align: center;
  }
  .home_concept_wrap .link_1{
    background-image: url(/system_panel/uploads/images/link_bg2.png);
    max-width: 220px;
    margin-top: 23px;
    font-size: 15px;
  }
  .home_concept_wrap .link_1 p{
    padding: 10px;
  }
  .home_concept_wrap .hdr_txt_inner2{
    padding-bottom: 20px;
  }

  /*繰り返し*/
  .home_contents_wrap{

  }
  .home_contents_items{

  }
  .home_contents_item.flex{

  }
  .home_contents_item:nth-child(n+2){
    margin-top: 60px;
  }
  .home_contents_item1{
  }
  .home_contents_item:nth-child(odd):before{
    margin-right: calc(-50vw + 50%);
    right: auto;
  }
  .home_contents_item:nth-child(even):before{
    margin-left: calc(-50vw + 50%);
    left: auto;
  }
  .home_contents_item.first .home_contents_item1_title_en:after{
    width: 114px;
    height: 100px;
  }
  .home_contents_item.second .home_contents_item1_title_en:after{
    width: 167px;
    height: 140px;
    top: -45px;
  }
  .home_contents_item.third .home_contents_item1_title_en:after{
    width: 97px;
    height: 141px;
    top: -45px;
  }
  .home_contents_item1_title_en{
    font-size:70px;
    display: inline-block;
  }
  .home_contents_item1_title_ja{
    margin-top: 20px;
  }
  .home_contents_item1_title_ja .txt1{
    font-size:26px;
  }
  .home_contents_item1_title_ja .txt2{
    font-size:26px;
  }
  .home_contents_item1_desc{

  }
  .home_contents_wrap .link_1{
    background-image: url(/system_panel/uploads/images/link_bg2.png);
    max-width: 220px;
    margin-top: 50px;
    font-size: 15px;
  }
  .home_contents_wrap .link_1 p{
    padding: 10px 0;
  }
  .home_contents_item2{

  }


  .home_contents_item2.double{

  }
  .home_contents_item2_right{
    margin-left: -50px;
  }
  .home_contents_item2.double .home_contents_item2_img{
    width: 480px;
  }
  .home_contents_item2_left{
    margin-top: 30px;
  }
  /*.home_contents_item2.double .home_contents_item2_img.one{
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
    .home_contents_item2.double .home_contents_item2_img.two{
      position: absolute;
    top: 10px;
      left: inherit;
      right: -75px;
    }*/
  .home_contents_msg_wrap{
    margin-top: 90px;
  }
  .home_contents_msg_txt{
    font-size: 20px;
    text-align: center;
  }
  .home_contents_msg_wrap .link_1{
    margin-top: 40px;
  }
  /*コンサルティング事業*/
  .home_consulting_wrap{

  }
  .home_consulting_box{
    padding: 10px 30px 30px;;
  }
  .home_consulting_title{

  }
  .home_consulting_title_en{
    font-size: 60px;
  }
  .home_consulting_title_ja{

  }
  .home_consulting_desc{

    margin-top: 30px;
  }
  .home_consulting_image{
    margin-top: 26px;
  }
  .home_consulting_img:before{

  }
  .home_consulting_wrap .link_1{

  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    margin-top: 105px;
  }
  .pg_home .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 120px;
  }
  /*コンセプト*/
  .home_concept_wrap{

  }
  .home_concept_title{

  }
  .home_concept_title_txt{
    font-size: 62px;
  }
  .home_concept_img{

  }

  .home_concept_msg{
    margin-top: -95px;
  }
  .home_concept_msg_title{
    font-size: 23px;
  }
  .home_concept_msg_desc{

  }
  .home_concept_wrap .link_1{

  }

  /*繰り返し*/
  .home_contents_wrap{

  }
  .home_contents_items{

  }
  .home_contents_item.flex{

  }
  .home_contents_item:nth-child(odd):before{
    right: 34.53%;
    height: 430px;
    bottom: -45px;
    top: auto;
    margin-right: auto;
  }
  .home_contents_item:nth-child(even):before{
    left: 34.53%;
    height: 430px;
    bottom: -45px;
    top: auto;
    margin-left: auto;
  }
  .home_contents_item.first .home_contents_item1{
    width: 51.35%;
  }
  .home_contents_item.first .home_contents_item2{
    width: 48.64%;
  }
  .home_contents_item.third .home_contents_item1_title_en:after{
    top: -13px;
    right: -40px;
  }
  .home_contents_item:nth-child(n+2){
    margin-top: 85px;
  }
  .home_contents_item:nth-child(odd) .home_contents_item1{
    order: 1;
  }
  .home_contents_item:nth-child(odd) .home_contents_item2{
    order: 2;
  }
  .home_contents_item:nth-child(even) .home_contents_item1{
    order: 2;
  }
  .home_contents_item:nth-child(even) .home_contents_item2{
    order: 1;
  }
  .home_contents_item1{
    width: 42.79%;
  }
  .home_contents_item1_title_en{
    font-size: 88px;
    display: block;
  }
  .home_contents_item.second .home_contents_item1_title_en{
    margin-left: -260px;
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .home_contents_item2_left{
    margin-top: 0;
  }
  .home_contents_item1_title_ja{

  }

  .home_contents_item.second .home_contents_item1_title_ja, 
  .home_contents_item.third .home_contents_item1_title_ja {
    margin-top: 40px;
  }
  .home_contents_item1_title_ja .txt1{
    font-size: 36px;
  }
  .home_contents_item1_title_ja .txt2{
    font-size: 28px;
  }
  .home_contents_item1_desc{

  }
  .home_contents_wrap .link_1{

  }
  .home_contents_item2{
    width: 51.35%;
    margin-top: 0;
  }
  .home_contents_item2.double{
    height: auto;
    margin-top: 0;
    justify-content: flex-end;
  }
  .home_contents_item.second .home_contents_item2{
    padding-top: 190px;
  }
  .home_contents_item.third .home_contents_item2{
    padding-top: 200px;
  }
  .home_contents_item2.double .home_contents_item2_img{
    width: 430px;
  }
  .home_contents_item2.double .home_contents_item2_img.one{
    position: absolute;
    bottom: auto;
    top: 100px;
    left: -40px;
  }
  .home_contents_item2.double .home_contents_item2_img.two{
    position: absolute;
    top: 10px;
    left: 45px;
    right: auto;
  }

  .home_contents_wrap .home_contents_item:nth-child(odd) .link_1{
    margin-left: 0;
    margin-right: auto;
  }
  .home_contents_wrap .home_contents_item:nth-child(even) .link_1{
    margin-left: auto;
    margin-right: 0;
  }
  .home_contents_item.first .home_contents_item1_title_en:after{
    right: 0;
    top: 10px;
  }
  .home_contents_item.second .home_contents_item1_title_en:after{
    right: 5px;
    top: -23px;
  }

  .home_contents_item.second .home_contents_item1_title_en,
  .home_contents_item.third .home_contents_item1_title_en{
    padding-top: 50px;
  }
  /*コンサルティング事業*/
  .home_consulting_wrap{

  }
  .home_consulting_box{
    padding: 10px 65px 60px;;
  }
  .home_consulting_title{

  }
  .home_consulting_title_en{
    font-size: 88px;
  }
  .home_consulting_title_ja{
    font-size: 20px;
  }
  .home_consulting_desc{
    font-size: 20px;
    margin-top: 36px;
    text-align: center;
  }
  .home_consulting_image{

  }
  .home_consulting_img:before{

  }
  .home_consulting_wrap .link_1{

  }
  .home_contents_msg_wrap{
    margin-top: 120px;
  }

}
@media (min-width:1200px){
  /*コンセプト*/
  .home_concept_wrap{

  }
  .home_concept_title{

  }
  .home_concept_title_txt{
    font-size: 62px;
  }
  .home_concept_img{

  }

  .home_concept_msg{

  }
  .home_concept_msg_title{
    font-size: 28px;
  }
  .home_concept_msg_desc{

  }
  .home_concept_wrap .link_1{

  }
  /*繰り返し*/
  .home_contents_item2.double{
    justify-content: flex-start;
  }

  .home_contents_item2.double .home_contents_item2_img{
    width: 630px;
  }
  .home_contents_item2.double .home_contents_item2_img.one{
    top: inherit;
    bottom: 0;
    left: -30px;
  }
  .home_contents_item2.double .home_contents_item2_img.two{
    left: 100px;
  }
  .home_contents_item.second .home_contents_item2{
    padding-top: 145px;
  }
  .home_contents_item.third .home_contents_item2{
    padding-top: 150px;
  }
  .home_contents_item.second .home_contents_item1_title_en{
    margin-left: -190px;
  }

  .home_contents_item1_title_ja .txt1{
    font-size: 38px;
  }
  .home_contents_item.first .home_contents_item1_title_en:after{
    right: 115px;
    top: 10px;
  }
  .home_contents_item.second .home_contents_item1_title_en,
  .home_contents_item.third .home_contents_item1_title_en{
    padding-top: 0;
  }

  .home_contents_item:nth-child(odd):before{
    bottom: -45px;
  }
  .home_contents_item:nth-child(even):before{
    bottom: -50px;
  }


}




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


/* コピー用 */
@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;
  }


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


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


}
/*******************************
*　コンサルティング事業
********************************/
.pg_consulting{

}
.pg_consulting .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_consulting .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_consulting .section.sec3{
  margin-top: 60px;
}

/*見出し*/
.consulting_header_wrap{

}
.consulting_header_title{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.666em;
}
.consulting_header_desc{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: justify;
  line-height: 2;
  margin-top: 28px;
}
/*課題*/
.assignment_wrap{
  position: relative;
  margin-top: 50px;
  padding: 40px 0;
}
.assignment_wrap:before{
  content: "";
  display: block;
  background: #dfdfdf;
  width: 100vw;
  height: 100%;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: absolute;
  top: 0;
  z-index: -1;
}
.pg_consulting_title_box{

}
.pg_consulting_title_box:after{
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-image: url(/system_panel/uploads/images/consalu_title.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 10px auto 0;
}
.pg_consulting_title{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.assignment_items.flex{
  margin: 50px -15px 0;
}
.assignment_item{

}
.assignment_item_inner{
  background: #fff;
  position: relative;
  padding: 30px 0;
}
.assignment_item_num{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #fff;
  background: #999999;
  border-radius: 50%;
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.assignment_item_title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.6em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assignment_item_img{
  text-align: center;
  margin-top: 20px;
}

/*できること*/
.strategy_wrap{

}
.strategy_items{
  margin-top: 40px;
}
.strategy_item{
  border: 1px solid #181818;
}
.strategy_item:nth-child(n+2){
  margin-top: 28px
}
.strategy_item_inner.flex{
  justify-content: space-between;
  position: relative;
}
.strategy_item_box1{
  width: 100%;
  padding-top: 20px;
}
.strategy_item_box1_hosoku{
  background: #c41f1f;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 10px;
}
.strategy_item_box1_hosoku strong{
  font-size: 18px;
  font-weight: 600;
}
.strategy_item_box1_title{

}
.strategy_item_box1_title_txt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.strategy_item_box1_content{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  margin-top: 16px;
  text-align: justify;
}
.strategy_item_box2{
  width: 100%;
}
.strategy_item_box2_img:before{
  padding-top: 69.47%; 
}

/*実績*/
.consulting_case_wrap{

}
.consulting_case_items.flex{
  margin: 30px -15px 0;
}
.consulting_case_item{

}
.consulting_case_item_img:before{
  padding-top: 78.43%;
}
.consulting_case_item_title{
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
.consulting_case_link{
  max-width: 540px;
  width: 100%;
  font-size: 16px;
  margin: 32px auto 0;
  padding: 16px 0; 
  display: block;
  text-align: center;
  position: relative;
  letter-spacing: 0.075em;
  border: 1px solid #7c7c7c;
  font-weight: 600;
  color: #c41f1f;
}

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

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

}
@media (max-width:767px){
  /*課題*/
  .assignment_item:nth-child(n+2){
    margin-top: 40px;
  }

  /*できること*/
  .strategy_item_inner.flex{
    padding: 30px 20px;
  }
  .strategy_item_box2{
    margin-top: 20px;
  }
  .strategy_item_box1_title_txt{
    text-align: center;
    line-height: 1.66em;
  }

  .consulting_case_item:nth-child(n+2){
    margin-top: 28px;
  }
}
@media (min-width:768px){
  .pg_consulting{

  }
  .pg_consulting .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_consulting .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_consulting .section.sec3{
    margin-top: 100px;
  }
  /*見出し*/
  .consulting_header_wrap{

  }
  .consulting_header_title{
    font-size: 30px;
  }
  .consulting_header_desc{
    margin-top: 30px;
  }
  /*課題*/
  .assignment_wrap{
    padding: 60px 0px 45px;
    margin-top: 80px;
  }
  .pg_consulting_title_box{

  }
  .pg_consulting_title{

  }
  .assignment_items.flex{
    margin-top:50px;
  }
  .assignment_item{

  }
  .assignment_item_inner{
    padding: 40px 0 30px;
  }

  .assignment_item_num{
    font-size: 24px;
  }
  .assignment_item_title{

  }
  .assignment_item_img{

  }
  /*できること*/
  .strategy_wrap{

  }
  .strategy_items{
    margin-top: 60px;
  }
  .strategy_item{

  }
  .strategy_item:nth-child(n+2){
    margin-top: 40px
  }
  .strategy_item_inner.flex{
    padding: 30px;
  }
  .strategy_item_box1{
    width: 66.69%;
    padding-top: 26px;
  }
  .strategy_item_box1_hosoku{

  }
  .strategy_item_box1_hosoku strong{
    font-size: 20px;
  }
  .strategy_item_box1_title{

  }
  .strategy_item_box1_title_txt{

  }
  .strategy_item_box1_content{

  }
  .strategy_item_box2{
    width: 28.16%;
  }

  /*実績*/
  .consulting_case_wrap{

  }
  .consulting_case_items.flex{
    margin-top: 50px;
  }
  .consulting_case_item{

  }
  .consulting_case_item:nth-child(n+3){
    margin-top: 30px;
  }
  .consulting_case_item_img:before{

  }
  .consulting_case_item_title{
    font-size: 20px;
  }
  .consulting_case_link{
    margin-top: 70px;
  }
}
@media (min-width:1024px){
  .pg_consulting{

  }
  .pg_consulting .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_consulting .section.sec2{
    margin-top: 145px;
  }
  .pg_consulting .section.sec3{
    margin-top: 140px;
  }
  /*見出し*/
  .consulting_header_wrap{

  }
  .consulting_header_title{
    line-height: normal;
  }
  .consulting_header_desc{
    text-align: center;
  }
  /*課題*/
  .assignment_wrap{
    padding: 60px 0px 60px;
    margin-top: 115px;
  }
  .pg_consulting_title_box{

  }
  .pg_consulting_title{
    font-size: 24px;
  }
  .assignment_items.flex{
    margin-top:70px;
  }
  .assignment_item{

  }
  .assignment_item_num{

  }
  .assignment_item_title{
    font-size: 20px;
  }
  .assignment_item_img{

  }
  /*できること*/
  .strategy_wrap{

  }
  .strategy_items{
    margin-top: 70px;
  }
  .strategy_item{

  }
  .strategy_item:nth-child(n+2){
    margin-top: 50px
  }
  .strategy_item_inner.flex{
    padding: 30px 33px 30px 65px;
  }
  .strategy_item_box1{

  }
  .strategy_item_box1_hosoku{

  }
  .strategy_item_box1_hosoku strong{

  }
  .strategy_item_box1_title{

  }
  .strategy_item_box1_title_txt{
    font-size: 24px;
  }
  .strategy_item_box1_content{

  }
  .strategy_item_box2{

  }
  /*実績*/
  .consulting_case_wrap{

  }
  .consulting_case_items.flex{
    margin-top: 60px;
  }
  .consulting_case_item{

  }
  .consulting_case_item:nth-child(n+3){
    margin-top: 0;
  }

  .consulting_case_item_img:before{

  }
  .consulting_case_item_title{

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


}

/*******************************
*　代表メッセージ
********************************/

.pg_message{

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

.message_wrap{

}
.message_items.flex{
  justify-content: space-between;
}
.message_item.daihyo{
  width: 100%;
}
.message_item.daihyo .message_item_img:before{
  padding-top: 131.57%;
}
.message_item.msg{
  width: 100%;
}
.message_item_title{

}
.message_item_title_txt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.message_item_txt{
  margin-top: 20px;
}
.msg_block{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
}
.msg_block:nth-child(n+2){
  margin-top: 20px;
}
.msg_block.last{
  text-align: right;
}
.msg_block.last strong{
  font-size: 18px;
  font-weight: 500;
}
.message_item.imgs{
  width: 100%;
}
.message_item_imgs.flex{

}
.message_img_item{
  width: 100%;
}
.message_img_item:before{
  padding-top: 73.68%;
}

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

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

}
@media (max-width:767px){
  .message_img_item{
    margin: 0 15px;
  }
  .message_item_imgs{
    margin: 50px -15px 0;
  }

  /*代表*/
  .message_item_img{
    width: 75%;
    margin: 0 auto;
  }
  /*メッセージ*/
  .message_item.msg{
    margin-top:20px;
  }
  .message_item_title_txt{
    line-height: 1.6em;  
  }
  /*スライダー*/
  .shop_concept_wrap .slick-arrow,
  .message_wrap .slick-arrow{
    font-size: 22px;
    color: #181818;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .shop_concept_wrap .slide-prev,
  .message_wrap .slide-prev{
    left: 20px;
    z-index: 1;
  }
  .shop_concept_wrap .slide-next,
  .message_wrap .slide-next{
    right: 20px;
    z-index: 1;
  }

}
@media (min-width:768px){
  .body_message .footer{
    margin-top: 900px;
  }
  .pg_message{

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


  .message_wrap{
    position: relative;
  }
  .message_items{
    flex-direction: column;
  }
  .message_item.daihyo{
    width: 34.23%;
    padding-top: 5px;
  }
  .message_item.daihyo .message_item_img:before{

  }
  .message_item.msg{
    width: 59.90%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .message_item_title{

  }
  .message_item_title_txt{

  }
  .message_item_txt{
    margin-top: 30px;
    padding-left: 5px;
  }
  .msg_block{

  }
  .msg_block:nth-child(n+2){
    margin-top: 30px;
  }
  .msg_block.last{

  }
  .msg_block.last{
    margin-top: 20px;
  }
  .message_item.imgs{
    width: 34.23%;
    margin-top: 80px;
  }
  .message_item_imgs.flex{
    flex-direction: column;
  }
  .message_img_item:nth-child(n+2){
    margin-top: 50px;
  }
}
@media (min-width:1024px){
  .body_message .footer{
    margin-top: 290px;
  }
  .pg_message{

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

  .message_wrap{

  }
  .message_items{

  }
  .message_item.daihyo{

  }
  .message_item.daihyo .message_item_img:before{

  }
  .message_item.msg{

  }
  .message_item_title{

  }
  .message_item_title_txt{
    font-size: 24px;
  }
  .message_item_txt{

  }
  .msg_block{

  }
  .msg_block:nth-child(n+2){

  }
  .msg_block.last{

  }
  .msg_block.last{

  }
  .message_item.imgs{

  }
  .message_item_imgs.flex{

  }
  .message_img_item:nth-child(n+2){
    margin-top: 60px;
  }
}
@media (min-width:1200px){
  .body_message .footer {
    margin-top: 150px;
  }

}


/*******************************
*　コンセプト
********************************/
.body_concept .footer{
  margin-top: 0;
}
.pg_concept{

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

/*繰り返し*/
.shop_concept_wrap{

}
.shop_concept_items{

}
.shop_concept_item_inner{
  justify-content: space-between;
}
.shop_concept_item{
  padding: 40px 0;
}
.shop_concept_item:first-child{
  padding-top: 0; 
}
.shop_concept_item:nth-child(even){
  position: relative;
}
.shop_concept_item:nth-child(even):before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  z-index: -1;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.shop_concept_item1{
  width: 100%;
}
.shop_concept_item1_title{
  text-align: center;
  position: relative;
}
.shop_concept_item1_title:before{
  content: "";
  display: block;
  background: #1b3c99;
  height: 2px;
  width: 95px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.shop_concept_item1_title:after{
  content: "";
  display: block;
  background: #c41f1f;
  height: 2px;
  width: 95px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.shop_concept_item1_title_en{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.6666em;
}
.shop_concept_item1_title_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.6666em;
}
.shop_concept_item1_desc{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}
.shop_concept_item2{
  width: 100%;
}
.shop_concept_item2_img:before{
  padding-top:105.26%;
}
.shop_concept_item3{
  margin-top: 30px
}
.shop_concept_item3 .message_item_imgs.flex{
  flex-direction: inherit;
  margin: 0 -15px 0;
}
.shop_concept_wrap .message_img_item .img_fit:before{
  padding-top: 80%;
}
/*店長*/
.shop_concept_item4.flex{
  justify-content: space-between;
  margin-top: 80px;
}
.shop_concept_item4_box1{
  width: 100%;
}
.shop_concept_item4_box1_img:before{
  padding-top: 105.2%;
}
.shop_concept_item4_box2{
  width: 100%;
}
.shop_concept_item4_box2_meta{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
}
.shop_concept_item4_box2_meta1{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #8a8a8a;
}
.shop_concept_item4_box2_meta2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 5px;
}
.shop_concept_item4_box2_desc{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  text-align: justify;
  padding: 13px 0;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .shop_concept_item:nth-child(n+2){
    margin-top: 30px; 
  }
  .shop_concept_item2{
    margin-top: 20px;
  }
  .shop_concept_item4_box2{
    margin-top: 20px;
  }
  .shop_concept_item{
    padding: 40px 0 20px;
  }
  .shop_concept_item1_title:before{
    width: 30px;
  }
  .shop_concept_item1_title:after{
    width: 30px;
  }
  .shop_concept_item:last-child{
    padding-bottom: 60px;
  }
  .shop_concept_item4_box1{
    width: 75%;
    margin: 0 auto;
  }
  .data_title_en{
    text-shadow: 1px 0px #000, 0px 0px #000, -1px 0px #000, 0px 0px #000, 1px 0px #000, 0px 1px #000, -1px 1px #000, 0px 0px #000;
  }

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

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

  /*繰り返し*/
  .shop_concept_wrap{

  }
  .shop_concept_items{

  }
  .shop_concept_item{
    padding: 50px 0;
  }
  .shop_concept_item:first-child{
    padding-top: 0; 
  }
  .shop_concept_item:last-child{
    padding-bottom: 120px;
  }
  .shop_concept_item:nth-child(n+2){
    margin-top: 70px; 
  }

  .shop_concept_item:nth-child(odd) .shop_concept_item1{
    order: 1;
  }
  .shop_concept_item:nth-child(odd) .shop_concept_item2{
    order: 2;
  }
  .shop_concept_item:nth-child(odd) .shop_concept_item4_box1{
    order: 1;
  }
  .shop_concept_item:nth-child(odd) .shop_concept_item4_box2{
    order: 2;
  }
  .shop_concept_item:nth-child(even) .shop_concept_item1{
    order: 2;
  }
  .shop_concept_item:nth-child(even) .shop_concept_item2{
    order: 1;
  }
  .shop_concept_item:nth-child(even) .shop_concept_item4_box1{
    order: 2;
  }
  .shop_concept_item:nth-child(even) .shop_concept_item4_box2{
    order: 1;
  }
  .shop_concept_item1{
    width: 51.35%;
  }
  .shop_concept_item1_title{

  }
  .shop_concept_item1_title:before{
    width: 10px;
  }
  .shop_concept_item1_title:after{
    width: 10px;
  }
  .shop_concept_item1_title_en{
    font-size: 26px;
  }
  .shop_concept_item1_title_ja{
    font-size: 26px;
  }
  .shop_concept_item1_desc{
    margin-top: 0;
  }
  .shop_concept_item2{
    width: 42.79%;
  }
  .shop_concept_item2_img:before{

  }
  .shop_concept_item3{
    margin-top:50px;
  }
  .shop_concept_wrap .message_img_item:nth-child(n+2){
    margin-top: 0;
  }
  .shop_concept_wrap .message_img_item:nth-child(n+4){
    margin-top: 30px;;
  }
  .shop_concept_wrap .message_img_item{
    width: 33.333%;
    padding: 0 15px;
  }

  /*店長*/
  .shop_concept_item4.flex{
    margin-top: 70px;
  }
  .shop_concept_item4_box1{
    width: 25.67%;
    padding-top: 5px;
  }
  .shop_concept_item4_box1_img:before{

  }
  .shop_concept_item4_box2{
    width: 68.46%;
  }
  .shop_concept_item4_box2_meta{

  }
  .shop_concept_item4_box2_meta1{
    font-size: 20px;
  }
  .shop_concept_item4_box2_meta2{
    font-size: 20px;
  }
  .shop_concept_item4_box2_desc{

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

  }
  .pg_concept .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_concept .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_concept .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*繰り返し*/
  .shop_concept_wrap{

  }
  .shop_concept_items{

  }
  .shop_concept_item{
    padding: 70px 0;
  }
  .shop_concept_item:first-child{
    padding-top: 0; 
  }
  .shop_concept_item:last-child{
    padding-bottom: 175px;
  }
  .shop_concept_item:nth-child(n+2){
    margin-top: 80px; 
  }
  .shop_concept_item1{

  }
  .shop_concept_item1_title{

  }
  .shop_concept_item1_title:before{
    width: 95px;
    top: 50%;
  }
  .shop_concept_item1_title:after{
    width: 95px;
    top: 50%;
  }
  .shop_concept_item1_title_en{

  }
  .shop_concept_item1_title_ja{

  }
  .shop_concept_item1_desc{
    margin-top: 40px;
  }
  .shop_concept_item2{
    padding-top: 10px;
  }
  .shop_concept_item3{
    margin-top:100px;
  }
  .shop_concept_item2_img:before{

  }

  /*店長*/
  .shop_concept_item4.flex{
    margin-top: 100px;
  }
  .shop_concept_item4_box1{

  }
  .shop_concept_item4_box1_img:before{

  }
  .shop_concept_item4_box2{

  }
  .shop_concept_item4_box2_meta{

  }
  .shop_concept_item4_box2_meta1{

  }
  .shop_concept_item4_box2_meta2{

  }
  .shop_concept_item4_box2_desc{

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


}

/*******************************
*　数字で見る
********************************/
.pg_data{

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

.data_wrap{

}
.data_wrap:nth-child(n+2){
  margin-top: 50px;
}
.data_title{
  text-align: center;
}
.data_title_en{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #fff;
  text-shadow: 1px -1px #000, 0px 1px #000, -1px -1px #000, 0px -1px #000, 1px -1px #000, 0px 1px #000, -1px 0px #000, 0px -1px #000;
}
.data_title_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.data_items{
  margin: 30px -15px 0;
  justify-content: center;
}
.data_item{

}
.data_item_bg{
  background-image: url(/system_panel/uploads/images/pp_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 5px;
}
.data_item.first .data_item_img{
  margin-top: 0;
}
.data_item_inner{
  background: #fff;
  padding: 20px 0;
}
.data_item_txt1{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.data_item_txt2{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top:10px;
  line-height: 1;
}
.data_item_txt2 strong{
  font-size: 50px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}
.data_item_img{
  text-align: center;
  margin-top: 16px;
}
.data_item_txt3{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: center;
}
.data_wrap:nth-child(n+2) .data_item.first .data_item_img{
  margin-top: 16px;
}
/*,.*/
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .data_item:nth-child(n+2){
    margin-top: 30px; 
  }
  .data_item_txt2 strong{
    font-size: 80px;
  }
}
@media (min-width:768px){
  .pg_data{

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



  .data_wrap{

  }
  .data_wrap:nth-child(n+2){
    margin-top: 70px;
  }
  .data_title{
    text-align: center;
  }
  .data_title_en{

  }
  .data_title_ja{

  }
  .data_items{
    margin-top: 50px;
  }
  .data_item{

  }
  .data_item:nth-child(n+3){
    margin-top: 30px; 
  }
  .data_item_inner{

  }
  .data_item_txt1{
    font-size: 28px;
  }
  .data_item_txt2{
    font-size: 28px;
  }
  .data_item_txt2 strong{
    font-size: 84px;
  }
  .data_item_img{

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

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


  .data_wrap{

  }
  .data_wrap:nth-child(n+2){
    margin-top: 95px;
  }
  .data_title{
    text-align: center;
  }
  .data_title_en{
    font-size: 50px;
  }
  .data_title_ja{
    font-size: 20px;
  }
  .data_items{
    margin-top: 60px;
  }
  .data_item{

  }
  .data_item:nth-child(n+3){
    margin-top: 0; 
  }
  .data_item:nth-child(n+4){
    margin-top: 30px; 
  }
  .data_item_inner{
    max-height: 340px;
  }
  .data_item_txt1{
    font-size: 30px;
  }
  .data_item_txt2{

    font-size: 30px;
  }
  .data_item_txt2 strong{
    font-size: 100px;
  }
  .data_item_img{

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


}

/*******************************
*　キャリアアップ
********************************/
.body_career .footer{
  margin-top: 0;
}
.pg_career{

}
.pg_career .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_career .section.sec2{
  margin-top: 70px;
}
.pg_career .section.sec3{
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 80px;
  position: relative;
}
.pg_career .section.sec3:after{
  content: "";
  display: block;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
}

/*見出し*/
.career_header_wrap{

}
.career_header_title{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.6666em;
}
.career_header_items{
  margin-top: 40px;
}
.career_header_item{

}
.career_header_item:nth-child(odd) .career_header_item_title_num{
  color: #1b3c99;
}
.career_header_item:nth-child(even) .career_header_item_title_num{
  color: #c41f1f;
}
.career_header_item_title{

}
.career_header_item_title:after{
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-image: url(/system_panel/uploads/images/mix_bar.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 7px;
}
.career_header_item_title1{
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #fff;
  text-shadow: 1px 1px #000, 0px 1px #000, -1px 1px #000, 0px 0px #000, 1px 0px #000, 0px 1px #000, -1px -1px #000, 0px -1px #000;
}
.career_header_item_title_num{
  font-size: 24px;
  font-weight:600;
  letter-spacing: 0.075em;
  margin-left: 10px;
}
.career_header_item_boxs.flex{
  justify-content: space-between;
  margin-top: 24px;
}
.career_header_item_box1{
  width: 100%;
}
.career_header_item_box1_title{

}
.career_header_item_box1_title_txt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.career_header_item_box1_content{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: justify;
  line-height: 2;
  margin-top: 10px;
}
.career_header_item_box2{
  width: 100%;
}
.career_header_item_box2_img:before{
  padding-top: 67.36%;
}
.career_header_item_box2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  z-index: -1;
}
.career_header_item:nth-child(odd) .career_header_item_box2_img:after{
  top: 10px;
  left: 10px;
}
.career_header_item:nth-child(even) .career_header_item_box2_img:after{
  top: 10px;
  right: 10px;
}
/*サポート*/
.career_support_wrap{

}
.career_support_title,
.career_skill_title{
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.5384em;
}
.career_support_title:after{
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background: #f5f5f5;
  margin-top: 20px;
}
.career_support_items.flex{
  margin: 30px -15px 0;
}
.career_support_item{

}
.career_support_item_img:before{
  padding-top: 74.28%;
}
.career_support_item_title{
  text-align: center;
  margin-top: 16px;
}
.career_support_item_title_txt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.career_support_item_content{
  text-align: justify;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: justify;
  line-height: 2.1333em;
  margin-top: 8px;
}

/*スキル*/
.career_skill_wrap{
  margin-top: 60px;
}
.career_skill_items.flex{
  margin: 40px -15px 0;
}
.career_skill_item{

}
.career_skill_item_inner{
  background: #f7f7f7;

}
.career_skill_item_inner_top{
  position: relative;
  padding-top: 5px;
}
.career_skill_item_img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.career_skill_item_title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 12px;
}
.career_skill_item_content{
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 2;
}
.career_skill_item_inner_bottom{
  position: relative;
  padding-bottom: 22px;
}

/*独立*/
.independence_wrap{

}
.independence_title{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
}
.independence_desc{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  margin-top: 20px;
}
.independence_img{
  width: 100%;
  margin-top: 28px;
}
.independence_img .img_fit:before{
  padding-top: 50.63%;
}

.independence_voice_title{
  text-align: center;
  background: #1b3c99;
  border-radius: 22.5px;
  padding: 12px;
  position: relative;
  margin-top: 40px;
}
.independence_voice_title:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 15px 0 15px;
  border-color: #1b3d99 transparent transparent transparent;
  position: absolute;
  bottom:-16px;;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform:translateX(-50%);
}
.independence_voice_title_txt{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: #fff;
}
.independence_voice_items{
  margin-top: 40px;
}
.independence_voice_item{
  background: #fff;
}
.independence_voice_item_inner.flex{
  justify-content: space-between;
}
.independence_voice_item1{
  width: 100%;
}
.independence_voice_item1_img:before{
  padding-top: 113.63%;
}
.independence_voice_item2{
  width: 100%;
}
.independence_voice_item2_meta{

}
.independence_voice_item2_txt1{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: #707070;
}
.independence_voice_item2_txt2{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.independence_voice_item2_msg{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.1333em;
  text-align: justify;
  margin-top: 16px;
}


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

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

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

  /*見出し*/
  .career_header_items{
    margin-top: 28px;
  }
  .career_header_item_box1{
    order: 1;

  }
  .career_header_item_box2{
    order: 2;
    margin-top: 20px
  }
  .career_header_item:nth-child(n+2){
    margin-top: 50px
  }
  .career_header_item_boxs.flex{
    margin-top: 20px; 
  }

  .career_support_item:nth-child(n+2){
    margin-top: 40px;
  }
  /*スキル*/
  .career_skill_item:nth-child(n+2){
    margin-top: 40px;;
  }
  .career_skill_item_inner_top:before,
  .career_skill_item_inner_top:after,
  .career_skill_item_inner_bottom:before,
  .career_skill_item_inner_bottom:after{
    width: 60px;
    height: 60px;
  }
  .career_skill_item_inner_top{
    padding-top: 36px;
  }
  /*独立*/
  .independence_voice_item:nth-child(n+2){
    margin-top: 30px;
  }
  .independence_voice_item{
    padding: 30px;
  }
  .independence_voice_item2{
    margin-top: 20px;
  }


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

  }
  .pg_career .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_career .section.sec2{
    margin-top: 100px;
  }
  .pg_career .section.sec3{
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 120px;
  }

  /*見出し*/
  .career_header_wrap{

  }
  .career_header_title{

  }
  .career_header_items{
    margin-top: 50px;
  }
  .career_header_item{

  }
  .career_header_item:nth-child(n+2) {
    margin-top: 50px;
  }
  .career_header_item:nth-child(odd) .career_header_item_box1{
    order: 1;
  }
  .career_header_item:nth-child(odd) .career_header_item_box2{
    order: 2;
  }
  .career_header_item:nth-child(even) .career_header_item_box1{
    order: 2;
  }
  .career_header_item:nth-child(even) .career_header_item_box2{
    order: 1;
  }
  .career_header_item_title{

  }
  .career_header_item_title1{
    font-size: 40px;
  }
  .career_header_item_title_num{
    font-size: 40px;
  }
  .career_header_item_boxs.flex{
    margin-top: 28px;
  }
  .career_header_item_box1{
    width: 48.64%;
  }
  .career_header_item_box1_title{

  }
  .career_header_item_box1_title_txt{

  }
  .career_header_item_box1_content{

  }
  .career_header_item_box2{
    width: 42.79%;
  }
  .career_header_item_box2_img:before{

  }
  .career_skill_item_content{
    letter-spacing: 0;
  }
  /*サポート*/
  .career_support_wrap{

  }
  .career_support_title,
  .career_skill_title{
    text-align: center;
    font-size: 22px;
  }
  .career_support_title:after{
    margin-top: 24px;
  }
  .career_support_items.flex{

  }
  .career_support_item{

  }
  .career_support_item_img:before{

  }
  .career_support_item_title{

  }
  .career_support_item_title_txt{
    font-size: 20px;
  }
  .career_support_item_content{

  }

  /*スキル*/
  .career_skill_wrap{
    margin-top: 100px;
  }

  .career_skill_items.flex{
    margin-top: 50px;
  }
  .career_skill_item{

  }
  .career_skill_item:nth-child(n+3){
    margin-top: 30px;
  }
  .career_skill_item_inner{


  }
  .career_skill_item_inner_top{

  }
  .career_skill_item_img{
    margin-top: 30px;
  }
  .career_skill_item_title{
    font-size: 20px;
  }
  .career_skill_item_inner_top:before,
  .career_skill_item_inner_top:after,
  .career_skill_item_inner_bottom:before,
  .career_skill_item_inner_bottom:after{
    width: 60px;
    height: 60px;
  }
  /*独立*/
  .independence_wrap{

  }
  .independence_title{
    font-size: 28px;
  }
  .independence_desc{
    text-align: center;
    margin-top: 28px;
  }
  .independence_img{
    width: 100%;
  }
  .independence_voice_title{
    width: 410px;
    margin: 70px auto 0;
  }
  .independence_voice_title_txt{
    font-size: 20px;
  }
  .independence_voice_items{
    margin-top: 40px;
  }
  .independence_voice_item{
    padding: 30px 20px;
  }
  .independence_voice_item:nth-child(n+2){
    margin-top: 30px;
  }
  .in
  .independence_voice_item_inner.flex{

  }
  .independence_voice_item1{
    width: 22.44%;
  }
  .independence_voice_item1_img:before{

  }
  .independence_voice_item2{
    width: 71.42%;
  }
  .independence_voice_item2_meta{

  }
  .independence_voice_item2_txt1{

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

  }
  .pg_career .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_career .section.sec2{
    margin-top: 140px;
  }
  .pg_career .section.sec3{
    margin-top: 150px;
    padding-top: 60px;
    padding-bottom: 210px;
  }

  /*見出し*/
  .career_header_wrap{

  }
  .career_header_title{
    font-size: 30px;
  }
  .career_header_items{
    margin-top: 65px;
  }
  .career_header_item{

  }
  .career_header_item:nth-child(n+2) {
    margin-top: 65px;
  }
  .career_header_item_title{

  }
  .career_header_item_title1{
    font-size: 40px;
  }
  .career_header_item_title_num{
    font-size: 40px;
  }
  .career_header_item_boxs.flex{

  }
  .career_header_item_box1{

  }
  .career_header_item_box1_title{

  }
  .career_header_item_box1_title_txt{
    font-size: 26px;
  }
  .career_header_item_box1_content{

  }
  .career_header_item_box2{

  }
  .career_header_item_box2_img:before{

  }

  /*サポート*/
  .career_support_wrap{

  }
  .career_support_title,
  .career_skill_title{
    font-size: 26px;
  }
  .career_support_items.flex{
    margin-top: 28px;
  }
  .career_support_item{

  }
  .career_support_item_img:before{

  }
  .career_support_item_title{

  }
  .career_support_item_title_txt{
    font-size: 24px;
  }
  .career_support_item_content{

  }
  /*スキル*/
  .career_skill_wrap{
    margin-top: 135px;
  }
  .career_skill_items.flex{
    margin-top: 56px;
  }
  .career_skill_item:nth-child(n+3){
    margin-top: 0;
  }
  /*独立*/
  .independence_wrap{

  }
  .independence_title{
    font-size: 28px;
  }
  .independence_desc{

  }
  .independence_img{
    width: 71.17%;
    text-align: center;
    margin: 30px auto 0;
  }
  .independence_voice_title{
    margin-top: 100px;
  }
  .independence_voice_title_txt{

  }
  .independence_voice_items{
    margin-top: 55px;
  }
  .independence_voice_item{
    padding: 50px 65px;
  }
  .independence_voice_item:nth-child(n+2){
    margin-top: 40px;
  }
  .independence_voice_item_inner.flex{

  }
  .independence_voice_item1{

  }
  .independence_voice_item1_img:before{

  }
  .independence_voice_item2{

  }
  .independence_voice_item2_meta{

  }
  .independence_voice_item2_txt1{

  }
  .independence_voice_item2_txt2{

  }
}
@media (min-width:1200px){
  .career_skill_item_content{
    letter-spacing: 0.075em;
  }

}

/*******************************
*　スタッフインタビュー
********************************/
.pg_interview{

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

/*動画*/
.interview_header_wrap{

}
.interview_title{
  text-align: center;
}
.interview_title_en{
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #fff;
  text-shadow: 1px 0px #000, 1px -1px #000, 0px 1px #000, 0px -1px #000, -1px -1px #000, 0px -1px #000, 0px -1px #000, -1px 0px #000;
}
.interview_title_ja{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.interview_movie_box{
  text-align: center;
  margin-top: 30px;
}
.interview_movie_box iframe{

  width: 100%;
  border: none;
}

/*座談会*/
.crosstalk_desc{
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  margin-top: 30px;
}
.crosstalk_inter_items.flex{
  margin:30px -15px 0;
}
.crosstalk_inter_item{

}
.crosstalk_inter_item_inner{

}
.crosstalk_inter_item_img{

}
.crosstalk_inter_item_img img{
  display: block;
  border-radius: 50%;
}
.crosstalk_inter_item_img:before{

}
.crosstalk_inter_item_meta{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875em;
}
.crosstalk_inter_item_name{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  margin-top: 8px;
}
.crosstalk_inter_item_img_outer{
  padding: 28px 28px 0;
}
.crosstalk_inter_item_name.first{
  color: #6aa351;
}
.crosstalk_inter_item_name.second{
  color:#44748d;
}
.crosstalk_inter_item_name.third{
  color: #cf8834;
}
.crosstalk_inter_item_name.forth{
  color: #d14c8b;
}

.interview_content_wrap{

}
.interview_content_items{

}
.interview_content_item{

}
.interview_content_item_title{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #f5f5f5;
  padding: 10px 0 10px 30px;
  margin-bottom: 20px;
}
.interview_content_item_title p{
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.interview_content_item_title:before{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 15px 0 0;
  border-color: #1b3d99 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.interview_content_item_title:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 0 15px;
  border-color: transparent transparent transparent #c41f1f;
  position: absolute;
  bottom: 0;
  left: 0;
}
.interview_content_item_comments{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: justify;
  line-height: 1.875em;
  font-family: 'Noto Serif JP', serif;

}
.interview_content_item_comments p:nth-child(n+2){
  margin-top: 15px;
}
.interview_content_item_comments p strong{
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}
.interview_content_item_comments .one strong{
  color: #6aa351;
}
.interview_content_item_comments .two strong{
  color: #44748d;
}
.interview_content_item_comments .three strong{
  color: #cf8834;
}
.interview_content_item_comments .forth strong{
  color: #d14c8b;
}

.interview_content_item.flex{
  justify-content: space-between;
}
.interview_content_item1{
  width: 100%;
}
.interview_content_item2{
  width: 100%;
}
.interview_content_item2_img:before{
  padding-top: 131.57%;
}
.interview_content_item:nth-child(n+2){
  margin-top: 40px;
}
/* コピー用 */
@media (max-width:374px){

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

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

  }
  /*座談会*/
  .crosstalk_inter_item:nth-child(n+3){
    margin-top: 20px;
  }
  .crosstalk_inter_item_img_outer{
    padding: 10px;
  }
  .interview_content_item1{
    order: 1;
  }
  .interview_content_item2{
    order: 2;
    margin-top: 20px;
  }
}
@media (min-width:768px){
  .pg_interview{

  }
  .pg_interview .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_interview .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_interview .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*動画*/
  .interview_header_wrap{

  }
  .interview_title{
    text-align: center;
  }
  .interview_title_en{

  }
  .interview_title_ja{

  }
  .interview_movie_box{
    margin-top: 60px;
  }
  .interview_movie_box iframe{

  }

  /*座談会*/
  .crosstalk_desc{
    text-align: center;
    margin-top: 46px;
  }
  .crosstalk_inter_items.flex{

  }
  .crosstalk_inter_item{

  }
  .crosstalk_inter_item:nth-child(n+3){
    margin-top: 30px;
  }

  .crosstalk_inter_item_inner{

  }
  .crosstalk_inter_item_img{

  }
  .crosstalk_inter_item_img:before{

  }
  .crosstalk_inter_item_meta{

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

  .interview_content_item1{
    width: 59.90%;
  }
  .interview_content_item2{
    width: 34.23%;
  }
  .interview_content_item.one .interview_content_item1{
    order: 1;
  }
  .interview_content_item.one .interview_content_item2{
    order: 2;
  }
  .interview_content_item.two .interview_content_item1{
    order: 2;
  }
  .interview_content_item.two .interview_content_item2{
    order: 1;
  }
  .interview_content_item:nth-child(n+2){
    margin-top: 70px;
  }
}
@media (min-width:1024px){
  .pg_interview{

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

  /*動画*/
  .interview_header_wrap{

  }
  .interview_title{

  }
  .interview_title_en{
    font-size: 50px;
  }
  .interview_title_ja{
    font-size: 20px;
  }
  .interview_movie_box{

  }
  .interview_movie_box iframe{

  }

  /*座談会*/
  .crosstalk_desc{

  }
  .crosstalk_inter_items.flex{

  }
  .crosstalk_inter_item{

  }
  .crosstalk_inter_item:nth-child(n+3){
    margin-top: 0;
  }
  .crosstalk_inter_item_inner{

  }
  .crosstalk_inter_item_img{

  }
  .crosstalk_inter_item_img:before{

  }
  .crosstalk_inter_item_meta{

  }
  .crosstalk_inter_item_name{

  }

  .interview_content_wrap{

  }
  .interview_content_items{

  }
  .interview_content_item{

  }
  .interview_content_item_title{
    font-size: 20px;
    margin-bottom: 33px;
  }
  .interview_content_item_title:before{

  }
  .interview_content_item_title:after{

  }
  .interview_content_item_comments{

  }
  .interview_content_item_comments .one{

  }
  .interview_content_item_comments .two{

  }
  .interview_content_item_comments .three{

  }
  .interview_content_item_comments .forth{

  }

  .interview_content_item:nth-child(n+2){
    margin-top: 96px;
  }
}
@media (min-width:1200px){
  .crosstalk_inter_item_name{
    font-size: 20px;
  }
  .interview_movie_box{
    width:540px;
    height: 303px;
    margin: 60px auto;
  }
}
/*******************************
*　募集要項
********************************/
.pg_recruit{

}
.pg_recruit .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_recruit .section.sec2{
  margin-top: 30px;
}
.pg_recruit .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}

/*カテゴリ*/
.equirements_wrap{

}
.equirements_title{
  text-align: center;
  border-bottom: 1px solid #959595;
  padding-bottom: 10px;
}
.equirements_title_txt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.equirements_cates.flex{
  margin: 30px -15px 0;
}
.equirements_cate{

}
.equirements_cate_inner{
  background: #e5e5e5;
  border: 1px solid #d9d9d9;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

/*テーブル*/
.recruit_tbl_items{

}
.recruit_tbl_item{

}
.recruit_tbl_item:nth-child(n+2){
  margin-top: 60px;
}
.recruit_tbl_item_title{
  text-align: center;
  position: relative;
}
.recruit_tbl_item_title_inner{
  display: inline-block;
  margin: 0 auto;
  background: #fff;
  padding: 0 16px;
}
.recruit_tbl_item_title:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #565656;
  position: absolute;
  top: 50%;
  z-index: -1;
}
.recruit_tbl_item_title_en{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.3333em;
}
.recruit_tbl_item_title_ja{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.recruit_tbl{
  margin-top: 30px;
}
.recruit_tbl .table_rows_th,
.recruit_tbl .table_rows_td{
  letter-spacing: 0.075em;
  border: 1px solid #959595;
}
.recruit_tbl .table_rows_th{
  background: #f7f7f7;
  font-weight: 500;
  font-size: 16px;
  padding: 18px 15px;
}
.recruit_tbl .table_rows_td{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.875em;
  padding: 18px 15px;
}
.recruit_tbl_item .link_1{
  margin-top: 36px
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*カテゴリ*/
  .equirements_cate:nth-child(n+2){
    margin-top: 16px;;
  }
  /*テーブル*/
  .recruit_tbl{

  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    display: block;
    width: 100%;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    border-bottom: none;
  }
  .recruit_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #959595;
  }
  .recruit_tbl_item{
    padding-top: 20px
  }
  .recruit_tbl .table_rows_td .second{
    margin-top: 24px;
  }
}
@media (min-width:768px){
  .pg_recruit{

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

  /*カテゴリ*/
  .equirements_wrap{

  }
  .equirements_title{
    padding-bottom: 20px;
  }
  .equirements_title_txt{
    font-size: 24px;
  }
  .equirements_cates.flex{
    margin-top: 50px;
  }
  .equirements_cate{

  }
  .equirements_cate:nth-child(n+3){
    margin-top: 20px;
  }
  .equirements_cate_inner{

  }
  /*テーブル*/
  .recruit_tbl_items{

  }
  .recruit_tbl_item{
    margin-top: 30px;
    padding-top: 30px;
  }

  .recruit_tbl_item:nth-child(n+2){

  }
  .recruit_tbl_item_title{

  }
  .recruit_tbl_item_title_en{

  }
  .recruit_tbl_item_title_ja{

  }
  .recruit_tbl{
    margin-top: 36px;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{

  }
  .recruit_tbl .table_rows_th{
    width: 200px;
    border-right: none;
  }
  .recruit_tbl .table_rows_td{
    border-left: none;
    padding: 18px 29px;
  }
  .recruit_tbl .table_rows_td .second{
    margin-top: 36px;
  }
  .recruit_tbl_item .link_1{
    margin-top: 50px;
  }
  .recruit_tbl.company{
    margin-top: 60px;
  }
}
@media (min-width:1024px){
  .pg_recruit{

  }
  .pg_recruit .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_recruit .section.sec2{
    margin-top: 0
  }
  .pg_recruit .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*カテゴリ*/
  .equirements_wrap{

  }
  .equirements_title{

  }
  .equirements_title_txt{

  }
  .equirements_cates.flex{
    margin-top: 60px;
  }
  .equirements_cate{

  }
  .equirements_cate:nth-child(n+3){
    margin-top: 0;
  }
  .equirements_cate_inner{

  }

  /*テーブル*/
  .recruit_tbl_items{

  }
  .recruit_tbl_item{
    margin-top: 40px;
    padding-top: 40px;
  }
  .recruit_tbl_item:nth-child(n+2){
    margin-top: 74px;
  }
  .recruit_tbl_item_title{

  }
  .recruit_tbl_item_title_en{
    font-size: 24px;
  }
  .recruit_tbl_item_title_ja{
    font-size: 24px;
  }
  .recruit_tbl{
    margin-top: 40px;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{

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

  }
  .recruit_tbl_item .link_1{
    margin-top: 60px;
  }
}
@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;
}

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


/* コピー用 */
@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;
  }
  .formRow .selectArea .d-block {
    width: 120px;
  }
  /* リスト */
  .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{

  }
  .formRow .selectArea .d-block label {
    padding: 0 10px;
  }
  .addClass.birthday .d-md-inline-block.month, .addClass.birthday .d-md-inline-block.day{
    width: 114px;
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }

}



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

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
  font-family: "Noto Serif JP", serif;
}
.contact_info_tt{
  font-family: "Noto Serif JP", serif;
  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;
}
.pg_contact .section.sec2 .contact_tt{
  font-weight: 700;
  letter-spacing: 0.2em;
}
@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;
  }
  .pg_contact .section + .section{
    margin-top: 0;
  }

  .pg_contact .section.sec2 .contact_tt{
    font-size: 20px;
  }
}
@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%;
  }

  .pg_contact .section + .section{
    margin-top: 0;
  }
  .pg_contact .formTd.sp_flat .radioArea{
    display: flex;
    flex-wrap: wrap;
  }
  .pg_contact .formTd.sp_flat .d-inline:nth-child(n+2){
    margin-top: 0;
  }
}


.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: 0;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #f0f0f0;
  letter-spacing: 0.08em;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTh.align_top{
  align-items: flex-start;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
  letter-spacing: 0.075em;
}
.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;
  font-weight: normal;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  letter-spacing: 0.16em;
  color: #181818;  
}
.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;
  font-weight: normal;
  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 {
  max-width: 285px;
  width: 100%;
  font-size: 18px;
  padding: 12px;
  margin: 38px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  /*font-family: "Noto Serif JP", serif;*/
  font-weight: 500;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0.16em;;
}
.radioArea .d-inline-block{
  margin-right: 12px;
}
.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;
  line-height: 1.8em;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}
.pg_contact .formTd select[name="year"] {
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}.pg_contact .formTd select[name="month"] {
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd select[name="day"] {
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.selectArea .addClass {
  display: flex;
  align-items: center;
}
.addClass .d-md-inline-block.d-block {
  display: flex !important;
  align-items: center;
}
.radioArea{
  padding: 0;
}
.pg_contact .d-inline{
  margin-right: 33px;
}
.pg_contact .d-inline input[type=radio]{
  margin-right: 10px;
}
.pg_contact .formTd.align_center{
  display: flex;
  align-items: center;
}
.pg_contact .formTh strong{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b80000;
}
.pg_contact .formTh.start{
  justify-content: flex-start;
}
.pg_contact .formTh.start{
  flex-wrap: wrap;
}
.pg_contact .formTh.start p{

  width: 100%;
}
@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 + .section{
    margin-top: 0;
  }
  .pg_contact .section.sec2 .contact_tt{
    font-size: 24px;
  }
  .selectArea .addClass {
    width: auto;
    margin-top: 0;
  }
  .addClass.birthday .d-md-inline-block {
    width: 149px;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 50px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #1b3c99;
}
.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 {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}
@media only screen and (min-width: 1200px){
  .pg_contact .formTh.start p{
    width: auto;
    padding-left: 17px;
  }
}
@media only screen and (max-width: 1023px){ 
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }
  .pg_contact .formTd input[name="city"]{
    max-width: 340px;
  }
  .formRow .selectArea .d-block label{
    padding: 0 10px;
  }
  .pg_contact .formTh.start{
    flex-wrap: wrap;
  }
  .pg_contact .formTh.start p{
    padding-left: 0;
  }

}

@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 .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: 15px;
    padding-left: 10px;
  }
  .pg_contact .d-inline:nth-child(n+2){
    margin-top: 10px;
  }
}

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

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


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

.pg_contact .formTd.center{
  display:flex;
  align-items:center;
}
/* コピー用 */
@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;
  }

  .shop_concept_item1_title:before{
    width: 95px;
  }
  .shop_concept_item1_title:after{
    width: 95px;
  }
}
@media (min-width:1024px){


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


}

.font-size {
  font-size: 12px;
}

mt30 {
	margin-top: 30px!important;
}