<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

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

/*共通*/
.link_1{
  max-width: 255px;
  width: 100%;
  font-size: 15px;
  font-family: 'Noto Serif JP', serif;
  margin: 32px auto 0;
  padding: 8px;
  display: block;
  text-align: center;
  position: relative;
  letter-spacing: 0.075em;
  border: 1px solid #999999;
  font-weight: normal;
  background: #fff;
  color: #353535;
}

@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;
}
img{
  max-width: 100%;
  width: auto;
}

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

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

a.img_fit{
  display: block;
}

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

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

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


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

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

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

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

}
.hdr1_box2{

}
.hdr_contact{

}
.hdr_contact_inner{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.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;
  padding: 0 20px;
}
.pg_header_mv{
  height: 150px;
  overflow: hidden;
}
.pg_header_mv_img{
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.mv{
  position: relative;
  padding: 0 10px;
}
.mv_img{
  position: relative;
}
.mv_img.img_fit:before{
  padding-top: calc(100vh - 75px - 58px);
}
.mv:after{
  content: "";
  display: block;
  width: 100%;
  background: #f2efe9;;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 52%;
  left: 0;
  z-index: -1;
  height: 70vh;
}


/*下層ヘッダー*/
.pg_header:after{
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: #f2efe9;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1
}
.pg_header.conceptPgHed::after {
  height: 450px;
}
.hdr_img .img:before{
  padding-top: 250px;
}
.pg_header_title_wrap{
  position: relative;
}
.pg_header_title_en_img{
  position: absolute;
  top: -25px;
  left: 0;
}
.pg_header_title_desc{
  width: 85.58%;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.866em;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #999999;
  margin-right: 0;
  margin-left: auto;
  padding-bottom: 7px;
}
.pg_header_title_txt{
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0;
  margin-top: 30px;
}
.pg_header_title_txt_s{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
}
.hdr_contact_item.reserve{
  max-width: 180px;
  width: 100%;
  background: #e4ded5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr_contact_item.tel{
  justify-content: center;
  align-items: center;
  max-width: 270px;
  width: 100%;
  background: #d1c0a5;
  padding-right: 10px;
  margin-left: 10px
}
.hdr_contact_item.tel strong{
  font-weight: normal;
  letter-spacing: 0;
  font-size: 18px;
}
.hdr_contact_item.tel .text2{
  margin-left: 15px;
}
.hdr_contact .hour_time{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1;
  margin-top: 5px;
}
.hdr_contact_item.tel .text2:before{
  display: inline-block;
  content: "\f095";
  font-family: "fontAwesome";
  font-size: 18px;
  margin-right: 8px;
}
@media (max-width:767px){
  .pg_header:after{
    display: none; 
  }
  .pg_header_title_wrap:after{
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: calc(100% + 120px);
    background:#f2efe9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -100px;
    left: -15px;
    z-index: -1;
  }
}

@media (min-width:768px){
  body{
    padding-top: 86px;
  }
  .header{
    padding: 10px 16px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 5;
  }
  .pg_header{
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .pg_header_mv{
    height: 350px;
  }


  .hdr_contact{

  }
  .hdr_contact_item{
    width: 222px;
    font-size: 15px;
    font-weight:600;
    letter-spacing: 0em;
    text-align: center;
    line-height: 1;
    padding: 10px 0;
  }
  .hdr_contact_item.reserve{
    max-width: 180px;
    width: 100%;
    background: #e4ded5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_contact_item.tel{
    justify-content: center;
    align-items: center;
    max-width: 270px;
    width: 100%;
    background: #d1c0a5;
    padding-right: 10px;
    margin-left: 10px
  }
  .hdr_contact_item.tel strong{
    font-weight: normal;
    letter-spacing: 0;
    font-size: 18px;
  }
  .hdr_contact_item.tel .text2{
    margin-left: 15px;
  }
  .hdr_contact .hour_time{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.045em;
    line-height: 1;
    margin-top: 5px;
  }
  .hdr_contact_item.tel .text2:before{
    display: inline-block;
    content: "\f095";
    font-family: "fontAwesome";
    font-size: 18px;
    margin-right: 8px;
  }
  .hdr_contact_item.blog{
    background: #fccf22;
  }
  .hdr_contact_item.online{
    background: #448aca;
    color: #fff;
  }
  .hdr_logo{
    width: 170px;;
  }

  .mv{
    padding: 0 20px;
  }
  .mv:after{
    height: 500px
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  .hdr_menu.gnav_open{
    text-align: center;
    font-size: 13px;
    font-weight: 600;
  }
  .hdr_outer .hdr_sns{
    width: 36px;
    margin: 0 10px;
  }
  .fa-navicon:before, .fa-reorder:before, .fa-bars:before, .fa-times:before{
    font-size: 37px;
  }

  /*下層ヘッダー*/
  .hdr_img{

  }
  .pg_header:after{
    height: 500px;
    left: 0;
    z-index: -1
  }
  .hdr_img .img:before{
    padding-top: 400px;
  }
  .pg_header_title_wrap{

  }
  .pg_header_title_en_img{

  }
  .pg_header_title_desc{

  }
  .pg_header_title_txt{
    font-size: 25px;
    margin-top: 40px;
  }
  .pg_header_title_wrap{
    margin-top: 100px; 
  }
}
@media (min-width:1024px){
  body{
    padding-top: 100px;
  }
  .header{
    padding: 10px 50px 0 50px;
  }
  .pg_header{
    margin-bottom: 70px;
    padding: 0 60px;
  }
  .pg_header_mv{
    height: 550px;
  }

  .mv{
    padding: 0 30px;
  }
  .mv:after{
    height: 745px
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }

  .hdr_logo{
    width: auto;
  }
  .hdr_outer .hdr_sns{
    width: 46px;
    margin: 0 40px 0 35px;
  }
  .hdr_contact_item.tel{
    max-width: 309px;
  }
  .hdr_contact .hour_time{
    font-size: 13px;
  }


  /*下層ヘッダー*/
  .hdr_img{

  }
  .pg_header:after{
    height: 750px;
    left: 0;
    z-index: -1
  }
  .hdr_img .img:before{
    padding-top: 550px;
  }
  .pg_header_title_wrap{
    margin-top: 155px; 
  }
  .pg_header_title_txt{
    margin-top: 55px;
  }
}
@media (min-width:1200px){
  .header{
    padding: 10px 60px 0 60px;
  }
  .mv{
    padding: 0 60px;
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }
  .mv:after{
    height:778px; 
  }

}

@media (max-width:767px){
  .header{
    padding: 10px;;
  }
  .hdr1 {
  }
  .hdr_contact{
    display: none;
  }
  .hdr_logo{
    width: 140px;
  }

  .hdr_outer .hdr_menu{
    display: none;
  }

  .pg_header_title_en_img{
    width: 240px;
    position: static;

  }
  .pg_header_title_desc{
    width: 100%; 
    margin-top: 0;
  }
  .pg_header_title_txt{
    font-size: 18px;
  }
  .pg_header_title_content{
    padding-top: 16px;
  }

  /*インスタ*/
  .hdr_sns{
    width: 35px;
  }
}



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

.footer{
  margin-top: 50px;
}

.ftr1{
  padding: 0;
  margin-bottom: 25px;
}

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

}
.ftr1_box2{

}

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

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

.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.075em;
  background: #e5e5e5;
  margin-top: 20px;
  padding: 5px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  z-index: 1000;
  flex-wrap: wrap;
}
.footer_fix &gt; a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #efefef;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #181818;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #dbd3c6;
}
.footer_fix &gt; a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #6e7072;
}
.pagetop a i{
  font-size: 40px;
}
/*地図*/
.ftr_map{
  margin-top:180px;
  padding: 230px 20px 0;
  background: #f4f4f4;
}
.ftr_map .access_map iframe{
  border: none;
  width: 100%;
  height: 300px;
  margin-bottom:-8px;
}

.footer_inner.flex{
  justify-content: space-between;
}
.ftr1{
  width: 100%;
}
.ftr_logo{
  text-align: center;
}
.ftr_addr{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2;
  width: 310px;
  margin: 0 auto;
}
.ftr2{

}
.ftr2 .hdr_contact{

}
.ftr2 .hdr_contact_inner.flex{
  justify-content: center;
}
.ftr_links{
  margin-top: 30px;
}
.ftr_links .colum{
  justify-content: center;
}
.ftr_links .colum:nth-child(n+2){
  margin-top: 10px;
}
.ftr_link{
  font-size: 14px;
  font-weight: normal;
  padding: 0 21px;
  letter-spacing: 0.075em;
  color: #181818;
  line-height: 1;
  border-right: 1px solid;
}
@media (min-width:375px){

}

@media (min-width:768px){
  .footer{
    margin-top: 10px;
  }
  .ftr_copy{
    margin-top: 40px;
  }
  /*地図*/
  .ftr_map{
    margin-top:130px;;
    padding: 90px 20px 0;
  }
  .ftr_map .access_map iframe{
    height: 380px;

  }

  .footer_inner.flex{
    justify-content: space-between;
  }
  .ftr1{
    width: 100%;
  }
  .ftr_logo{

  }
  .ftr_addr{

  }
  .ftr2{
    width: 100%;
  }
  .ftr2 .hdr_contact{

  }
  .hdr_contact_inner.flex{

  }
  .ftr2 .hour_time{
    text-align: center;
  }
  .ftr_links{

  }
  .ftr_links .colum .ftr_link:last-child{
    border-right: none;
  }
  .ftr_link{

  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 16px;
  }
  /*地図*/
  .ftr_map{
    margin-top:200px;
    padding: 110px 60px 0;
  }
  .ftr_map .access_map iframe{
    height: 440px;
  }

  .footer_inner.flex{
    align-items: center;
  }
  .ftr1{
    width: 35.37%;
  }
  .ftr_logo{
    margin-left: -25px;
  }
  .ftr_addr{
    margin-top: -5px;
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
  .ftr2{
    width: 54.67%;
  }
  .ftr2 .hdr_contact{

  }
  .ftr2 .hdr_contact_inner.flex{
    justify-content: flex-start;
  }
  .ftr2 .hour_time{
    text-align: left;
  }
  .ftr_links{
    margin-top: 40px;
  }
  .ftr_links .colum{
    justify-content: flex-end;
  }
  .ftr_links .colum:nth-child(n+2){
    margin-top: 20px;
  }
  .ftr_links .colum .ftr_link:last-child{
    padding-right: 0;
  }
  .ftr_link{
    padding: 0 24px;
  }
}
@media (min-width:1200px){
  .footer_inner.flex{
    justify-content: space-between;
  }
  .ftr1{
    width: 28.37%;
  }
  .ftr_logo{

  }
  .ftr_addr{

  }
  .ftr2{
    align-self: center;
    width: 45.7%;
  }
  .ftr2 .hdr_contact{

  }
  .hdr_contact_inner.flex{

  }
  .ftr_links{
    margin-top: 45px;
  }
  .ftr_links .colum{

  }
  .ftr_link{

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

  .ftr_links{
    display: none; 
  }
  .ftr_map{
    margin-top:80px;
    padding: 20px 20px 0;
  }
  .body_home .ftr_map{
    margin-top: 400px;
  }

  .ftr_map .access_map iframe{
    margin-bottom:-8px;
  }
}



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

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

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

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


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

/*タイトル*/
.pg_content_title{
  background: #f2efe9;
  text-align: right;
  position: relative;
  padding: 5px 20px;
}
.pg_content_title_img{
  position: absolute;
  left: 0;
  /*top: -20px;*/
  bottom: 0;
  text-align: left;
}
.pg_content_title_txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;

}

/*下層見出し*/
.contents_header_wrap{

}
.contents_header_title{
  text-align: center;
}
.contents_header_title_txt{
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.78em;
}
.contents_header_desc{
  text-align: justify;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 2;
  margin-top: 40px;
}
/*下層セクションタイトル*/
.section_title_box{
  text-align: center;
  background: #f2efe9;
  border: 1px dashed #999999;
  padding: 10px;
}
.section_title_txt{
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0;
}
/*準備中
.section_title_box.syukuhaku{
  position: relative;
}
.section_title_box.syukuhaku:after{
  content: "只今準備中です";
  text-align: center;
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}*/

.pg_header_title_content{
  font-family: 'Noto Serif JP', serif;
}
/* コピー用 */
@media (max-width:374px){

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

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

  .pg_content_title_img{
    left: 0;
    width: 220px;
    top: -36px;
  }

  /*下層見出し*/
  .contents_header_title_txt{
    font-size: 18px;
  }
}
@media (min-width:768px){

  /*下層見出し*/
  .contents_header_wrap{

  }
  .contents_header_title{

  }
  .contents_header_title_txt{
    font-size: 28px;
  }
  .contents_header_desc{
    text-align: center;
    font-size: 18px;
    margin-top: 50px;
  }
  /*下層セクションタイトル*/
  .section_title_box{
    padding: 20px;
  }
  .section_title_txt{
    font-size: 21px;
  }
}
@media (min-width:1024px){

  /*タイトル*/
  .pg_content_title{

  }
  .pg_content_title_img{

  }
  .pg_content_title_txt{

  }


  /*下層見出し*/
  .contents_header_wrap{

  }
  .contents_header_title{

  }
  .contents_header_title_txt{

  }
  .contents_header_desc{
    margin-top: 60px;
  }
}
@media (min-width:1200px){

  /*下層見出し*/
  .contents_header_wrap{

  }
  .contents_header_title{

  }
  .contents_header_title_txt{

  }
  .contents_header_desc{

  }
}

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

}
.pg_home .section.sec1{
  margin-top: 100px;
}
.pg_home .section.sec2{
  margin-top: 50px;
}
.pg_home .section.sec3{
  margin-top: 80px;
}
.pg_home .section.sec4{
  position: relative;
  margin-top: 100px;
}
.pg_home .section.sec4:after{

}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec5:after{
  content: "";
  display: block;
  background: #f2efe9;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 400px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  z-index: -1;
}
/*CONCEPT*/
.home_concept_wrap{

}
.home_concept_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_concept_item1{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.home_concept_item1_img{
  width: 49.13%;
}
.home_concept_item1_img:first-child{
  margin-top: -30px;
}
.home_concept_item1_img:last-child{
  margin-bottom: -30px;
}
.home_concept_item1_img:before{
  padding-top: 157.89%;
}
.home_concept_item2{
  width: 100%;
  margin-top: 30px;
}
.home_concept_item2_title{

}
.home_concept_item2_content{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: justify;
  line-height: 2.125em;
}
.home_concept_item2 .link_1{

}
/*MENU*/
.home_menu_header{
  border-top: 1px solid #999999;
  padding: 20px 0;
}
.home_menu_header p{
  text-align: center;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0;
}
.home_menu_wrap{
  margin-top: 30px;
}
.home_menu_items{

}
.home_menu_item.flex{
  justify-content: space-between;
}
.home_menu_item.flex:nth-child(n+2){
  margin-top: 60px;
}
.home_menu_item1{
  width: 100%;
}
.home_menu_item1:after{

}
.home_menu_item1_title{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.home_menu_item1_title:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #999999;
  position: absolute;
  left: 0;
  bottom: 35%;
}
.home_menu_item1_title h2{
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.home_menu_item1_title:after{

}
.home_menu_item1_desc{
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  font-family: 'Noto Serif JP', serif;
  margin-top: 20px;
}
.home_menu_item1 .link_1{

}
.home_menu_item2{
  width: 100%;
}
.home_menu_item2_img:before{
  padding-top: 70.37%;
}

/*初めてご利用される方へ*/
.home_first_wrap{
  position: relative;
}
.home_first_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background:#f2efe9;
  margin-left: calc(-50vw + 50%);
  position: absolute;
  top: 60px;
  z-index: -1;
}
.home_first_title{
  text-align: center;
}
.home_first_items.flex{
  margin: 30px -15px 0;
}
.home_first_item{
  padding: 0 15px;
}
.home_first_item_inner{

}
.home_first_item_img_item{
  width:87.96%; 
}

.home_first_item_inner .sub_img_txt{
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.025em;
  width: 12.03%;
  padding-bottom: 43px;
  text-align: right;
}
.home_first_item_img_item p{
  writing-mode: inherit;
}
.home_first_item_img:before{
  padding-top: 80%;
}
.home_first_item_title{
  text-align: center;
  margin-top: 15px;
  position: relative;
}
.home_first_item_title h2{
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.025em;
}
.home_first_item_title:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: "→";
  width: 24px;
  height: 24px;
  font-size: 14px;
  color:#a1a1a1;
  border: 1px solid #a1a1a1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/*採用情報*/
.home_recruit_bg{

}
.home_recruit_bg:before{
  padding-top: 30.20%;
}
.pg_home .section.sec4 .container{
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.home_recruit_box{
  background: #fff;
  padding: 10px 20px;
}
.home_recruit_title{
  text-align: center;
}
.home_recruit_title_txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  margin-top: 10px;
}
.home_recruit_desc{
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.875em;
  border-top: 1px solid #a6a6a6;
  padding-top: 20px;
  margin-top: 20px;
}
.home_recruit_desc .link_1{

}

.notice{
  margin: 10px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*英字タイトル*/
  .home_concept_item2_title,
  .home_menu_item1_title_img{
    width: 150px;
  }
  /*MENU*/
  .home_menu_item1{
    order: 2;
    margin-top: 20px;
  }
  .home_menu_item2{
    order: 1; 
  }

  .home_menu_items .home_menu_item2{
    position: relative;
  }
  .home_menu_items .home_menu_item2:before{
    content: "";
    display: block;
    width: 100vw;
    height: 300px;
    background: #f2efe9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -30px;
    margin-left: calc(-50vw + 50%);
    z-index: -1;
  }

  /*初めてご利用される方へ*/
  .home_first_wrap:before{
    top: 30px;
  }
  .home_first_item_img_item:nth-child(n+2){
    margin-top: 20px; 
  }

  /*採用情報*/
  .home_recruit_bg:before{
    padding-top: 300px; 
  }
  .pg_home .section.sec4 .container{
    bottom: -350px;
  }
  .home_first_item_inner.flex{
    justify-content: space-between;
  }
  .home_first_item_img_item{
    width: 90%;
  }
  .home_first_item_inner .sub_img_txt{
    width: 7%;
    line-height: 1em;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    margin-top: 70px;
  }
  .pg_home .section.sec2{
    margin-top: 100px;
  }
  .pg_home .section.sec3{
    margin-top: 150px;
  }
  .pg_home .section.sec4{
    margin-top: 150px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
    margin-top: 0;
  }
  /*CONCEPT*/
  .home_concept_wrap{

  }
  .home_concept_items{

  }
  .home_concept_item1{
    width: 75%;
    padding-top: 10px;
  }
  .home_concept_item1_img{

  }
  .home_concept_item1_img:first-child{
    align-self: flex-start;

  }
  .home_concept_item1_img:last-child{
    align-self: flex-end;
  }
  .home_concept_item1_img:before{

  }
  .home_concept_item2{
    margin-top: 50px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .home_concept_item2_title{

  }
  .home_concept_item2_content{

  }
  .home_concept_item2 .link_1{

  }

  /*MENU*/
  .home_menu_header{
    padding: 40px 0;
  }
  .home_menu_header p{
    font-size: 24px;
  }
  .home_menu_wrap{
    margin-top: 50px;
  }
  .home_menu_items{

  }
  .home_menu_item.flex{

  }
  .home_menu_item.flex:nth-child(n+2){
    margin-top: 100px;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item1{
    order: 1;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item1 .home_menu_item1_title .home_menu_item1_title_img{
    order: 1;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item1 .home_menu_item1_title h2{
    order: 2;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item1 .link_1{
    margin-left: 0;
    margin-right: auto;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item2{
    order: 2;
  }

  .home_menu_item.flex:nth-child(even) .home_menu_item1{
    order: 2;
  }


  .home_menu_item.flex:nth-child(even) .home_menu_item2{
    order: 1;
  }
  .home_menu_item.flex:nth-child(even) .home_menu_item1 .home_menu_item1_title .home_menu_item1_title_img{
    order: 2;
  }
  .home_menu_item.flex:nth-child(even) .home_menu_item1 .home_menu_item1_title h2{
    order: 1;
  }
  .home_menu_item.flex:nth-child(even) .home_menu_item1 .link_1{
    margin-left:auto;
    margin-right: 0;
  }
  .home_menu_item1{
    width: 44%;
    position: relative;
  }
  .home_menu_item2:after{
    content: "";
    display: block;
    width: 1010px;;
    height: 480px;
    background: #f2efe9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -50px;
    z-index: -1;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item2:after{
    left: -125px;
  }
  .home_menu_item.flex:nth-child(even) .home_menu_item2:after{
    right: -125px;
  }
  .home_menu_item1_title{
    position: relative; 
  }
  .home_menu_item1_title h2{
    font-size: 18px;
  }

  .home_menu_item1_desc{
    margin-top: 30px;
  }
  .home_menu_item1 .link_1{
    margin-top: 60px;
  }
  .home_menu_item2{
    width: 48.64%;
    position: relative;
  }
  .home_menu_item2_img:before{

  }

  /*初めてご利用される方へ*/
  .home_first_wrap{

  }
  .home_first_wrap:before{
    height: 320px;;
  }
  .home_first_title{

  }
  .home_first_items.flex{
    margin-top: 40px;
  }
  .home_first_item{

  }
  .home_first_item_inner{

  }
  .home_first_item_img_item{

  }

  .home_first_item_inner .sub_img_txt{
    writing-mode: vertical-rl;
    font-size: 24px;
  }
  .home_first_item_img_item p{

  }
  .home_first_item_img:before{

  }
  .home_first_item_title{

  }
  .home_first_item_title h2{
    font-size: 16px;
  }
  .home_first_item_title:after{
    width: 28px;
    height: 28px;
  }
  /*採用情報*/
  .home_recruit_bg{

  }
  .home_recruit_bg:before{
    padding-top: 400px;
  }
  .pg_home .section.sec4 .container{
    bottom: -200px;
  }
  .home_recruit_box{
    padding: 10px 20px;
  }
  .home_recruit_title{
  }
  .home_recruit_title_txt{

  }
  .home_recruit_desc{
    text-align: center;
    margin-top: 30px;
  }
  .home_recruit_desc .link_1{

  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    margin-top: 90px;
  }
  .pg_home .section.sec2{
    margin-top: 145px;
  }
  .pg_home .section.sec3{
    margin-top: 210px;
  }
  .pg_home .section.sec4{
    margin-top: 210px;
  }
  .pg_home .section.sec5{
    padding-top: 0;
  }
  .pg_home .section.sec5:after{
    height: 340px;
  }
  /*CONCEPT*/
  .home_concept_wrap{

  }
  .home_concept_items{

  }
  .home_concept_item1{
    width: 52.25%;
    margin-left: 0;
    margin-right: 0;
  }
  .home_concept_item1_img{

  }
  .home_concept_item1_img:first-child{
    margin-top: 0;
  }
  .home_concept_item1_img:last-child{
    margin-bottom: 0;
  }
  .home_concept_item1_img:before{
    padding-top: 157.89%;
  }
  .home_concept_item2{
    width: 34.23%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .home_concept_item2_title{

  }
  .home_concept_item2_content .txt2{
    margin-top: 35px;
  }
  .home_concept_item2_content{
    font-size: 15px;
    margin-top: 35px;
  }
  .home_concept_item2 .link_1{
    margin-left: auto;
    margin-right: 0;
    margin-top: 110px;
  }

  /*MENU*/
  .home_menu_wrap{
    margin-top: 70px;
  }
  .home_menu_items{

  }
  .home_menu_item.flex{

  }
  .home_menu_item.flex:nth-child(n+2){
    margin-top: 130px;
  }

  .home_menu_item1{
    width: 48.64%;
  }
  .home_menu_item1_title{

  }
  .home_menu_item1_title:after{

  }
  .home_menu_item1_desc{
    margin-top: 52px;
  }
  .home_menu_item.flex:nth-child(odd) .home_menu_item1 .home_menu_item1_desc{
    padding-right: 95px;
  }
  .home_menu_item.flex:nth-child(even) .home_menu_item1 .home_menu_item1_desc{
    padding-left: 110px;
  }
  .home_menu_item1 .link_1{

  }
  .home_menu_item2{
    width: 48.64%;
  }
  .home_menu_item2_img:before{

  }
  .home_menu_item.second .home_menu_item1 .link_1{
    margin-top: 100px;
  }
  /*初めてご利用される方へ*/
  .home_first_wrap{

  }
  .home_first_wrap:before{
    height: 420px;;
  }
  .home_first_title{

  }
  .home_first_items.flex{
    margin-top: 50px;
  }
  .home_first_item{

  }
  .home_first_item_inner{

  }
  .home_first_item_img_item{

  }

  .home_first_item_inner .sub_img_txt{

  }
  .home_first_item_img_item p{

  }
  .home_first_item_img:before{

  }
  .home_first_item_title h2{
    font-size: 20px;
  }
  .home_first_item_title:after{
    width: 36px;
    height: 36px;
  }
  /*採用情報*/
  .body_home .ftr_map{
    margin-top: 340px;
  }
  .home_recruit_bg{

  }
  .home_recruit_bg:before{
    padding-top: 30.20%;
  }
  .pg_home .section.sec4 .container{
    bottom: -290px;
  }
  .home_recruit_box{
    padding: 20px 65px 45px;;
  }
  .home_recruit_title{
  }
  .home_recruit_title_txt{

  }
  .home_recruit_desc{

  }
  .home_recruit_desc .link_1{

  }
}
@media (min-width:1200px){
  /*CONCEPT*/
  .home_concept_item2_content{
    font-size: 16px;
  }

  .home_menu_item.flex:last-child{
    /*    margin-top: 160px;*/
  }
  /*採用情報*/
  .pg_home .section.sec4 .container{
    bottom: -240px;
  }
}
/*******************************
*　コンセプト
********************************/
.pg_concept{

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

.body_concept .pg_header:after{
  /* height: 450px; */
}

/*インタビュー*/
.concept_interview_wrap{

}
.concept_interview_items{

}
.concept_interview_item{
  justify-content: space-between;
}
.concept_interview_item:nth-child(n+2){
  margin-top: 40px;
}
.concept_interview_item1{
  width: 100%; 
}
.concept_interview_item1_title{
  background: #f5f5f5;
  position: relative;
  padding: 15px 0 15px 25px;
}
.concept_interview_item1_title:before{
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  background-image: url(/system_panel/uploads/images/title_material.png);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.concept_interview_item1_title_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.concept_interview_item1_desc{
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
  letter-spacing: 0;
  line-height: 2.25em;
  margin-top: 26px;
}
.concept_interview_item1_desc p:nth-child(n+2){
  margin-top: 16px;
}
.concept_interview_item2{
  width: 100%;
  margin-top: 20px;
}
.concept_interview_item2_img{

}
.concept_interview_item2_img:before{
  padding-top: 117.7%;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .concept_interview_item1_title{
    padding: 7px 5px 7px 19px;
  }
  .concept_interview_item1_title_txt{
    line-height: 1.5555em;
  }

  .firsttime_price_title{
    border-left: none;
    border-right: none;
  }

  .concept_interview_item2_img.yoko:before{
    padding-top:  39.63%;
  }
  .concept_interview_item2{
    width: 75%;
    margin-right: auto;
    margin-left: auto;
  }
  .concept_interview_item2.wide{
    width: 100%;
  }
  .concept_interview_item1 .daihyo_sign{
    width:70%;
    margin-top: 10px;
    margin-left: auto;
    margin-bottom: 20px;
  }

}
@media (min-width:768px){
  .body_concept .pg_header:after{
    /* height:540px; */
  }
  .pg_concept{

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

  /*インタビュー*/
  .concept_interview_wrap{

  }
  .concept_interview_items{

  }
  .concept_interview_item{

  }
  .concept_interview_item:nth-child(n+2){
    margin-top: 50px;
  }
  .concept_interview_item:nth-child(odd) .concept_interview_item1{
    order: 1;
  }
  .concept_interview_item:nth-child(odd) .concept_interview_item2{
    order: 2;
  }
  .concept_interview_item:nth-child(even) .concept_interview_item1{
    order: 2;
  }
  .concept_interview_item:nth-child(even) .concept_interview_item2{
    order: 1;
  }
  /*横並びいっぱいレイアウト*/
  .concept_interview_item1{
    width: 59.90%; 
  }
  .concept_interview_item1_title{

  }
  .concept_interview_item1_title_txt{
    font-size: 17px;
  }
  .concept_interview_item1_desc{
    margin-top: 26px;
  }
  .concept_interview_item1_desc p:nth-child(n+2){
    margin-top: 35px;
  }
  .concept_interview_item2{
    width: 31.53%;
    margin-top: 0;
  }
  .concept_interview_item2_img{

  }
  .concept_interview_item2_img:before{

  }
  /*横幅いっぱいレイアウト*/
  .concept_interview_item.full .concept_interview_item1{
    width: 100%;
  }
  .concept_interview_item.full .concept_interview_item2{
    width: 100%;
    margin-top:30px;
  }
  .concept_interview_item.full .concept_interview_item2_img:before{
    padding-top: 39.63%;
  }
  .concept_interview_item.single .concept_interview_item1{
    order: 2;
  }
  .concept_interview_item.single .concept_interview_item2{
    order: 1;
  }
  .concept_interview_item.double .concept_interview_item1{
    order: 1;
  }
  .concept_interview_item.double .concept_interview_item2{
    order: 2;
  }

  .concept_interview_item2 .daihyo_sign{
    width:100%;
    margin-top: 40px;
  }
}
@media (min-width:1024px){
  .pg_concept{

  }
  .pg_concept .section.sec1{
    margin-top: 150px;
  }
  .pg_concept .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_concept .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .body_concept .pg_header:after{
    /* height:650px; */
  }

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

  .concept_interview_item2 .daihyo_sign{
    width:90%;
    margin-top: 80px;
    margin-left: auto;
  }
}
@media (min-width:1200px){

  /*インタビュー*/
  .concept_interview_item1_title_txt{
    font-size: 18px;
  }
}


/*******************************
*　サロンメニュー
********************************/
.pg_salonmenu{

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

/*見出し*/
.pg_salonmenu .pg_header_title_content{
  margin-top: 30px;
}
.pg_salonmenu .pg_header_title_content .txt2{
  margin-top: 16px;
  text-align: justify;
}

/*グルーミング*/
.salonmenu_content_item{

}
.salonmenu_content_item:nth-child(n+2){
  margin-top: 80px;
}
.salonmenu_content_item_content{
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.875em;
  margin-top: 30px;
}
.salonmenu_content_wrap .pg_content_title_txt{
  font-size: 16px;
}
/*テーブル*/
.salonmenu_content_item_price{
  margin-top: 40px;
}
.salonmenu_content_item_price .table_rows_td strong{
  font-weight: normal;
  letter-spacing: 0;
  font-size: 12px;
}
.salonmenu_content_item_price .table_rows_td{
  line-height: 1.5em;
}
.salonmenu_content_item_price .table_rows_th{
  background: #fff;
}
.salonmenu_content_item_price .table_rows_th,
.salonmenu_content_item_price .table_rows_td{
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  border-left: none;
  border-right: none;
}
.salonmenu_content_item_price .table_rows_td .long{
  line-height: 1em;
}
/*セレクト*/
.salonmenu_content_item_price.select{

}
.salonmenu_content_item_price.select{

}
.salonmenu_content_item_price.select{

}
.salonmenu_content_item_price.select .table_rows_tr:first-child .table_rows_td{
  background: #fff;
}
.salonmenu_content_item_price.select .table_rows_th{
  font-weight: normal;
}
/*ビフォアフ*/
.salonmenu_content_item_bf_wrap{
  margin-top: 30px;
}

/*注意点*/
.salonmenu_ftr_content_wrap{
  border-top: 1px solid #999999;
  padding-top: 40px;
}
.salonmenu_ftr_content_lists{

}
.salonmenu_ftr_content_list{
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  text-align: justify;
  line-height: 2.125em;
  padding-left:1em;
  text-indent:-1em;
}

.pg_salonmenu .salonmenu_content_item.second{
  margin-top: 50px; 
}
#trim{
  padding-top: 30px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .body_salonmenu .pg_header:after{
    height: 675px;
  }


  /*セレクト*/
  .salonmenu_content_item_price.select{

  }
  .salonmenu_content_item_price .table_rows.sp .table_rows_tr:first-child .table_rows_th{
    display: none;
  }
  .salonmenu_content_item_price.select .table_rows_th,
  .salonmenu_content_item_price.select .table_rows_td{
    display: block;
    text-align: center;
    width: 100%;
    border-bottom: none;
  }
  .salonmenu_content_item_price.select .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #d9d9d9;
  }
  .salonmenu_content_item_price .table_rows.sp .table_rows_th strong{
    font-weight: normal;
    font-size: 12px;
  }
  .salonmenu_content_item_price .table_rows.sp .table_rows_th,
  .salonmenu_content_item_price .table_rows.sp .table_rows_td{
    width: 100%;
    display: block;
    text-align: center;
    padding: 20px;
    border-bottom: none;
  }
  .salonmenu_content_item_price .table_rows.sp .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #dcdcdc;
  }
  .salonmenu_content_item_price .table_rows.sp .table_rows_th{
    padding: 10px;
  }
}
@media (min-width:768px){
  .body_salonmenu .pg_header:after{
    height: 730px;
  }
  pg_salonmenu{

  }
  .pg_salonmenu .section.sec1{
    margin-top: 140px;
  }
  .pg_salonmenu .section.sec2{
    margin-top: 100px;
  }
  .pg_salonmenu .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*見出し*/
  .pg_header_title_en_img{
    width: 320px;
  }
  .pg_salonmenu .pg_header_title_en_img{

    top: -100px;
  }
  .pg_salonmenu .pg_header_title_content,
  .pg_estheticmenu .pg_header_title_content{
    margin-top: 40px;
  }
  .pg_salonmenu .pg_header_title_content .txt2{
    margin-top: 30px;
  }

  /*グルーミング*/
  .salonmenu_content_item_content{
    margin-top: 60px;
  }
  .salonmenu_content_item:nth-child(n+2){
    margin-top: 100px;
  }
  /*テーブル*/
  .salonmenu_content_item_price{
    margin-top: 60px;
  }
  .salonmenu_content_item_price .table_rows_tr{
    height: 60px;
  }
  .salonmenu_content_item_price .table_rows_tr:first-child .table_rows_td{
    background: #fff;
  }
  .pg_salonmenu .salonmenu_content_item_price .table_rows_tr:first-child .table_rows_td{
    text-align: center;
  }
  .salonmenu_content_item_price .table_rows_th{
    width: 150px;
  }
  .pg_salonmenu .salonmenu_content_item_price .table_rows_td{
    text-align: center;
  }
  .salonmenu_content_item_price .table_rows_th,
  .salonmenu_content_item_price .table_rows_td{
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0;
    text-align: left;
    padding: 5px 2px;
  }
  /*セレクト*/
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_th{
    text-align: left;
    width: 70%;
    padding-left: 20px;
  }
  .pg_salonmenu.salonmenu_content_item_price.select .table_rows_td{
    text-align: left;
  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.left{
    text-align: left;
    padding-left: 50px;
  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.right{
    text-align: right;
    padding-right: 70px;
  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.right p.for{    
    margin-right: -1em;
  }

  /*ビフォアフ*/
  .salonmenu_content_item_bf_wrap{
    margin-top: 36px;
  }
  .pg_salonmenu .salonmenu_content_item.second{
    margin-top: 70px; 
  }
}
@media (min-width:1024px){
  .body_salonmenu .pg_header:after{
    height: 820px;
  }
  .pg_salonmenu {

  }
  .pg_salonmenu .section.sec1{
    margin-top: 220px;
  }
  .pg_salonmenu .section.sec2{
    margin-top: 150px;
  }
  .pg_salonmenu .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*見出し*/
  .pg_header_title_en_img{
    width: auto;
  }
  .pg_salonmenu .pg_header_title_wrap{
    margin-top: 110px;
  }
  .pg_salonmenu .pg_header_title_content,
  .pg_estheticmenu .pg_header_title_content,
  .pg_firsttime .pg_header_title_content,
  .pg_pethotel .pg_header_title_content,
  .pg_firsttimeusers .pg_header_title_content,
  .pg_recruit .pg_header_title_content,
  .pg_apparelandgoods .pg_header_title_content,
  .pg_storeinformation .pg_header_title_content{
    margin-top: 45px;
    padding-left: 115px;
  }
  /*グルーミング*/
  .salonmenu_content_item:nth-child(n+2){
    margin-top: 170px;
  }
  /*セレクト*/
  .salonmenu_content_item_price.select .table_rows_th{
    width: 74%;
  }
  .salonmenu_content_item_price.select .table_rows_td{

  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.left{
    padding-left: 100px;
  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.right{
    padding-right: 100px;
  }
  /*テーブル*/
  .salonmenu_content_item_price{
    margin-top: 75px;
  }
  .pg_salonmenu .salonmenu_content_item.second{
    margin-top: 150px; 
  }
  .salonmenu_content_item_price .table_rows_th,
  .salonmenu_content_item_price .table_rows_td{
    padding: 5px 9px;
  }
}
@media (min-width:1200px){
  .body_salonmenu .pg_header:after{
    height: 750px;
  }


  /*テーブル*/
  .salonmenu_content_item_price .table_rows_th{
    width: 255px;
  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.left{
    padding-left: 130px;
  }
  .pg_salonmenu .salonmenu_content_item_price.select .table_rows_td.right{
    padding-right: 130px;
  }
}

/*******************************
*　エステメニュー
********************************/
.pg_estheticmenu{

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

/*見出し*/

.pg_estheticmenu .pg_header_title_en_img{
  top: -70px;
}

/*繰り返し*/
.pg_esthe_items.flex{
  justify-content: space-between;
}
.pg_esthe_items.flex:nth-child(n+2){
  /* margin-top: 70px; */
}
.pg_esthe_items.flex .salonmenu_content_item_price{
  margin-top: 30px;
}
.pg_esthe_item1{
  width: 100%;
}

.pg_esthe_item2{
  width: 100%;
}
.pg_esthe_item2_img:before{
  padding-top: 84.26%;
}

.pg_estheticmenu .salonmenu_content_item_price .table_rows_tr:first-child .table_rows_td{
  text-align: center;
}
.pg_estheticmenu .salonmenu_content_item_price .table_rows_th,
.pg_estheticmenu .salonmenu_content_item_price .table_rows_td{
  text-align: center;
}

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

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

}
@media (max-width:767px){
  .body_estheticmenu .pg_header:after{
    height: 390px;
  }

  /*繰り返し*/
  .pg_esthe_item2{
    margin-top: 20px; 
  }
  .pg_content_title_img{
    text-align: left;
  }
}
@media (min-width:768px){
  .pg_estheticmenu{

  }
  .pg_estheticmenu .section.sec1{
    margin-top: 150px;
  }
  .pg_estheticmenu .section.sec2{
    margin-top: 100px;
  }
  .pg_estheticmenu .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /*繰り返し*/
  .pg_esthe_items.flex{

  }
  .pg_esthe_items.flex:nth-child(n+2){
    /* margin-top: 120px; */
  }
  .pg_esthe_item1{
    width: 51.35%;
  }
  .pg_esthe_item1 .link_1{
    margin-left: 0;
  }
  .pg_esthe_item2{
    width: 40.09%;
  }
  .pg_esthe_item2_img:before{

  }
  .pg_esthe_items.flex .salonmenu_content_item_price{
    margin-top: 40px;
  }
}
@media (min-width:1024px){
  .body_estheticmenu .pg_header:after{
    height: 650px;
  }
  .pg_estheticmenu{

  }
  .pg_estheticmenu .section.sec1{
    margin-top: 230px;
  }
  .pg_estheticmenu .section.sec2{
    margin-top: 150px;
  }
  .pg_estheticmenu .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*見出し*/
  .pg_estheticmenu .pg_header_title_wrap{
    margin-top: 110px;
  }

  /*繰り返し*/
  .pg_esthe_items.flex:nth-child(n+2){
    /* margin-top: 160px; */
  }
  .pg_esthe_items.flex .salonmenu_content_item_price{
    margin-top: 50px;
  }

  .pg_estheticmenu .pg_content_title_img {
    width: 260px;
    text-align: left;
  }
}
@media (min-width:1200px){

  .pg_estheticmenu .pg_content_title_img {
    width: auto;
  }

}
/*******************************
*　初めての方
********************************/
.pg_firsttime{

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

/*見出し*/
.pg_firsttime .pg_header_title_wrap{
  margin-top: 50px;
}
.contents_header_msg{
  text-align: center;
  background: #f2efe9;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.71em;
  border: 1px dashed #999999;
  padding: 14px;
}
.contents_header_msg_box{
  padding: 0 20px; 
  margin-top: 28px;
}
.recommend_firsttime_wrap{
  padding: 0 20px;
  margin-top: 40px;
}
.recommend_firsttime_title{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.5;
}
.recommend_firsttime_items{
  margin-top: 20px;
}
.recommend_firsttime_items_inner.flex{
  justify-content: space-between;

}
.recommend_firsttime_item{
  width: 100%;
}

.recommend_firsttime_item p{
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0;
}
.recommend_firsttime_item p:before{
  content:"\f14a";
  font-family: "FontAwesome";
  color: #a4987f;
  margin-right: 7px;
}
.recommend_firsttime_desc{
  text-align:center;
  font-size: 18px;
  font-weight:normal;
  letter-spacing: 0;
  border-top: 1px dotted;
  padding-top: 20px;
  margin-top: 28px;
}
/*番号付き折り返し*/
.salonmenu_content_items.second{
  margin-top: 80px;
}

.salonmenu_content_items.second .pg_esthe_item2{
  position: relative;
}
.salonmenu_content_items.second .pg_esthe_item2 .img_num{
  position: absolute;

}
.salonmenu_content_items.second .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item2 .img_num{
  top: -40px;
  left: 0;
}
.salonmenu_content_items.second .pg_esthe_items.flex:nth-child(even) .pg_esthe_item2 .img_num{
  top: -40px;
  right: 0;
}

/*テーブル*/
.firsttime_price_wrap{
  margin-top: 60px;
}
.firsttime_price_title{
  text-align: center;
  background: #fff;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  border-top:1px solid #d9d9d9;
  padding: 15px;
}
.firsttime_price_wrap .table_rows_th,
.firsttime_price_wrap .table_rows_td{
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  border:1px solid #d9d9d9;
  padding: 14px;
}
.firsttime_price_wrap .table_rows_th{
  background: #fff;
}
.firsttime_price_wrap .table_rows_td{

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

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

}
@media (max-width:767px){
  /*見出し*/
  .contents_header_msg_box{
    padding: 0;
  }
  .contents_header_msg{
    font-size: 16px;
    text-align: justify;
  }
  .pg_firsttime .pg_header_title_wrap{
    margin-top: 24px;
  }
  /*おすすめ*/
  .recommend_firsttime_items{
    width: 170px;
    margin-left: auto;
    margin-right: auto;
  }
  .recommend_firsttime_item:nth-child(n+2){
    margin-top: 0;
  }
  /*番号付き折り返し*/
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(n+2){
    margin-top: 80px;
  }
  .salonmenu_content_wrap.first .pg_content_title_img{
    width: 200px;
  }
  .salonmenu_content_wrap.first .pg_content_title{
    padding: 5px 5px 5px 20px;
  }

  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item2 .img_num,
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(even) .pg_esthe_item2 .img_num{
    width: 70px;
    top: -20px;
  }
  .firsttime_price_wrap .table_rows_th, .firsttime_price_wrap .table_rows_td{
    border-left: none;
    border-right: none;
  }
}
@media (min-width:768px){
  .body_firsttime .pg_header:after {
    height: 550px;
  }
  .pg_firsttime{

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

  .pg_firsttime .pg_header_title_en_img{
    top: -90px;
  }
  /*見出し*/
  .pg_firsttime .pg_header_title_wrap{
    margin-top: 100px;
  }
  .pg_firsttime .pg_header_title_content{
    margin-top: 20px; 
  }
  .pg_firsttime .contents_header_desc{
    text-align: justify;
  }
  .contents_header_msg{
    font-size: 21px;
  }
  .contents_header_msg_box{
    padding: 0 65px; 
    margin-top: 30px;
  }
  .recommend_firsttime_wrap{
    padding: 0 65px;
  }
  .recommend_firsttime_title{
    font-size: 28px;
  }
  .recommend_firsttime_items{

  }
  .recommend_firsttime_item{
    width: 30%;
  }
  .recommend_firsttime_item p{
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0;
  }
  .recommend_firsttime_item p:before{
    content:"\f14a";
    font-family: "FontAwesome";
    color: #a4987f;
  }
  /*おすすめ*/
  .recommend_firsttime_wrap{
    margin-top: 50px;
  }
  .recommend_firsttime_items_inner:nth-child(n+2){
    margin-top: 12px;
  }
  .recommend_firsttime_desc{
    font-size: 20px;
    padding-top: 40px;
    margin-top: 30px;
  }

  /*番号付き折り返し*/
  .salonmenu_content_items.second{
    margin-top: 110px;
  }
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(n+2){
    margin-top: 70px;
  }
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item1{
    order: 2;
  }
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item2{
    order: 1;
  }
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(even) .pg_esthe_item1{
    order: 1;
  }
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(even) .pg_esthe_item2{
    order: 2;
  }
  .firsttime_price_wrap{
    margin-top: 70px;
  }
  .pg_content_title_img{
    width: 180px;; 
  }
  .salonmenu_content_items.second .pg_esthe_item2 .img_num{
    width: 80px;;
  }
  .firsttime_price_wrap .table_rows_th,
  .firsttime_price_wrap .table_rows_td{
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-left:none;
    border-right:none;
  }

  .firsttime_price_title{
    border-left:none;
    border-right:none;
    padding: 15px;
  }
}
@media (min-width:1024px){
  .body_firsttime .pg_header:after{
    height: 675px;
  }

  .pg_firsttime{

  }
  .pg_firsttime .section.sec1{
    margin-top: 150px;
  }
  .pg_firsttime .section.sec2{
    margin-top: 100px;
  }
  .pg_firsttime .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  /*見出し*/
  .pg_firsttime .pg_header_title_wrap{
    margin-top: 110px;
  }
  .contents_header_msg_box{
    margin-top: 40px;
  }
  .contents_header_msg{
    font-size: 17px;
  }
  .pg_firsttime .contents_header_desc{
    text-align: center;
    font-size: 17px;
  }
  /*おすすめ*/
  .recommend_firsttime_wrap{
    margin-top: 60px;
  }
  .recommend_firsttime_desc{
    font-size: 19px;
    margin-top: 40px;
  }
  .recommend_firsttime_item{
    width: 22.444%;
  }
  .recommend_firsttime_item p{
    font-size: 19px;
  }
  /*番号付き折り返し*/
  .salonmenu_content_items.second{
    margin-top: 190px;
  }
  .salonmenu_content_items.second .pg_esthe_items.flex:nth-child(n+2){
    margin-top: 95px;
  }
  .pg_content_title_img{
    width: auto; 
  }
  .salonmenu_content_items.second .pg_esthe_item2 .img_num{
    width: auto;
  }
  /*テーブル*/
  .firsttime_price_wrap{
    margin-top: 115px;
  }
}
@media (min-width:1200px){
  /*見出し*/
  .recommend_firsttime_item p{
    font-size: 24px;
  }
  .contents_header_msg{
    font-size: 21px;
  }
  .pg_firsttime .contents_header_desc{
    font-size: 18px;
  }

  /*おすすめ*/
  .recommend_firsttime_desc{
    font-size: 20px;
  }

  .pg_firsttime .section.sec1{
    margin-top: 220px;
  }

}
/*******************************
*　ペットホテル
********************************/
.pg_pethotel{

}
.pg_pethotel .section.sec1{
  margin-top: 70px;
}
.pg_pethotel .section.sec2{
  margin-top: 30px;
}
.pg_pethotel .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}
.body_pethotel .pg_header:after{
  height: 490px;
}
/*見出し*/
.pg_pethotel .pg_header_title_wrap{
  margin-top: 30px;
}
.pg_pethotel .pg_header_title_en_img{

}

/*料金表*/
.pg_pethotel .salonmenu_content_item_price{
  margin-top: 20px;
}

/*店内写真*/
.pethotel_img_items{
  display: flex;
  flex-wrap: wrap;
  margin: 30px -15px 0;
}
.pethotel_img_item{

}
.pethotel_img_item_img:before{
  padding-top: 80%;
}

/*注意点*/
.salonmenu_content_item_notes{
  margin-top: 14px;
}
.salonmenu_content_item_lists{

}
.salonmenu_content_item_list{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 2.1333em;
  padding-left: 1em;
  text-indent: -1em;
}
.pg_pethotel .salonmenu_content_item_price .table_rows_th strong{
  font-weight: normal;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_pethotel .pg_header_title_wrap{
    margin-top: 0;
  }
  /*店内写真*/
  .pethotel_img_item:nth-child(n+3){
    margin-top: 16px;
  }
  .pethotel_img_items{
    margin: 30px -10px 0;
  }
  .pethotel_img_items .pethotel_img_item{
    padding: 0 10px;
  }
  /*料金表*/
  .pg_pethotel .salonmenu_content_item_price .table_rows_th{
    padding: 15px 2px;
  }
  .pg_pethotel .salonmenu_content_item:nth-child(n+2){
    margin-top: 50px;
  }

  /*準備中*/
  .section_title_box.syukuhaku:after{
    font-size: 18px;
  }

  .pg_pethotel .salonmenu_content_item_price .table_rows_th strong{
    font-size:13px;
  }

  .anchor#trim{
    padding-top: 30px;
  }
}
@media (min-width:768px){
  .pg_pethotel{

  }
  .pg_pethotel .section.sec1{
    margin-top: 140px;
  }
  .pg_pethotel .section.sec2{
    margin-top: 40px;
  }
  .pg_pethotel .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .body_pethotel .pg_header:after{
    height: 530px;
  }
  /*見出し*/
  .pg_pethotel .pg_header_title_wrap{
    margin-top: 100px;
  }
  .pg_pethotel .pg_header_title_content{
    margin-top: 20px; 
  }
  .pg_pethotel .contents_header_desc{
    font-size: 16px;
  }
  .pg_pethotel .pg_header_title_en_img{
    top: -100px;
  }
  /*料金表*/
  .pg_pethotel .salonmenu_content_item_price{
    margin-top: 26px;
  }
  .pg_pethotel .salonmenu_content_item_price .table_rows_th,
  .pg_pethotel .salonmenu_content_item_price .table_rows_td{

  }
  .pg_pethotel .salonmenu_content_item_price .table_rows_th{
    text-align: left;
    padding-left: 5px;
  }
  .pg_pethotel .salonmenu_content_item_price .table_rows_td{
    text-align: right;
    padding-right: 10px;
    padding-left: 30px;
  }
  .pg_pethotel .salonmenu_content_item_price.select .table_rows_th{
    width: 60%;
  }
  .pg_pethotel .salonmenu_content_item:nth-child(n+2){
    margin-top: 80px;
  }
  /*店内写真*/
  .pethotel_img_items{
    margin-top: 40px;
  }
  .pethotel_img_item{

  }
  .pethotel_img_item:nth-child(n+4){
    margin-top: 30px;
  }
  .pethotel_img_item_img:before{

  }
  .anchor#contact{
    padding-top: 100px;
  }
  .anchor#trim{
    padding-top: 0;
  }
}
@media (min-width:1024px){
  .pg_pethotel{

  }
  .pg_pethotel .section.sec1{
    margin-top: 215px;
  }
  .pg_pethotel .section.sec2{
    margin-top: 50px;
  }
  .pg_pethotel .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .body_pethotel .pg_header:after{
    height: 670px;
  }
  /*見出し*/
  .pg_pethotel .contents_header_title_txt{
    font-size: 24px;
  }
  .pg_pethotel .contents_header_desc{
    margin-top: 30px;
  }
  .pg_pethotel .pg_header_title_wrap{
    margin-top: 115px;
  }
  .pg_pethotel .pg_header_title_en_img{
    top: -120px;
  }
  /*料金表*/
  .pg_pethotel .salonmenu_content_item_price .table_rows_th{
    padding-left: 20px;
  }
  .pg_pethotel .salonmenu_content_item_price.select .table_rows_th{
    width: auto;
  }
  .pg_pethotel .salonmenu_content_item_price .table_rows_td{
    text-align: right;
    padding-right: 110px;
  }
  /*店内写真*/
  .pethotel_img_items{
    margin-top: 50px;
  }

  .pg_pethotel .salonmenu_content_item:nth-child(n+2){
    margin-top: 120px;
  }


}
@media (min-width:1200px){
  /*料金表*/
  .pg_pethotel .salonmenu_content_item_price .table_rows_th{
    padding-left: 65px;
  }
  .pg_pethotel .salonmenu_content_item_price .table_rows_td{
    text-align: right;
    padding-right: 160px;
  }
}
/*******************************
*　初めて利用される方
********************************/
.pg_firsttimeusers{

}
.pg_firsttimeusers .section.sec1{
  margin-top: 90px;
}
.pg_firsttimeusers .section.sec2{
  margin-top:70px;
}
.pg_firsttimeusers .section.sec3{
  margin-top: 90px;
}

/*見出し*/


/*流れ*/
.firsttimeusers_flow_items{

}
.firsttimeusers_flow_item.flex{
  justify-content: space-between;
  margin-top: 30px;
}
.firsttimeusers_flow_item1{
  width: 100%;
  position: relative;
}
.firsttimeusers_flow_item1_block{
  position: relative;
  background: #f5f5f5;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 45px;
}
.firsttimeusers_flow_item.flex:nth-child(n+2) .firsttimeusers_flow_item1:before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 95px 0 95px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.firsttimeusers_flow_item1_block:before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 0 95px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.firsttimeusers_flow_item1_block:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 95px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.firsttimeusers_flow_item1_block .en{
  font-size: 20px;
  font-weight: normal;
  letter-spacing:0;
  text-align: center;
  line-height: 1;
}
.firsttimeusers_flow_item1_block .num{
  font-size: 50px;
  font-weight: normal;
  letter-spacing:0;
  line-height: 1;
}
.firsttimeusers_flow_item2{
  width: 100%;
}
.firsttimeusers_flow_item2_title{
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0;
  background: #f5f5f5;
  padding: 8px 10px;
}
.firsttimeusers_flow_item2_content{
  margin-top: 10px;
}
.firsttimeusers_flow_item2_desc_txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 2.125em;
}
.firsttimeusers_flow_item2_btns{
  margin-top: 12px;
}
.hdr_contact_item.reserve{

}

/*FAQ*/
.firsttimeusers_faq_items{

}
.firsttimeusers_faq_item{

}
.firsttimeusers_faq_wrap .pg_content_title{
  padding: 10px 20px;  
}
.firsttimeusers_faq_item_q{
  background: #f5f5f5;
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0;
  position: relative;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.firsttimeusers_faq_item_a{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.875em;
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.q_txt{
  position: absolute;
  top: 15%;
  left: 15px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .body_firsttimeusers .pg_header:after{
    height: 390px;
  }
  /*流れ*/
  .firsttimeusers_flow_item.flex:nth-child(n+2){
    margin-top: 40px;
  }
  .firsttimeusers_flow_item1_block{
    margin: 0 auto;
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .firsttimeusers_flow_item:first-child .firsttimeusers_flow_item1_block{
    padding-top: 20px;
  }
  .firsttimeusers_flow_item.flex:nth-child(n+2) .firsttimeusers_flow_item1:before{
    border-width: 30px 125px 0 125px;
  }
  .firsttimeusers_flow_item1_block:after{
    border-width: 0 0 30px 125px;
  }
  .firsttimeusers_flow_item1_block:before{
    border-width: 30px 0 0 125px;
  }
  .firsttimeusers_flow_item1{
    /*width: 75%;*/    
    max-width: 250px;
    margin: 0 auto;
  }
  .firsttimeusers_flow_item2{
    margin-top: 20px;
  }

  /*ボタン*/
  .hdr_contact_item.reserve,
  .hdr_contact_item.tel{
    width: 100%;
    max-width: 100%;
  }
  .hdr_contact_item.reserve{
    padding: 10px;
  }
  .hdr_contact_item.tel{
    margin-left: 0;
    padding: 5px;
    margin-top: 10px;
  }
  /*FAQ*/
  .firsttimeusers_faq_items{
    margin-top: 30px;
  }
  .firsttimeusers_faq_item{

  }

  .firsttimeusers_faq_item:nth-child(n+2){
    margin-top: 20px;
  }
  .firsttimeusers_faq_item_q{
    padding-left: 40px;
  }
  .firsttimeusers_faq_item_a{
    padding-left: 40px;
  }
  .q_txt{

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

  }
  .pg_firsttimeusers .section.sec1{
    margin-top: 150px;
  }
  .pg_firsttimeusers .section.sec2{
    margin-top: 100px;
  }
  .pg_firsttimeusers .section.sec3{
    margin-top: 100px;
  }
  /*見出し*/
  .pg_firsttimeusers .pg_header_title_wrap {
    margin-top: 80px;
  }
  .pg_firsttimeusers .pg_header_title_content{
    margin-top: 20px;
  }
  .pg_firsttimeusers .pg_header_title_en_img{
    top: -70px;
  }

  /*繰り返し*/
  .pg_firsttimeusers .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item1{
    order: 1;
  }
  .pg_firsttimeusers .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item2{
    order: 2;
  }
  .pg_firsttimeusers .pg_esthe_items.flex:nth-child(even) .pg_esthe_item1{
    order: 2;
  }
  .pg_firsttimeusers .pg_esthe_items.flex:nth-child(even) .pg_esthe_item2{
    order: 1;
  }
  .pg_firsttimeusers .pg_esthe_items.flex:nth-child(n+2){
    /* margin-top: 70px; */
  }

  /*流れ*/
  .firsttimeusers_flow_items{

  }
  .firsttimeusers_flow_item.flex{
    margin-top: 50px;
  }
  .firsttimeusers_flow_item.flex:nth-child(n+2) .firsttimeusers_flow_item1:before{
    border-width: 15px 60px 0 60px;
  }
  .firsttimeusers_flow_item.flex:nth-child(n+2){
    margin-top: 40px;
  }
  .firsttimeusers_flow_item1{
    width: 17.11%;
  }
  .firsttimeusers_flow_item1_block{
    min-height: 208px;
  }
  .firsttimeusers_flow_item1_block:before{

  }
  .firsttimeusers_flow_item1_block:after{

  }
  .firsttimeusers_flow_item1_block .en{
    font-size: 26px;
  }
  .firsttimeusers_flow_item1_block .num{
    font-size: 62px;
  }
  .firsttimeusers_flow_item2{
    width: 77.02%;
  }
  .firsttimeusers_flow_item2_title{
    font-size: 18px;
  }
  .firsttimeusers_flow_item2_content{
    padding-left: 10px;
  }
  .firsttimeusers_flow_item2_desc_txt{

  }
  .firsttimeusers_flow_item2_btns{

  }
  /*FAQ*/
  .firsttimeusers_faq_items{
    margin-top: 60px;
  }
  .firsttimeusers_faq_item{

  }
  .firsttimeusers_faq_item:nth-child(n+2){
    margin-top: 20px;
  }
  .firsttimeusers_faq_item_q{
    padding-left: 65px;
    font-size: 18px;
  }
  .firsttimeusers_faq_item_a{
    padding-left: 65px;
  }
  .q_txt{

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

  }
  .pg_firsttimeusers .section.sec1{
    margin-top: 250px;
  }
  .pg_firsttimeusers .section.sec2{
    margin-top: 150px;
  }
  .pg_firsttimeusers .section.sec3{
    margin-top: 165px;
  }

  .body_firsttimeusers .pg_header:after{
    height: 660px;
  }
  .pg_firsttimeusers .pg_header_title_wrap{
    margin-top: 110px; 
  }

  /*繰り返し*/
  .pg_firsttimeusers .pg_esthe_items.flex:nth-child(n+2){
    /* margin-top: 105px; */
  }

  /*流れ*/
  .firsttimeusers_flow_items{

  }
  .firsttimeusers_flow_item.flex{
    margin-top: 70px;
  }
  .firsttimeusers_flow_item.flex:nth-child(n+2) .firsttimeusers_flow_item1:before{
    border-width: 20px 80px 0 80px;
  }
  .firsttimeusers_flow_item.flex:nth-child(n+2){
    margin-top: 50px;
  }
  .firsttimeusers_flow_item1{
    width: 17.11%;
  }
  .firsttimeusers_flow_item1_block{

  }
  .firsttimeusers_flow_item1_block:before{

  }
  .firsttimeusers_flow_item1_block:after{

  }
  .firsttimeusers_flow_item1_block .en{

  }
  .firsttimeusers_flow_item1_block .num{

  }
  .firsttimeusers_flow_item2{
    width: 77.02%;
  }
  .firsttimeusers_flow_item2_title{

  }
  .firsttimeusers_flow_item2_content{

  }
  .firsttimeusers_flow_item2_desc_txt{

  }
  .firsttimeusers_flow_item2_btns{

  }
  /*FAQ*/
  .firsttimeusers_faq_items{
    margin-top: 80px;
  }
  .firsttimeusers_faq_item{

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

  }
  .firsttimeusers_faq_item_a{

  }
  .q_txt{

  }
}
@media (min-width:1200px){
  /*流れ*/
  .firsttimeusers_flow_item.flex:nth-child(n+2) .firsttimeusers_flow_item1:before{
    border-width: 30px 95px 0 95px;
  }
}
/*******************************
*　採用情報
********************************/
.pg_recruit{

}
.pg_recruit .section.sec1{
  margin-top: 90px;
}
.pg_recruit .section.sec2{
  margin-top: 40px;
}
.pg_recruit .section.sec3{
  margin-top: 130px;
}
.pg_recruit .section.sec4{
  margin-top: 70px;
}
/*繰り返し*/
.pg_recruit .pg_content_title{
  text-align: left;
}
.pg_recruit .salonmenu_content_item_content{
  line-height: 2;
}
.pg_recruit .pg_esthe_item2_img:before{
  padding-top: 78.65%;
}
.pg_recruit .pg_esthe_items.flex:nth-child(n+2){
  margin-top: 60px;
}

/*インタビュー*/
.recruit_interview_wrap{

}
.recruit_interview_title{
  position: relative;
}
.recruit_interview_title_img{
  position: absolute;
  top:-85px;
  left: 50%;
  transform:translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.recruit_interview_title_txt{
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0;
  text-align: center;
}
.recruit_interview_items{
  justify-content: space-between;
  margin-top:30px;
}
.recruit_interview_item1{
  width: 100%;
}
.recruit_interview_item1_img:before{
  padding-top: 121.42%;
}
.recruit_interview_item2{
  width: 100%;
}
.recruit_interview_item2_title{
  background: #f2efe9;
  position: relative;
  padding: 7px 10px;
}
.recruit_interview_item2_title_txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
}
.recruit_interview_item2_content{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  text-align: justify;
  line-height: 2em;
  margin-top: 16px;
}
.recruit_interview_item2_content .staff_name{
  margin-bottom: 10px;
}
/*テーブル*/
.recruit_tbl{
  margin-top: 40px;
}
.recruit_tbl .table_rows_th,
.recruit_tbl .table_rows_td{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  border: 1px solid #d9d9d9;
}
.recruit_tbl .table_rows_th{
  background: #f5f5f5;
}
.recruit_tbl .table_rows_td{

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

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

}
@media (max-width:767px){
  .pg_recruit .contents_header_title_txt{
    text-align: justify;
  }
  .pg_recruit .pg_header_title_en_img{
    width: 180px;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    display: block;
    width: 100%;
  }
  /*インタビュー*/
  .recruit_interview_item1{
    order:2;
    margin-top: 20px;
  }
  .recruit_interview_item2{
    order:1;

  }
  .recruit_interview_item2_title_txt{
    line-height: 1.6em;
  }
}
@media (min-width:768px){
  .pg_recruit{

  }
  .pg_recruit .section.sec1{
    margin-top: 130px;
  }
  .pg_recruit .section.sec2{
    margin-top: 50px;
  }
  .pg_recruit .section.sec3{
    margin-top: 150px;
  }
  .pg_recruit .section.sec4{
    margin-top: 120px;
  }

  .pg_recruit .pg_header_title_wrap {
    margin-top: 70px;
  }
  .pg_recruit .pg_header_title_content{
    margin-top: 20px;
  }
  .pg_recruit .pg_header_title_en_img{
    top: -85px;
  }
  .pg_recruit .contents_header_title_txt{
    font-size: 20px;
  }
  .pg_recruit .pg_header_title_en_img{
    width: 230px;
  }
  /*繰り返し*/
  .pg_recruit .salonmenu_content_item_content{
    margin-top: 30px;
  }
  .pg_recruit .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item1{
    order: 1;
  }
  .pg_recruit .pg_esthe_items.flex:nth-child(odd) .pg_esthe_item2{
    order: 2;
  }
  .pg_recruit .pg_esthe_items.flex:nth-child(even) .pg_esthe_item1{
    order: 2;
  }
  .pg_recruit .pg_esthe_items.flex:nth-child(even) .pg_esthe_item2{
    order: 1;
  }
  .pg_recruit .pg_esthe_items.flex:nth-child(n+2){
    margin-top: 60px;
  }
  /*インタビュー*/
  .recruit_interview_wrap{

  }
  .recruit_interview_title{

  }
  .recruit_interview_title_img{

  }
  .recruit_interview_title_txt{
    font-size: 21px;
    padding-left: 90px;
  }
  .recruit_interview_items{
    margin-top: 60px;
  }
  .recruit_interview_item1{
    width: 31.53%;
  }
  .recruit_interview_item1_img:before{

  }
  .recruit_interview_item2{
    width: 59.90%;
  }
  .recruit_interview_item2_title{

  }
  .recruit_interview_item2_title_txt{
    font-size: 18px;
  }
  .recruit_interview_item2_content{

  }
  /*テーブル*/
  .recruit_tbl{
    margin-top: 60px;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    padding: 16px 15px;
  }
  .recruit_tbl .table_rows_th{
    width: 200px;
  }
  .recruit_tbl .table_rows_td{
    line-height: 1.875em;
  }

  .salonmenu_content_item_price .table_rows_th.center{
    text-align: center;
  }
}
@media (min-width:1024px){
  .pg_recruit{

  }
  .pg_recruit .pg_header_title_content{
    margin-top: 45px;
  }
  .pg_recruit .section.sec1{
    margin-top: 180px;
  }
  .pg_recruit .section.sec2{
    margin-top: 70px;
  }
  .pg_recruit .section.sec3{
    margin-top: 270px;
  }
  .pg_recruit .section.sec4{
    margin-top: 200px;
  }
  .pg_recruit .pg_header_title_wrap{
    margin-top: 110px;
  }
  .pg_recruit .contents_header_desc{
    margin-top: 30px;
    font-size: 16px;
  }
  .body_recruit .pg_header:after{
    height: 670px;
  }
  .pg_recruit .pg_header_title_en_img{
    width: auto;
  }
  .pg_recruit .pg_header_title_en_img{
    top: -70px;
  }
  .pg_recruit .contents_header_title_txt{
    font-size: 24px;
  }
  /*繰り返し*/
  .pg_content_title_txt{
    font-size: 18px;
  }
  .pg_recruit .pg_esthe_items.flex:nth-child(n+2){
    margin-top: 80px;
  }
  /*インタビュー*/
  .recruit_interview_wrap{

  }
  .recruit_interview_title{

  }
  .recruit_interview_title_img{

  }
  .recruit_interview_title_txt{

  }
  .recruit_interview_items{
    margin-top: 85px;
  }
  .recruit_interview_item1{

  }
  .recruit_interview_item1_img:before{

  }
  .recruit_interview_item2{

  }
  .recruit_interview_item2_title{

  }
  .recruit_interview_item2_title_txt{

  }
  .recruit_interview_item2_content{

  }

  /*テーブル*/
  .recruit_tbl{
    margin-top: 80px;
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    padding: 16px 60px;
  }
  .recruit_tbl .table_rows_th{
    width: 285px;
  }
  .recruit_tbl .table_rows_td{

  }

}
@media (min-width:1200px){
  .pg_recruit .section.sec1{
    margin-top: 210px;
  }


}
/*******************************
*　アパレルグッズ
********************************/
.pg_apparelandgoods{

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

/*タイトル*/
.pg_apparelandgoods .pg_content_title{
  margin-bottom: 20px;
}
.pg_apparelandgoods .pg_content_title_txt{
  font-size: 15px;
}
.firsttimeusers_faq_desc{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.875em;
}
/*グッズ*/
.apparelandgoods_item_wrap{
  margin-top: 30px;
}
.apparelandgoods_item_wrap .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.apparelandgoods_item_wrap .webgene-item .title{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.5em;
  text-align: center;
}
.apparelandgoods_item_wrap .webgene-item .title span{
  display: inline-block;
  text-align: left;
  padding: 0 3px;
  word-break: break-all;
}
.apparelandgoods_item_wrap .webgene-item .box2{
  margin-top: 7px;
}
.firsttimeusers_faq_wrap:nth-child(n+2){
  margin-top: 30px;
  padding-top: 30px;
}
.pg_news_cat_box .webgene-blog {
  display: none;
}.pg_news_cat_box .webgene-blog {
  display: none;
}
.posts_layout_box2 select, .posts_category_sp select {
  width: 100%;
  height: 50px;
  padding: 8px;
  border-radius: 0;
  box-shadow: 0;
  border: 1px solid #000000;
}

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

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

}
@media (max-width:767px){
  .body_apparelandgoods .pg_header:after{
    height: 440px;
  }
  .pg_apparelandgoods .pg_content_title{
    padding-top: 50px;
  }
  .apparelandgoods_item_wrap .webgene-item:nth-child(n+3){
    margin-top: 16px;
  }
  .pg_apparelandgoods .pg_content_title_img{
    width: 300px;
    /*top: -32px;*/
    bottom: 0;
  }
  .pg_content_title_img.wide{
    top: -20px;
    width: auto;
  }
  .pg_apparelandgoods .firsttimeusers_faq_wrap .pg_content_title{
    padding: 50px 10px 10px;
  }


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

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

  .pg_apparelandgoods .pg_header_title_en_img{
    top: -90px;
  }
  /*タイトル*/
  .pg_apparelandgoods .pg_header_title_content{
    margin-top: 20px;
  }
  .pg_apparelandgoods .pg_header_title_wrap {
    margin-top: 80px;
  }
  .pg_apparelandgoods .pg_content_title{
    margin-bottom: 30px;
  }
  /*グッズ*/
  .apparelandgoods_item_wrap{
    margin-top: 30px;
  }
  .apparelandgoods_item_wrap .webgene-item:nth-child(n+4){
    margin-top: 20px;
  }
  .firsttimeusers_faq_wrap:nth-child(n+2){
    margin-top: 100px;
  }
  .posts_category_sp{
    display: none;
  }
}
@media (min-width:1024px){
  .pg_apparelandgoods{

  }
  .pg_apparelandgoods .section.sec1{
    margin-top: 180px;
  }
  .pg_apparelandgoods .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_apparelandgoods .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .body_apparelandgoods .pg_header:after{
    height: 665px;
  }
  .body_apparelandgoods .pg_header_title_wrap{
    margin-top: 110px;
  }
  .pg_apparelandgoods .pg_header_title_en_img{
    top: -145px;
  }
  /*タイトル*/
  .pg_apparelandgoods .pg_header_title_content{
    margin-top: 40px;
  }
  .pg_apparelandgoods .pg_content_title{
    margin-bottom: 50px;
  }
  .pg_apparelandgoods .pg_content_title_txt{
    font-size: 15px;
  }

  /*グッズ*/
  .apparelandgoods_item_wrap{
    margin-top: 40px;
  }
  .apparelandgoods_item_wrap .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .apparelandgoods_item_wrap .webgene-item:nth-child(n+5){
    margin-top: 46px;
  }
  .firsttimeusers_faq_wrap:nth-child(n+2){
    margin-top: 125px;
  }
  .apparelandgoods_item_wrap .webgene-item .title{

  }
}
@media (min-width:1200px){
  .pg_apparelandgoods .section.sec1{
    margin-top: 230px;
  }


}
/*******************************
*　店舗情報
********************************/
.pg_storeinformation{

}
.pg_storeinformation .section.sec1{
  margin-top: 100px;
}
.pg_storeinformation .section.sec2{
  margin-top: 90px;
}
.pg_storeinformation .section.sec3{
  margin-top: 40px;
  padding-top: 30px;
}

.pg_storeinformation .section_title_txt{
  font-size: 16px;
}
/*テーブル*/
.storeinformation_tbl{

}
.storeinformation_tbl .table_rows_th,
.storeinformation_tbl .table_rows_td{
  font-weight: normal;
  border: 1px solid #d9d9d9;
}
.storeinformation_tbl .table_rows_th{
  background: #f0f0f0;
  letter-spacing: 0.08em;
  font-size: 16px;
}
.storeinformation_tbl .table_rows_td{
  letter-spacing: 0.16em;
  font-size: 15px;
  font-weight: 500;
}

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

.contact_info_wrap{
  margin-top: 30px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .body_storeinformation .pg_header:after{
    height: 370px;
  }
  /*テーブル*/
  .storeinformation_tbl{
    margin-top: 20px;
  }
  .storeinformation_tbl .table_rows_th,
  .storeinformation_tbl .table_rows_td{
    display:block;
    width: 100%;
  }
  .storeinformation_tbl .table_rows_th{
    border-bottom: none;
  }
  .storeinformation_tbl .table_rows_td{
    border-bottom: none;
  }
  .storeinformation_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #d9d9d9;
  }

  .pg_storeinformation .pg_content_title_img{
    width: auto;
  }
  .pg_storeinformation .pg_content_title{
    padding-top: 30px;
  }
}
@media (min-width:768px){

  .pg_storeinformation{

  }
  .pg_storeinformation .section.sec1{
    margin-top: 150px;
  }
  .pg_storeinformation .section.sec2{
    margin-top: 120px;
  }
  .pg_storeinformation .section.sec3{
    margin-top: 40px;
    padding-top: 40px;
  }

  .pg_storeinformation .pg_header_title_content{
    margin-top: 20px; 
  }
  .pg_storeinformation .pg_header_title_en_img{
    top: -70px;
  }
  .pg_storeinformation .pg_content_title_img{
    width: auto;
  }
  /*テーブル*/
  .storeinformation_tbl{
    margin-top: 30px;
  }
  .storeinformation_tbl .table_rows_th,
  .storeinformation_tbl .table_rows_td{
    padding: 14px 24px;
  }
  .storeinformation_tbl .table_rows_th{
    width: 200px;
    border-right: none;
  }
  .storeinformation_tbl .table_rows_td{
    border-left: none;
  }
  /*地図*/
  .pg_storeinformation .g_map{
    margin-top: 40px;
  }
  .pg_storeinformation .access_map iframe{
    height: 400px;
  }

  .contact_info_wrap{
    margin-top: 40px;
  }
}
@media (min-width:1024px){
  .pg_storeinformation{

  }
  .pg_storeinformation .section.sec1{
    margin-top: 235px;
  }
  .pg_storeinformation .section.sec2{
    margin-top: 165px;
  }
  .pg_storeinformation .section.sec3{
    margin-top: 65px;
    padding-top: 60px;
  }
  .body_storeinformation .pg_header:after{
    height: 650px;
  }

  .pg_storeinformation .pg_header_title_content{
    margin-top: 40px; 
  }
  .pg_storeinformation .pg_header_title_en_img{
    top: -115px;
  }
  .pg_storeinformation .pg_header_title_wrap{
    margin-top: 110px;
  }
  /*テーブル*/
  .storeinformation_tbl{
    margin-top: 45px;
  }
  .storeinformation_tbl .table_rows_th,
  .storeinformation_tbl .table_rows_td{

  }
  .storeinformation_tbl .table_rows_th{
    width: 254px;
  }
  .storeinformation_tbl .table_rows_td{

  }
  /*地図*/
  .pg_storeinformation .g_map{
    margin-top: 70px;
  }
  .pg_storeinformation .access_map iframe{

  }
  .pg_storeinformation .pethotel_img_items{
    margin-top: 65px;
  }

  .contact_info_wrap{
    margin-top: 55px;
  }
}
@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: #f2efe9;
  color: #181818;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
}

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

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

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

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

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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


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

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

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

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

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

  /*詳細*/
  .pg_single_news .post_items .item.single_item .category{
    margin-right: 28px;
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }

}



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

.contact_info_wrap{
  background: #f0f0f0;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}
.contact_info_tt{
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  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: #8c8c8c;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: normal;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select[name="month1"],
.pg_contact .formTd select[name="month2"],
.pg_contact .formTd select[name="month3"],
.pg_contact .formTd select[name="day1"],
.pg_contact .formTd select[name="day2"],
.pg_contact .formTd select[name="day3"],
.pg_contact .formTd select[name="hour1"],
.pg_contact .formTd select[name="hour2"],
.pg_contact .formTd select[name="hour3"]{

  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.contact_info_sub_txt{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: red;
  font-family: "Noto Serif JP", serif;
}

.formRow.first .formTh{
  padding: 12px 16px;

}
.pg_storeinformation .pg_contact .formTh{
  font-family: "Noto Serif JP", serif;
}
.formRow.first .formTh label{
  padding-left:0;
}
.formRow.first .formTh,
.formRow.first .formTd{
  padding: 12px 16px 12px 15px;
}
.formRow.first .radioArea{
  padding: 0;
}
.pg_contact .formTh.last{
  align-items: flex-start;
}
@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: 40px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 30px;
    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%;
  }
  .anchor#contact{
    padding-top: 30px;
  }
}


.contact_tt {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.2em;
  margin-top: 0;
}
.contact_tt.privacy{
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 21px;
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl{  
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 0;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 9px 15px 9px 16px;
  background: #eeeeee;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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: 9px 26px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  letter-spacing: 0.16em;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.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: 255px;
  width: 100%;
  font-size: 15px;
  padding: 8px;
  margin: 32px auto 0;
  border: 0;
  background: #fff;
  border: 1px solid #999999;
  color: #181818;
  font-weight: normal;
  letter-spacing: 0.075em;
  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: 2px;
  letter-spacing: 0.16em;;
}
.radioArea .d-inline-block{
  margin-right: 5px;
}
.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%;
  }
  .formRow.first .formTh,
  .formRow.first .formTd{
    padding: 12px 16px 12px 25px;
  }
  .formRow.first .formTh{
    padding-left: 16px;
  }
  .pg_contact .formTh label{
    padding: 0 0 0 10px;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 29px;
  font-family: "Noto Serif JP", serif;
}
.privacy_ttl {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #f2efe9;
}
.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: 0;
  }


  .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;
  }
  .d-block.hour{
    width: 100%;
    margin-top: 5px;
  }
  .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;
  }
  .radioArea .d-inline-block .label{
    margin-left: 0;
  }


}

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

.formRow .selectArea {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.body_thanks .pg_header:after{
  height:180px;
}
/* コピー用 */
@media (max-width:374px){

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

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


  .pg_contact .formTd select[name="month1"], .pg_contact .formTd select[name="month2"], .pg_contact .formTd select[name="month3"], .pg_contact .formTd select[name="day1"], .pg_contact .formTd select[name="day2"], .pg_contact .formTd select[name="day3"], .pg_contact .formTd select[name="hour1"], .pg_contact .formTd select[name="hour2"], .pg_contact .formTd select[name="hour3"]{
    max-width: 60px;
  }
  .pg_contact .d-md-inline-block.sp_wide select[name="month1"],
  .pg_contact .d-md-inline-block.sp_wide select[name="month2"],
  .pg_contact .d-md-inline-block.sp_wide select[name="month3"],
  .pg_contact .d-md-inline-block.sp_wide select[name="day1"],
  .pg_contact .d-md-inline-block.sp_wide select[name="day2"],
  .pg_contact .d-md-inline-block.sp_wide select[name="day3"]{
    max-width:100px;
  }

  .pg_contact label{
    padding: 0 5px 0 5px;
  }
  .d-md-inline-block.hour label{
    padding: 0 5px 0 0;
  }
  .d-md-inline-block.sp_wide{
    width: 45%;
  }

  .d-md-inline-block.hour select[name="hour1"],
  .d-md-inline-block.hour select[name="hour2"],
  .d-md-inline-block.hour select[name="hour3"]{
    max-width: 230px;
  }
}
@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;
  }

  .d-md-inline-block{
    width: 100px;
  }
  .pg_contact .formTd select[name="month1"],
  .pg_contact .formTd select[name="month2"],
  .pg_contact .formTd select[name="month3"],
  .pg_contact .formTd select[name="day1"],
  .pg_contact .formTd select[name="day2"],
  .pg_contact .formTd select[name="day3"],
  .pg_contact .formTd select[name="hour1"],
  .pg_contact .formTd select[name="hour2"],
  .pg_contact .formTd select[name="hour3"]{
    max-width: 70px;
  }
  .d-md-inline-block.hour{
    width: 195px;
  }
  .pg_contact label{
    padding: 0 0 0 10px;
  }
  .d-md-inline-block.hour label{
    padding: 0 5px 0 20px;
  }
  .d-md-inline-block.hour select[name="hour1"],
  .d-md-inline-block.hour select[name="hour2"],
  .d-md-inline-block.hour select[name="hour3"]{
    max-width: 120px;
  }
  .pg_contact .formTh label{
    padding: 0;
  }
  .body_thanks .pg_header:after{
    height:290px;
  }
}
@media (min-width:1024px){

  .d-md-inline-block.hour label{
    padding: 0 5px 0 20px;
  }
  .d-md-inline-block{
    width: 110px;
  }
  .pg_contact .formTd select[name="month1"],
  .pg_contact .formTd select[name="month2"],
  .pg_contact .formTd select[name="month3"],
  .pg_contact .formTd select[name="day1"],
  .pg_contact .formTd select[name="day2"],
  .pg_contact .formTd select[name="day3"],
  .pg_contact .formTd select[name="hour1"],
  .pg_contact .formTd select[name="hour2"],
  .pg_contact .formTd select[name="hour3"]{
    max-width: 82px;
  }
  .d-md-inline-block.hour select[name="hour1"],
  .d-md-inline-block.hour select[name="hour2"],
  .d-md-inline-block.hour select[name="hour3"]{
    max-width: 230px;
  }
  .d-md-inline-block.hour{
    width: 305px;
  }

  .thanks_text{
    text-align: center;
  }
  .body_thanks .pg_header:after{
    height: 500px;
  }
  .body_thanks .section.sec1{
    margin-top: 280px;  
  }
}
@media (min-width:1200px){


}</pre></body></html>