@charset "UTF-8";


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

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

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  opacity: 0.7;
  color: inherit;
}

.anchor{
  position: relative;
  z-index: 1;
  top: -80px;
}

img{
  max-width: 100%;
  width: auto;
}

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

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

a.img_fit{
  display: block;
}

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

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

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


/* 指定デバイスのみで表示するclass */
@media (min-width: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;
}

.pg_loading{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,1);
}
.pg_loading.on{
  animation: pageFadeIn 1s; /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both; /*0%の時と100%の時の状態を保つ*/
  pointer-events: none;
}
.pg_loading.off{
  animation: pageFadeOut 2s; /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both; /*0%の時と100%の時の状態を保つ*/
  pointer-events: none;
}


@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1; 
  }
}
@keyframes pageFadeOut {
  0% {
    opacity: 1; /*初めに存在する*/
  }
  100% {
    opacity: 0; /*最後に消える*/
  }
}

/*******************************
*　ヘッダー
********************************/
.header{
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}
.header{
  background: #fff;
  /*height: 127px;*/

}
.body_home{
  padding-bottom: 0;
}
.body_home .header{
  position: absolute;
  background: none;
}

.header.fixed{

}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 10px;
  padding: 20px 10px;
  /*background: rgba(255,255,255,0.85);*/
}
.body_home{
  padding-top: 0;
}
.body_home .header .hdr1{
  padding-top: 0;
}
.hdr1_box1{

}
.hdr1_box2{

}
.hdr_contact{

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

.pg_header{
  margin-bottom: 30px;
  position: relative;
}
.pg_header_mv{
  overflow: hidden;
}
.pg_header_mv.img_fit:before{
  padding-top: 200px;
}

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


.gnav .gnav_item {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #4d4d4d;
}
.gnav .gnav_item a{
  display: block;
}
.gnav .gnav_item.btn_email {

}
.gnav .gnav_item.icon_email a p:before{
  content: "\f0e0";
  font-family: "FontAwesome";
  margin-right: 8px;
}

.gnav .gnav_item{
  transition: 0.2s all;
}
.gnav:hover .gnav_item{
  opacity: 0.5;
}
.gnav .gnav_item:hover{
  opacity: 1;
}
.gnav .gnav_item:hover a{
  opacity: 1;
}

@media (min-width:375px){

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

  .header{
    width: 100%;
    height: auto;
    position: static;
    position: fixed;
    padding: 10px;
    background: rgba(255,255,255,0.9);
  }

  .hdr1 {
    padding: 0;
  }
  .hdr1_box1{
    margin: 0;
    padding-left: 5px;
  }
  .hdr_contact{
    display: none;
  }

  .body_home .header{
    width: 50%;
    /*top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
  }
  .body_home .header .hdr1_box1{
    display: none;
    margin: 0;
  }

  .hdr1_box1{
  }
  .hdr_logo img{
    width: 60px;
  }
  
  .menu_btn{
    color: #000;
    position: absolute;
    position: fixed;
    z-index: 6;
    top: 8px;
    top: -3px;
    right: 10px;
    font-size: 20px;
  }
  .menu_btn.active{
    /*position: fixed;*/
  }
  
  .MenuBtn.Style01 {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .MenuBtn.Style01 .MenuBtn-BarFrame {
    position: relative;
    display: block;
    width: 24px;
    height: 1px;
  }

  .MenuBtn.Style01 .MenuBtn-BarFrame-FirstBar,
  .MenuBtn.Style01 .MenuBtn-BarFrame-SecondBar,
  .MenuBtn.Style01 .MenuBtn-BarFrame-ThirdBar{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: all .15s linear;
  }
  .MenuBtn.Style01 .MenuBtn-BarFrame-FirstBar {
    
  }
  .MenuBtn.Style01 .MenuBtn-BarFrame-SecondBar {
    transform: translateY(-8px) rotate(0deg);
  }
  .MenuBtn.Style01 .MenuBtn-BarFrame-ThirdBar {
    transform: translateY(8px) rotate(0deg);
  }
  .MenuBtn.Style01 .MenuBtn-Txt {
    font-size: 9px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    text-align: center;
  }

  .MenuBtn.Style01.isClosed .MenuBtn-BarFrame-FirstBar {
    opacity: 0;
  }

  .MenuBtn.Style01.isClosed .MenuBtn-BarFrame-SecondBar {
    transform: translateY(0) rotate(45deg);
  }

  .MenuBtn.Style01.isClosed .MenuBtn-BarFrame-ThirdBar {
    transform: translateY(0) rotate(-45deg);
  }
  
  /* スマホ用 */
  .gnav{
    display:block !important;
    width: 100%;
    position: fixed;
    /*top: 77px;*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    /*z-index: 99999;*/
    z-index: 5;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 30px 15px 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;
  }



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

  body{
    padding-top: 100px;
  }
  .header{
    height: 100px;
    /*transition: 0.2s all;*/
  }
  .header *{
    /*transition: 0.2s all;*/
  }
  .hdr_logo img{
    height: 60px;
  }
  .header.slim{
    height: 60px;
  }
  .header.slim .hdr_logo img{
    height: 40px;
  }
  .header.slim .hdr1{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .body_home .header .hdr1{
    padding-top: 25px;
  }


  .hdr1{
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }

  .body_home .hdr1{
    padding-left: 48px;
    padding-right: 56px;
  }

  .pg_header{
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 40px;
  }
  .pg_header_mv{
  }
  .pg_header_mv.img_fit:before{
    padding-top: 300px;
  }

  .gnav {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav .gnav_item {
    font-size: 15px;
    /*padding: 0 10px;*/
    padding: 0;
    /*line-height: 2;*/
  }
  .gnav .gnav_item a{
    display: block;
    padding: 0 10px;
  }

  .mv_img.img_fit:before{
    padding-top: 500px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv.img_fit:before{
    padding-top: 400px;
  }

  .mv_img.img_fit:before{
    padding-top: 700px;
  }
}
@media (min-width:1200px){

  body{
    padding-top: 127px;
  }
  .header{
    height: 127px;
  }

  .hdr_logo img{
    height: 87px;
  }
  .header.slim{
    height: 60px;
  }
  .header.slim .hdr_logo img{
    height: 40px;
  }

  .mv_img.img_fit:before{
    padding-top: 880px;
  }
  .pg_header_mv.img_fit:before{
    padding-top: 800px;
  }

  .gnav .gnav_item {
    /*font-size: 15px;*/
    /*padding: 0 24.3px;*/
    padding: 0;
    /*line-height: 2;*/
  }
  .gnav .gnav_item a{
    /*padding: 0 10px;*/
    padding: 0 24.3px;
  }
}





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

.footer{
  margin-top: 120px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #cccccc;
  position: relative;
  z-index: 1;
}

.ftr_sns{
  display: flex;
  justify-content: center;
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.ftr_sns_item{
  width: 40px;
  margin: 0 5px;
}

.ftr_copy{
  font-size: 14px;
  letter-spacing: 0.075em;
  text-align: center;
}

/*.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;
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #928970;
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #a9a9a9;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #928970;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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



@media (min-width:375px){

}

@media (min-width:768px){
  .footer{
    margin-top: 120px;
    padding-top: 50px;
    padding-bottom: 40px;
  }

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

  .footer{
    margin-top: 250px;
    padding-top: 45px;
  }

}
@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;*/
    display: none;
  }

  body{
    padding-bottom: 0;
  }
}


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 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: 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;
}




@media (min-width:375px){
}
@media (min-width:768px){
  margin-top: 70px;
}
@media (min-width:1024px){
  .webgene-pagination{
    margin-top: 115px;
  }
}





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

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

.body_home .footer{
  display: none;
}


.home_mv{

}
.home_mv_img{

}
.home_mv_img.img_fit:before{
  content: "";
  padding-top: 100vh;
  padding-top: 100dvh;
}

.home_mv_sns{
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  bottom: 65px;
  left: 45px;
}
.home_mv_sns a{

}
.home_mv_sns a:hover{
  opacity: 1;
  filter: brightness(1.2);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.home_mv_sns a+a{
  margin-top: 15px;
}

.home_mv_news{
  display: flex;
  position: absolute;
  z-index: 1;
  bottom: 65px;
  right: 65px;
}
.home_mv_news_box1{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  padding: 10px;
  width: 124px;
  height: 119px;
}
.home_mv_news_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  background: #8c8c8c;
  width: 316px;
  padding: 0 60px 0 15px;
  position: relative;
  z-index: 1;
}
.home_mv_news_box2:before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 1px;
  top: 15px;
  bottom: 15px;
  right: 42px;
  background: #b3b3b3;
}
.home_mv_news_box2:after{
  content: "▶";
  position: absolute;
  z-index: 1;
  font-size: 14px;
  top: 50%;
  right: 15px;
  color: #b3b3b3;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.home_mv_news_img{

}
.home_mv_news_img img{

}

.home_mv_news_header{
  width: 100%;
  font-size: 15px;
  color: #bdbdbd;
}
.home_mv_news_list{
  width: 100%;
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 1.8666;
  color: #FFF;
}

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

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

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

  .body_home .gnav_item{

  }

  .home_mv_logo{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .home_mv_logo img{
    width: 120px;
  }
  
  .home_mv_sns{
    bottom: auto;
    left: auto;
    top: 10px;
    left: 10px;
    right: auto;
    flex-direction: row;
    z-index: 1;
  }
  .home_mv_sns a{
    width: 36px;
  }
  .home_mv_sns a + a{
    margin-top: 0;
    margin-left: 10px;
  }
  .home_mv_news{
    left: 20px;
    right: 20px;
    bottom: 40px;
  }
  .home_mv_news_list{

  }
  .home_mv_news_list .title{
    font-size: 15px;
    line-height: 1.3;
  }
  .home_mv_news_box1{
    display: none;
    width: 80px;
    height: 74px;
  }
  .home_mv_news_box2{
    width: 100%;
    padding: 0;
    background: none;
  }
  .home_mv_news_header{
    line-height: 1.2;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .home_mv_news_list{
    color: #000;
  }
  .home_mv_news_box2:before,
  .home_mv_news_box2:after{
    display: none;
  }
}
@media (min-width:768px){

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

  .body_home .gnav_item{
    color: #FFF;
    text-shadow: 0.559px 0.829px 1px rgba(0, 0, 0, 0.5);
  }
  
  .home_mv_logo{
    display: none;
  }

  .home_mv_news_img{

  }
  .home_mv_news_img img{
    height: 50px;
  }

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


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


}

/* ページ概要 */
.pg_cmn_about{
  margin-bottom: 40px;
}
.pg_cmn_about_title{
  font-size: 20px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 20px;
}
.pg_cmn_about_title2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 20px;
}
.pg_cmn_about_txt{
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2.125;
  text-align: justify;
}
.pg_cmn_about_txt2{
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2.375;
  text-align: justify;
}

/**/
.read_more{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.read_more a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  background: #928970;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  padding: 15px 10px;
}
.read_more a:before{
  content: "←";
  margin-right: 20px;
  transition: .2s all;
}

.read_more a:hover{
  opacity: 1;
  background: #79715c;
}
.read_more a:hover:before{
  transform: translateX(-5px);
}

@media (min-width:768px){

  /* ページ概要 */
  .pg_cmn_about{
    margin-bottom: 50px;
  }
  .pg_cmn_about_title{
    font-size: 24px;
    margin-bottom: 25px;
  }
  .pg_cmn_about_title2{
    font-size: 20px;
    margin-bottom: 25px;
  }
  .pg_cmn_about_txt{
    font-size: 16px;
    line-height: 2.125;
    /*text-align: center;*/
  }
  .pg_cmn_about_txt2{
    font-size: 16px;
    line-height: 2.375;
    /*text-align: center;*/
  }

  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
}
@media (min-width:1024px){

  /* ページ概要 */
  .pg_cmn_about{
    margin-bottom: 85px;
  }
  .pg_cmn_about_title{
    font-size: 28px;
    margin-bottom: 45px;
  }
  .pg_cmn_about_title2{
    font-size: 21px;
    margin-bottom: 37px;
  }
  .pg_cmn_about_txt{
    font-size: 16px;
    text-align: center;
  }
  .pg_cmn_about_txt2{
    font-size: 16px;
    text-align: center;
  }

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


}

/*******************************
*　About
********************************/
.pg_about{

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  margin-top: 50px;
}

.about_imgs_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_imgs_item{

}
.about_imgs_item.pos1{
  width: 40.09%;
  margin-top: 88px;
}
.about_imgs_item.pos2{
  width: 57.20%;
}
.about_imgs_item.pos3{
  width: 100%;
}

.about_imgs_item.pos1 .img_fit:before{
  padding-top: 112.35%;
}
.about_imgs_item.pos2 .img_fit:before{
  padding-top: 78.74%;
}
.about_imgs_item.pos3 .img_fit:before{
  padding-top: 67.80%;
}

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

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

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

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

  .pg_about .section.sec2{
    margin-top: 70px;
  }

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

  .pg_about .section.sec2{
    margin-top: 95px;
  }

  .about_imgs_item.pos3{
    width: 730px;
    max-width: 100%;
    margin: -15px auto 0;
  }

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


}


/*******************************
*　
********************************/
.pg_menu{

}


/* メニュー */
.menu_contents_wrap{

}
.menu_contents_row{

}
.menu_contents_row + .menu_contents_row{
  margin-top: 90px;
}
.menu_contents_row_title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.menu_contents_row_title:before,
.menu_contents_row_title:after{
  content: "";
  width: calc(50% - 110px);
  height: 1px;
  background: #928970;
}
.menu_contents_row_title_str{
  width: 220px;
  font-size: 24px;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
  color: #928970;
  text-align: center;
}

/* 値段 */
.menu_contents_price{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_contents_price_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 9px;
  padding-bottom: 12px;
}
.menu_contents_price_item:nth-child(n+2){
  margin-top: 15px;
}
.menu_contents_price_item_txt1,
.menu_contents_price_item_txt2{
  font-size: 16px;
  letter-spacing: 0.075em;
}
.menu_contents_price_item_txt1{
  padding-left: 5px;
}
.menu_contents_price_item_txt2{
  margin-left: auto;
  padding-right: 20px;
}
.menu_contents_price_item_txt2.pr0{
  padding-right: 3px;
}


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

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

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

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

  }

  .pg_menu .pg_cmn_about{
    margin-bottom: 70px;
  }


  /* メニュー */
  .menu_contents_wrap{

  }
  .menu_contents_row{

  }
  .menu_contents_row + .menu_contents_row{
    margin-top: 70px;
  }
  .menu_contents_row_title{
    margin-bottom: 30px;
  }

  .menu_contents_row_title_str{
    width: 220px;
    font-size: 24px;
  }
  .menu_contents_row_title:before,
  .menu_contents_row_title:after{
    width: calc(50% - 110px);
  }

  /* 値段 */
  .menu_contents_price{
  }
  .menu_contents_price_item{
    width: 48.64%;
  }
  .menu_contents_price_item:nth-child(n+2){
    margin-top: 0;
  }
  .menu_contents_price_item:nth-child(n+3){
    margin-top: 15px;
  }
  .menu_contents_price_item_txt1{

  }
  .menu_contents_price_item_txt2{
  }


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

  .pg_menu .pg_cmn_about{
    margin-bottom: 100px;
  }

  /* メニュー */
  .menu_contents_wrap{

  }
  .menu_contents_row{

  }
  .menu_contents_row + .menu_contents_row{
    margin-top: 95px;
  }
  .menu_contents_row_title{
    margin-bottom: 38px;
  }

  /*.menu_contents_row_title_str{
    width: 220px;
    font-size: 24px;
  }
  .menu_contents_row_title:before,
  .menu_contents_row_title:after{
    width: calc(50% - 110px);
  }*/

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


  .pg_menu .pg_cmn_about{
    margin-bottom: 140px;
  }

}


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

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


/* 一覧 */
.style_list{

}
.style_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.style_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.style_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.style_list .webgene-item .img{
  background: #b3b3b3;
  background-image: url('/system_panel/uploads/images/noimage.jpg');
  background-size: cover;
  background-position: center;
}
.style_list .webgene-item .img.img_fit:before{
  padding-top: 133.33%;
}
.style_list .webgene-item .title{
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 10px;
}


/* 詳細 */
.style_detail{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.style_detail .box1{
  width: 100%;
}
.style_detail .box2{
  width: 100%;
  margin-top: 30px;
}
.style_detail .thumb .img.img_fit:before{
  padding-top: 133.333%;
}
.style_detail .sub{
  margin-top: 10px;
}
.style_detail .sub .img.img_fit:before{
  padding-top: 133.333%;
}
.style_detail .sub .img{
  margin: 0 3px;
}

.style_detail .meta{
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.style_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.style_detail .desc{
  background: #f2f0e9;
  padding: 15px;
}
.style_detail .desc + .desc{
  margin-top: 30px;
}
.style_detail .desc_title{
  font-size: 18px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
}
.style_detail .desc_txt{
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2.375;
  text-align: justify;
}

.slick-list{

}
.slick-list .img{
  cursor: pointer;
}

.slider .sub .img{
  overflow: hidden;

}
.slider .sub .img img{
  transition: 0.2s all;
}
.slider .sub .img:hover img{
  transform: scale(1.05);
}

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

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

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

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

  }

  .pg_style .pg_cmn_about{
    margin-bottom: 70px;
  }

  /* 一覧 */
  .style_list{

  }
  .style_list .webgene-blog{
    margin: 0 -10px;
  }
  .style_list .webgene-item{
    width: 25%;
    padding: 0 10px;
  }
  .style_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .style_list .webgene-item:nth-child(n+5){
    margin-top: 30px;
  }
  
  .style_list .webgene-item .title{
    font-size: 15px;
  }

  /* 詳細 */
  .style_detail{

  }
  .style_detail .box1{
    width: 48.64%;
  }
  .style_detail .box2{
    width: 48.64%;
    margin-top: 0;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
  }
  .style_detail .meta{
    margin-bottom: 30px;
    padding-bottom: 18px;
  }
  .style_detail .meta .title{

  }
  .style_detail .desc{
    padding: 15px;
    padding-bottom: 75px;
    min-height: 200px;
  }
  .style_detail .desc + .desc{
    margin-top: 20px;
  }
  .style_detail .desc_title{
    margin-bottom: 15px;
  }
  .style_detail .desc_txt{

  }

  .style_detail .box2 .read_more{
    position: absolute;
    bottom: 0;
    right: 0;
  }


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

  .pg_style .pg_cmn_about{
    margin-bottom: 100px;
  }

  /* 一覧 */
  .style_list{

  }
  .style_list .webgene-blog{
    margin: 0 -15px;
  }
  .style_list .webgene-item{
    width: 25%;
    padding: 0 15px;
  }
  .style_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .style_list .webgene-item:nth-child(n+5){
    margin-top: 45px;
  }

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

  .pg_style .pg_cmn_about{
    margin-bottom: 150px;
  }

}


/*******************************
*　
********************************/
.pg_salon{

}
.pg_salon .section.sec1{
}
.pg_salon .section.sec2{
  margin-top: 50px;
}

/* 店舗概要 */
.salon_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.salon_about_box1{
  width: 100%;
}
.salon_about_box2{
  width: 100%;
  margin-top: 30px;
}

.salon_about_title{
  font-size: 24px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b3b3b3;
  padding-top: 8px;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.salon_about_title em{
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}
.salon_about_addr{
  font-size: 16px;
  letter-spacing: 0.075em;
  margin-bottom: 8px;
}
.salon_about_data{
  font-size: 16px;
  letter-spacing: 0.075em;
}
.salon_about_data_dl{
  display: flex;
  align-items: center;
}
.salon_about_data_dl + .salon_about_data_dl{
  margin-top: 8px;
}
.salon_about_data_dl_dt{
  width: 95px;
  position: relative;
  z-index: 1;
}
.salon_about_data_dl_dt:after{
  content: "";
  width: 1px;
  height: 16px;
  background: #6f6f6f;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
}
.salon_about_data_dl_dd{
  width: calc(100% - 95px);
  padding-left: 25px;
}

.salon_about_img{

}
.salon_about_img.img_fit:before{
  padding-top: 70.37%;
}

/* ギャラリー */
.salon_gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;

}
.salon_gallery_box1,
.salon_gallery_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.salon_gallery_box1{

}
.salon_gallery_box2{
  margin-top: 20px;
}
.salon_gallery_img{

}
.salon_gallery_img.pos1{
  width: 100%;
  margin-bottom: 4.8%;
}
.salon_gallery_img.pos2{
  width: 55.11%;
}
.salon_gallery_img.pos3{
  width: 39.84%;
}
.salon_gallery_img.pos4{
  width: 100%;
}
.salon_gallery_img.pos1.img_fit:before{
  padding-top: 71.65%;
}
.salon_gallery_img.pos2.img_fit:before{
  padding-top: 134.28%;
}
.salon_gallery_img.pos3.img_fit:before{
  padding-top: 134.38%;
}
.salon_gallery_img.pos4.img_fit:before{
  padding-top: 129.21%;
}


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

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

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

  .salon_about_title{
    font-size: 18px;
  }

  /*  .salon_about_title em{
      display: block;
    }*/

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

  .pg_salon .section.sec2{
    margin-top: 50px;
  }
  .pg_salon .pg_cmn_about{
    margin-bottom: 70px;
  }

  /* 店舗概要 */
  .salon_about{
  }
  .salon_about_box1{
    width: 48.64%;
  }
  .salon_about_box2{
    width: 48.64%;
    margin-top: 0;
  }

  .salon_about_title{
    font-size: 24px;
    padding-bottom: 25px;
    margin-bottom: 42px;
  }
  .salon_about_title em{
    font-size: 14px;
  }
  .salon_about_addr{
    font-size: 16px;
  }
  .salon_about_data{
    font-size: 16px;
  }
  .salon_about_data_dl{
  }
  .salon_about_data_dl + .salon_about_data_dl{
    margin-top: 8px;
  }
  .salon_about_data_dl_dt{
    width: 95px;
  }
  .salon_about_data_dl_dt:after{
    width: 1px;
    height: 16px;
    top: 50%;
    right: 0;
    margin-top: -8px;
  }
  .salon_about_data_dl_dd{
    width: calc(100% - 95px);
    padding-left: 25px;
  }

  .salon_about_img{

  }
  .salon_about_img.img_fit:before{
    padding-top: 70.37%;
  }


  /* ギャラリー */
  .salon_gallery{

  }
  .salon_gallery_box1{
    width: 57.20%;
  }
  .salon_gallery_box2{
    width: 40.09%;
    margin-top: 93px;
  }
  .salon_gallery_img.pos1{
    margin-bottom: 4.8%;
  }
}
@media (min-width:1024px){

  .pg_salon .pg_cmn_about{
    margin-bottom: 100px;
  }

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

  .pg_salon .pg_cmn_about{
    margin-bottom: 128px;
  }

}

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


.news_list{

}
.news_list .webgene-blog{

}
.news_list .webgene-item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  border-bottom: 1px dotted #454545;
  padding: 17px 0 18px;
}
.news_list .webgene-item .date{
  width: 100%;
  letter-spacing: 0.075em;
  line-height: 1;
  position: relative;
  z-index: 1;
  /*border-right: 1px solid #454545;*/
  margin-bottom: 5px;
}
.news_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
  line-height: 1.5;
  /*padding-left: 42px;*/
}


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

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

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

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

  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    font-size: 16px;
    padding: 17px 0 18px;
  }
  .news_list .webgene-item .date{
    width: 135px;
    border-right: 1px solid #454545;
  }
  .news_list .webgene-item .title{
    width: calc(100% - 135px);
    padding-left: 42px;
  }


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


}

/*******************************
*　
********************************/
.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){


}


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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 12px;
  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{
  width: 100%;
  margin-bottom: 10px
}
.posts_detail .meta .title{
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: justify;
  word-break: break-all;
  padding-bottom: 50px;
}
.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_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: 18px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    font-size: 18px;
    /*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;
  }

  .posts_detail + .read_more{
    margin-top: 80px;
  }


}
@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;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 15px 10px 13px 25px;
  background: #fbf8f2;
  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: 50px;
}
.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: 255px;
  width: 100%;
  font-size: 15px;
  padding: 15px 10px;
  margin: 60px auto 0;
  border: 0;
  background: #928970;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
  vertical-align: middle;
}
.pg_contact .formBtn.formSend:hover{
  background: #79715c;
}
.pg_contact .formBtn.formSend:after{
  content: "→";
  margin-left: 10px;
  font-size: 1.6em;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  vertical-align: middle;
  transition: 0.2s all;

}
.pg_contact .formBtn.formSend:hover:after{
  transform: translateX(5px);
}
.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 .pg_cmn_about{
    margin-bottom: 50px;
  }
  .pg_contact .pg_cmn_about + .link_1{
  }

  .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 Sans JP", serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #928970;
}
.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;
  }

  .pg_contact .formBtn.formSend{
    margin-top: 30px;
  }

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


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

.reserve_wrap{
  margin-bottom: 60px;
}
.reserve_desc{
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;
}
.link_1{
  max-width: 255px;
  width: 100%;
  font-size: 15px;
  padding: 15px 10px;
  margin: 30px auto 0;
  border: 0;
  background: #928970;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
  vertical-align: middle;
}
.link_1:after{
  content: "→";
  margin-left: 10px;
  font-size: 1.6em;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  vertical-align: middle;
  transition: 0.2s all;
}
.link_1:hover{
  opacity: 1;
  color: #fff;
}
.link_1:hover:after{
  transform: translateX(5px);
}

.link_1.slim{
  padding-top: 8px;
  padding-bottom: 8px;
}

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

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

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

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

  .reserve_wrap{
    margin-bottom:80px;
  }
  .reserve_desc{

  }
  .link_1{
    margin-top: 36px;
  }
  .link_1.slim{
    margin-top: 10px;
  }
}
@media (min-width:1024px){

  .reserve_wrap{
    margin-bottom: 100px;
  }
  .reserve_desc{

  }
  .link_1{

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

}

@media (max-width: 767px) {
    div.menu_btn02 {
        top: 60px;
    }
}
@media (max-width: 767px) {
    div.menu_btn03 {
        top: 120px;
    }
}