@charset "UTF-8";


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

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

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

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

.mincho{
  font-family: 'Noto Serif JP', serif;
}

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

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}
.img_fit.left img{
  object-position: 85% center;
}
.img_fit.right img{
  object-position: right center;
}

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;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none;
  }
  .tb:not(.md){
    display: none;
  }
  .sp:not(.md){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .md:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

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

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

/*******************************
*　ヘッダー
********************************/
.header{
}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  /*background: rgba(255,255,255,0.85);*/
}
.hdr1_box1{
  
}
.hdr1_box2{

}
.hdr_contact{
  margin-left: 33px;
}
.hdr_contact a{
  display: block;
  background: #61bfbf;
  color: #FFF;
  width: 180px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  padding: 11px 5px;
  text-align: center;
}
.hdr_contact a p{
  /*letter-spacing: 0.075em;*/
  letter-spacing: 0.1em;
}
.hdr_contact a p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 12px;
}
.hdr_contact a p:after{
  content:">";
  margin-left: 16px;
}

.hdr_menubtn{
  margin-left: 20px;
}
.hdr_menubtn a{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #181818;
}
.hdr_menubtn a > p{
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  
}
.btnHamburger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.btnHamburger .line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btnHamburger .line_01 { top: 6px; }
.btnHamburger .line_02 { top: 14px; }
.btnHamburger .line_03 { top: 22px; }

.btnHamburger.is-active .line_01 {
  top: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btnHamburger.is-active .line_02 {
  opacity: 0;
}

.btnHamburger.is-active .line_03 {
  top: 14px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}


.pg_header{
  margin-bottom: 30px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{
  
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}


.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}
.mv_slides_item_img.img_fit:before{
  /*padding-top: 450px;*/
  padding-top: 120vw;
}

.mv_txt{
  position: absolute;
  z-index: 1;
  /*top: 50%;
  left: 10%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
}
.mv_txt_p1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Shippori Mincho";
  letter-spacing: 0.075em;
  line-height: 1.666;
}
.mv_txt_p2{
  font-size: 14px;
  text-align: justify;
  margin-top: 10px;
}

/* サイドボタン */
.side_btns{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
}
.side_btns_item{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 280px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #EEE;
  position: relative;
  z-index: 1;
}
.side_btns_item + .side_btns_item{
  margin-top: 10px;
}
.side_btns_item:before{
  content: "";
  border: 1px dotted #FFF;
  position: absolute;
  inset: 5px;
  pointer-events: none;
  transition: 0.2s all;
}
.side_btns_item.reserve{
  background: #8edaf4;
}
.side_btns_item.reserve p:before{
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background-image: url('/system_panel/uploads/images/calendar-alt-solid.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 14px;
  transition: 0.2s all;
}

.side_btns_item.reserve:hover{
  background-color: #61bfbf;
  color: #FFF;
}
.side_btns_item.reserve:hover p:before{
  filter: invert(1);
}


@media (min-width:375px){

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

  .hdr1 {
    padding: 15px;
  }
  .hdr1_box1{
    width: 100%;
    text-align: center;
  }
  .hdr_logo{
    
  }
  .hdr_logo img{
    height: 40px;
  }
  
  .hdr_contact{
    display: none;
  }
  
  
  .mv1.img_fit img{
    object-position: 36% center;
  }
  .mv_txt{
    bottom: 5%;
    left: 5%;
    right: 5%;
    
    filter: drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF);
    
  }
  
  /* サイドボタン */
  .side_btns{
    display: none;
  }

  .side_btns02{
    display: block;
    top: 40%;
  }

  .side_btns_item {
    width: 48px;
    font-size: 12px;
    height: 200px;
    margin-bottom: 8px;
  }

}
@media (min-width:768px){
  
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s all;
  }
  
  .hdr1{
    padding: 22px 15px;
    transition: 0.2s all;
  }
  .hdr1_box1{
    width: 180px;
  }
  .hdr1_box2{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header.slim{
    background: #FFF;
    box-shadow: 0 0 1px #CCC;
  }
  .header.slim .hdr1{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .mv_img.img_fit:before{
    padding-top: 500px;
  }
  .mv_slides_item_img.img_fit:before{
    padding-top: 508px;
  }
  
  .mv_txt{
    top: 68%;
    left: 46%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-right: 10px;
  }
  .mv_txt_p1{
    font-size: 30px;
  }
  .mv_txt_p2{
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
    
  }
  
  /* サイドボタン */
  .side_btns{
    top: 280px;
  }
  .side_btns_item{
    width: 46px;
    height: 250px;
  }
}
@media (min-width:1024px){
  
  .hdr1_box1{
    width: 200px;
  }
  
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .mv_img.img_fit:before{
    padding-top: 700px;
  }
  .mv_slides_item_img.img_fit:before{
    padding-top: 600px;
  }
  
  .mv_txt{
    top: 65%;
    left: 44%;
  }
  .mv_txt_p1{
    font-size: 40px;
  }
  .mv_txt_p2{
    margin-top: 20px;
  }
  
}
@media (min-width:1200px){

  .hdr1{
    padding: 22px 20px 22px 20px;
  }
  .hdr1_box1{
    width: auto;
  }
  .hdr_contact a{
    width: 150px;
  }
  
  .mv_slides_item_img.img_fit:before{
    padding-top: 600px;
  }
  
  .mv_txt{
    top: 64%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_txt_p1{
    font-size: 42px;
  }
  .mv_txt_p2{
    margin-top: 20px;
  }
  
  .side_btns_item{
    width: 62px;
    height: 280px;
  }
  
}
@media (min-width:1280px){
   .mv_txt_p1{
    font-size: 46px;
  }
}
@media (min-width:1440px){
  
  .hdr1{
    padding: 22px 40px 22px 27px;
  }
  .hdr_contact a{
    width: 180px;
  }
  
  .mv_slides_item_img.img_fit:before{
    padding-top: 700px;
  }
  
  .mv_txt{
    top: 64%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_txt_p1{
    font-size: 52px;
  }
  .mv_txt_p2{
    margin-top: 20px;
  }
}

@media (min-width:1600px){
  
  .mv_txt{
    top: 49%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_txt_p1{
    font-size: 60px;
  }
  .mv_txt_p2{
    margin-top: 20px;
    padding-left: 5px;
  }
  
  .mv_slides_item_img.img_fit:before{
    padding-top: 878px;
  }
  
}

@media (max-height:700px){
  .side_btns{
    top: 25%;
  }
}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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

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

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



@media (min-width:375px){

}

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

}
@media (max-width:767px){
  .ftr_addr em{
    display: block;
  }
}



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

/* 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 #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}  
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

.anchor{
  position: relative;
}

.tt2{
  text-align: center;
  margin-bottom: 40px;
}
.tt2_en{
  font-size: 46px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #62d8e2;
}
.tt2_ja{
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}
  
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  
  .anchor{
    top: -100px;
  }
  
  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

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

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

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


}


.loading{
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/system_panel/uploads/images/loading_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 10;
  inset: 0;
}
.loading_logo{
  display: none;
  width: 80%;
  /*margin-top: -24%;*/
  margin-top: 0;
  position: absolute;
  z-index: 1;
  top: 43.9%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gjs-dashed .loading{
  position: static;
  padding: 50px 10px;
}
.gjs-dashed .loading_logo{
  display: block;
}

@media (max-width:374px){

}
@media (min-width:375px){
  .loading_logo{
    /*margin-top: -21%;*/
    margin-top: 0;
  }
}
@media (min-width:390px){
  .loading_logo{
    /*margin-top: -25%;*/
    margin-top: 0;
  }
}
@media (min-width:414px){
  
}
@media (max-width:767px){

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

  .loading_logo{
    width: 400px;;
    /*margin-top: -16%;*/
    margin-top: 0;
    top: 43.6%;
  }

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

  .loading_logo{
    width: auto;
    /*margin-top: -10%;*/
    margin-top: 0;
  }

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

  .loading_logo{
    width: auto;
    /*margin-top: -7.0%;*/
    margin-top: 0;
    top: 43.6%;
  }

}

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

}
.pg_home .section.sec1{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  
}
.pg_home .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f5f5;
}
.pg_home .section.sec4{
  padding-top: 50px;
}
.pg_home .section.sec5{
  padding-top: 70px;
}
.pg_home .section.sec6{
  padding-top: 70px;
}
.pg_home .section.sec7{
  padding-top: 70px;
  
}

/* お知らせ */
.home_news_list{
  
}
.home_news_list .webgene-blog{
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*justify-content: center;*/
}
.home_news_list .webgene-item{
  width: 280px;
  padding: 0 15px;
  /*padding-right: 30px;*/
}
.home_news_list .webgene-item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.home_news_list .webgene-item .img{
  width: 100%;
  margin-bottom: 5px;
  overflow: hidden;
  background-image: url(/system_panel/uploads/images/noimage.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_news_list .webgene-item .img img{
  transition: all .3s;
}
.home_news_list .webgene-item a:hover{
  color: #181818;
}
.home_news_list .webgene-item a:hover .img img{
  transform: scale(1.1);
}
.home_news_list .webgene-item .img.img_fit:before{
  padding-top: 71.42%;
}
.home_news_list .webgene-item .img.large.img_fit:before{
  padding-top: 80%;
}
.home_news_list .webgene-item .date{
  width: 95px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
}
.home_news_list .webgene-item .category{
  min-width: 133px;
}
.home_news_list .webgene-item .category span{
  display: block;
  background: #61bfbf;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  padding: 1px 5px 2px;
}
.home_news_list .webgene-item .title{
  width: 100%;
  margin-top: 12px;
}
.home_news_list .webgene-item .title{
  width: 100%;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.075em;
}

.home_news_list .slick-prev,
.home_news_list .slick-next{
  position: absolute;
  z-index: 1;
  top: 84px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.home_news_list .slick-prev{
  left: calc(50% - 154px);
}
.home_news_list .slick-next{
  right:  calc(50% - 154px);
}

 
.home_product_list .slick-prev,
.home_product_list .slick-next{
  top: 98px;
}

/* コンセプト */
.home_concept_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_concept_box1{
  width: 100%;
  text-align: center;
}
.home_concept_box1_inner{
  display: inline-block;
  /*text-align: ce;*/
}
.home_concept_box2{
  width: 100%;
}
.home_concept_box3{
  width: 100%;
}
.home_concept_box4{
  width: 100%;
}
.home_concept_box5{
  width: 100%;
}

.home_concept_logo{
  margin-bottom: 12px;
  text-align: center;
}
.home_concept_logo img{
  width: 200px;
}
.home_concept_title1{
  font-size: 42px;
  font-size: 11.2vw;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
.home_concept_title1 strong{
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.home_concept_title2{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid currentColor;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.home_concept_txt1{
  font-size: 16px;
  line-height: 1.875;
  padding-right: 5px;
  text-align: justify;
}
.home_concept_img{
  
}
.home_concept_img.img_fit:before{
  padding-top: 74.07%;
}
.home_concept_imgs{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.home_concept_imgs_item{
  
}
.home_concept_imgs_item.pos1{
  width: 40.09%;
}
.home_concept_imgs_item.pos2{
  width: 57.20%;
}
.home_concept_imgs_item.pos1.img_fit:before{
  padding-top: 73.03%;
}
.home_concept_imgs_item.pos2.img_fit:before{
  padding-top: 75.59%;
}

.home_concept_imgs .read_more{
  /*position: absolute;
  z-index: 1;
  top:0;
  left: -15px;
  margin-top: 23px;*/
}

/* Solution */
.home_sol_head{
  text-align: center;
  margin-bottom: 30px;
}
.home_sol_head_title_en{
  font-size: 20px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #62d8e2;
  margin-bottom: 20px;
}
.home_sol_head_title_en p{
  letter-spacing: 0.2em;
}
.home_sol_head_title_ja{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
}
.home_sol_head_txt1{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.home_sol_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.home_sol_item{
  padding: 0 25px;
}
.home_sol_item_inner{
  background: #FFF;
  box-shadow: 0.5px 0.866px 4.95px 0.05px rgba(24, 24, 24, 0.2);
  padding-bottom: 15px;
  height: 100%;
}
.home_sol_item_title{
  display: flex;
  align-items: center;
  background: #61bfbf;
  color: #FFF;
  text-align: center;
  padding: 17px 5px;
  margin-bottom: 15px;
}
.home_sol_item_title_txt{
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.2;
}
.home_sol_item_txt{
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  padding: 0 12px;
}

.home_sol_items .slick-arrow{
  font-size: 30px;
  color: #61bfbf;
}
.home_sol_items .slick-arrow i{
  box-shadow: 0.5px 0.866px 4.95px 0.05px rgba(24, 24, 24, 0.2);
}
.home_sol_items .slick-next{
  right: 5px;
}
.home_sol_items .slick-prev{
  left: 5px;
}

/* 本当の健康を知る */
.home_feature_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_feature_box1{
  width: 100%;
}
.home_feature_box2{
  width: 100%;
  margin-top: 20px;
}
.home_feature_img{
  
}
.home_feature_img.img_fit:before{
  padding-top: 84.81%;
}
.home_feature_title{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.4285;
  margin-bottom: 15px;
}
.home_feature_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* コンテンツ */
.home_contents_wrap{
  
}
.home_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_contents_row + .home_contents_row{
  margin-top: 70px;
}
.home_contents_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_contents_box2{
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.home_contents_img{
  
}
.home_contents_img.img_fit:before{
  padding-top: 200px;
}
.home_contents_img_bdr,
.home_contents_img_bg{
  pointer-events: none;
}

.home_contents_head{
  
}
.home_contents_head_en{
  font-size: 36px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.11em;
}
.home_contents_head_ja{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 5px;
}
.home_contents_desc{
  /*background: #FFF;*/
  margin-top: 30px;
}
.home_contents_desc_title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}
.home_contents_desc_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.home_contents_desc .read_more{
  margin-top: 30px;
}

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

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

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

  .home_concept_box1{
  }
  .home_concept_box2{
    margin-top: 40px;
  }
  .home_concept_box3{
    margin-top: 30px;
  }
  .home_concept_box4{
    margin-top: 30px;
  }
  .home_concept_box5{
    margin-top: 30px;
  }
  .home_concept_title2{
    text-align: center;
  }
 
  .home_concept_imgs{
    flex-wrap: wrap;
  }
  .home_concept_imgs .read_more{
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
  }
  
  .home_contents_img{
    border-bottom: 10px solid #62d8e2;
  }
  
  .home_sol_item_title{
    min-height: 78px;
  }
  
  .home_sol_items{
  }
  .home_sol_items .slick-track{
    display: flex;
  }
  .home_sol_items .slick-slide{
    display: block;
    height: auto !important;
  }
  .home_sol_items .slick-track .home_sol_item{
    padding-bottom: 10px;
  }
  .home_sol_items + .read_more{
    margin-top: 50px;
  }
  
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec3{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
  }
  .pg_home .section.sec5{
    padding-top: 90px;
  }
  .pg_home .section.sec6{
    padding-top: 90px;
  }
  .pg_home .section.sec7{
    padding-top: 90px;
  }

  /* お知らせ */
  .home_news_list .webgene-item{
    width: 280px;
    padding: 0 15px;
  }
  .home_news_list .webgene-item .date{
    width: 95px;
  }
  .home_news_list .webgene-item .category{
    min-width: 133px;
  }
  .home_news_list .slick-prev,
  .home_news_list .slick-next{
    top: 88px;
  }
  .home_news_list .slick-prev{
    left: calc(50% - 154px);
  }
  .home_news_list .slick-next{
    right:  calc(50% - 154px);
  }
  .home_product_list .slick-prev,
  .home_product_list .slick-next{
    top: 98px;
  }
  
  /* コンセプト */
  .home_concept_wrap{
    
  }
  .home_concept_box1{
    order: 1;
    width: 48.6%;
    padding-top: 8px;
    text-align: left;
  }
  .home_concept_box1_inner{
    text-align: left;
  }
  .home_concept_box2{
    order: 2;
    width: 48.6%;
  }
  .home_concept_box3{
    order: 4;
    width: 48.6%;
    margin-top: 40px;
  }
  .home_concept_box4{
    order: 3;
    width: 48.6%;
    margin-top: 50px;
  }
  .home_concept_box5{
    order: 5;
    width: 100%;
    margin-top: 22px;
  }
  .home_concept_logo img{
    width: 230px;
  }
  
  .home_concept_title1{
    font-size: 56px;
  }
  .home_concept_title2{
    font-size: 22px;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .home_concept_txt1{
    font-size: 16px;
    line-height: 1.875;
    padding-right: 5px;
  }
  
  .home_concept_imgs .read_more{
    position: absolute;
    z-index: 1;
    top:0;
    left: -15px;
    margin-top: 10px;
  }
  .home_concept_imgs .read_more a{
    width: 255px;
  }
  
  /* Solution */
  .home_sol_head{
    margin-bottom: 40px;
  }
  .home_sol_head_title_en{
    font-size: 22px;
    margin-bottom: 20px;
  }
  .home_sol_head_title_ja{
    font-size: 19px;
    margin-bottom: 5px;
  }
  .home_sol_head_txt1{
    font-size: 28px;
  }

  .home_sol_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -7.5px;
  }
  .home_sol_item{
    width: 33.333%;
    padding: 0 7.5px;
  }
  .home_sol_item:nth-child(n+4){
    margin-top: 15px;
  }
  .home_sol_item_inner{
    height: 100%;
    padding-bottom: 15px;
  }
  .home_sol_item_title{
    margin-bottom: 15px;
  }
  .home_sol_item_title_txt{
    font-size: 18px;
  }
  .home_sol_item_txt{
    font-size: 15px;
    padding: 0 8px;
  }
  
  
  /* 本当の健康を知る */
  .home_feature_wrap{
  }
  .home_feature_box1{
    width: 48.64%;
  }
  .home_feature_box2{
    width: 48.64%;
    margin-top: -12px;
  }
  .home_feature_title{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .home_feature_txt{
    font-size: 16px;
  }
  
  
  /* コンテンツ */
  .home_contents_wrap{

  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 100px;
  }
  .home_contents_box1{
    width: 68.46%;
    position: absolute;
    z-index: 1;
    top: 0;
  }
  .home_contents_box2{
    /*width: 53.15%;*/
    width: 60%;
    margin-top: 16px;
  }
  .home_contents_img{
    
  }
  .home_contents_img:after{
    
  }
  .home_contents_img.img_fit:before{
    padding-top: 385px;
  }
  .home_contents_img_bdr{
    position: absolute;
    z-index: 2;
    top: 180px;
    /*top: 39.13%;*/
    width: 220px;
    /*width: 37.5%;*/
    height: 32px;
    background: #62d8e2;
  }
  .home_contents_img_bdr:before{
    content: "";
    width: 22.80%;
    height: 200%;
    position: absolute;
    bottom: 0;
    background: #62d8e2;
  }
  .home_contents_img_bg{
    position: absolute;
    z-index: 1;
    top: 180px;
    /*top: 39.13%;*/
    bottom: 0;
    width: 220px;
    /*width: 37.5%;*/
    background: #FFF;
  }
  
  .home_contents_head{

  }
  .home_contents_head_en{
    font-size: 60px;
    margin-left: -5px;
  }
  .home_contents_head_ja{
    font-size: 20px;
    margin-top: 5px;
  }
  .home_contents_desc{
    margin-top: 118px;
  }
  .home_contents_desc_title{
    font-size: 20px;
    margin-bottom: 30px;
  }
  .home_contents_desc_txt{
    font-size: 16px;
  }
  .home_contents_desc .read_more{
    margin-top: 30px;
  }
  
  /* 左右入れ替え */
  .home_contents_row:nth-child(odd) .home_contents_box1{
    right: 0;
  }
  .home_contents_row:nth-child(odd) .home_contents_box2{
    
  }
  .home_contents_row:nth-child(odd) .home_contents_img_bdr{
    left: 0;
  }
  .home_contents_row:nth-child(odd) .home_contents_img_bdr:before{
    right: 100%;
  }
  .home_contents_row:nth-child(odd) .home_contents_img_bg{
    left: 0;
  }
  .home_contents_row:nth-child(odd) .home_contents_head{
    text-align: left;
  }
  
  .home_contents_row:nth-child(even) .home_contents_box1{
    left: 0;
  }
  .home_contents_row:nth-child(even) .home_contents_box2{
    margin-left: auto;
  }
  .home_contents_row:nth-child(even) .home_contents_img_bdr{
    right: 0;
  }
  .home_contents_row:nth-child(even) .home_contents_img_bdr:before{
    left: 100%;
  }
  .home_contents_row:nth-child(even) .home_contents_img_bg{
    right: 0;
  }
  .home_contents_row:nth-child(even) .home_contents_head{
    text-align: right;
  }
  
  /* 画面幅まで伸ばす .container=max:720 */
  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-right: calc(345px - 50vw);
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-left: calc(345px - 50vw);
  }
  
  .left.read_more a.txt_bk{
    margin-left: 0;
  }
}

@media (min-width:992px){
  
  /* 画面幅まで伸ばす .container=max:960 */
  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-right: calc(465px - 50vw);
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-left: calc(465px - 50vw);
  }
  
}

@media (min-width:1024px){

  .pg_home .section.sec1{
    padding-top: 175px;
  }
  .pg_home .section.sec2{
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .pg_home .section.sec3{
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 120px;
  }
  .pg_home .section.sec5{
    padding-top: 150px;
  }
  .pg_home .section.sec6{
    padding-top: 140px;
  }
  .pg_home .section.sec7{
    padding-top: 142px;
  }
  
  .pg_home .section.sec4 .read_more{
    margin-top: 92px;
  }
  
  
  
  /* お知らせ */
  .pg_home{
    /*overflow: hidden;*/
  }
  .home_news_list .webgene-item{
    /*width: 380px;*/
    padding: 0 15px;
  }
  .home_news_list .webgene-item .date{
    width: 95px;
  }
  .home_news_list .webgene-item .category{
    min-width: 133px;
  }
  .home_news_list .slick-prev,
  .home_news_list .slick-next{
    top: 88px;
  }
  .home_news_list .slick-prev{
    left: calc(50% - 434px);
  }
  .home_news_list .slick-next{
    right:  calc(50% - 434px);
  }
  .home_product_list .slick-prev,
  .home_product_list .slick-next{
    top: 98px;
  }
  
  
  /* コンセプト */
  .home_concept_wrap{
    
  }
  .home_concept_box1{
    padding-top: 8px;
  }
  .home_concept_box2{
  }
  .home_concept_box3{
    margin-top: 60px;
  }
  .home_concept_box4{
    margin-top: 103px;
  }
  .home_concept_box5{
    margin-top: 22px;
  }
  .home_concept_logo img{
    width: 230px;
  }
  .home_concept_title1{
    font-size: 72px;
  }
  .home_concept_title2{
    font-size: 24px;
    padding-bottom: 30px;
    margin-bottom: 26px;
  }
  .home_concept_txt1{
    font-size: 16px;
    line-height: 1.875;
    padding-right: 5px;
  }

  .home_concept_imgs .read_more{
    margin-top: 23px;
  }
  .home_concept_imgs .read_more a{
    width: 300px;
  }
  
  /* Solution */
  .home_sol_head{
    margin-bottom: 52px;
  }
  .home_sol_head_title_en{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home_sol_head_title_ja{
    font-size: 21px;
    margin-bottom: 5px;
  }
  .home_sol_head_txt1{
    font-size: 32px;
  }

  .home_sol_items{
    margin: 0 -7.5px;
  }
  .home_sol_item{
    width: 20%;
    padding: 0 7.5px;
  }
  .home_sol_item:nth-child(n+4){
    margin-top: 0;
  }
  .home_sol_item:nth-child(n+6){
    margin-top: 15px;
  }
  .home_sol_item_title_txt{
    font-size: 18px;
  }
  
  /* 本当の健康を知る */
  .home_feature_wrap{
  }
  .home_feature_box1{
    width: 48.64%;
  }
  .home_feature_box2{
    width: 48.64%;
  }
  .home_feature_title{
    font-size: 36px;
    margin-bottom: 30px;
  }
  .home_feature_txt{
    font-size: 16px;
  }
  
  /* コンテンツ */
  .home_contents_wrap{

  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 100px;
  }
  .home_contents_box1{
    width: 68.46%;
  }
  .home_contents_box2{
    width: 53.15%;
    margin-top: 16px;
  }
  .home_contents_img{
    
  }
  .home_contents_img:after{
    
  }
  .home_contents_img.img_fit:before{
    padding-top: 460px;
  }
  .home_contents_img_bdr{
    top: 180px;
    width: 285px;
    height: 32px;
  }
  .home_contents_img_bg{
    top: 180px;
    width: 285px;
  }
  .home_contents_head_en{
    font-size: 80px;
    margin-left: -5px;
  }
  .home_contents_head_ja{
    font-size: 24px;
    margin-top: 5px;
  }
  .home_contents_desc{
    margin-top: 118px;
  }
  .home_contents_desc_title{
    font-size: 24px;
  }
  
}
@media (min-width:1200px){
  .pg_home .section.sec1 .tt2,
  .pg_home .section.sec7 .tt2{
    margin-bottom: 50px;
  }
  .home_news_list .webgene-item .title{
    padding: 0 8px;
  }
  
  
  .home_news_list .webgene-item{
    width: 380px;
    padding: 0 15px;
  }
  .home_news_list .webgene-item .date{
    width: 95px;
  }
  .home_news_list .webgene-item .category{
    min-width: 133px;
  }
  .home_news_list .slick-prev,
  .home_news_list .slick-next{
    top: 125px;
  }
  .home_news_list .slick-prev{
    left: calc(50% - 585px);
  }
  .home_news_list .slick-next{
    right:  calc(50% - 582px);
  }
  
  .home_product_list .slick-prev,
  .home_product_list .slick-next{
    top: 135px;
  }
  
  .home_concept_logo img{
    width: 230px;
  }
  .home_concept_imgs .read_more{
    margin-top: 23px;
  }
  .home_concept_imgs .read_more a{
    width: 350px;
  }
  
  /* 本当の健康を知る */
  .home_feature_wrap{
  }
  .home_feature_title{
    font-size: 42px;
  }
  
  /* 画面幅まで伸ばす .container=max:1140 */
  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-right: calc(555px - 50vw);
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-left: calc(555px - 50vw);
  }

  
  .home_contents_desc_title{
    white-space: nowrap;
  }
  
  .pg_home + .ftr_contact_wrap{
    margin-top: 250px;
  }
}





/*******************************
*　
********************************/
.pg_staff{
  
}
.pg_staff .section.sec1{
  
}

/* スタッフ */
.staff_list{
  
}
.staff_list_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staff_list_item + .staff_list_item{
  margin-top: 50px;
}
.staff_list_item_box1{
  width: 100%;
}
.staff_list_item_box2{
  width: 100%;
  margin-top: 20px;
}
.staff_list_item_box3{
  width: 100%;
  background: #f7f7f7;
  margin-top: 30px;
  padding: 10px 10px;
  
}
.staff_list_item_img{
  
}
.staff_list_item_img.img_fit:before{
  padding-top: 117.89%;
}
.staff_list_item_head{
  display: flex;
  align-items: center;
  background: #62d8e2;
  color: #FFF;
  padding: 10px 10px;
  margin-bottom: 15px;
}
.staff_list_item_head_pos{
  font-size: 16px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  min-width: 80px;
  padding-right: 20px;
}
.staff_list_item_head_name{
  font-size: 16px;
  font-weight: 500;
  /*width: calc(100% - 92px);*/
}
.staff_list_item_prof{
  
}
.staff_list_item_prof + .staff_list_item_prof{
  margin-top: 20px;
}
.staff_list_item_prof_title{
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px dotted;
}
.staff_list_item_prof_title_ja{
  font-size: 16px;
  font-weight: 500;
  min-width: 62px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}
.staff_list_item_prof_title_ja:before{
  content: "";
  width: 1px;
  height: 18px;
  background: #8b8b8b;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.staff_list_item_prof_title_en{
  font-size: 16px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  /*width: calc(100% - 62px);*/
  padding-left: 25px;
}
.staff_list_item_prof_bio{
  
}
.staff_list_item_prof_bio_dl{
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.staff_list_item_prof_bio_dl + .staff_list_item_prof_bio_dl{
  margin-top: 10px;
}
.staff_list_item_prof_bio_dt{
  width: 85px;
  position: relative;
  z-index: 1;
}
.staff_list_item_prof_bio_dt:before{
  content: "";
  width: 1px;
  height: 16px;
  background: #8b8b8b;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 2px;
}
.staff_list_item_prof_bio_dd{
  width: calc(100% - 85px);
  padding-left: 15px;
}
.staff_list_item_prof_lisence{
  
}
.staff_list_item_prof_lisence_row{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.staff_list_item_prof_lisence_row + .staff_list_item_prof_lisence_row{
  margin-top: 10px;
}
.staff_list_item_prof_lisence_row p{
  text-indent: -1em;
  padding-left: 1em;
}
.staff_list_item_prof_lisence_row p:before{
  content: "・";
}
.staff_list_item_comment{
  border: 1px dashed #c0c0c0;
  padding: 15px 15px;
}
.staff_list_item_comment_txt{
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_staff .staff_list_item + .staff_list_item{
    margin-top: 70px;
  }
}
@media (min-width:768px){
  
  .pg_staff{

  }
  .pg_staff .section.sec1{
    
  }
  
  /* スタッフ */
  .staff_list{

  }
  .staff_list_item{
  }
  .staff_list_item + .staff_list_item{
    margin-top: 100px;
  }
  .staff_list_item_box1{
    width: 42.79%;
  }
  .staff_list_item_box2{
    width: 51.35%;
    margin-top: 0;
  }
  .staff_list_item_box3{
    width: 100%;
    margin-top: 55px;
  }
  .staff_list_item_head{
    padding: 10px 12px;
    margin-bottom: 25px;
  }
  .staff_list_item_head_pos{
    font-size: 16px;
    min-width: 92px;
    padding-right: 20px;
  }
  .staff_list_item_head_name{
    font-size: 16px;
    /*width: calc(100% - 92px);*/
  }
  .staff_list_item_prof{

  }
  .staff_list_item_prof + .staff_list_item_prof{
    margin-top: 32px;
  }
  .staff_list_item_prof_title{
    padding: 10px 0;
    margin-bottom: 30px;
  }
  .staff_list_item_prof_title_ja{
    font-size: 16px;
    min-width: 62px;
    padding-right: 24px;
  }
  .staff_list_item_prof_title_en{
    font-size: 16px;
    /*width: calc(100% - 62px);*/
    padding-left: 25px;
  }
  .staff_list_item_prof_bio{

  }
  .staff_list_item_prof_bio_dl{
  }
  .staff_list_item_prof_bio_dl + .staff_list_item_prof_bio_dl{
    margin-top: 16px;
  }
  .staff_list_item_prof_bio_dt{
    width: 95px;
  }
  .staff_list_item_prof_bio_dd{
    width: calc(100% - 95px);
    padding-left: 25px;
  }
  .staff_list_item_prof_lisence{

  }
  .staff_list_item_prof_lisence_row{

  }
  .staff_list_item_prof_lisence_row + .staff_list_item_prof_lisence_row{
    margin-top: 16px;
  }
  .staff_list_item_prof_lisence_row p{
    
  }
  .staff_list_item_comment{
    padding: 13px 30px 38px;
  }
  .staff_list_item_comment_txt{
    font-size: 16px;
    margin-top: -5px;
  }
  
  .staff_list_item:nth-child(odd) .staff_list_item_box1{
    order: 2;
  }
  .staff_list_item:nth-child(odd) .staff_list_item_box2{
    order: 1;
  }
  .staff_list_item:nth-child(odd) .staff_list_item_box3{
    order: 3;
  }
  .staff_list_item:nth-child(even) .staff_list_item_box1{
    
  }
  .staff_list_item:nth-child(even) .staff_list_item_box2{
    
  }
  .staff_list_item:nth-child(even) .staff_list_item_box3{
    
  }


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


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


}


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

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

@media (max-width:374px){

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

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

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

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


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


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


}


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

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

@media (max-width:374px){

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

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

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

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


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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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

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

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

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

.posts_back_list{

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


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

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

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

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

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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


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

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

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

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

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


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


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


}


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

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


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

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

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

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

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


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


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


}
