@charset "UTF-8";


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

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#root{
  overflow: hidden;
}
/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

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

.mincho{
  font-family: 'Noto Serif JP', serif;
}
.out{
  font-family: "Outfit", sans-serif;
}
.oz{
  font-family: "Oswald", sans-serif;
}

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

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  color: #181818;
  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;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

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

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

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


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

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

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

/*******************************
*　ヘッダー
********************************/
.header{
}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  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;
}

.pg_header{
  margin-bottom: 70px;
  position: relative;
}
.pg_header:after{
  content: "";
  display: block;
  width: 1920px;
  height: 27px;
  background-image: url(/system_panel/uploads/images/pg_header_bottom.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform:translateX(-50%);
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_txt{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.pg_header_txt_en{
  font-size:42px;
  font-weight: 700;
  line-height: 1;
}
.pg_header_txt_en strong{
  color: #f3000c;
}
.pg_header_txt_ja{
  font-size:17px;
  font-weight: 700;
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff; 
}


.mv{
  position: relative;
}
.mv:before{
  content: "";
  display: block;
  /*  width:1842px;*/
  width: 95.83%;
  height: 438px;
  background-image: url(/system_panel/uploads/images/mv_btm.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: -130px;
  transform:translateX(-50%);
  z-index: 1;
}
.mv:after{
  content: "";
  display: block;
  width: 95.83%;
  height: 89.85%;
  background: #eeeae4;
  position: absolute;
  left: 50%;
  top: 25.60%;
  transform:translateX(-50%);
  z-index: -1;
}
.mv_img.img_fit:before{
  padding-top: 60vh;
}
.mv_txt{
  text-align: center;
  width: 100%;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: #1851a7;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.mv_illust_box{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.mv_illust_box_inner{
  display: flex;
  justify-content: space-between;
}
.mv_illust_left{
  width: 15%;
  position: relative;
  bottom: -30px;
  left: 0;
}
.mv_illust_right{
  width: 15%;
  position: relative;
  top: -16px;
  right: 0;
}



@media (min-width:375px){

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

  }
  .hdr_logo{
    display: block;
    width: 180px;
    margin: 0 auto;
  }
  .hdr1 {
  }
  .hdr_contact{
    display: none;
  }

  /* スマホ用 */
  .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;
  }

  .mv,
  .pg_header{
    margin-top:0; 
  }
  .mv{
    padding: 0 16px;
  }
  .mv:before{
    width:1900px;
    height: 110px;
    bottom: -1px;
  }
  .mv:after{
    width: 100%;
    height: 72.85%;
  }
  .mv_txt{
    font-size: 22px;
  }

}
@media (min-width:768px){
  .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 24px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
    transition: all .2s;
  }
  .header.slim{
    background: #fff;
    padding: 16px 20px 16px 20px;
  }
  .mv,
  .pg_header{
    margin-top:81px; 
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact{
    width: 178px;
    display: block;
    font-size: 14px;
    background: #84ccc9;
    color: #181818;
    border-radius: 17px;
    text-align: center;
    border:1px solid transparent;
    padding: 3px 0;
  }
  .hdr_contact:hover{
    background: #fff;
    border:1px solid #84ccc9;
    color: #84ccc9;
  }
  .hdr_contact p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
  }
  .hdr_contact p:before{
    content: "";
    display: block;
    width: 14px;
    height: 11px;
    background-image: url(/system_panel/uploads/images/mail_bk.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-right: 8px;
  }
  .hdr_contact:hover p:before{
    background-image: url(/system_panel/uploads/images/mail_bl.svg);
  }



  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_img:before{
    padding-top: 300px;
  }
  .pg_header_txt_en{
    font-size:80px;
  }
  .pg_header_txt_ja{
    font-size: 18px;

  }


  .gnav:hover .gnav_item{
    opacity: 0.5;
  }
  .gnav .gnav_item:hover{
    opacity: 1;
  }
  .gnav .gnav_item:hover a{
    opacity: 1;
  }

  .mv{
    padding: 0 60px;
  }
  .mv:before{
    height: 330px;
    bottom: -80px;
  }
  .mv:after{
    height: 72.85%;
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  .mv_txt{
    font-size: 40px;
  }
  .mv_illust_box{

  }
  .mv_illust_left{
    width: 15%;
    position: relative;
    bottom: -50px;
    left: 0;
  }
  .mv_illust_right{
    width: 15%;
    position: relative;
    top: -16px;
    right: 0;
  }
}
@media (min-width:1024px){
  .hdr_logo{
    display: block;
    width: 160px;
    ;
  }
  .mv,
  .pg_header{
    margin-top:83px; 
  }

  .pg_header{
    margin-bottom: 140px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header_txt_en{
    font-size: 100px;
  }
  .pg_header_txt_ja{
    font-size: 20px;
  }

  .mv_img.img_fit:before{
    padding-top: 700px;
  }

  .hdr_contact{

  }
  .gnav_outer{
    margin-right: 10px;
  }
  .gnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav .gnav_item {
    font-size: 14px;
    padding: 0 5px;
    /*line-height: 2;*/
    font-weight: 500;
    transition: 0.2s all;
  }
  .gnav .gnav_item{

  }

  .mv_txt{
    font-size: 50px;
  }
  .mv:before{
    height: 438px;
    bottom: -110px;
  }
  .mv:after{
    height:69%;
  }
  .mv_illust_box{

  }
  .mv_illust_left{
    width: auto;
    position: relative;
    bottom: -100px;
    left: 0;
  }
  .mv_illust_right{
    width: auto;
    position: relative;
    top: -16px;
    right: 0;
  }

}
@media (min-width:1200px){
  .mv:before{
    bottom: -130px;
  }
  .mv:after{
    height: 70%;
  }


  .hdr_logo{
    width: auto;
  }
  .mv_txt{
    font-size: 62px;
  }
  .mv_img.img_fit:before{
    padding-top: 825px;
  }
  .mv_illust_left{
    position: relative;
    bottom: -100px;
    left: 0;
  }
  .mv_illust_right{
    position: relative;
    top: -16px;
    right: 0;
  }

  .pg_header_img:before{
    padding-top:450px;
  }

  .gnav .gnav_item{
    padding: 0 5px;
  }
  .gnav_outer{
    margin-right: 30px;
  }
}
@media (min-width:1400px){
  .header{
    padding: 24px 61px 24px 61px;
  }

  .mv:after{
    height: 80%;
  }
  .mv_txt{
    font-size: 80px;
  }
  .mv_illust_left{
    position: relative;
    bottom: -185px;
    left: -95px;
  }
  .mv_illust_right{
    position: relative;
    top: -16px;
    right: -58px;
  }


}
@media (min-width:1500px){
  .gnav .gnav_item {
    font-size: 14px;
    padding: 0 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px){
  .gnav {
    display: flex !important;
    position: fixed;
    left: 100%;
    z-index: 1000000000;
    height: 0;
    /* background: #47a3cd; */
    /* padding: 20px 15px; */
    font-size: 16px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 1.8s;
    opacity: 0;
    background: #f6f6f6;
    box-shadow: 0 0 4px 0px #666;
    margin: 0;
  }
  .gnav {
    align-items: center;
    font-size: 20px;
    width: calc(100% - 60px);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active {
    align-items: flex-start;
    left: 50%;
    right: inherit;
    top: 50%;
    height: auto;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .gnav.active, .gjs-dashed .gnav {
    max-width: 900px;
    top: 50%;
    left: 50%;
    right: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, -50%);
    background: #84ccc9;
    ;
  }
  .gnav .gnav_box1 {
    width: 65px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .gnav .inner {
    width: calc(100% - 65px - 65px);
  }
  .gnav.active .inner, .gjs-dashed .gnav .inner {
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    /* border: 1px solid #000; */
    border-right: 1px solid #9f9f9f;
    border-left: 1px solid #9f9f9f;
    background: #f6f6f6;
  }
  .gnav .gnav_item {
    width:25%;
    padding: 100px 10px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.075em;
    text-align: center;
    color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border-right: 1px solid #9f9f9f;
    padding: 100px 0;
    border-bottom: 1px solid #9f9f9f;
  }
  .gnav .gnav_item {
    font-size: 15px;
    /* line-height: 2; */
    font-weight: 500;
    transition: 0.2s all;
  }
  .gnav .gnav_box2 {
    width: 65px;
    text-align: center;
    padding: 30px 0;
  }
  .gnav .gnav_box2 .gnav_open {
    font-size: 10px;
    margin-left: 0;
    color: #fff;
  }
  .fa-times:before {
    font-size: 18px;
  }
  .barger {
    width: 60px;
    text-align: center;
  }
  .barger i{
    font-size: 28px;
  }
  .barger p{
    line-height: 1;
  }
  .hdr_contact{
    margin-right: 10px;
  }

}




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

.footer{
  background: #e2ceaf;
  margin-top: 150px;
  position: relative;
}
.footer:before{
  content: "";
  display: block;
  width: 1920px;
  height: 104px;
  background-image: url(/system_panel/uploads/images/ftr_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -104px;
  left: 50%;
  transform:translateX(-50%);
}

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

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

}
.ftr1_box2{

}

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

/*.ftr_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;
  text-align: center;
  padding: 10px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #84ccc9;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}

.ftr_contact_wrap{
  margin-top: 80px;
}
.ftr_contact_box{
  background: #f9f7f3;
  padding: 10px;
}
.ftr_contact_box_inner{
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{

}
.ftr_contact_box1_illust{

}
.ftr_contact_box2{

}
.ftr_contact_box2_title{
  text-align: center;
}
.ftr_contact_box2_title_en{
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box2_title_ja{
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  background: #f29c9f;
  color: #fff;
  border-radius: 14px;
  padding: 5px 21px;
  margin-top: 10px;
}
.ftr_contact_box2_desc{
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  margin-top: 16px;
}
.ftr_contact_box2_tel{
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 20px;
}
.link_2{
  width: 100%;
  max-width: 380px;
  font-size: 22px;
  font-weight: 500;
  margin: 27px auto 0;
  padding: 6px 0;
  display: block;
  background: #84ccc9;
  text-align: center;
  position: relative;
  border-radius: 27px;
  letter-spacing: 0.075em;
  border: 1px solid transparent;

}
.link_2:hover{
  background: #fff;
  border: 1px solid #84ccc9;
}
.link_2 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.16em;
}
.link_2 p:before{
  content: "";
  display: block;
  width: 24px;
  height: 22px;
  background-image: url(/system_panel/uploads/images/envelope-solid.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-right: 13px;
}
.link_2:hover p:before{

}
.ftr_contact_box3{

}
.ftr_contact_box3_illust{

}


.ftr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0 30px;
}
.ftr_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
}
.ftr_box2{
  width: 100%;
}
.ftr_box2 .access_map{

}
.ftr_box2 .access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 20px;
}

@media (min-width:375px){

}

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


  .ftr_contact_wrap{
    margin-top: 140px;
  }
  .ftr_contact_box{
    padding: 20px;
  }
  .ftr_contact_box_inner{
    padding: 32px 0 20px;
  }
  .ftr_contact_box1{
    width: 21.96%;
  }
  .ftr_contact_box1_illust{
    position: relative;
    bottom: -26px;
  }
  .ftr_contact_box2{
    width: 56.07%;
  }
  .ftr_contact_box2_title{

  }
  .ftr_contact_box2_title_en{
    font-size: 50px;
  }
  .ftr_contact_box2_title_ja{

  }
  .ftr_contact_box2_desc{

  }
  .ftr_contact_box2_tel{
    font-size: 36px;
  }
  .link_2{
    font-size: 28px;
  }
  .link_2 p{

  }


  .ftr_contact_box3{
    width: 21.96%;
  }
  .ftr_contact_box3_illust{
    position: relative;
    bottom: -28px;
    right: -39px;
  }

  .ftr{
    padding: 110px 0;
  }
  .ftr_box1{
    width: 55%;
  }
  .ftr_logo{

  }
  .ftr_add{
    font-size: 18px;
    margin-top: 50px;
  }
  .ftr_box2{
    width: 40%;
  }
  .ftr_box2 .access_map{

  }
  .ftr_box2 .access_map iframe{
    height: 357px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .ftr_links:hover .ftr_link{
    opacity: 0.5;
  }
  .ftr_links .ftr_link:hover{
    opacity: 1;
  }
  .ftr_link{
    font-size: 14px;
    font-weight: 400;
    line-height: 2.57em;
    padding: 0 10px 0 0;
  }
  .ftr_link:first-child{
    padding-left: 0;
  }
  .ftr_link p{
    display: flex;
    align-items: center;
  }
  .ftr_link p:before{
    content: "■";
    margin-right: 6px;
  }

}

@media (min-width:1024px){
  .footer{
    margin-top: 300px;
  }


  .ftr_contact_wrap{
    margin-top: 180px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box_inner{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_illust{

  }
  .ftr_contact_box2{

  }
  .ftr_contact_box2_title{

  }
  .ftr_contact_box2_title_en{
    font-size: 60px;
  }
  .ftr_contact_box2_title_ja{

  }
  .ftr_contact_box2_desc{
    text-align:center;
  }
  .ftr_contact_box2_tel{
    font-size: 42px;
  }
  .link_2{
    font-size: 24px;
  }
  .ftr_contact_box3{

  }
  .ftr_contact_box3_illust{

  }
  .ftr{
    padding: 110px 0;
  }
  .ftr_box1{
    width: 48.64%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 65px;
  }
  .ftr_box2{
    width: 48.64%;
  }
  .ftr_box2 .access_map{

  }
  .ftr_box2 .access_map iframe{

  }
  .ftr_links{
    margin-top: 50px;
  }
  .ftr_link{
    padding: 0 32px 0 0;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .ftr_addr em{
    display: block;
  }
  .ftr_contact_box_inner{
    justify-content: center;
    padding: 24px 16px;
  }

  .ftr_contact_box1{
    order: 2;
  }
  .ftr_contact_box2{
    order: 1;
  }
  .ftr_contact_box3{
    order: 3;

  }
  .ftr_contact_box1,
  .ftr_contact_box3{
    width: 28%;
    margin: 36px 16px 0;
  }

  .ftr_logo{
    display: block;
    width: 75%;
    margin: 0 auto;
  }
  .ftr_links{
    display: none;
  }
  .ftr_add{
    text-align: center;
    padding: 0 70px;
    margin-top: 20px;
  }
  .ftr_add p:first-child{
    text-align: center;
  }
  .ftr_box2{
    margin-top: 30px;
  }


}



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

/* 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: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


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

.anchor{
  position: relative;
  top: -30px;
}
.container-w{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width:374px){

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

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

}
@media (min-width: 576px) {
  .container-w {
    max-width: 540px;
  }
}
@media (min-width:768px){
  .container-w {
    max-width: 720px;
  }
  .anchor{
    top: -100px;
  }

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

}
@media (min-width: 992px) {
  .container-w {
    max-width: 960px;
  }
}
@media (min-width:1024px){

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

}
@media (min-width:1200px){
  .container-w {
    max-width: 1830px;
  }

}

/*******************************
*　共通
********************************/
/*ボタン*/
.link_1{
  width: 100%;
  max-width: 380px;
  font-size: 16px;
  font-weight: 500;
  margin: 42px auto 0;
  padding: 15px 0;
  display: block;
  background: #fff;
  text-align: center;
  position: relative;
  border-radius: 33px;
  letter-spacing: 0.075em;
  border: 1px dashed;
}
.link_1:hover{
  background: #181818;
  color: #fff;
}
.link_1:hover:after{
  color: #fff;
}
.link_1:after{
  content: "\f0a9";
  font-family: 'FontAwesome';
  font-weight: 400;
  color: #181818;
  margin-right: 5px;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all .2s;
}

/*見出し*/
.pg_hdr_wrap{
  position: relative;
}
.pg_hdr_wrap:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pg_hdr_wrap:after{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.pg_hdr_tt{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
.pg_hdr_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 18px;
}

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

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

}
@media (max-width:767px){
  .pg_hdr_wrap{
    padding-bottom: 120px;
  }
  .pg_hdr_wrap:before{
    left: 20px;
    /*    bottom: auto;
        top: 0;*/
  }
  .pg_hdr_wrap:after{
    right: 20px;
    /*    bottom: auto;
        top: 0;*/
  }
}
@media (min-width:768px){
  /*見出し*/
  .pg_hdr_tt{
    font-size: 28px;
  }
  .pg_hdr_desc{
    padding: 0 120px;
    ;
    ;
  }

}
@media (min-width:1024px){
  /*見出し*/
  .pg_hdr_tt{
    font-size: 32px;
  }
  .pg_hdr_desc{
    text-align: center;
    padding: 0;
    ;
  }

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


}

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

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

/*お知らせ*/
.home_news_title{
  text-align: center;
  position: relative;
  z-index: 3;
}
.home_news_title_en{
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: #fef3f9;
}
.home_news_title_ja{
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 95px;
  left: 50%;
  transform:translateX(-50%);
}
.home_news_box{
  position: relative;
  z-index: 3;
}
.home_news_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.home_news_box .webgene-item{
  width: 50%;
  padding: 0 15px;
}
.home_news_box .webgene-item a{

}
.home_news_box .webgene-item a:hover{
  color: #181818;
}
.home_news_box .webgene-item a:hover img{
  transform: scale(1.1);
}
.home_news_box .webgene-item .img_outer{
  background: #fff;
  border-radius: 10px;
  box-shadow: 0.5px 0.866px 1.98px 0.02px rgba(0, 0, 0, 0.2);
  padding: 5px;
}
.home_news_box .webgene-item .img_fit img{
  border-radius: 10px;
  transition: all .2s;
}
.home_news_box .webgene-item .img_fit{
  background-image: url(/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.home_news_box .webgene-item .img_fit:before{
  padding-top:79.59%;
}
.home_news_box .webgene-item .meta{
  margin-top: 20px;
}
.home_news_box .webgene-item .cate_outer{
  text-align: center;
}
.home_news_box .webgene-item .category{
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 23px;
  width: 100%;
  max-width: 180px;
  background: #cce198;
  border-radius: 15px;
  position: relative;
}
.home_news_box .webgene-item .category:before{
  content: "";
  display: block;
  width: 54px;
  height: 38px;
  background-image: url(/system_panel/uploads/images/megahon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20%;
  left: -25px;
  transform: translateY(-50%);
}
.home_news_box .webgene-item .day{
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.home_news_box .webgene-item .title{
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height:1.75em;
  margin-top: 4px;
}

/*about*/
.home_about_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{

}
.home_about_box1_title_en{
  color: #ea73a4;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}
.home_about_box1_desc{
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  margin-top: 20px;
}
.home_about_box1 .link_1{

}
.home_about_box2{
  width: 100%;
}
.home_about_box2_txt{
  font-size: 40px;
  font-weight: 900;
  line-height: 1.16em;
  color: #184e9e;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_about_box2_txt p{
  letter-spacing: 0;
}
.home_about_box2_txt p:nth-child(1){

}
.home_about_box2_txt p:nth-child(2){
  margin-top: 47px;
}
.home_about_box2_txt p:nth-child(3){
  margin-top: 25px;
}
.home_about_box2_txt p:nth-child(4){
  margin-top: 86px;
}
.home_about_box2_txt strong{
  font-size: 60px;
  font-weight: 900;
}

.home_about_images{
  display: flex;
  flex-wrap: wrap;
  margin: 20px -5px 0;
}
.home_about_image_item{
  width: 33.333%;
  padding: 0 5px;
}
.home_about_image_item_inner{

}
.home_about_image_img img{
  border-radius: 20px;
}
.home_about_image_img:before{
  padding-top: 115.47%;
}

.event_title{
  text-align: center;
  position: relative;
}
.event_title_illust{
  width: 100%;
  max-width: 308px;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

/*共通英字・日本語タイトル*/
.sec_title_en{
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  z-index: 0;
}
.sec_title_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
/*イベント*/
.home_event_items{
  display: flex;
  flex-wrap: wrap;
  margin: 40px -15px 0;
}
.home_event_item{

}
.event_title .sec_title_en{
  color: #73eadd;
}
.event_title .sec_title_ja{
  margin-top: 73px;
}
.home_event_item_outer{
  display: block;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0.5px 0.866px 1.98px 0.02px rgba(0, 0, 0, 0.2);
  transition: all .2s;
  height: 100%;
}
.home_event_item_outer:hover .home_event_item_inner{
  background: #88abda
}
.home_event_item_outer:hover{
  background: #f9f7f3;
}
.home_event_item_outer:hover .home_event_item_title_cate{
  background: #f9f7f3;
  color: #181818;
}
.home_event_item_inner{
  height: 100%;
  background: #f9f7f3;
  border-radius: 10px;
  padding: 16px 8px 33px 13px;
  transition: all .2s;
}
.home_event_item_inner:after{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/system_panel/uploads/images/arrow-circle-right-solid_red.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  right: 30px;
  transition: all .2s;
}
.home_event_item_outer:hover .home_event_item_inner:after{
  right: 20px;
  /*  background-image:url(/system_panel/uploads/images/arrow-circle-right-solid_wh.svg);*/
}
.home_event_item_title{
  text-align: center;
}
.home_event_item_title_en{
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1;
}
.home_event_item_title_cate{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  background: #88abda;
  width: 100%;
  max-width: 146px;
  margin: 13px auto 0;
  border-radius: 14px;
  transition: all .2s;
}
.home_event_item_title_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 23px;
}
.home_event_item_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  text-align: justify;
  margin-top: 9px;
}

/*goods*/
.home_goods_items{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.home_goods_box1{
  width: 50%;
}
.home_goods_box1_illust{

}
.home_goods_box2{
  width: 100%;
}
.goods_title{
  position: relative;
  text-align: center;
}
.sec_title_ja_outer{
  text-align: center;
  position: relative;
  margin-top: 10px;
}
.goods_title .sec_title_ja{
  margin-top: 0;
}
.goods_title_illust{
  width: 211px;
  position: absolute;
  top: 50%;
  left: calc(50% + 171px);
  transform: translateY(-50%);
}
.home_goods_box2_sub_mes{
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #cf3e8d;
  margin-top: 20px;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 7px;
}
.home_goods_box3{
  width: 50%;
}
.home_goods_box3_illust{

}
.home_goods_lists{
  display: flex;
  flex-wrap: wrap;
  margin: 30px -15px 0;
}
.home_goods_list{

}
.home_goods_list_outer{
  display: block;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0.5px 0.866px 1.98px 0.02px rgba(0, 0, 0, 0.2);
  transition: all .2s;
}
.home_goods_list_outer:hover{
  background: #fff;
  box-shadow: 0.5px 0.866px 1.98px 0.02px rgba(0, 0, 0, 0.8);
}
.home_goods_list_outer:hover .home_goods_list_inner{
  background: #fff;
}
.home_goods_list_inner{
  background: #f9f7f3;
  border-radius: 10px;
  text-align: center;
  font-size: 17px;
  padding: 10px 0;
  transition: all .2s;
}
.home_goods_list_inner p{
  letter-spacing: 0;
}

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

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

}
@media (max-width:767px){
  /*お知らせ*/
  .home_news_title_ja{
    top: 36px;
  }
  .home_news_box{
    margin-top: -45px;
  }
  .home_news_box .webgene-item{
    margin-top: 20px;
  }

  .home_news_box .webgene-item:nth-child(even){
    margin-top: 40px;
  }
  .home_news_box .webgene-item:nth-child(n+5){
    display: none;
  }
  .home_news_box .webgene-item .category:before{
    width: 40px;
    height: 25px;
    top: 20%;
    left: -15px;
  }
  /*about*/
  .home_about_box1{
    order: 2;
    margin-top: 20px;
  }
  .home_about_box2{
    order: 1;
  }
  .home_about_box2_txt{
    font-size: 50px;
    line-height: 1.5em;
    margin: 0 auto;
  }
  .home_about_box2_txt strong{
    font-size: 70px;
  }
  .home_about_box1_illust{
    text-align: center;
    margin: 30px auto 0;
    width: 45%;
  }

  /*イベント*/
  .sec_title_en{
    font-size: 36px;
  }
  .home_event_item:nth-child(n+2){
    margin-top: 20px;
  }
  .event_title_illust{
    top: 45%;
    max-width: 200px;
  }

  /*goods*/
  .home_goods_items{
    justify-content: center;
  }
  .home_goods_box1{
    order: 2;
    width: 55px;
  }
  .home_goods_box2{
    order: 1;
  }
  .home_goods_box3{
    order: 3;
    width: 85px;
  }
  .home_goods_box1,
  .home_goods_box3{
    margin: 20px 16px 0;
  }
  .goods_title_illust{
    position: inherit;
    text-align: center;
    transform: none;
    top: auto;
    left: auto;
    margin: 20px auto 0;
  }

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

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

  /*お知らせ*/
  .home_news_wrap{
    padding: 0 50px;
  }
  .home_news_title{

  }
  .home_news_title_en{
    font-size: 200px;
  }
  .home_news_title_ja{
    font-size: 28px;
    top: 75px;
  }
  .home_news_box{
    margin-top: -95px;
  }
  .home_news_box .webgene-blog{
    justify-content: center;
  }
  .home_news_box .webgene-item{
    width: 33.333%;
    max-width: inherit;
    ;
  }
  .home_news_box .webgene-item:nth-child(odd){
    margin-top: 20px;
    ;
  }
  .home_news_box .webgene-item:nth-child(even){
    margin-top: 45px;
  }
  .home_news_box .webgene-item a{

  }
  .home_news_box .webgene-item .img_outer{

  }
  .home_news_box .webgene-item .img_fit:before{

  }
  .home_news_box .webgene-item .category{

  }
  .home_news_box .webgene-item .day{

  }
  .home_news_box .webgene-item .title{

  }
  .home_news_wrap .link_1{
    margin-top: 75px;
  }

  /*about*/
  .home_about_items{

  }
  .home_about_box1{
    width: 57.90%;
    padding-top: 70px;
    position: relative;
    padding-bottom: 75px;
  }
  .home_about_box1_title_en{
    font-size: 28px;
  }
  .home_about_box1_desc{
    font-size: 18px;
    margin-top: 27px;
  }
  .home_about_box1 .link_1{
    margin-left: 0;
    margin-top: 53px;
  }
  .home_about_box1_illust{
    position: absolute;
    bottom: 0;
    right: -220px;
    width: 239px;
    height: 211px;
  }
  .home_about_box2{
    width: 40.09%;

  }
  .home_about_box2_txt{
    font-size: 65px;
  }
  .home_about_box2_txt strong{
    font-size: 80px;
  }
  .home_about_images{
    margin: 30px -45px 0;
    padding: 0;
  }
  .home_about_image_item{
    padding: 0 45px;
  }
  .home_about_image_item_inner{

  }
  .home_about_image_img img{

  }
  .home_about_image_img:before{

  }

  /*共通英字・日本語タイトル*/
  .sec_title_en{
    font-size: 70px;
  }
  .sec_title_ja{
    font-size: 20px;
  }
  /*イベント*/
  .home_event_items{
    margin-top: 55px;
  }
  .home_event_item{

  }
  .home_event_item:nth-child(n+3){
    margin-top: 16px;
  }
  .home_event_item_outer{

  }
  .home_event_item_inner{

  }
  .home_event_item_title{

  }
  .home_event_item_title_en{
    font-size: 40px;
  }
  .home_event_item_title_cate{

  }
  .home_event_item_title_ja{
    font-size: 22px;
  }
  .home_event_item_desc{
    padding: 0 16px
  }
  .event_title_illust{
    max-width: 230px;
  }

  /*goods*/
  .home_goods_items{

  }
  .home_goods_box1{
    width: 8.5%;
  }
  .home_goods_box1_illust{

  }
  .home_goods_box2{
    width: 71.17%;
  }
  .goods_title{

  }
  .goods_title_illust{

  }
  .home_goods_box2_sub_mes{
    font-size: 23px;
  }
  .content_desc{

  }
  .home_goods_box3{
    width: 8.5%;
  }
  .home_goods_box3_illust{
    width: 86px;
  }
  .home_goods_lists{
    margin-top: 40px;
  }
  .home_goods_list{

  }
  .home_goods_list:nth-child(n+3){
    margin-top: 16px;
  }
  .home_goods_list_outer{

  }
  .home_goods_list_inner{
    font-size: 18px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top:90px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 105px;
  }
  .pg_home .section.sec4{
    margin-top: 170px;
  }

  /*お知らせ*/
  .home_news_wrap{
    padding: 0 50px;
  }
  .home_news_title{

  }
  .home_news_title_en{
    font-size: 301px;
  }
  .home_news_title_ja{
    font-size: 32px;
    top: 95px;
  }
  .home_news_box{
    margin-top: -115px;
  }
  .home_news_box .webgene-blog{

  }
  .home_news_box .webgene-item{

  }
  .home_news_box .webgene-item:nth-child(odd){
    margin-top: 20px;
    ;
  }
  .home_news_box .webgene-item:nth-child(even){
    margin-top: 45px;
  }
  .home_news_box .webgene-item a{

  }
  .home_news_box .webgene-item .img_outer{

  }
  .home_news_box .webgene-item .img_fit:before{

  }
  .home_news_box .webgene-item .category{

  }
  .home_news_box .webgene-item .day{

  }
  .home_news_box .webgene-item .title{

  }

  /*about*/
  .home_about_items{

  }
  .home_about_box1{
    width: 59.90%;
    padding-right: 84px;
  }
  .home_about_box1_title_en{
    font-size: 34px;
  }
  .home_about_box1_desc{

  }
  .home_about_box1 .link_1{

  }
  .home_about_box2{

  }
  .home_about_box2_txt{
    font-size: 90px;
  }
  .home_about_box2_txt strong{
    font-size: 100px;
  }
  .home_about_box1_illust{
    width: 160px;
    height: 140px;
    bottom: 0;
    right: 6px;
  }
  .home_about_images{
    padding: 0;
  }
  .home_about_image_item{

  }
  .home_about_image_item_inner{

  }
  .home_about_image_img img{

  }
  .home_about_image_img:before{

  }

  /*共通英字・日本語タイトル*/
  .sec_title_en{
    font-size: 95px;
  }
  .sec_title_ja{
    font-size: 24px;
    margin-top: 95px;
  }

  /*イベント*/
  .home_event_items{

  }
  .home_event_item{

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

  }
  .home_event_item_inner{

  }
  .home_event_item_title{

  }
  .home_event_item_title_en{
    font-size: 46px;
  }
  .home_event_item_title_cate{

  }
  .home_event_item_title_ja{
    font-size: 18px;
  }
  .home_event_item_desc{

  }
  .event_title_illust{
    max-width: 260px;
  }

  /*goods*/
  .home_goods_items{

  }
  .home_goods_box1{

  }
  .home_goods_box1_illust{
    position: relative;
    left: -40px;
  }
  .home_goods_box2{

  }
  .goods_title{

  }
  .goods_title_illust{

  }
  .home_goods_box2_sub_mes{
    font-size:32px;
  }
  .content_desc{
    text-align: center;
  }
  .home_goods_box3{

  }
  .home_goods_box3_illust{
    width: 133px;
    position: relative;
    right: -23px;
  }
  .home_goods_lists{
    margin-top: 40px;
  }
  .home_goods_list{

  }
  .home_goods_list:nth-child(n+3){
    margin-top: 0;
  }
  .home_goods_list:nth-child(n+5){
    margin-top: 16px;
  }
  .home_goods_list_outer{

  }
  .home_goods_list_inner{

  }
  .home_goods_wrap .link_1{
    margin-top: 60px;
  }
}
@media (min-width:1200px){
  .home_news_box .webgene-blog{
    flex-wrap: nowrap;
  }
  .home_news_box .webgene-item{
    max-width: 285px;
    ;
  }
  .home_news_box .webgene-item:nth-child(odd){
    margin-top: 0;
  }
  .home_news_box .webgene-item:nth-child(even){
    margin-top: 45px;
  }

  /*about*/
  .home_about_box1_illust{
    width: 239px;
    height: 211px;
  }
  .home_about_box1{
    padding-bottom: 75px;
  }
  .home_about_box2{
    margin-right: -20px;
  }
  .home_about_box2_txt{
    font-size: 94px;
  }
  .home_about_box2_txt strong{
    font-size: 105px;
  }
  
  /*共通英字・日本語タイトル*/
  .sec_title_en{
    font-size: 120px;
  }
  .sec_title_ja{
    font-size: 24px;
    margin-top: 73px;
  }
  /*イベント*/
  .home_event_item_title_ja{
    font-size: 24px;
  }
  .event_title_illust{
    max-width: 308px;
  }

}
@media (min-width:1300px){
  .home_about_images{
    padding: 0 10%;
  }
}


/*******************************
*　about
********************************/
.pg_about{

}
.pg_about .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_about .section.sec2{
  padding-top: 80px;
}
.pg_about .section.sec3{
  background: #f9f7f3;
  position: relative;
  margin-top: 80px;
  padding-top:40px;
  padding-bottom: 40px;
}
.pg_about .section.sec3:after{
  content: "";
  display: block;
  width: 1920px;
  height: 49px;
  background-image: url(/system_panel/uploads/images/ab_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  ;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}


/*見出し*/
.pg_about .pg_hdr_wrap:before{
  background-image: url(/system_panel/uploads/images/about_left.png);
  width: 70px;
  height: 202px;
}
.pg_about .pg_hdr_wrap:after{
  width: 93px;
  height: 202px;
  background-image: url(/system_panel/uploads/images/about_riight.png);
}
.about_hdr_imgs{
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.about_hdr_imgs img{
  border-radius: 20px;
}
.about_hdr_imgs_box1{
  width:51.35%;
  padding-top: 20px;
}
.about_hdr_imgs_box1_img:before{
  padding-top: 73.68%;
}
.about_hdr_imgs_box2{
  width:42.79%;
}
.about_hdr_imgs_box2_top{
  width: 100%;
}
.about_hdr_imgs_box2_top_img:before{
  padding-top: 67.36%;
}
.about_hdr_imgs_box2_bottom{
  width: 80%;
  margin-left: 30px;
  margin-top: 30px;
}
.about_hdr_imgs_box2_bottom_img:before{
  padding-top: 65.78%;
}

/*特徴*/
.about_feature_wrap{

}
.sec_title{
  text-align: center;
}
.sec_title_en{
  color: #f3bd6f
}
.about_feature_wrap .sec_title_ja{
  margin-top: 7px;
}
.about_feature_items{
  margin-top: 40px;
}
.about_feature_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #eeeae4;
  padding-bottom: 50px;
}
.about_feature_item:last-child{
  border-bottom: none;
}
.about_feature_box1{
  width: 100%;
}
.about_feature_box1_en{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #f3bd6f;
}
.about_feature_box1_title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.56em;
  ;
  margin-top: 10px;
}
.about_feature_box1_title p{
  letter-spacing: 0;
}
.about_feature_box1_desc{
  font-size: 16px;
  font-weight: 600;
  line-height: 2.25em;
  ;
  text-align: justify;
  margin-top: 17px;
}
.about_feature_box2{
  width: 100%;
}
.about_feature_box2_img img{
  border-radius: 20px;
}
.about_feature_box2_img:before{
  padding-top: 80%;
}
.about_feature_item:after{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.about_feature_item:nth-child(odd):after{
  right: 0;
}
.about_feature_item:nth-child(even):after{
  left: 0;
}

.about_feature_item.one:after{
  width: 122px;
  height: 159px;
  background-image: url(/system_panel/uploads/images/20241106154259670439.png);
}
.about_feature_item.two:after{
  width: 96px;
  height: 157px;
  background-image: url(/system_panel/uploads/images/20241106154259660466.png);
}
.about_feature_item.three:after{
  width: 76px;
  height: 177px;
  background-image: url(/system_panel/uploads/images/20241106154259261713.png);
}
.about_feature_item.for:after{
  width: 102px;
  height: 177px;
  background-image: url(/system_panel/uploads/images/20241106154259401629.png);
}
.about_feature_item.five:after{
  width: 149px;
  height:175px;
  background-image: url(/system_panel/uploads/images/20241106154259913098.png);
}

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

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

}
@media (max-width:767px){
  /*見出し*/
  .pg_about .pg_hdr_wrap:before{
    width: 40px;
    height: 109px;
  }
  .pg_about .pg_hdr_wrap:after{
    width: 48px;
    height: 104px;
  }
  /*特徴*/
  .about_feature_item{
    padding-bottom: 90px;
  }
  .about_feature_item:nth-child(n+2){
    margin-top: 70px;
  }
  .about_feature_box1{
    order: 2;
    margin-top: 20px;
  }
  .about_feature_box2{
    order: 1;
  }
  .about_feature_item.one:after{
    width: 67px;
    height: 84px;
  }
  .about_feature_item.two:after{
    width: 53px;
    height: 82px;
  }
  .about_feature_item.three:after{
    width: 38px;
    height: 88px;
  }
  .about_feature_item.for:after{
    width: 55px;
    height: 93px;
  }
  .about_feature_item.five:after{
    width: 71px;
    height: 82px;
  }
}
@media (min-width:768px){
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 100px;
  }
  .pg_about .section.sec3{
    margin-top: 140px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  /*見出し*/
  .pg_about .pg_hdr_wrap:before{
    width: 70px;
    height: 202px;
    left: -40px;
    bottom: 11px;
  }
  .pg_about .pg_hdr_wrap:after{
    width: 93px;
    height: 202px;
    right: -44px;
    bottom: 11px;
  }
  .about_hdr_imgs{
    margin-top: 70px;
  }
  .about_hdr_imgs_box1{

    padding-top: 50px;
  }
  .about_hdr_imgs_box1_img:before{

  }
  .about_hdr_imgs_box2{

  }
  .about_hdr_imgs_box2_top{

  }
  .about_hdr_imgs_box2_top_img:before{

  }
  .about_hdr_imgs_box2_bottom{
    margin-top: 80px;
  }
  .about_hdr_imgs_box2_bottom_img:before{

  }
  /*特徴*/
  .pg_about .event_title_illust{
    max-width:240px;
  }
  .about_feature_items{
    margin-top: 50px;

  }
  .about_feature_item{
    padding-bottom: 80px;
  }
  .about_feature_item:nth-child(n+2){
    margin-top: 77px;
  }
  .about_feature_item:nth-child(odd) .about_feature_box1{
    order: 1;
  }
  .about_feature_item:nth-child(odd) .about_feature_box2{
    order: 2;
  }
  .about_feature_item:nth-child(even) .about_feature_box1{
    order: 2;
  }
  .about_feature_item:nth-child(even) .about_feature_box2{
    order: 1;
  }
  .about_feature_box1{
    width: 48.64%;
  }
  .about_feature_box1_en{
    font-size: 22px;
  }
  .about_feature_box1_title{
    font-size: 22px;
  }
  .about_feature_box1_desc{

  }
  .about_feature_box2{
    width: 42.79%;
    padding-top: 5px;
  }

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

  }
  .pg_about .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 135px;
  }
  .pg_about .section.sec3{
    margin-top: 195px;
    padding-top: 90px;
  }

  /*見出し*/
  .pg_about .pg_hdr_wrap:before{
    width: 70px;
    height: 202px;
    left: -40px;
    bottom: 11px;
  }
  .pg_about .pg_hdr_wrap:after{
    width: 93px;
    height: 202px;
    right: -44px;
    bottom: 11px;
  }
  .about_hdr_imgs{
    margin-top: 70px;
  }
  .about_hdr_imgs_box1{

  }
  .about_hdr_imgs_box1_img:before{

  }
  .about_hdr_imgs_box2{

  }
  .about_hdr_imgs_box2_top{

  }
  .about_hdr_imgs_box2_top_img:before{

  }
  .about_hdr_imgs_box2_bottom{

  }
  .about_hdr_imgs_box2_bottom_img:before{

  }

  /*特徴*/
  .pg_about .event_title_illust{
    max-width: 308px;
  }
  .about_feature_box1_title{
    font-size: 26px;
  }
  .about_feature_box1_en{
    font-size: 25px;
  }
}
@media (min-width:1200px){
  /*特徴*/
  .about_feature_item.one:after{
    right: -56px;
  }
  .about_feature_item.two:after{
    left: -32px;
  }
  .about_feature_item.three:after{
    right: -34px;
  }
  .about_feature_item.for:after{
    left: -50px;
  }
  .about_feature_item.five:after{
    right: -56px;
  }
  .about_feature_box1_title{
    font-size: 32px;
  }

}


/*******************************
*　行政の方
********************************/
.pg_government{

}
.pg_government .section.sec1{
}
.pg_government .section.sec2{
  background: #f9f7f3;
  position: relative;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-top: 70px;
}
.pg_government .section.sec2:after{
  content: "";
  display: block;
  width: 1920px;
  height: 49px;
  background-image: url(/system_panel/uploads/images/ab_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.pg_government .section.sec3{
  padding-top: 70px;
}

/*見出し*/
.pg_government .pg_hdr_wrap:before{
  background-image: url(/system_panel/uploads/images/3_left.png);
  width: 78px;
  height: 203px;
}
.pg_government .pg_hdr_wrap:after{
  width: 104px;
  height: 204px;
  background-image: url(/system_panel/uploads/images/3_right.png);
}

.government_secene_wrap .sec_title_en{
  color: #184e9e;
}
.government_secene_wrap .sec_title_ja{
  margin-top: 10px;
}

/*シーン*/
.government_secene_items{
  display: flex;
  flex-wrap:wrap;
  margin: 40px -15px 0;
}
.government_secene_item{

}
.government_secene_item_inner{

}
.government_secene_item_img img{
  border-radius: 20px 20px 0 0;
}
.government_secene_item_img:before{
  padding-top: 64.81%;
}
.government_secene_item_content{
  background: #fff;
  padding: 16px;
  border-radius: 0 0 20px 20px;
}
.government_secene_item_cate{
  width: 125px;
  background: #88abda;
  color: #fff;
  text-align: center;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 0;
}
.government_secene_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 13px;
}
.government_secene_item_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  margin-top: 6px;
}

/*事例*/
.government_work_wrap .sec_title_en{
  color: #73eadd;
}
.government_work_wrap .sec_title_ja{
  margin-top: 10px;
}
.government_work_items{
  display: flex;
  flex-wrap: wrap;
  margin: 50px -15px 0;
}
.government_work_item{

}
.government_work_item_inner{
  height: 100%;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0.5px 0.866px 1.98px 0.02px rgba(0, 0, 0, 0.2);
  padding: 3px;
}
.government_work_item_inner p{
  display: flex;
  align-items:center;
  height: 100%;
  background: #f9f7f3;
  border-radius: 10px;
  padding: 10px 0px 10px 27px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .government_secene_item:nth-child(n+2){
    margin-top: 40px;
  }

  .government_work_item:nth-child(n+2){
    margin-top: 16px;
  }
  .pg_government .pg_hdr_wrap:before{
    width: 73px;
    height: 116px;
  }
  .pg_government .pg_hdr_wrap:after{
    width: 79px;
    height: 115px;
  }

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

  }
  .pg_government .section.sec1{
  }
  .pg_government .section.sec2{
    padding-top: 70px;
    padding-bottom: 100px;
    margin-top: 100px;
  }
  .pg_government .section.sec3{
    padding-top: 100px;
  }

  /*見出し*/
  .pg_government .pg_hdr_desc{
    margin-top: 30px;
  }

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

  /*シーン*/
  .government_secene_items{
    margin-top: 60px;
  }
  .government_secene_item{

  }
  .government_secene_item:nth-child(n+3){
    margin-top: 40px;
  }
  .government_secene_item_inner{

  }
  .government_secene_item_img:before{

  }
  .government_secene_item_content{
    padding: 20px 30px;
  }
  .government_secene_item_cate{

  }
  .government_secene_item_tt{
    font-size: 24px;
  }
  .government_secene_item_desc{

  }

  /*事例*/
  .government_work_items{
    margin-top: 70px;
  }
  .government_work_item{

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

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

  }
  .pg_government .section.sec1{
  }
  .pg_government .section.sec2{
    padding-top: 85px;
    padding-bottom: 150px;
    margin-top: 150px;
  }
  .pg_government .section.sec3{
    padding-top: 133px;
  }


  /*シーン*/
  .government_secene_items{
    margin-top: 72px;
  }
  .government_secene_item{

  }
  .government_secene_item:nth-child(n+3){
    margin-top: 80px;
  }
  .government_secene_item_inner{
    background: #fff;
    height: 100%;
    border-radius: 0 0 20px 20px;
  }
  .government_secene_item_img:before{

  }
  .government_secene_item_content{
    padding: 20px 50px 24px 65px;
  }
  .government_secene_item_cate{

  }
  .government_secene_item_tt{
    font-size: 32px;
  }
  .government_secene_item_desc{

  }

  /*事例*/
  .government_work_items{
    margin-top: 86px;
  }
  .government_work_item{

  }
  .government_work_item_inner{

  }
}
@media (min-width:1200px){
  /*見出し*/
  .pg_government .pg_hdr_wrap:before{
    left: -37px;
    bottom: 10px;
  }
  .pg_government .pg_hdr_wrap:after{
    right: -50px;
    bottom: 10px;
  }

}

/*******************************
*　企業・個人の方
********************************/
.pg_individual{

}
.pg_individual .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_individual .section.sec2{
  padding-top:60px;
}
.pg_individual .section.sec3{
  padding-top: 50px;
  padding-bottom: 0;
  position: relative;
  margin-top: 70px;
}
.pg_individual .section.sec3:before{
  content: "";
  display: block;
  width: 1920px;
  height: 348px;
  background-image: url(/system_panel/uploads/images/bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.pg_individual .section.sec4{
  padding-top: 28px;
}

/*見出し*/
.pg_individual .pg_hdr_wrap:before{
  background-image: url(/system_panel/uploads/images/20241110112245251546.png);
  width: 124px;
  height: 216px;
}
.pg_individual .pg_hdr_wrap:after{
  width: 126px;
  height: 216px;
  background-image: url(/system_panel/uploads/images/icon1.png);
}

/*強み*/
.pg_individual .section.sec2 .sec_title_en{
  color: #cc2684;
}
.home_event_item_outer:hover{
  background: #fff;
}
.home_event_item_outer:hover .home_event_item_inner{
  background: #f9f7f3;
}
.home_event_item_outer:hover .home_event_item_title_cate{
  background: #f29c9f;
  color: #fff;
}
.home_event_item_img{
  text-align: center;
  min-height: 140px;
  margin-top: 20px;
}
.pg_individual .home_event_item_title_en{
  font-weight: 700;
  letter-spacing: 0;
}
.pg_individual .home_event_item_title_cate{
  background: #f29c9f;
}
.pg_individual .home_event_item_title_ja{
  text-align: center;
}
.pg_individual .home_event_item_inner:after{
  display: none;
}

.pg_individual .sec_title_ja{
  margin-top: 10px;
}
.individual_scene_wrap .sec_title_en{
  color: #73eadd;
}
/*カテゴリ*/
.individual_scene_cate_items{
  display: flex;
  flex-wrap: wrap;
  margin: 30px -15px 0;
}
.individual_scene_cate_item{

}
.individual_scene_cate_item:nth-child(n+3){
  margin-top: 20px;
}
.individual_scene_cate_item_inner{
  display: block;
  background: #fff;
  border-radius: 27.5px;
  border: 1px dashed;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: all .2s;
  padding: 13px 0;
}
.individual_scene_cate_item_inner:hover{
  background: #73eadd;
  color: #fff;
}
.individual_scene_cate_item_inner:after{
  content:"\f0a9";
  font-family: "fontAwesome";
  position: absolute;
  top: 50%;

  right: 27px;
  transform: translateY(-50%);
}

/*利用シーン*/

.individual_scene_item{
  position: relative;
  padding-top: 60px;
}
.individual_scene_wrap{
  position: relative;
  padding-bottom: 40px;
}
.individual_scene_wrap:nth-child(odd):before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f9f7f3;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.individual_scene_wrap:nth-child(even):before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;

  background: #fff;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.individual_scene_item_outer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.individual_scene_item_box1{
  width: 100%;
}
.individual_scene_item_box1_top{

}
.individual_scene_item_box1_top_img{

}
.individual_scene_item_box1_top_img img{
  border-radius: 20px 20px 0 0;
}
.individual_scene_item_box1_top_img:before{
  padding-top: 50.87%;
}
.individual_scene_item_box1_bottom{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-top: 12px;
}
.individual_scene_item_box1_bottom_left{
  width: 49.12%;
}
.individual_scene_item_box1_bottom_left_img img{
  border-radius: 0 0 0 20px;
}
.individual_scene_item_box1_bottom_left_img:before{
  padding-top: 78.57%;
}
.individual_scene_item_box1_bottom_right{
  width: 49.12%;
}
.individual_scene_item_box1_bottom_right_img{

}
.individual_scene_item_box1_bottom_right_img img{
  border-radius: 0 0 20px 0;
}
.individual_scene_item_box1_bottom_right_img:before{
  padding-top: 78.57%;
}
.individual_scene_item_box2{
  width: 100%;
}
.individual_scene_item_box2_title{

}
.individual_scene_item_box2_title_en{
  color: #88abda;
  line-height: 1;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}
.individual_scene_item_box2_title_ja{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 13px;
}
.individual_scene_item_box2_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  text-align: justify;
  margin-top: 20px;
}
.individual_scene_item_box2_events{
  position: relative;
  margin-top: 36px;
}
.individual_scene_item_box2_event_txt{

}
.individual_scene_item_box2_event_inner{
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  padding: 26px 27px;
}
.individual_scene_item_box2_events_txt{
  display: inline-block;
  font-size: 18.5px;
  font-weight: 400;
  line-height: 1.875em;
  position: absolute;
  top: -20px;
  left: -16px;
  transform: rotate(-8deg);
  background:linear-gradient(transparent 60%, #ff6 60%);
}
.individual_scene_item_box2_event_txt:nth-child(n+2){
  margin-top: 16px;
}
.individual_scene_item_box2_event_txt:before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/system_panel/uploads/images/circle-check-solid.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 5px;
}
.individual_scene_item_box2_event_txt{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
}
.individual_scene_item_box2_event_txt:nth-child(n+2){

}

.individual_scene_images{

}
.individual_scene_images_title{
  text-align: center;
  position: relative;
}
.individual_scene_images_title:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #eeeae4;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.individual_scene_images_tt{
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 10px;
}
.individual_scene_wrap:nth-child(odd) .individual_scene_images_tt{
  background: #f9f7f3;
}
.individual_scene_wrap:nth-child(even) .individual_scene_images_tt{
  background: #fff;
}
.individual_scene_images_inner{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.individual_scene_image{

}
.individual_scene_image_content{
}
.individual_scene_image_img:before{
  padding-top: 71.42%;
}
.individual_scene_image_img img{
  border-radius: 10px;
}
.individual_scene_image_txt{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 10px;
}

/*flow*/
.individual_flow_wrap{

}
.individual_flow_wrap .home_event_items{

}
.individual_flow_wrap .home_event_item_title_ja{
  font-size: 20px;
  color: #f29c9f;
  letter-spacing: 0;
}
.individual_flow_wrap .link_1{
  padding: 10px 0;
  margin-top: 20px;
}
.individual_flow_wrap .link_1 p{
  letter-spacing: 0.075em;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_individual .pg_hdr_wrap:before{
    width: 114px;
    height: 110px;
  }
  .pg_individual .pg_hdr_wrap:after{
    width: 107px;
    height: 110px;
  }

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

  .individual_scene_image:nth-child(n+3){
    margin-top: 0;
  }
  .individual_scene_item_box2_event_txt{
    width: 100%;
  }
  .individual_scene_item_box2_event_inner{
    padding: 40px 27px 26px 42px;
  }
  .individual_scene_image{
    width: 75%;
  }
  .individual_scene_images{
    margin-top: 30px;
  }

  .individual_scene_item_box2_events_txt{
    left: 0;
  }

  /*swiper*/
  .individual_scene_images .swiper{
    margin-top: 30px;
  }
  .swiper-button-next{
    right:27px;

  }
  .swiper-button-prev{
    left:27px;
  }


  .individual_scene_item_box2{
    margin-top:20px;
  }
  .individual_scene_item_box1_bottom{
    margin-top: 7px;
  }
}
@media (min-width:768px){
  .pg_individual{

  }
  .pg_individual .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_individual .section.sec2{
    padding-top:70px;
  }
  .pg_individual .section.sec3{
    padding-top: 70px;
    padding-bottom: 0;
    margin-top: 120px;
  }

  /*見出し*/
  .pg_individual .pg_hdr_wrap:before{
    left: -30px;
    bottom: 10px;
  }
  .pg_individual .pg_hdr_wrap:after{
    right: -30px;
    bottom: 10px;
  }
  /*強み*/
  .home_event_item_img{
    margin-top: 30px;
  }

  /*カテゴリ*/
  .individual_scene_cate_items{
    margin-top: 60px;
  }
  .individual_scene_cate_item{

  }
  .individual_scene_cate_item_inner{

  }
  .individual_scene_cate_item_inner:after{

  }

  /*利用シーン*/
  .individual_scene_wrap{
    padding-bottom: 80px;
  }
  .individual_scene_item{
    padding-top: 100px;
  }
  .individual_scene_item_box1{
    width: 51.35%;
  }
  .individual_scene_item_box1_top{

  }
  .individual_scene_item_box1_top_img{

  }
  .individual_scene_item_box1_top_img:before{

  }
  .individual_scene_item_box1_bottom{

  }
  .individual_scene_item_box1_bottom_left{

  }
  .individual_scene_item_box1_bottom_left_img:before{

  }
  .individual_scene_item_box1_bottom_right{

  }
  .individual_scene_item_box1_bottom_right_img{

  }
  .individual_scene_item_box1_bottom_right_img:before{

  }
  .individual_scene_item_box2{
    width: 42.79%;
  }
  .individual_scene_item_box2_title{

  }
  .individual_scene_item_box2_title_en{
    font-size: 25px;
  }
  .individual_scene_item_box2_title_ja{
    font-size: 28px;
  }
  .individual_scene_item_box2_desc{

  }
  .individual_scene_item_box2_events{
    margin-top: 42px;
  }
  .individual_scene_item_box2_event_txt{
    min-width: 223px;
  }

  .individual_scene_item_box2_event_inner{
    padding: 26px 0 26px 27px;
  }

  .individual_scene_images{
    margin-top: 50px;
  }
  .individual_scene_images_tt{
    font-size: 20px;
  }
  .individual_scene_images_inner{
    margin-top: 48px;
  }
  .individual_scene_image{

  }
  .individual_scene_image:nth-child(n+4){
    margin-top: 20px;
  }
  .individual_scene_image_content{

  }
  .individual_scene_image_img:before{

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

  /*flow*/
  .individual_flow_wrap{

  }
  .individual_flow_wrap .home_event_items{

  }
  .individual_flow_wrap .home_event_item_title_ja{
    font-size: 20px;
  }
  .individual_flow_wrap .home_event_item_inner{
    padding: 16px 20px 10px 24px;
  }

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

  }
  .pg_individual .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_individual .section.sec2{
    padding-top:90px;
  }
  .pg_individual .section.sec3{
    padding-top: 88px;
    padding-bottom: 0;
    margin-top: 160px;
  }

  /*見出し*/
  .pg_individual .pg_hdr_wrap:before{
    left: -60px;
    bottom: 10px;
  }
  .pg_individual .pg_hdr_wrap:after{
    right: -62px;
    bottom: 10px;
  }

  /*カテゴリ*/
  .individual_scene_cate_items{

  }
  .individual_scene_cate_item{

  }
  .individual_scene_cate_item:nth-child(n+3){
    margin-top:0;
  }
  .individual_scene_cate_item:nth-child(n+4){
    margin-top: 20px;
  }
  .individual_scene_cate_item_inner{

  }
  .individual_scene_cate_item_inner:after{

  }

  /*利用シーン*/
  .individual_scene_wrap{
    padding-bottom: 95px;
  }
  .individual_scene_item{

  }

  .individual_scene_item_box1{

  }
  .individual_scene_item_box1_top{

  }
  .individual_scene_item_box1_top_img{

  }
  .individual_scene_item_box1_top_img:before{

  }
  .individual_scene_item_box1_bottom{

  }
  .individual_scene_item_box1_bottom_left{

  }
  .individual_scene_item_box1_bottom_left_img:before{

  }
  .individual_scene_item_box1_bottom_right{

  }
  .individual_scene_item_box1_bottom_right_img{

  }
  .individual_scene_item_box1_bottom_right_img:before{

  }
  .individual_scene_item_box2{

  }
  .individual_scene_item_box2_title{

  }
  .individual_scene_item_box2_title_en{

  }
  .individual_scene_item_box2_title_ja{
    font-size: 32px;
  }
  .individual_scene_item_box2_desc{

  }
  .individual_scene_item_box2_events{

  }
  .individual_scene_item_box2_event_txt{

  }
  .individual_scene_item_box2_event_inner{

  }

  .individual_scene_images{

  }
  .individual_scene_images_tt{

  }
  .individual_scene_images_inner{

  }
  .individual_scene_image{

  }
  .individual_scene_image_content{

  }
  .individual_scene_image_img:before{

  }
  .individual_scene_image_txt{

  }

  .individual_flow_wrap .home_event_item_title_ja{
    font-size: 20px;
  }
  .individual_flow_wrap home_event_item:nth-child(n+4){
    margin-top: 35px;
  }
  .home_event_items .link_1:after{
    right: 5px;
  }
}
@media (min-width:1200px){

  .pg_individual .section.sec1 .pg_hdr_desc{
    margin-top: 30px;
  }
  .individual_scene_item_box2_event_txt:nth-child(n+2){
    margin-top: 0;
  }
  .individual_scene_item_box2_event_txt:nth-child(n+3){
    margin-top: 7px;
  }

  .individual_flow_wrap .home_event_item_title_ja{
    font-size: 24px;
  }

  .home_event_items .link_1:after{
    right: 26px;
  }

}


/*******************************
*　デザイン
********************************/
.pg_design{

}
.pg_design .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_design .section.sec2{
  padding-top: 50px;
}
.pg_design .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f9f7f3;
  position: relative;
  margin-top: 80px;
}
.pg_design .section.sec4{
  padding-top: 70px;
}
.pg_design .section.sec5{
  background: #f9f7f3;
  padding: 50px 0;
}

.pg_design .section.sec3:before{
  content: "";
  display: block;
  width: 1920px;
  height: 49px;
  background-image: url(/system_panel/uploads/images/ab_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/*見出し*/
.pg_design .pg_hdr_wrap:before{
  background-image: url(/system_panel/uploads/images/d_left.png);
  width: 166px;
  height: 235px;
}
.pg_design .pg_hdr_wrap:after{
  width: 148px;
  height: 235px;
  background-image: url(/system_panel/uploads/images/d_right.png);
}

/*feature*/
.pg_design .section.sec2 .sec_title_en{
  color: #84ccc9;
}
.pg_design .home_event_item_title_en{
  font-weight: 700;
}
.pg_design .section.sec2 .home_event_item_title_cate{
  max-width: 190px;
  width: 100%;
  background: #f29c9f;
}
.home_event_item_title_ja{
  text-align:center;
}
.pg_design .section.sec2 .home_event_item_inner{
  padding: 16px;
}
.pg_design .section.sec2 .home_event_item_inner:after{
  display: none;
}

/*service*/
.design_service_wrap .sec_title_en{
  color: #ea73a4;
}
.pg_design .sec_title_ja{
  margin-top: 7px;
}
.design_service_wrap .home_event_item_title_cate{
  width: 100%;
  max-width: 100%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  background: #84ccc9;
  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_event_item_image:before{
  padding-top: 68.96%;
}
.home_event_item_image{
  margin-top: 20px;
}
.home_event_item_image img{
  border-radius: 10px;
}
.design_service_wrap .home_event_item_inner:after{
  display: none;
}
.design_service_wrap .home_event_item_outer:hover .home_event_item_title_cate{
  background: #84ccc9;;
  color: #181818;
}
.design_service_wrap .home_event_item_inner{
  background: #fff;
}
.design_service_wrap .home_event_item_outer{
  box-shadow: none;
}

/*scene*/
.design_scene_wrap .sec_title_en{
  color: #184e9e;
}
.design_scene_wrap .pg_hdr_tt{
  margin-top: 20px;
}
.design_scene_wrap .individual_scene_cate_item_inner{
  font-size:15px;
  font-weight: 500;
}
.design_scene_wrap .individual_scene_cate_item_inner p{
  letter-spacing: 0.075em;
}
.design_scene_wrap .individual_scene_cate_item_inner:after{
  right: 10px;
  font-size: 18px;
}

.design_scene_wrap .about_feature_item .about_feature_box2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f9f7f3;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  z-index: -1;
}
.design_scene_wrap .about_feature_item .about_feature_box2_img:before{
  padding-top: 73.68%;
}
.design_scene_wrap .about_feature_item:nth-child(odd) .about_feature_box2_img:after{
  left: 10px;
}
.design_scene_wrap .about_feature_item:nth-child(even) .about_feature_box2_img:after{
  right: 10px;
}
.design_scene_wrap .about_feature_box1_en{
  color: #88abda;
}
.design_scene_wrap .about_feature_box1_desc{
  margin-top: 20px;
}
.design_scene_wrap .about_feature_box1_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
}

/*事例*/
.design_works_wrap .sec_title_en{
  color: #73eadd;
}
.design_works_box{
  margin-top: 36px;
}
.design_works_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.design_works_box .webgene-item{

}
.design_works_box .webgene-item .inner{

}
.design_works_box .webgene-item .inner:hover img{
  transform: scale(1.1);
}
.design_works_box .webgene-item .img_fit:before{
  padding-top: 78.43%;
}
.design_works_box .webgene-item .img_fit{
  background-image: url(/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
}
.design_works_box .webgene-item .img_fit img{
  border-radius: 10px;
  transition: all .2s;
}
.design_works_wrap .link_1{
  margin-top: 40px;
}

.design_service_wrap .home_event_item_outer:hover .home_event_item_inner{
  background: #fff;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_design .pg_hdr_wrap:before{
    width: 90px;
    height: 119px;
  }
  .pg_design .pg_hdr_wrap:after{
    width: 90px;
    height: 117px;
  }


  .design_scene_wrap .about_feature_item{
    padding-bottom: 30px;
  }
  .design_scene_wrap .about_feature_item:nth-child(n+2){
    margin-top: 50px;
  }

  .design_works_box .webgene-item:nth-child(n+3){
    margin-top: 10px;
  }
  .design_works_box .webgene-blog{
    margin: 0 -5px;
  }
  .design_works_box .webgene-item{
    padding: 0 5px;
  }
}
@media (min-width:768px){
  .pg_design{

  }
  .pg_design .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_design .section.sec2{
    padding-top:70px;
  }
  .pg_design .section.sec3{
    padding-top: 70px;;
    padding-bottom: 100px;
    margin-top: 140px;
  }
  .pg_design .section.sec4{
    padding-top: 100px;
  }
  .pg_design .section.sec5{
    padding: 100px 0 100px;
  }
  /*見出し*/
  .pg_design .pg_hdr_wrap:before{
    width: 115px;
    height: 176px;
  }
  .pg_design .pg_hdr_wrap:after{
    width: 110px;
    height: 170px;
  }

  /*feature*/
  .pg_design .section.sec2 .home_event_item_inner{
    padding: 0;
  }
  .home_event_item_image{
    margin-top: 24px;
  }
  .design_service_wrap .home_event_items{
    justify-content: center;
  }

  /*scene*/
  .design_scene_wrap .pg_hdr_desc{
    padding: 0;
  }
  .design_scene_wrap .pg_hdr_tt{
    margin-top: 43px;
  }
  .design_scene_wrap .individual_scene_cate_items{
    margin-top: 60px;
  }
  .design_scene_wrap .individual_scene_cate_item_inner{
    font-size:15px;
  }
  .design_scene_wrap .about_feature_item .about_feature_box1{
    width: 51.35%;
  }
  .design_scene_wrap .about_feature_item .about_feature_box2{
    width: 42.79%;
  }
  .design_scene_wrap .about_feature_item:nth-child(odd) .about_feature_box1{
    order: 2;
  }
  .design_scene_wrap .about_feature_item:nth-child(odd) .about_feature_box2{
    order: 1;
  }
  .design_scene_wrap .about_feature_item:nth-child(even) .about_feature_box1{
    order: 1;
  }
  .design_scene_wrap .about_feature_item:nth-child(even) .about_feature_box2{
    order: 2;
  }
  .design_scene_wrap .about_feature_items{
    margin-top: 95px; 
  }
  .design_scene_wrap .about_feature_item{
    padding-bottom: 73px;
  }

  .pg_design .section.sec2 .home_event_item_inner{
    padding: 18px 0;
  }
  /*事例*/
  .design_works_wrap .sec_title_en{

  }
  .design_works_box{
    margin-top: 53px;
  }
  .design_works_box .webgene-blog{

  }
  .design_works_box .webgene-item{

  }
  .design_works_box .webgene-item:nth-child(n+4){
    margin-top: 20px;
  }
  .design_works_box .webgene-item .inner{

  }
  .design_works_box .webgene-item .img_fit:before{

  }
  .design_works_box .webgene-item .img_fit img{

  }

  .design_works_wrap .link_1{
    margin-top: 80px;
  }
}
@media (min-width:1024px){
  .pg_design{

  }
  .pg_design .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_design .section.sec2{
    padding-top: 85px;
  }
  .pg_design .section.sec3{
    padding-top: 85px;;
    padding-bottom: 150px;
    margin-top: 200px;
  }
  .pg_design .section.sec4{
    padding-top: 130px;
  }
  .pg_design .section.sec5{
    padding: 135px 0 152px;
  }

  /*見出し*/
  .pg_design .pg_hdr_wrap:before{
    left: -50px;
    bottom: 10px;
    width: 166px;
    height: 235px;
  }
  .pg_design .pg_hdr_wrap:after{
    right: -50px;
    bottom: 10px;
    width: 148px;
    height: 235px;
  }

  .pg_design .pg_hdr_desc{
    margin-top: 34px;
  }

  /*feature*/
  .pg_design .section.sec2 .home_event_item_inner{
    padding: 18px 0;;
  }
  .pg_design .section.sec2 .home_event_item_desc{
    padding: 0 19px 0 29px;
  }
  .design_service_wrap .home_event_item_inner{
    padding: 16px 25px;
  }
  .design_service_wrap .home_event_item_title_cate{
    font-size: 17px;
    margin-top: 24px;
  }
  .design_service_wrap .home_event_item_desc{
    margin-top: 16px;
  }

  /*scene*/

  .design_scene_wrap .individual_scene_cate_items{
    margin-top: 70px;
  }
  .design_scene_wrap .individual_scene_cate_item_inner{
    font-size:14px;
  }
  .design_scene_wrap .individual_scene_cate_item_inner p{
    letter-spacing: 0;
  }
  .design_scene_wrap .individual_scene_cate_item:nth-child(n+4){
    margin-top: 0;
  }
  .design_scene_wrap .individual_scene_cate_item:nth-child(n+5){
    margin-top: 25px;
  }

  /*事例*/
  .design_works_wrap .sec_title_en{

  }
  .design_works_box{
    margin-top: 53px;
  }
  .design_works_box .webgene-blog{

  }
  .design_works_box .webgene-item{

  }
  .design_works_box .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .design_works_box .webgene-item:nth-child(n+5){
    margin-top: 30px;
  }
  .design_works_box .webgene-item .inner{

  }
  .design_works_box .webgene-item .img_fit:before{

  }
  .design_works_box .webgene-item .img_fit img{

  }
  .design_works_wrap .link_1{
    margin-top: 105px;
  }

  .design_service_wrap .home_event_item:nth-child(n+4){
    margin-top: 20px;
  }
}
@media (min-width:1200px){
  /*見出し*/
  .pg_design .pg_hdr_wrap:before{
    left: -21px;
    bottom: 10px;
  }
  .pg_design .pg_hdr_wrap:after{
    right: -34px;
    bottom: 10px;
  }
  .pg_design .pg_hdr_desc{
    margin-top: 34px;
  }

  .design_service_wrap .home_event_item_title_cate{
    font-size: 20px;
  }
  /*scene*/
  .design_scene_wrap .individual_scene_cate_item_inner{
    font-size:15px;
  }
  .design_scene_wrap .individual_scene_cate_item_inner p{
    letter-spacing: 0.075em;
  }

}

/*******************************
*　事例
********************************/
.pg_works{

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

/*カテゴリ*/
.wprks_cate_wrap .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.wprks_cate_wrap .webgene-item a{
  display: block;
  background: #fff;
  border-radius: 27.5px;
  border: 1px dashed;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  position: relative;
  transition: all .2s;
  padding: 13px 0;
}
.wprks_cate_wrap .webgene-item a.on{
  background: #73eadd;
}
.wprks_cate_wrap .webgene-item a:after {
  content: "\f0a9";
  font-family: "fontAwesome";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.wprks_cate_wrap .webgene-item a:hover{
  background: #a9f5ec;
}


/*リスト*/
.wprks_cate_lists{
  margin-top: 40px;
}
.wprks_cate_lists .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.wprks_cate_lists .webgene-item .img img{
  border-radius: 10px;
}
.wprks_cate_lists .webgene-item .img{
  background-image: url(/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
}
.wprks_cate_lists .webgene-item .img:before{
  padding-top: 71.42%;
}
.wprks_cate_lists .webgene-item .title{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 13px;
}

/*popup*/
.works_popup {
  width: 95vw;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  color: #181818;
  padding: 30px 30px;
}
.works_popup_box1 {
  width: 100%;
}
.works_popup_box2 {
  width: 100%;
  margin-top: 20px;
}
.works_popup_imgs_wrap {
  position: relative;
  z-index: 1;
}
.works_popup .img.img_fit:before {
  padding-top: 79.18%;
}
.works_popup_title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.works_popup_txt {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  text-align: justify;
}
.popup_slider_btn_prev, .popup_slider_btn_next {
  font-size: 16px;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.popup_slider_btn_prev {
  left: -1.2em;
}
.popup_slider_btn_next {
  right: -1.2em;
}

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

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

}
@media (max-width:767px){
  .wprks_cate_wrap{
    display: none;
  }
  .wprks_cate_lists .webgene-blog{
    margin: 0 -5px;
  }
  .wprks_cate_lists .webgene-item{
    padding: 0 5px;
  }
  .wprks_cate_lists .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }
}
@media (min-width:768px){
  .pg_works{

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

  .wprks_cate_wrap .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }
  .wprks_cate_wrap .webgene-item a{
    font-size: 14px;
    letter-spacing: 0;
  }

  /*リスト*/
  .wprks_cate_lists{
    margin-top: 100px;
  }
  .wprks_cate_lists .webgene-blog{

  }
  .wprks_cate_lists .webgene-item:nth-child(n+3){
    margin-top: 75px;
  }

  /*popup*/
  .works_popup {
    width: 700px;
    padding: 100px 50px;
  }
  .works_popup_box1 {
    width: 55.69%;
  }
  .works_popup_box2 {
    width: 36.07%;
    margin-top: 0;
  }
  .works_popup_title {
    font-size: 18px;
    padding-bottom: 18px;
    margin-bottom: 15px;
  }
  .works_popup_txt {
    font-size: 16px;
  }
  .popup_slider_btn_next {
    right: -2em;
  }
  .popup_slider_btn_prev {
    left: -2em;
  }
}
@media (min-width:1024px){
  .wprks_cate_wrap .webgene-item:nth-child(n+3){
    margin-top:0;
  }
  .wprks_cate_wrap .webgene-item:nth-child(n+5){
    margin-top: 24px;
  }

  .wprks_cate_lists .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .wprks_cate_lists .webgene-item:nth-child(n+4){
    margin-top: 75px;
  }

  .works_popup {
    width: 920px;
    padding: 100px 66px;
  }
}
@media (min-width:1200px){
  .wprks_cate_wrap .webgene-item a{
    font-size: 15px;
    letter-spacing: 0.075em;
  }

}

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

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

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

/* リスト */
.news_box.home_news_box .webgene-item:nth-child(odd){
  margin-top: 0;
}
.news_box.home_news_box .webgene-item:nth-child(even){
  margin-top: 0;
}
.posts_list{

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

}
.news_box .webgene-blog{
  flex-wrap: wrap;
  margin-top: 0;
}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #f9f7f3;
  color: #181818;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 24px;
}

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


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

}
.posts_detail .meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #eeeae4;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  background: #cce198;
  text-align: center;
  min-width: 120px;
  background: #cce198;
  border-radius: 14px;
  margin-bottom: 2px;
  display: inline-block;
  margin-left: 23px;
}

.posts_detail .meta .day{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-family: "Outfit", sans-serif;
}
.posts_detail .meta .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
.posts_detail .post_content{
  line-height: 2.25em;;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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


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

  .news_box.home_news_box{
    margin-top: 30px;
  }
  .news_box .webgene-blog{
    margin: 0 -5px;
  }
  .news_box .webgene-item{
    padding: 0 5px;
  }
  .news_box.home_news_box .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }

  .posts_layout_box1 .link_1{
    margin-top: 40px;
  }
  .posts_detail .meta{
    padding-bottom: 10px;
  }
  .posts_detail .meta .title{
    margin-top: 10px;
  }
}
@media (min-width:768px){

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 95px;
  }
  .news_box{
    margin-top: 0;
  }
  .news_box .webgene-blog{
    flex-wrap: wrap;
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(odd){
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(even){
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(n+3){
    margin-top: 50px;
  }


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

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 10px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width:auto;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    font-size: 18px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }
  .posts_layout_box1 .link_1{
    margin-top: 83px;
  }

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

  }
  .news_box .webgene-item:nth-child(even){
    margin-top: 0;
  }

  .news_box{
    margin-top: 0;
  }
  .news_box .webgene-blog{
    flex-wrap: wrap;
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(odd){
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(even){
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item{
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_box.home_news_box .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }

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

  .pg_news{
    padding-top: 0;
  }

  .news_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_box .webgene-item:nth-child(n+4){
    margin-top: 75px;
  }

}

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

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

/*テーブル*/
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  border: 1px solid #e5e5e5;
  font-size: 15px;
  font-weight: 400;
}
.company_tbl .table_rows_th{
  background: #f9f7f3;
}
.company_tbl .table_rows_td{
  background: #fff;
  line-height: 2.133em;
}
.td_box:nth-child(n+2){

}
.td_box_txt1{

}
.td_box_txt2{

}

/*地図*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}

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

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

}
@media (max-width:767px){
  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #e5e5e5;
  }
  .company_tbl .table_rows_th{
    background: #f9f7f3;
  }
  .company_tbl .table_rows_td{

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

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_company .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 13px 19px;
  }
  .company_tbl .table_rows_th{
    width: 150px;
    border-right: none;
  }
  .company_tbl .table_rows_td{
    border-left: none;
    padding-left: 16px;
  }
  .td_box{
    display: flex;
  }
  .td_box_txt1{
    min-width:153px;
    white-space: nowrap;
  }
  .td_box_txt2{
    margin-left: 11px;
  }

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

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

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

  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 36px;
  }

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

}
@media (min-width:1200px){
  .company_tbl .table_rows_td{
    padding-right: 90px; 
  }

}

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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 15px 9px 12px 24px;
  background: #f9f7f3;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.pg_contact .d-inline-block.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 21px;
}
.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;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  letter-spacing: 0.16em;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  letter-spacing: 0.16em;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  width: 100%;
  max-width: 380px;
  font-size: 16px;
  font-weight: 500;
  margin: 34px auto 0;
  padding: 18px 0;
  display: block;
  background: #fff;
  text-align: center;
  position: relative;
  border-radius: 33px;
  letter-spacing: 0.075em;
  border: 1px dashed;
  transition: all .2s;
}
.pg_contact .formBtn.formSend:after{
  content: "\f0a9";
  font-family: 'FontAwesome';
  font-weight: 400;
  color: #181818;
  margin-right: 5px;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all .2s;
}
.pg_contact .formBtn.formSend:hover{
  background: #84ccc9;
}
.pg_contact label {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 3px;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 15px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.45em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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

  .pg_contact .section.sec2 .contact_tt{
    font-size: 21px;
  }
  .thanks_text{
    text-align: center;
  }

  label.label.zipcode_i{
    padding: 6.5px 5px;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 143px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  font-weight: 400;
  margin-bottom: 48px;
  padding-left: 10px;
  letter-spacing: 0.2em;
}
.privacy_item {
  margin-top: 30px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #e2ceaf;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

.contact_tt.privacy {
  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 (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }
  label.label.zipcode_i{
    padding: 6.5px 5px;
  }

}

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

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

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

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


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

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

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }
  .thanks_text{
    margin-top: 20px;
  }

}

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

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


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

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}
.body_news .home_news_box .webgene-blog{
  justify-content: flex-start;
}

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

  .pg_works .anchor{
    top: -250px;
  }
}
@media (min-width:1024px){


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


}

