@charset "UTF-8";


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

@media(min-width:768px){
  body{
    padding-top: 80px;
    padding-right: 80px;
  }
}
@media(min-width:1300px){
  body{
    padding-right: 0;
  }
}

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

div#root{
  overflow: hidden;
}

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

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

.mincho{
  font-family: 'Noto Serif JP', serif;
}
.outfit{
  font-family: 'Outfit', sans-serif;
}
.sacramento{
  font-family: 'Sacramento', cursive;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
}

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

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

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

a.img_fit{
  display: block;
}

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

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

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


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1023px) 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;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

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

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

/*******************************
*　ヘッダー
********************************/
.header{
  padding: 15px 0;
  background: #ffffff;
  text-align: center;
}
.hdr_logo img{
  width: 140px;
}
.side_bar {
  width: 40px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: #ffffff;
  text-align: center;
  z-index: 10;
}
.side_bar_sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.side_bar_sns_ttl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0.09em;
  font-weight: 300;
}
.side_bar_sns_ttl:after{
  content: "";
  width: 1px;
  height: 60px;
  display: block;
  margin: 12px auto 25px;
  display: block;
  background: #000;
}
.side_bar_sns_link{
  width: fit-content;
  display: block;
}
.side_bar_sns_link + .side_bar_sns_link{
  margin-top: 20px;
}
.side_bar_sns_link.insta{
  margin-top: 5px!important;
}

.pg_header{
  margin-bottom: 50px;
  position: relative;
}

.pg_header_img{

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

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

.mv{
  margin-right: 0;
  position: relative;
}
.mv_img{
  position: relative;
}
.mv_img.img_fit:before{
  padding-top: 70vh;
}
.mv_txt {
  padding: 0 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 5;
  color: #ffffff;
  line-height: 1.75;
}
.mv_ttl_en {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.076em;
}
.mv_ttl_ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}


@media (min-width:768px){
  .header{ 
    width: calc(100% - 80px);
    padding: 21px 30px;
    padding-right: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
  }
  .side_bar {
    width: 80px;
  }
  .side_bar_link1 {
    font-size: 15px;
    padding: 12px 0 18px;
    font-weight: 500;
    background: #5d9484;
    color: #ffffff;
    display: block;
    text-align: center;
    line-height: 1;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  }
  .side_bar_link2 {
    font-size: 13px;
    padding: 15px 0;
    font-weight: 500;
    background: #a6937c;
    color: #ffffff;
    display: block;
    text-align: center;
    line-height: 1;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  }
  .side_bar_link1:hover,
  .side_bar_link2:hover{
    color: #ffffff;
  }
  .side_bar_link1 i{
    font-size: 35px;
  }
  .side_bar_link2 i{
    font-size: 24px;
    margin-bottom: 8px;
  }
  .side_bar_tel {
    font-size: 24px;
    margin: 40px 0 6.3vh;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 300;
    letter-spacing: 0.09em;
  }
  .side_bar_sns {
    height: calc(100% - 160px);
  }


  .hdr_logo img{
    width: 120px;
  }
  .gnav{    
    max-width: 400px;
  }

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_mv{
    height: 350px;
  }

  .mv{
    margin-right: 0;
  }
  .mv_txt {
    padding: 20px 50px 0;
  }
  .gnav {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav .gnav_item {
    font-size: 15px;
    padding: 0 15px;
    /*line-height: 2;*/
    font-weight: 400;
  }
  .gnav .gnav_item.current,
  .ftr_links .ftr_link.current{
    color: #8f7a60;
    font-weight: 500;
  }

  .mv_img.img_fit:before{
    padding-top: 80vh;
  }
  .mv_ttl_en {
    font-size: 46px;
  }
  .mv_ttl_ja {
    font-size: 22px;
  }
}
@media (min-width:1024px){
  .header{    
    padding-right: 40px;
    max-width: inherit;
  }
  .hdr_logo img{
    width: auto;
  }
  .gnav{    
    max-width: inherit;
  }

  .pg_header{
    margin-bottom: 135px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 500px;
  }
  .pg_header_mv{
    height: 550px;
  }

  .mv_ttl_en {
    font-size: 56px;
  }
  .mv_ttl_ja {
    font-size: 24px;
  }
}
@media (min-width:1200px){
  .header{    
    width: 100%;
    padding-right: 158px;
  }

  .mv{
    margin-right: 80px;
  }
  .mv_txt {
    padding-left: 105px;
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }

  .pg_header{
    margin-right: 80px;
  }
}

@media (max-width:767px){
  .side_bar_link1,
  .side_bar_link2,
  .side_bar_tel{
    display: none;
  }
  .side_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* スマホ用 */
  .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_img.img_fit img{
    object-position: left;
  }


}



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

.footer{
  margin-top: 80px;
}
.ftr_img {
  margin-bottom: -30px;
}
.ftr_bg {
  padding-top: 60px;
  background: #d5ead8;
}
.footer .container{
  text-align: center;
}
.ftr_img .img_fit:before{
  padding-top: 38%;
}
.ftr_tel{
  line-height: 1.5;
}
.ftr_tel a{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.ftr_tel a em{
  font-size: 20px;
  font-style: normal;
}
.ftr_tel + .ftr_tel{
  margin-bottom: 25px;
}

.ftr_logo{
  margin-bottom: 22px;
  display: inline-block;
}
.ftr_addr{
  margin-bottom: 5px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 15px;
  padding: 22px 0;
  text-align: center;
  letter-spacing: 0.075em;
}

/* 追尾スマホメニュー */
.footer_fix{
  width: calc(100% - 40px);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #5d9484;
  z-index: 1000;
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #5d9484;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
}
.footer_fix .footer_fix_item_1.contact{
  background: #a6937c;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #c4c4c4;
}
.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: 50px;
  bottom: 70px;
  z-index: 5;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #d1cabe;
}
.pagetop a i{
  font-size: 40px;
}


@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_img {
    margin-bottom: -120px;
  }
  .ftr_bg{
    padding-top: 170px;
  }
  .ftr_links {
    padding: 6px 0;
    margin-top: 40px;
    background: #ffffff;
  }
  .ftr_links .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ftr_link{
    font-size: 15px;
    padding: 0 23px;
    font-weight: 400;
  }
  .ftr_tel a{
    font-size: 26px;
  }

  .pagetop{
    right: 90px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 150px;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .ftr_links{
    display: none;
  }

  .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: 20px 15px;
}
.table_rows_th{
  background-color: #eeeeee;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 3px 13px;
  margin: 0 4px;  
  border: 1px solid #dadada;
  font-weight: 400;
}
.webgene-pagination li.selected{
  background: #dadada;
  border-color: #dadada;
}  
.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;
}


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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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


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

}



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

.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;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  letter-spacing: 0.18em;
}
.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: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.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;
}
.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{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  /*font-family: "Noto Serif JP", serif;*/
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

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

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


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

}
.pg_home .section.sec1{
  padding-bottom: 0;
  margin-top: 0;
  margin-top: 0;
}
.home_concept{
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
}
.home_concept:after{
  content: "";
  width: 1000%;
  height: 100%;
  background: #d5ead8;
  position: absolute;
  left: -50%;
  top: 0;
  z-index: -1;
}
.home_ttl1{
  margin-bottom: 30px;
}
.home_ttl1:after{
  content: "";
  width: 95px;
  height: 1px;
  background: #000000;
  display: inline-block;
  margin: 0 22px 5px;
}
.home_ttl2{
  font-size: 20px;
  margin-top: -15px;
  margin-bottom: 20px;
}
.home_ttl2 em{
  font-size: 16px;
  font-style: normal;
}
.home_concept_img.img_fit:before{
  padding-top: 113%;
}
.home_text1 p + p{
  margin-top: 34px;
}

.pg_home .section.sec2{
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: 0;
}
.home_ttl3 {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.home_ttl3:before{
  content: "";
  width: 100%;
  height: 1px;
  background: #bfbfbf;
  position: absolute;
  left: 0;
  top: 56%;
  z-index: -1;
}
.home_ttl3_en{
  font-size: 32px;
  padding-right: 20px;
  letter-spacing: 0.075em;
  background: #ffffff;
}
.home_ttl3_ja{
  font-size: 16px;
  letter-spacing: 0.075em;
  background: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
}
.blog_list .webgene-blog{
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.blog_list .webgene-item{
  padding: 0 8px;
}
.blog_list .img_fit:before{
  padding-top: 82%;
}
.blog_list .img_fit{
  background: url(/system_panel/uploads/images/noimg.png) no-repeat center / cover;
}
.blog_list .date{
  font-size: 14px;
  margin: 6px 0;
  font-weight: 200;
  letter-spacing: 0.09em;
}
.blog_list .category{
  width: 110px;
  font-size: 14px;
  background: #d5ead8;
  text-align: center;
  letter-spacing: 0.075em;
  font-weight: 500;
}
.blog_list .title{
  font-size: 16px;
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
.link_1 {
  max-width: 260px;
  font-size: 15px;
  padding: 15px 0;
  margin: 30px auto 0;
  display: block;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.09em;
  background: #d1cabe;
  color: #ffffff;
  position: relative;
}
.link_1:after{
  content: "";
  width: 30px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
}


.pg_home .section.sec3{
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: 0;
}
.home_service1 {
  width: 100%;
  background: #d5ead8;
  position: relative;
}
.home_service1:after,
.home_service2:after{
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #ffffff;
  position: absolute;
  left: 10px;
  top: 10px;
  pointer-events: none;
  z-index: 1;
}
.home_service1_img.img_fit:before{
  padding-top: 133%;
}
.home_service_ja{
  margin-bottom: 25px;
}
.home_service2 {
  width: 100%;
  background: #f4f0e9;
  position: relative;
}
.home_service2:nth-child(even) {
  background: #d6d8c8;
}
.home_service2_img.img_fit:before{
  padding-top: 160%;
}

.pg_home .section.sec4{
  margin-top: 60px;
}
.home_concept.reverse{
  padding-top: 40px;
}

.pg_home .section.sec5{
  margin-top: 60px;
}
.home_staff {
  padding: 0 30px 30px;
  background: #f4f0e9;
  position: relative;
}
.home_staff:after{
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #8c8c8c;
  position: absolute;
  left: 10px;
  top: 10px;
  pointer-events: none;
}
.home_staff_img{
  position: relative;
  z-index: 1;
}
.home_staff_ttl_en{
  margin-bottom: 10px;
}
.home_staff_ttl_ja{
  margin-bottom: 10px;
}
.home_staff_name{
  margin-top: 10px;
}

.pg_home .section.sec6{
  margin-top: 60px;
}
.products_list .webgene-blog{
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.products_list .webgene-item{
  padding: 0 8px;
}
.products_list .img{
  position: relative;
}
.products_list .img_fit{
  background: url(/system_panel/uploads/images/noimg.png) no-repeat center / cover;
}
.products_list .img_fit:before{
  padding-top: 83%;
}
.products_list .category{
  min-width: 110px;
  font-size: 14px;
  padding: 0 8px;
  background: #d5ead8;
  position: absolute;
  left: 0;
  bottom: 0;
  letter-spacing: 0.075em;
  font-weight: 500;
  text-align: center;
}
.products_list .title{
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.85;
}


@media (max-width:767px){
  .home_ttl2 {
    margin-right: -10px;
  }
  .home_concept_img{
    margin-bottom: 30px;
  }

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

  .home_service1_txt{
    padding: 20px 30px;
  }
  .home_service2_txt{
    padding: 20px 30px 30px;
  }

  .home_staff_img{
    margin-bottom: 20px;
  }

  .products_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
}
@media (min-width:768px){

  .home_concept{
    padding-top: 155px;
    padding-bottom: 0;
  }
  .home_concept:after{
    content: "";
    width: 1000%;
    height: calc(100% + 20px);
    background: #d5ead8;
    position: absolute;
    left: 110px;
    top: 0;
    z-index: -1;
  }
  .home_ttl1{
    margin-top: -30px;
    margin-bottom: 62px;
  }
  .home_ttl2 {
    font-size: 20px;
    margin-right: -20px;
    margin-bottom: 32px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .home_ttl3_en{
    font-size: 42px;
  }
  .home_ttl3_ja{
    font-size: 20px;
  }
  .link_1{
    margin-top: 60px;
  }

  .pg_home .section.sec3{
    padding-top: 120px;
    padding-bottom: 0;
  }
  .home_service1,
  .home_service2{
    display: flex;
  }
  .home_service1_img {
    width: 32%;
  }
  .home_service1_txt {
    width: 38%;
    padding: 55px 15px;
  }
  .home_service2_img {
    width: 51.5%;
  }
  .home_service2_txt {
    width: 48.5%;
    padding: 55px 22px;
    padding-left: 13px;
  }
  .home_service2:nth-child(odd) .home_service2_img{
    order: 2;
  }
  .home_service2:nth-child(odd) .home_service2_txt{
    padding-right: 18px;
    padding-left: 28px;
    order: 1;
  }
  .pg_home .section.sec3 .link_1{
    margin-top: 25px;
  }
  .pg_home .section.sec3 .home_service2:nth-child(even) .link_1{
    margin-top: 30px;
  }


  .pg_home .section.sec4{
    margin-top: 120px;
  }
  .home_concept.reverse{
    padding-top: 90px;
  }
  .home_concept.reverse:after{
    left: inherit;
    right: 190px;
    height: calc(100% - 27px);
  }
  .home_concept.reverse .txt{
    order: 1;
  }
  .home_concept.reverse .img{
    order: 2;
  }
  .home_concept.reverse .link_1{
    margin-top: 125px;
  }
  .link_1.left{
    margin-left: 0;
  }

  .home_staff{
    padding: 37px 30px 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
  }
  .home_staff_ttl_en{
    width: 100px;
    order: 1;
  }
  .home_staff_txt{
    width: calc(100% - 100px - 250px);
    order: 2;
  }
  .home_staff_img{
    width: 250px;
    order: 3;
  }
  .home_staff .link_1{
    padding: 9px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 260px;
    z-index: 5;
  }

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

  .pg_home .section.sec6 .link_1{
    margin-top: 60px;
  }
}
@media (min-width:1024px){
  .home_concept{
    padding-top: 233px;
  }
  .home_concept:after{
    height: calc(100% - 65px);
  }

  .pg_home .section.sec2{
    padding-top: 132px;
  }
  .blog_list .webgene-blog{
    margin: 0 -15px;
  }
  .blog_list .webgene-item{
    padding: 0 15px;
  }

  .home_service2_list{
    display: flex;
  }
  .home_service2{
    width: 50%;
  }

  .pg_home .section.sec5{
    margin-top: 120px;
  }
  .home_staff_ttl_en {
    width: 142px;
  }
  .home_staff_txt{
    width: calc(100% - 150px - 288px);
  }
  .home_staff_img{
    width: 288px;
    position: absolute;
    right: 20px;
    bottom: 0;
  }

  .pg_home .section.sec6{
    margin-top: 105px;
  }
  .products_list .webgene-blog{
    margin: 0 -15px;
  }
  .products_list .webgene-item{
    padding: 0 15px;
  }

}
@media (min-width:1200px){
  .home_ttl2 {
    font-size: 30px;
  }
  .home_ttl2 em{
    font-size: 20px;
  }

  .home_concept.reverse:after {
    height: 91%;
  }

  .pg_home .section.sec5{
    margin-top: 218px;
  }
  .home_staff_txt{
    width: calc(100% - 150px - 328px);
  }
  .home_staff_img{
    width: 408px;
    right: 45px;
  }
}


/*******************************
*　初めての方
********************************/
.pg_beginner .section.sec1{
  margin-top: 0;
}

.pg_beginner .section.sec2{
  padding-top: 60px;
  margin-top: 0;
}
.begi_cat_item {
  font-size: 18px;
  padding: 2px;
  display: block;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #f0f0f0;
  position: relative;
}
.begi_cat_item:after{
  font-size: 20px;
  content: "\f107";
  font-family: 'FontAwesome';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.begi_cat > div:first-child .begi_cat_item{
  background: #c2dec6;
  color: #ffffff;
}

.flow_item {
  padding: 0 20px 20px;
  border: 2px solid #d5ead8;
  position: relative;
}
.flow_item:not(:last-child):before,
.flow_slide_list .flow_item:last-child:before{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  border-style: solid;
  border-width: 18px 14px 0 14px;
  border-color: #d5ead8 transparent transparent transparent;
}
.flow_item:not(:last-child):after,
.flow_slide_list .flow_item:last-child:after{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-style: solid;
  border-width: 14px 12px 0 12px;
  border-color: #ffffff transparent transparent transparent;
}
.flow_item + .flow_item{
  margin-top: 60px;
}
.flow_item_step{
  font-size: 52px;
  padding-right: 0;
  font-family: 'Sacramento', cursive;
  color: #d5ead8;
  border-bottom: 1px solid #d5ead8;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 0.98;
}
.flow_item_ttl{
  font-size: 20px;
  letter-spacing: 0.075em;
  font-weight: 700;
  margin-bottom: 20px;
}
.flow_item_img {
  width: 256px;
  max-width: 100%;
  margin: 0 auto;
}
.flow_item_img:before{
  padding-top: 66%;
}
.flow_item_text{
  letter-spacing: 0.075em;
  line-height: 2;
}
.flow_slide_list {
  margin-top: 30px;
  margin-bottom: 50px;
}
.flow_slide .flow_item {
  height: 100%;
  padding: 0 20px 30px;
  display: block;
}
.flow_item_cat {
  margin: 30px 0 15px;
  background: #d5ead8;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.8;
  text-align: center;
}
.flow_slide .flow_item_img{
  margin-bottom: 10px;
}
.no2 .flow_item{
  border-color: #e3dbcd;
}
.flow_slide_list .no2 .flow_item:before{
  border-color: #e3dbcd transparent transparent transparent;  
}
.no3 .flow_item{
  border-color: #d6d8c8;
}
.flow_slide_list .no3 .flow_item:before{
  border-color: #d6d8c8 transparent transparent transparent;  
}
.no2 .flow_slide .flow_item_step{
  color: #e3dbcd;
}
.no3 .flow_slide .flow_item_step{
  color: #d6d8c8;
}
.no2 .flow_slide .flow_item_cat{
  background: #e3dbcd;
}
.no3 .flow_slide .flow_item_cat{
  background: #d6d8c8;
}
.flow_slide{
  padding: 0 10px 30px;
}
.flow_slide .flow_item{
  margin-bottom: 15px;
}

/*slick*/
.slick-arrow{
  font-size: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slick-arrow.slide-prev{
  left: -10px;
}
.slick-arrow.slide-next{
  right: -10px;
}
.slick-dots{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.slick-dots li button{
  padding: 0;
  background: inherit;
  border: 0;
  font-size: 0;
  box-shadow: none;
  display: block;
  color: #181818;
}
.slick-dots li button:before{    
  content: "●";
  font-size: 12px;
  margin: 0 5px;
}
.slick-dots li.slick-active button:before{
  color: #BBB;
}
.flow_slide_list {
  justify-content: center;
}

.pg_beginner .section.sec3{
  padding-top: 60px;
  margin-top: 0;
}
.beginner_caution{
  padding: 30px;
  position: relative;
  border: 2px solid #d5ead8;
}
.beginner_caution:before{
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 5px;
  top: 5px;
  border: 1px solid #d5ead8;
  pointer-events: none;
}
.beginner_caution_ttl {
  margin-bottom: 20px;
}

.flow_item_txt .link_1{
  width: 100%;
  margin-top: 20px;
}
.flow_item_txt .link_1 p:before{
  margin-right: 10px;
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  line-height: 1;
}
.flow_item_txt .link_1.no1 p:before{
  font-size: 20px;
  content: "\f10b";
}
.flow_item_txt .link_1.no2 p:before{
  font-size: 16px;
  content: "\f095";
}

@media (max-width:767px){
  .begi_cat > div + div{
    margin-top: 15px;
  }

  .flow_item_step{
    padding-top: 20px;
  }
  .flow_item_txt{
    padding: 20px 5px;
  }
  .flow_slide .flow_item_txt{
    padding: 20px 0;
  }
}
@media (min-width:768px){
  .flow_item_step{
    font-size: 82px;
  }

  .pg_beginner .section.sec2 {
    padding-top: 82px;
  }
  .pg_beginner .section.sec2 .home_ttl3{
    margin-bottom: 50px;
  }
  .flow_item {
    padding: 0 20px 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .flow_item_step{
    width: 100%;
    padding: 30px 0 10px;
  }
  .flow_item_txt {
    width: 100%;
    padding: 30px;
  }
  .flow_item_img {
    width: 100%;
  }

  .flow_slide_list {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .flow_slide .flow_item{
    min-height: 650px;
    padding-top: 20px;
  }
  .flow_slide .flow_item_txt {
    width: 100%;
    padding: 0;
  }
  .flow_slide .flow_item_img{
    margin-bottom: 30px;
  }
  .flow_slide .flow_item + .flow_item{
    margin-top: 0;
  }

  .pg_beginner .section.sec3{
    padding-top: 100px;
  }
  .pg_beginner .section.sec3 .home_ttl3{
    margin-bottom: 62px;
  }
  .beginner_caution{
    padding: 50px;
  }
  .flow_item_txt .link_1{
    display: inline-block;
  }
  .flow_item_txt .link_1:nth-child(even){
    margin-left: 20px;
  }
  .flow_slide_list > div:nth-child(n+3){
    margin-top: 60px;    
  }
}
@media (min-width:1024px){
  .flow_item {
    padding: 62px 28px;
  }
  .flow_item_step{
    width: 195px;
    padding: 60px 0 40px 42px;
    padding-right: 20px;
    border-right: 1px solid #d5ead8;
    border-bottom: 0;
    text-align: left;
  }
  .flow_item_txt {
    width: calc(100% - 195px - 256px);
    padding: 0 55px;
  }
  .flow_item_img {
    width: 256px;
    margin: 0;
  }
  .flow_slide_list {
    margin-top: 60px;
  }
  .flow_slide .flow_item_step{
    padding: 38px 0 0;
    border-right: 0;
    margin: 0 auto;
    border-bottom: 1px solid;
    text-align: center;
  }
  .flow_slide .flow_item {
    min-height: 678px;
    padding: 0 25px 30px;
  }
  .flow_slide .flow_item_txt {
    width: 100%;
    padding: 0;
  }
  .flow_slide{
    padding: 0;
  }
  .flow_slide .flow_item + .flow_item{
    margin-top: 60px;
  }
  .flow_slide_list > div:nth-child(n+3){
    margin-top: 0;    
  }

  .pg_beginner .section.sec3{
    padding-top: 132px;
  }
  .pg_beginner .section.sec3 .home_ttl3{
    margin-bottom: 92px;
  }
  .beginner_caution{
    padding: 30px 62px;
  }

  .flow_item_txt .link_1{
    display: block;
  }
  .flow_item_txt .link_1 + .link_1{
    margin-left: 0;
  }
}
@media (min-width:1200px){
  .flow_slide .flow_item {
    min-height: 626px;
    padding: 0 45px 30px;
  }


}


/*******************************
*　商品紹介
********************************/
.pg_product .section.sec1,
.pg_product .section.sec2{
  margin-top: 0;
}
.product_cat{
  margin-top: -30px;
  padding-top: 30px;
}
.product_cat .webgene-blog{
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.product_cat .webgene-item{
  padding: 0 8px;
  display: flex;
}
.product_cat .webgene-item a{
  width: 100%;
  font-size: 16px;
  padding: 8px;
  border: 1px solid #d1cabe;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.product_cat .webgene-item.on a{
  background: #d1cabe;
  color: #ffffff;
}

.pg_product .section.sec2{
  margin-top: 50px;
}
/* ポップアップ */
.lity{
  background: rgba(0,0,0,0.8) !important;
}
.lity-content:after{
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
}
.lity-content + .lity-close{
  display: none;
}
.popup_inner{
  width: 500px;
  max-width: calc(100% - 20px);
  margin: 0 10px;
  height: 80vh;
  background: #ffffff;
  padding: 35px;
  position: relative;
  cursor: pointer;
  /*overflow: scroll;*/
  overflow-y: auto;
}
.popup_close{
  width: 15px;
  height: 15px;
  background-image: url('/system_panel/uploads/images/gallery_close.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  right: 12px;
}
.popup_close:hover{
  opacity: 0.5;
}
.popup_inner .title{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.popup_inner .txt{
  text-align: justify;
}
.popup_inner .slides{
  background: url(/system_panel/uploads/images/noimg.png) no-repeat center / cover;
}
.popup_inner .img_fit:before{
  padding-top: 79.5%;
}
.popup_inner .slick-prev{
  left: -28px;
}
.popup_inner .slick-next{
  right: -28px;
}
.popup_inner .category {
  min-width: 110px;
  font-size: 14px;
  padding: 0 8px;
  margin-bottom: 15px;
  background: #d5ead8;
  letter-spacing: 0.075em;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
select[name="month"],
select[name="category"]{
  width: 100%;
  height: 50px;
  padding: 8px;
  border: 1px solid #000;
  background: #ffffff;
  border-radius: 0;
}

@media (max-width:767px){
  .product_cat .webgene-item:nth-child(n+3){
    margin-top: 15px; 
  }
  .product_cat .webgene-blog{
    display: none;
  }

  .popup_inner .txt{
    margin-top: 20px;
  }
  .popup_inner{
    overflow: scroll;
  }
}
@media (min-width:768px){
  .product_cat{
    margin-top: -120px;
    padding-top: 120px;
  }
  .product_cat .webgene-item:nth-child(n+4){
    margin-top: 25px; 
  }
  .posts_category_sp{
    display: none;
  }

  .pg_product .section.sec2{
    margin-top: 100px;
  }
  .webgene-pagination {
    margin: 60px 0 0;
  }

  .pg_product .products_list .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }


  .popup_inner{
    width: 700px;
    max-width: 100%;
    height: 460px;
    padding: 50px 50px;
    /*height: 77.5vh;*/
  }
  .popup_close{
    width: 21px;
    height: 21px;
    background-size: 21px;
    top: 15px;
    right: 14px;
  }  
  .popup_inner .box {
    display: flex;
    align-items: flex-start;
  }
  .popup_inner .slides{
    width: 56%;
    min-height: 200px;
  }
  .popup_inner .txt{
    width: 44%;
    margin-top: -6px;
    padding-left: 45px;
  }
  .popup_inner .slick-next {
    right: -30px;
  }
}
@media (min-width:1024px){
  .product_cat{
    margin-top: -100px;
    padding-top: 100px;
  }
  .product_cat .webgene-blog{
    margin: -15px -15px 0;
  }
  .product_cat .webgene-item{
    padding: 0 15px;
  }
  .product_cat .webgene-item:nth-child(n+4){
    margin-top: 0; 
  }
  .product_cat .webgene-item:nth-child(n+5){
    margin-top: 28px; 
  }

  .webgene-pagination {
    margin: 75px 0 0;
  }
  .pg_product .products_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .pg_product .products_list .webgene-item:nth-child(n+5){
    margin-top: 50px;
  }

  .popup_inner{
    width: 920px;
    max-width: 100%;
    height: 580px;
    padding: 100px 65px 90px;
  } 
  .popup_inner .txt{
    padding-left: 65px;
  }
  .popup_inner .slides{
    min-height: 300px;
  }
}
@media (min-width:1200px){


}



/*******************************
*　ブログ
********************************/
.pg_blog .posts_side_title {
  background: #d5ead8;
  color: #181818;
}


/* 詳細 */
.posts_detail{
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .category{
  min-width: 95px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 2px;
  text-align: center;
  background: #d5ead8;
  color: #000000;
  display: inline-block;
  line-height: 1.65;
}
.posts_detail .date{
  font-size: 16px;
  margin: 5px 0 10px;
  letter-spacing: 0.09em;
  font-weight: 500;  
}
.posts_detail .title{
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  border-bottom: 1px dotted;

}
.posts_detail .post_content{
  padding-bottom: 30px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  border-bottom: 1px dotted;
}
.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;
}
.posts_category_sp{
  display: none;
}
.pg_blog .link_1{
  margin-top: 50px;
}

@media (max-width:767px){
  .pg_blog .posts_category_sp{
    margin-bottom: 50px;
  }

}
@media (min-width:768px){
  .pg_blog .blog_list .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }
  .pg_blog .posts_layout{
    margin-top: -90px;
    padding-top: 90px;
  }


  /* 詳細 */
  .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 .thumb{
    margin-bottom: 20px;
  }
  .posts_detail .post_content{
    padding-bottom: 50px;
  }
  .pg_blog .link_1{
    margin-top: 80px;
  }
}
@media (min-width:1024px){
  .posts_side_wrap + .posts_side_wrap {
    margin-top: 138px;
  }
  .pg_blog .webgene-pagination {
    margin: 105px 0 0;
  }

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


}




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


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

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

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


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


}
