@charset "UTF-8";

/* ----------------------------------------------
 common
------------------------------------------------- */

/* -----------------
 base
-------------------- */

body{
  background: #fafaf2;
  color: #666;
  margin: 0;
  padding-top: 0;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}
img{
  border-radius: 10px;
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.for-pc{
  display: none;
}
.img-100 img{
  width: 100%;
}

/* -----------------
 margin/padding
-------------------- */

.block-s{
  margin-bottom: 40px;
}
.block-m{
  margin-bottom: 70px;
}
.block-l{
  margin-bottom: 100px;
}

/* -----------------
 font
-------------------- */

.l{
  margin-bottom: 1em;
  font-size: 17px;
  line-height: 2em;
}
.m{
  margin-bottom: 1em;
  font-size: 15px;
  line-height:2em;
}
.s{
  margin-bottom: 1em;
  font-size: 13px;
  line-height: 2em;
}
.f-bold{
  font-weight: bold;
}

/* -----------------
 headline
-------------------- */

h1{
  font-family:"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN W3",HiraMinProN-W3,"ヒラギノ明朝 ProN","Hiragino Mincho ProN","游明朝体","YuMincho","游明朝","Yu Mincho","Noto Serif JP","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
  display: inline-block;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.4em;
  position: relative;
}
h1:after{
  background: #eca5b1;
  content: "";
  display: inline-block;
  height: 2px;
  width: 2em;
  position :absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
h1.logo:after{
  background: transparent;
  display: inline;
  height: 0;
  width: 0;
  position :absolute;
  bottom: 0;
  left: 0;
}
h2{
  font-size: 22px;
  line-height: 1.4em;
  margin-bottom: 30px;
  text-align: center;
}
h3{
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
h3:before{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 2px);
  background-color: #eca5b1;
  border-radius: 5px;
  content: "";
  width: 6px;
}
h4{
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

/* -----------------
 link
-------------------- */

a {
  color: #000;
  outline: none;
  text-decoration: underline;
}
a:hover {
  color: #000;
  outline: none;
  text-decoration: none;
}

/* -----------------
 form
-------------------- */

input[type="text"],
input[type="email"],
input[type="submit"],
select,
textarea{
  background-color: #fff;
  border: 2px solid #f1f1f1;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 15px 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all .3s;
  transition: all 0.5s;
}
input:focus,
textarea:focus{
  border:  2px solid #eca5b1;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder{
  color: #bbb;
}
label{
  cursor: pointer;
}

/* -----------------
 layout
-------------------- */

#wrapper {
  margin: 0;
  padding-top: 60px;
}

header {
  background-color: rgba(254, 254, 254, 1);
  height: 60px;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 3px 5px -5px rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0px 3px 5px -5px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0px 3px 5px -5px rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  top: 0;
}
.logo {
  line-height: 0;
  margin: 0 0 0 5%;
  padding-top: 10px;
  width: 150px;
}
@media screen and (max-width: 350px) {
  .logo{
    padding-top: 12px;
    width: 130px;
  }
}
.logo img {
  padding: 0px;
  width: 100%;
}

.btn-menu-sp {
  height: 26px;
  width: 40px;
  position: absolute;
  right: 2%;
  top: 17px;
}
.btn-menu-sp:hover{
  cursor: pointer;
}

.header-info{
  font-size: 0;
  letter-spacing: -.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 15px;
  right: 80px;
}
.header-info li{
  display: inline-block;
  letter-spacing: normal;
  line-height: 1em;
  margin: 0 20px 0 0;
  width: 36px;
}
@media screen and (max-width: 350px) {
  .header-info{
    top: 17px;
  }
  .header-info li{
    margin: 0 10px 0 0;
    width: 30px;
  }
}
.header-info li:last-child{
  margin: 0;
}
.header-info li img{
  width: 100%;
}

.gnav {
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 0;
  text-align: center;
  visibility: hidden;
  width: 100%;
  z-index: 100;
  position: fixed;
  left: 0;
  top: 60px;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
.gnav.open {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  visibility: visible;
  width: 100%;
}

.gnav-list {
  background: #f9f9f9 ;
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: all .5s 0s;
  -moz-transition: all .5s 0s;
  transition: all .5s 0s;
}
.gnav.open .gnav-list{
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.gnav-list li{
  margin: 0;
  padding: 0;
}
.gnav-list li:first-child{
  display: none;
}
.gnav-list li:last-child{
  margin-right: 0;
}
.gnav-list li a,
.gnav-list li span.gnav-sp-open{
  border-bottom:1px solid #ccc;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 16px;
  line-height: 1.2em;
  margin: 0;
  padding: 25px 3%;
  position: relative;
  text-decoration: none;
}
.gnav-list li.reserve a,
.gnav-list li.contact a{
  border-radius: 40px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2em;
  margin: 0 auto 30px;
  padding: 20px 1em;
  text-decoration: none;
  width: 80%;
}
.gnav-list li.reserve a{
  background: #eca5b1;
  margin-top: 30px;
}
.gnav-list li.contact a{
  background: #79c299;
}
.gnav-list li span.gnav-sp-open{
  background: url(/wp-content/themes/salon/common/img/common/icon_nav_open_sp.png) no-repeat 94% center;
  background-size: 18px;
}
.gnav-list li span.gnav-sp-close{
  background: url(/wp-content/themes/salon/common/img/common/icon_nav_close_sp.png) no-repeat 94% center;
  background-size: 18px;
}
.gnav-list li .gnav-sub{
  display: none;
  width: 100%;
}
.gnav-list li .gnav-sub .bg{
}
.gnav-list li .gnav-sub .layout{
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.gnav-list li .gnav-sub ul{
  letter-spacing: -.4em;
  line-height: 1.2em;
  list-style: none;
  margin: 0;
  padding: 20px 0;
  border-bottom:1px solid #ccc;
}
.gnav-list li .gnav-sub ul li{
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}
.gnav-list li .gnav-sub ul li a{
  border-bottom: none;
  color: #013155;
  display: block;
  font-size: 16px;
  line-height: 1em;
  margin: 0;
  padding: 20px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
}

article{
  padding-bottom: 100px;
}
.layout{
  box-sizing: border-box;
  margin: 0;
  padding: 0 5%;
  position: relative;
  text-align: left;
  width: 100%;
}
.block-normal{
  margin-bottom: 100px;
}
.block-normal p{
  font-size: 16px;
  line-height: 2.0em;
  margin-bottom: 1em;
}
footer{
  padding: 0 0 40px;
  width: 100%;
}
footer .layout{
  padding: 0;
  text-align: center;
}
footer img.footer-logo{
  display: none;
}
footer ul.sitemap{
  background: #a8d7bd;
  font-size: 0;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  text-align: left;
}
footer ul.sitemap li{
  border-bottom: 1px solid #fff;
  margin: 0;
}
footer ul.sitemap li a{
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1.4em;
  padding: 20px 3%;
  text-decoration: none;
}
footer ul.sns{
  font-size: 0;
  letter-spacing: -.4em;
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}
footer ul.sns li{
  display: inline-block;
  letter-spacing: normal;
  margin: 0 3%;
  padding: 0;
  width: 40px;
}
footer ul.sns li img{
  transition: .5s;
  width: 100%;
}
footer ul.sns li img:hover {
  opacity: .7;
}
footer p{
  font-size: 13px;
}
.btn_pagetop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
}
.btn_pagetop img{
  width: 100%;
}
.btn_side{
  display: none;
}

/* -----------------
 sub-common
-------------------- */

.mainimg-sub{
  height: 100px;
  margin: 0 0 30px;
  padding-top: 50px;
}
.mainimg-sub .layout{
  text-align: center;
}
.h2-common{
  padding: 0 0 10px;
  position: relative;
  text-align: left;
}
.h2-common:before{
  background: #ddd;
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  position :absolute;
  bottom: 1px;
}
.h2-common:after{
  background: #eca5b1;
  content: "";
  display: inline-block;
  height: 2px;
  width: 2em;
  position :absolute;
  bottom: 0;
  left: 0;
}

.block-breadcrumbs{
  box-sizing: border-box;
  font-size: 13px;
  margin-bottom: 40px;
  padding: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-x: auto;
}
.block-breadcrumbs i{
  margin: 0 1em;
}

.btn-more{
  margin-top: 50px;
  text-align: center;
}
.btn-more a{
  background: #fff;
  border: 1px solid #eca5b1;
  border-radius: 40px;
  color: #eca5b1;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2em;
  padding: 20px 1em;
  text-decoration:none;
  transition: all .5s;
  width: 80%;
}

ul.blog-box{
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.blog-box li{
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  margin: 0 0 30px 0;
  padding: 0;
  width: 100%;
}
ul.blog-box li a{
  color: #000;
  text-decoration: none;
}
ul.blog-box li figure{
  background: #fff no-repeat center center;
  background-size: cover;
  border-radius: 10px 10px 0 0;
  height: auto;
  overflow: hidden;
  padding-top: 75%;
  text-align: center;
  width: 100%;
}
ul.blog-box li img{
  width: 100%;
}
ul.blog-box li .text-area{
  padding: 15px 3%;
  text-align: left;
}
ul.blog-box li .text-area p{
  margin-bottom: 10px;
  line-height: 1.4em;
}
ul.blog-box li .text-area p span.date{
  display: block;
  font-size: 13px;
  line-height: 1em;
  margin-right: 1em;
}
ul.blog-box li .text-area p span.cate{
  background: #000;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  line-height: 1em;
  margin-right: .5em;
  padding: 2px 1em;
  vertical-align: middle;
  white-space: nowrap;
}
ul.blog-box li .text-area h2{
  border-left: none;
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  transition: all .5s;
}

.block-common-contact{
  background: #fff;
  border-radius: 10px;
  padding: 30px 5%;
  text-align: center;
}
.block-common-contact h2{
  margin-bottom: 15px;
}
.block-common-contact p.descripiton{
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 30px;
}
.block-common-contact p.tel-sp{
  background: url(/wp-content/themes/salon/common/img/common/icon_tel.png) no-repeat left center;
  background-size: 30px;
  display: inline-block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0 0 0 35px;
}
.block-common-contact ul{
  font-size: 0;
  margin: 30px 0 0;
  padding: 0;
}
.block-common-contact ul li{
  margin: 0;
  padding: 0;
}
.block-common-contact ul li a{
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2em;
  padding: 20px 1em;
  text-decoration: none;
  transition: all .5s;
  width: 80%;
}
.block-common-contact ul li:first-child a{
  background: #eca5b1;
  margin-bottom: 30px;
}
.block-common-contact ul li:last-child a{
  background: #79c299;
}

.pager{
  margin: 20px 0;
  text-align: center;
}
.pager ul{
  font-size: 0;
  letter-spacing: -.4em;
  list-style: none;
  margin: 0;
  padding: 0; 
}
.pager ul li{
  display: inline-block;
  letter-spacing: normal;
  margin: 0 3%;
  padding: 0;
}
.pager ul li a{
  color:#000;
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.pager ul li.current a{
  color: #eca5b1;
  text-decoration: underline;
}

.post-link{
  list-style: none;
  margin: 50px 0 40px;
  padding: 0;
}
.post-link li{
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.2em;
  margin: 0 0 20px;
  padding: 0;
  position: relative;
}
.post-link li:last-child{
  float: right;
  text-align: right;
}
.post-link li i{
  font-size: 13px;
  line-height: 1em;
}
.post-link li.prev i{
  margin-right: .5em;
}
.post-link li.next i{
  margin-left: .5em;
}
.back-list{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.back-list li{
  font-size: 15px;
  line-height: 1.4em;
  margin: 0;
  padding: 0;
}
.back-list li i{
  font-size: 13px;
  line-height: 1em;
  margin-right: .5em;
}

.p-404{
  margin-top: 100px;
  text-align: center;
}

/* ----------------------------------------------
 トップ
------------------------------------------------- */

#home .mainimg-top{
  background: url(/wp-content/themes/salon/common/img/top/mainimg_top_sp.jpg) no-repeat center 20%;
  background-size: cover;
  height: 0;
  margin-bottom: 100px;
  padding-top: 76%;
  position: relative;
  text-align: left;
}
#home .mainimg-top .copy-area{
  width: 94%;
  position: absolute;
  left: 3%;
  top: 12%;
}
#home .mainimg-top p.copy{
  color: #000;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.7em;
  margin: 0 auto 20px;
}
#home .mainimg-top p.sub_copy{
  color: #000;
  font-size: 14px;
  line-height: 2.0em;
  margin: 0;
  text-shadow: 1px 1px 0 #fcfcfc, -1px -1px 0 #fcfcfc,-1px 1px 0 #fcfcfc, 1px -1px 0 #fcfcfc,0px 1px 0 #fcfcfc, 0-1px 0 #fcfcfc,-1px 0 0 #fcfcfc, 1px 0 0 #fcfcfc;
}
@media screen and (max-width: 350px) {
  #home .mainimg-top p.copy{
    font-size: 20px;
    line-height: 1.7em;
    margin: 0 auto 10px;
  }
  #home .mainimg-top p.sub_copy{
    font-size: 13px;
    line-height: 1.8em;
  }
}
#home .mainimg-top .btn{
  margin: 0 auto;
  text-align: center;
  width: 80%;
  position: absolute;
  bottom: -30px;
  left: 10%;
}
#home .mainimg-top .btn a{
  background: #eca5b1;
  border-radius: 40px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2em;
  padding: 20px 1em;
  text-decoration: none;
  width: 100%;
}
#home h2.h2-top-center{
  position: relative;
}
#home h2.h2-top-center:after{
  background: #eca5b1;
  content: "";
  display: inline-block;
  height: 2px;
  width: 2em;
  position :absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#home .top-menu{
  list-style: none;
  margin: 0;
  padding: 0;
}
#home .top-menu li{
  display: inline-block;
  font-size: 15px;
  letter-spacing: normal;
  line-height: 2em;
  margin: 0 auto 50px;
  padding: 0;
  width: 100%;
}
#home .top-menu li:last-child{
  margin: 0;
}
#home .top-menu li img{
  margin-bottom: 25px;
  width: 100%;
}
#home ul.blog-box li:nth-of-type(n+6){
  display: none;
}
#home .contents{
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 25px;
  padding: 5% 5% 2%;
}
#home .infomation-list-top{
  color: #013155;
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
  padding: 0;
}
#home .infomation-list-top dt{
  font-size: 14px;
  line-height: 1.6em;
}
#home .infomation-list-top dd{
  box-sizing: border-box;
  font-weight: bold;
  margin-bottom: 3%;
  text-align: left;
  width: 100%;
  line-height: 1.6em;
}
#home .infomation-list-top dd a{
  color: #013155;
  text-decoration: none;
}
#home .infomation-list-top dd a:hover{
  text-decoration: underline;
}
#home .infomation-list-top dt:nth-of-type(n + 4),
#home .infomation-list-top dd:nth-of-type(n + 4) {
  display: none;
}

/* ----------------------------------------------
 サロンについて
------------------------------------------------- */

#about .greeting{
  margin: 0 auto 20px;
  width: 70%;
}
#about .greeting img{
  width: 100%;
}
#about .table-access{
  background: #fff;
  border-collapse: collapse;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.8em;
  margin: 0 0 30px;
  padding: 0;
  width: 100%;
}
#about .table-access th{
  border-bottom: solid 1px #e5e5e5;
  font-weight: normal;
  line-height: 1.8em;
  margin: 0;
  padding: 5% 0 5% 5%;
  text-align: left;
  vertical-align: middle;
  width: 5em !important;
}
#about .table-access td{
  border-bottom: solid 1px #e5e5e5;
  line-height: 1.8em;
  margin: 0;
  padding: 5%;
}
#about .table-access td span{
  display: block;
  line-height: 1.8em;
}
#about .table-access td ul{
  margin: 0 0 0 1em;
  padding: 0;
}
#about .table-access td ul li{
  line-height: 1.8em;
  margin: 0 0 10px 0;
  padding: 0;
}
#about .table-access td ul li:last-child{
  margin: 0;
}
#about .google-map{
  border-radius: 10px;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
#about .google-map iframe{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
#link-access{
  margin-top: -80px;
  padding-top: 80px;
}

/* ----------------------------------------------
 メニュー
------------------------------------------------- */

#menu .block-menu{
  margin-bottom: 50px;
}
#menu .block-menu figure{
  margin: 0 0 20px;
  width: 100%;
}
#menu .block-menu figure img{
  width: 100%;
}
#menu .block-menu .textarea{
}
#menu .block-menu .textarea .description{
  font-size: 16px;
  line-height: 2.0em;
  margin-bottom: 3em;
}
#menu .block-menu .textarea .contents{
  background: #fff;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  font-size: 16px;
  line-height: 2.0em;
  padding: 5%;
}

/* ----------------------------------------------
 よくあるご質問
------------------------------------------------- */

#faq .block-faq{
  background: #fff;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 5%;
}
#faq .block-faq .faq-q{
  border-bottom: 1px dotted rgba(25, 30, 40, 0.25);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4em;
  min-height: 46px;
  padding: 0 0 15px 60px;
  position: relative;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#faq .block-faq .faq-a{
  font-size: 16px;
  line-height: 2.0em;
  margin: 0;
  min-height: 46px;
  padding: 0 0 0 60px;
  position: relative;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#faq .block-faq .faq-q:before,
#faq .block-faq .faq-a:before{
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
#faq .block-faq .faq-q:before{
  content: "Q";
  background: #eca5b1;
}
#faq .block-faq .faq-a:before{
  content: "A";
  background: #79c299;
}

/* ----------------------------------------------
 ブログ
------------------------------------------------- */

#blog main{
  margin-bottom: 100px;
  text-align: left;
}
#blog aside{
}
#blog aside h2{
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2em;
  margin: 0;
  padding: 20px;
}
#blog aside h2.aside-open{
  background: #fff url(/wp-content/themes/salon/common/img/common/icon_nav_open_sp.png) no-repeat 94% center;
  background-size: 20px;
}
#blog aside h2.aside-close{
  background: #fff url(/wp-content/themes/salon/common/img/common/icon_nav_close_sp.png) no-repeat 94% center;
  background-size: 20px;
}
#blog aside ul{
  background: #fff;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
#blog aside ul li{
  margin: 0;
  padding: 0;
}
#blog aside ul li a{
  border-bottom: 1px solid #ddd;
  display: block;
  font-size: 15px;
  line-height: 1.4em;
  padding: 20px;
  text-decoration: none;
}
#blog aside ul li:first-child a{
  border-top: none;
}
#blog aside ul li:last-child a{
  border-bottom: none;
}

/* 詳細ページ */
#blog .blog-head p{
  font-size: 13px;
  line-height: 1.0em;
  margin-bottom: 15px;
}
#blog .blog-head span{
  display: inline-block;
  margin: 0 .5em 20px 0;
}
#blog .blog-head span a{
  background: #000;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  line-height: 1em;
  padding: 4px 1em;
  vertical-align: middle;
  text-decoration: none;
}
#blog .content_area p{
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 1em;
}

/* カテゴリ一覧ページ */
#blog.tax-blog_cate h2{
  margin-bottom: 40px;
}

/* ----------------------------------------------
 お知らせ
------------------------------------------------- */

#news main{
  margin-bottom: 100px;
  text-align: left;
}
#news aside{
}
#news aside h2{
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2em;
  margin: 0;
  padding: 20px;
}
#news aside h2.aside-open{
  background: #fff url(/wp-content/themes/salon/common/img/common/icon_nav_open_sp.png) no-repeat 94% center;
  background-size: 20px;
}
#news aside h2.aside-close{
  background: #fff url(/wp-content/themes/salon/common/img/common/icon_nav_close_sp.png) no-repeat 94% center;
  background-size: 20px;
}
#news aside ul{
  background: #fff;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
#news aside ul li{
  margin: 0;
  padding: 0;
}
#news aside ul li a{
  border-bottom: 1px solid #ddd;
  display: block;
  font-size: 15px;
  line-height: 1.4em;
  padding: 20px;
  text-decoration: none;
}
#news aside ul li:first-child a{
  border-top: none;
}
#news aside ul li:last-child a{
  border-bottom: none;
}

/* 一覧ページ */
#news .news-list{
  font-size: 15px;
  line-height: 1.6em;
  margin: 0;
  padding: 0 0 25px;
  text-align: left;
}
#news .news-list dt{
  line-height: 1em;
  margin-bottom: 5px;
}
#news .news-list dd{
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: bold;
  margin: 0 0 25px 0;
  padding: 0 0 15px 0;
}
#news .news-list dd a{
  text-decoration: none;
}
#news .news-list dd a:hover{
  text-decoration: underline;
}

/* 詳細ページ */

#news .news-head p{
  display: inline-block;
  font-size: 13px;
  line-height: 1.0em;
}
#news .news-head span{
  display: inline-block;
}
#news .news-head span a{
  background: #000;
  color: #fff;
  font-size: 11px;
  line-height: 1em;
  margin-left: 1em;
  padding: 2px 1em;
  vertical-align: middle;
}
#news .content-area p{
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 1em;
}
#news .block-recommend{
  margin-bottom: 100px;
}

/* ----------------------------------------------
 プライバシーポリシー
------------------------------------------------- */

#privacy .block-privacy{
  margin-bottom: 70px;
}
#privacy .block-privacy p{
  font-size: 16px;
  line-height: 2.0em;
  margin-bottom: 1em;
}
#privacy .block-normal{
  margin-bottom: 70px;
}

#privacy ul.list-privacy{
  margin: 0 0 0 1.5em;
  padding: 0;
}
#privacy ul.list-privacy li{
  font-size: 16px;
  line-height: 1.8em;
  margin: 0 0 10px 0;
  padding: 0;
}
#privacy ul.list-privacy li:last-child{
  margin: 0;
}

/* ----------------------------------------------
 お問い合わせ・予約
------------------------------------------------- */

#contact .block-contact,
#reserve .block-contact{
  margin: 0 auto 40px;
  width: 100%;
}
#contact .block-contact:last-child,
#reserve .block-contact:last-child{
  margin-bottom: 0;
}
#contact .p.tel,
#reserve .p.tel{
  font-size: 40px;
  line-height: 1.4em;
  text-align: center;
}
#contact label,
#reserve label{
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 15px;
  position: relative;
}
#contact label span,
#reserve label span{
  color: #cc0000;
  display: inline-block;
  font-size: 13px;
  line-height: 1em;
  margin-left: 1em;
  vertical-align: middle;
}
#contact .mw_wp_form .error,
#reserve .mw_wp_form .error{
  background: #cc0000;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  line-height: 1em;
  margin: 10px 0 0 0;
  padding: 2px 1em;
}
#contact .input-textarea,
#reserve .input-textarea{
  line-height: 1.8em;
}
#contact .check,
#reserve .check{
  text-align: center;
}
#contact .check p,
#reserve .check p{
  font-size: 16px;
  line-height: 1.2em;
  margin-top: 30px;
  text-align: center;
}
#contact .check p a,
#reserve .check p a{
  color: #eca5b1;
  text-decoration: underline;
}
#contact .check label span,
#reserve .check label span{
  color: #666;
  font-weight: normal;
}

#contact .btn-form-area,
#reserve .btn-form-area{
  margin: 80px 0 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
#contact .btn-form-area ul,
#reserve .btn-form-area ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
#contact .btn-form-area ul li,
#reserve .btn-form-area ul li{
  display: inline-block;
  margin: 0 auto;
  position: relative;
  width: 30%;
  min-width: 250px;
}
#contact .btn-form-area ul li input,
#reserve .btn-form-area ul li input{
  cursor: pointer;
  background: #eca5b1;
  box-sizing: border-box;
  border-radius: 40px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1em;
  padding: 20px 1em;
  text-decoration: none;
}

/* 予約ページ */
#reserve label.choice{
  font-size: 14px;
  padding-left: 15px;
}
#reserve label.choice:before{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 2px);
  background-color: #eca5b1;
  border-radius: 5px;
  content: "";
  width: 4px;
}
#reserve .choice{
  margin-bottom: 20px;
  width: 80%;
}
#reserve .block-contact p.p_choice{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 15px;
}
#reserve .block-contact span.choice{
  font-size: 15px;
  margin: 0 2em 0 .5em;
  display: inline;
}
#reserve .block-contact select.time01{
  margin-bottom: 40px;
  width: 40%;
}
#reserve .block-contact select.time02{
  width: 40%;
}

/* 完了ページ */
#thanks .block-normal p{
  margin: 100px 0;
  font-size: 15px;
  line-height: 2em;
}
#thanks .block-normal p.to-top{
  margin: 0;
  line-height: 1em;
  text-align: center;
}
#thanks .block-normal p.to-top a{
  background: #fff;
  border: 1px solid #eca5b1;
  border-radius: 40px;
  color: #eca5b1;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2em;
  padding: 20px 1em;
  text-decoration:none;
  transition: all .5s;
  width: 80%;
}

/* ----------------------------------------------
 トップ
------------------------------------------------- */






/* ----------------------------------------------
 トップ
------------------------------------------------- */














