@charset "UTF-8";

html {
  height: auto;
  margin: 0 auto;
}
body {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #374A67;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}
main{
  padding: 5em 0 0 0;
  background-color: #FFF;
}
/* 500px以下 */
@media (max-width: 500px) {
  main {
    padding: 3em 0 0 0;
  }
}
.wrapper {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  vertical-align: baseline;
}

/* ------------------------- ヘッダー */
header{
  background-color: #FFF;
}
.headerLogo{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2em;
  position: relative;
  background-color: #FFF;
}
.headerLogo a{
  background: url(../images/logo.jpg) no-repeat 0 0;
  background-size: 140px auto;
  width: 140px;
  height: 90px;
  font-size: 1px;
  color: transparent !important;
  text-indent: -10000px !important;
  overflow: hidden !important;
  display: inline-block;
}
.headerLogo h1{
  width: 150px;
  margin: 0 auto;
}
.headerInfo{
  position: absolute;
  right: 10px;
  top: 18px;
}
.headerInfo a{
  color: #000;
}
.header_lang{
  font-size: 1.2rem;
  text-align: right;
  line-height: 1.5;
}
.header_lang i{
  margin-left: 3px;
  font-size: 1.2rem;
}
.header_icons i{
  font-size: 1.2rem;
  margin-left: 1px;
  background-color: #000;
  color: #fff;
  border-radius: 3px;
  padding: 4px 0;
  width: 27px;
  text-align: center;
}

/* 500px以下 */
@media (max-width: 500px) {
  .headerInfo {
    display: none;
  }
  .headerLogo{
    padding-top: 1.5em;
  }
  .headerLogo a{
    background-size: 100px auto;
    width: 100px;
    height: 70px;
  }
  .headerLogo h1{
    width: 100px;
	height: 70px;
  }
}
/* ------------------------- グローバルナビ */
nav div.menu{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FFF;
}
nav ul {
  display: table;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
nav li {
  display: table-cell;
  width: 16%;
  vertical-align: top;
}
nav li span{
  color: #000;
  font-weight: normal;
}
.mobileOnly{
  display: none;
}
/* ------------------------- ナビの下に出るライン */
.navline {
  text-align: center;
}
.navline * {
  box-sizing: border-box;
}
.navline li {
  display: inline-block;
  list-style: outside none none;
  padding: 0;
}
.navline a {
  display: block;
  font-size: 1.2rem;
  padding: 5px 0 7px 0;
  color: #3a1301;
  position: relative;
  letter-spacing: 1px;
  text-decoration: none;
}
.navline a:before,
.navline a:after {
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.navline a:before {
  bottom: 0;
  display: block;
  height: 3px;
  width: 0%;
  content: "";
  background-color: #3a1301;
}
.navline a:hover:before,
.navline .current a:before {
  opacity: 1;
  width: 100%;
}
.navline a:hover:after,
.navline .current a:after {
  max-width: 100%;
}

/* 767px以下 */
@media (max-width: 767px) {
  nav ul, nav li{ display: block;}
  .navline li {
    display: block;
    width: 100%;
  }
  nav li span:before {
    content: "\A" ;
    white-space: normal;
  }
}
/* 501px以上 */
@media (min-width: 501px) {
  .mobileOnly {
    display: none !important;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  .mobileOnly{
    display: block;
  }
  .mobileIcons{
    width: 100%;
  }
  .mobileIcons a{
    display: inline-block !important;
	width: 20%;
  }
  .mobileIcons i{
    font-size: 2rem;
  }
}

/* ------------------------- トップメインのスライド */
.flexslider {
  position: relative;
}

/* 500px以下 */
@media (max-width: 500px) {
  .flexslider {
    height: 234px;
    overflow: hidden;
    position: relative;
  }
  .flexslider .slides img{
    position: absolute;
    top: 50%;
    left: -20%;
    /*-webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
    width: 150% !important;
    height: auto;
  }
}

/* ------------------------- ニュース */
.newsArea{
  width: 100%;
  margin: 0 auto;
  padding: 3px 0;
  background-color: #000;
  color: #FFF;
  text-align: left;
}
.newsContents{
  display: table;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.newsContents div{
  display: table-cell;
  vertical-align: top;
}
.newsContents div h2{
  width: 30px;
}
.newsContents div.ticker {
  width: 90%;
  font-size: 0.9rem;
}
.newsContents div.ticker a:hover{
  color: #7A7A7B;
}
.newsBtn a{
  border: 1px solid #FFF;
  padding: 0 5px;
  font-size: 0.9rem;
}
.newsBtn a:hover{
  color: #7A7A7B;
  border: 1px solid #7A7A7B;
}
.newsContents a{
  color: #FFF;
}

/* 1000px以下 */
@media (max-width: 1000px) {
  .newsContents{
    padding: 0 2em;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* 767px以下 */
@media (max-width: 767px) {
  .newsContents{
    padding: 0 1em;
  }
  .newsContents div{
    display: block;
    width: 100%;
    text-align: center;
  }
  .newsContents div h2,
  .newsContents div.ticker{
    width: 100%;
  }
  .newsContents div.ticker span{
    display: none;
  }
  .newsBtn a{
    padding: 0 20px;
  }
}

/* ------------------------- ニュースティッカー */
.ticker {
  padding: 10px;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}
.ticker ul {
  width: 100%;
  position: relative;
}
.ticker ul li {
  width: 100%;
  display: none;
}

/* ------------------------- コンセプト */
section.conseptArea{
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FFF;
}
.conseptContents{
  display: table;
  width: 100%;
  max-width: 1000px;
  margin: 4em auto;
}
.conseptText{
  display: table-cell;
  vertical-align: top;
  width: auto;
}
.conseptImgL{
  display: table-cell;
  vertical-align: bottom;
  width: 300px;
  padding: 4em 1em 0 4em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.conseptImgR{
  display: table-cell;
  vertical-align: top;
  width: 300px;
  padding: 0 0 2em 2em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.conseptImgL img,
.conseptImgR img{
  width: 100%;
}
.conseptText h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  font-weight: normal;
}
.conseptText h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(
135deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(
-45deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* 1000px以下 */
@media (max-width: 1000px) {
  .conseptText{
    padding-left: 1em;
  }
  .conseptImgL{
    display: none;
  }
}
/* 767px以下 */
@media (max-width: 767px) {
  .conseptText,
  .conseptImgR{
    display: block;
	padding: 0 1em;
  }
  .conseptImgR{
    margin: 0 auto;
    margin-top: 3em;
  }
  .conseptText h2{
  text-align: center;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
.conseptText .moreBtn a{
  width: 100%;
    font-size: 1.3em;
    padding: 0.5em 2em !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}

/* ------------------------- サロンメニュー */
section.salonmenuArea{
  width: 100%;
  margin: 0 auto;
  padding: 4em 0;
  background-color: #f5f5f5;
}
.salonmenuText h2{
  display: inline-block;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  font-weight: normal;
}
.salonmenuText h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.salonmenuContents{
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 4em;
}
.salonmenuContents:after{
  content: "";
  display: block;
  clear: both;
}
.salonmenuArea .first .salonmenuText {
  float: left;
  width: 43%;
}
.salonmenuArea .first .salonmenuImg {
  float: right;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-left: -50%;
  padding-left: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.salonmenuArea .second .salonmenuText {
  float: right;
  width: 43%;
}
.salonmenuArea .second .salonmenuImg {
  float: left;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-left: -50%;
  padding-left: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.salonmenuImg img{
  width: 100%
}
/* 1000px以下 */
@media (max-width: 1000px) {
  .salonmenuArea .first .salonmenuText{
    padding-left: 1em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .salonmenuArea .second .salonmenuText{
    padding-right: 1em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* 767px以下 */
@media (max-width: 767px) {
  .salonmenuArea .first .salonmenuText,
  .salonmenuArea .second .salonmenuText{
    float: none;
    width: 100%;
  }
  .salonmenuArea .first .salonmenuImg,
  .salonmenuArea .second .salonmenuImg{
    float: none;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
	margin-top: 2em;
	padding: 0 1em;
  }
  .salonmenuArea .first .salonmenuText{
    padding-right: 1em;
  }
  .salonmenuArea .second .salonmenuText{
    padding-left: 1em;
  }
  .salonmenuImg img{
    width: 100%
  }
}

/* 425px以下 */
@media (max-width: 425px) {
  .salonmenuArea .first .salonmenuImg,
  .salonmenuArea .second .salonmenuImg{
    height: 235px;
  }
}


/* ------------------------- インスタグラム */
section.instagramArea{
  width: 100%;
  margin: 0 auto;
  padding: 4em 0;
  background-color: #FFF;
}
.instagramContents{
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 4em;
}
.instagramContents ul:after{
  content: "";
  display: block;
  clear: both;
}
.instagramContents ul{
  width: auto;
  height: auto;
}
.instagramContents li{
  float: left;
  max-width: 33.3333%;
  height: 255px;
  overflow: hidden;
}
.instagramContents li img{
  width: 100%;
}

/* 1000px以上 */
@media (min-width: 1000px) {
  .instagramContents ul{
    width: 1000px;
    height: 200px;
    overflow: hidden;
  }
  .instagramContents li{
    float: left;
    max-width: 20%;
  }
}
/* 425px以下 */
@media (max-width: 435px) {
  .instagramContents li{
    height: 141px;
  }
}
/* 400px以下 */
@media (max-width: 400px) {
  .instagramContents li{
    height: 133px;
  }
}
/* 376px以下 */
@media (max-width: 376px) {
  .instagramContents li{
    height: 124px;
  }
}
/* 320px以下 */
@media (max-width: 320px) {
  .instagramContents li{
    height: 106px;
  }
}

.instagramBtn{
  text-align: center;
}
.instagramBtn a{
  color: #FFF;
}
.instagramBtn i{
  width: 34px;
  height: 40px;
  padding: 0.2em 0.3em;
  margin-top: 1em;
  border-radius: 5em;
  font-size: 2.5rem;
  background: #dcb58f;
}

/* ------------------------- クーポンエリア */
section.couponArea{
  /*min-height: 400px;*/
  padding: 4em 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;    
}
.couponArea.couponBg{
  background-image: url(../images/bg_top.jpg);
  /*color: transparent !important;
  text-indent: -10000px !important;
  overflow: hidden !important;*/
}
.couponBox{
  max-width: 1000px;
  margin: 0 auto;
  padding: 4em;
  background:rgba(255,255,255,0.7);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
ul.couponTop{
  display: table;
  width: 100%;
}
.couponTop li{
  display: table-cell;
  width: 50%;
  padding: 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.couponTop li img{
  width: 100%;
}

/* 768px以下 */
@media (max-width: 768px) {
  .couponBox{
    padding: 4em 1em;
	margin: 1em;
  }
}

/* 435px以下 */
@media (max-width: 435px) {
  .couponTop li{
    display: block;
	width: 100%;
	padding: 0;
  }
  .couponTop li:first-child{
	padding-bottom: 1em;
  }
}

/* ------------------------- ABOUT US page */
.aboutText{
  max-width: 1000px;
  margin: 0 auto;
}
.aboutContents{
  margin: 3em auto;
}
.aboutText h2{
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  font-weight: normal;
}
.aboutText h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.aboutText h3{
  color: #d49b69;
}
.aboutOwner h3{
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
  color: #d49b69;
}
.aboutImg:after{
  content: "";
  display: block;
  clear: both;
}
.aboutImg img{
  float: left;
  margin: 2em 0;
  max-width: 33.3333%;
}
.aboutText p span{
  border-bottom: 1px dotted #d49b69;
  font-weight: bold;
  color: #d49b69;
}
.aboutOwner{
  margin-top: 7em;
  background-color: #fbf3ec;
}
.aboutOwner .ownerImg{
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  height: 260px;
}
.aboutOwner .ownerImg img{
  position: absolute;
  max-width: 100%;
  top: -80px;
}
.aboutOwner .ownerImg div{
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 1.2em;
  text-align: center;
  color: #d49b69;
}
.aboutOwner .ownerImg div span{
  font-size: 0.8em;
  padding-left: 1em;
}
.aboutOwner p,
.aboutText p{
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 0;
}
dl.saloninfo{
  display: table;
  padding: 1em 0;
}
.saloninfo dt{
  display: table-cell;
  vertical-align: top;
  color: #d49b69;
  font-weight: bold;
  padding-right: 15px;
  white-space: nowrap;
}
.saloninfo dd{
  display: table-cell;
  vertical-align: top;
}

/* 1000px以下 */
@media (max-width: 1000px) {
  .aboutText,
  .aboutOwner p{
	padding-left: 2em;
	padding-right: 2em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  .aboutContents{
    margin: 1em auto;
  }
  .aboutText,
  .aboutOwner p{
    padding-left: 1em;
	padding-right: 1em;
  }
  .aboutImg img{
    max-width: 50%;
	margin: 0;
  }
  .aboutImg img:last-child{
    display: none;
  }
  .saloninfo dt{
    display: block;
	width: 100%;
  }
  .saloninfo dd{
    display: block;
	width: 100%;
  }
}

/* ------------------------- SALON MENU page */
.menuNav:after{
  content: "";
  display: block;
  clear: both;
}
ul.menuNav{
  margin-top: 2em;
  margin-bottom: 1em;
}
.menuNav li{
  float: left;
  text-align: center;
  line-height: 2.8;
  border: 1px solid #adadad;
  margin: 0.1%;
  width: 32.5%;
}
.menuNav li a{
  display: block;
  color: #838385;
}
.menuNav li a:hover{
  background-color: #efefef;
  color: #bbbbbb;
}
/* 1000px以下 */
@media (max-width: 1000px) {
  ul.menuNav{
    margin-left: 10px;
  }
}

.menuArea {
  padding-bottom: 2em;
}
.menuTitle h2 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 1rem;
  margin: 1rem 0 2rem 0;
  color: #fff;
  font-size: 1.3rem;
  background: #D59C69;
  font-family: "Sawarabi Mincho";
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.menuTitle h2:after {
  position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #D59C69 transparent transparent transparent;
}
.menuTitle h3{
  display: block;
  position: relative;
  padding: 0 0.5em 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "Sawarabi Mincho";
}
.menuTitle h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.menuTitle h3 i{
  margin-right: 5px;
}
.menuArea img{
  width: auto;
  height: 200px;
  margin: 0 auto;
  display: block;
}
.menuArea .moreBtn,
.cosmeticsArea .moreBtn{
  display: inline-block;
  margin: 2em 0px;
  text-align: center;
}
.menuArea .moreBtn a,
.cosmeticsArea .moreBtn a{
  display: inline-block;
  line-height: 3;
  padding: 0 4em;
  color: #FFF;
  background-color: #d59c69;
  position: relative;
  text-decoration: none;
  transition: .4s;
}
.menuTitle dl:nth-child(odd){
  background-color: #f7f7f7;
}
.menuTitle dl:last-child{
  border-bottom: 1px dotted #a3a3a3;
}
.menuList dl,
.menuListLittle dl{
  display: table;
  width: 100%;
  padding: 1em;
  border-top: 1px dotted #a3a3a3;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.menuList dt{
  display: table-cell;
  width: 20%;
  vertical-align: middle;
  line-height: 1.5;
}
.menuList dd:nth-child(2){
  display: table-cell;
  width: auto;
  line-height: 1.5;
  padding: 0 1em;
  vertical-align: middle;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.menuList dd:last-child{
  display: table-cell;
  width: 20%;
  text-align: right;
  vertical-align: middle;
}
.menuListLittle dt{
  display: table-cell;
  width: 80%;
  vertical-align: middle;
  line-height: 1.5;
}
.menuListLittle dd{
  display: table-cell;
  width: 20%;
  text-align: right;
  vertical-align: middle;
}
.photoEye{
  max-width: 400px;
  width: 100%;
  height: auto !important;
}

.titleSub_Line{
  display: block;
  position: relative;
  padding: 0 0.5em 0.5em;
  margin-bottom: 2em;
  font-size: 1.2rem;
  font-weight: normal;
}
.titleSub_Line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #dcb58f, #dcb58f 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.titleSub_Line i{
  margin-right: 5px;
}


/* 1000px以下 */
@media (max-width: 1000px) {
  .menuArea {
    padding-right: 10px;
    padding-left: 10px;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  ul.menuNav{
    margin-left: 1em;
    margin-right: 1em;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .menuNav li{
    margin: 0.1%;
    width: 49%;
  }
  .menuList dt,
  .menuListLittle dt{
  display: block;
  width: 100%;
  }
  .menuList dd:nth-child(2){
    display: block;
    width: 100%;
    padding: 0;
  }
  .menuList dd:last-child{
    display: block;
    width: 100%;
  }
  .menuListLittle dd{
    display: block;
    width: 100%;
  }
  .menuArea img{
    width: 100%;
	height: auto;
  }
}

/* ------------------------- 取り扱い商品ページ */
.cosmeticsArea h2 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 1rem;
  margin: 1rem 0 2rem 0;
  color: #fff;
  font-size: 1.3rem;
  background: #5C5C5E;
  font-family: "Sawarabi Mincho";
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.cosmeticsArea h2:after {
  position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #5C5C5E transparent transparent transparent;
}
.cosmeticsList dl{
  display: table;
  width: 100%;
  padding: 1em;
  border-top: 1px dotted #a3a3a3;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.cosmeticsList dl:nth-child(odd){
  background-color: #f7f7f7;
}
.cosmeticsList dl:last-child{
  border-bottom: 1px dotted #a3a3a3;
}
.cosmeticsList dt{
  display: table-cell;
  width: 150px;
  vertical-align: top;
}
.cosmeticsList dt img{
  width: 100%;
}
.cosmeticsList dd{
  display: table-cell;
  width: auto;
  vertical-align: top;
  padding-left: 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* 1000px以下 */
@media (max-width: 1000px) {
  .cosmeticsArea {
    padding-right: 10px;
    padding-left: 10px;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  .cosmeticsList dt {
    width: 100px;
  }
  .cosmeticsList dt{
    display: block;
    width: 100%;
	text-align: center;
	margin-bottom: 10px;
  }
  .cosmeticsList dt img{
    width: 150px;
  }
  .cosmeticsList dd{
    display: block;
    padding-left: 0;
  }
}

/* ------------------------- クーポンページ */
.couponList{
  border: 1px dotted #9d9d9d;
 }
.couponList h2{
  margin: 3px;
  font-weight: bold;
  background-color: #f1f1f1;
}
.couponList h2 span{
  display: inline-block;
  color: #FFF;
  font-size: small;
  padding: 0 10px;
  margin-right: 10px;
  background-color: #dcb58f;
}
.couponList dl{
  display: table;
  padding: 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.couponList dt{
  display: table-cell;
  vertical-align: top;
  width: auto;
}
.couponList dt img{
  max-width: 300px;
}
.couponList dd{
  display: table-cell;
  vertical-align: top;
  width: auto;
  padding: 0 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.price{
  color: #D70003;
  font-weight: bold;
  font-size: 1.4rem;
}
.price span:first-child{
  font-weight: normal;
  font-size: 0.9rem;
  padding: 0 5px;
  margin-right: 5px;
  border: 1px solid #D70003;
}
.price span:last-child{
  font-weight: normal;
  font-size: 0.9rem;
}
/* 1000px以下 */
@media (max-width: 1000px) {
  .couponList {
    margin-right: 10px!important;
    margin-left: 10px!important;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  .couponList dt{
    display: block;
    width: 100%;
	text-align: center;
	margin-bottom: 1em;
  }
  .couponList dt img{
    width: 100%;
  }
  .couponList dd{
    display: block;
    padding: 0;
  }
.couponList h2 span{
    display: block;
    padding: 0;
    margin-right: 0;
    text-align: center;
  }
}

/* ------------------------- 個別ページ */
.anotherTitle{
  width: 100%;
  padding: 2.6rem 2% 2.4rem;
  background-color: #f5f5f5;
  border-top: 5px double #fff;
  border-bottom: 5px double #fff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.anotherTitle div{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.anotherTitle h1{
  font-size: 1.65rem;
  font-family: 'Libre Baskerville', serif;
  letter-spacing: 0.15rem;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}
.anotherTitle span {
  font-size: 1rem;
  letter-spacing: 0.15rem;
  padding-left: 15px;
  font-weight: normal;
}
.anotherTitle span:before {
  content: "/";
  padding-right: 10px;
}
.anotherArea h2{
  font-size: 1.2rem;
  font-weight: normal;
  padding: 1em;
  margin-bottom: 2em;
  border-top: 4px double #5a5a5a;
  border-bottom: 4px double #5a5a5a;
}
.anotherArea h3 {
  display: inline;
  margin-bottom: 10px;
  background: linear-gradient(transparent 70%, rgba(217, 176, 255, 0.8) 70%);
}
.imgBox{
  text-align: center;
  margin: 2em 0;
}
.imgBox img{
  max-width: 500px;

}

/* ------------------------- 新着ページ */
.day{
  text-align: right;
}

/* ------------------------- アクセスページ */
.map{
  text-align: center;
}
.map img{
  max-width: 500px;
  width: 100%;
}

/* ------------------------- バナーエリア */
section.bnrArea{
  width: 100%;
  margin: 0 auto;
  padding: 2em 0;
  background-color: #FFF;
  
}
.bnrBox{
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em;
  overflow: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.bnrBox ul:after{
  content: "";
  display: block;
  clear: both;
}
.bnrBox ul{
  width: 100%;
}
.bnrBox li{
  float: left;
  width: 50%;
}
.bnrBox li:first-child{
  padding-right: 0.5em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.bnrBox li:last-child{
  padding-left: 0.5em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.bnrBox li img{
  width: 100%;
  border: 1px solid #d5d5d5;
}
/* 767px以下 */
@media (max-width: 767px) {
  section.bnrArea {
    padding: 0;
  }
  .bnrBox li{
    float: none;
    width: 100%;
  }
  .bnrBox li:first-child,
  .bnrBox li:last-child{
    padding: 0;
	padding-bottom: 1em;
  }
}

/* ------------------------- アクセスエリア */
section.accessArea{
  width: 100%;
  margin: 0 auto;
  padding: 3em 0;
  color: #FFF;
  background-color: #333;
  
}

/* ------------------------- フッターエリア */
footer.footArea{
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 2em;
  color: #FFF;
  background-color: #333;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
footer.footArea a{
  color: #FFF;
}
.footArea .footContents{
  max-width: 1000px;
  margin: 0 auto;
  overflow: auto;
}
.footArea .footContents:after{
  content: "";
  display: block;
  clear: both;
}
.footArea .footLogo{
  float: left;
  width: 15%;
}
.footArea .footLogo img{
  max-width: 120px;
}
.footArea .footTxt{
  float: right;
  width: 85%;
  margin-left: -15%;
  padding-left: 15%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.footArea .footTxt dt{
  width: 100%;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-size: large;
  display: inline-block;
  position: relative;
}
.footArea .footTxt dt:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(
135deg, #FFF, #FFF 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(
-45deg, #FFF, #FFF 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footArea .footTxt dt span{
  font-size: medium;
  color: #000;
  background-color: #FFF;
  border-radius: 1em;
  padding: 0.2em 1em;
  margin-right: 1em;
}
.footArea .footTxt dd{
  font-size: larger;
  line-height: 2em;
}
.footArea .footTxt dd i{
  background-color: #FFF;
  color: #333;
  border-radius: 3px;
  padding: 4px 0;
  width: 33px;
  text-align: center;
  font-size: x-large;
  margin-right: 0.5em;
}
.copy{
  font-size: small;
  margin-top: 4em;
  padding-bottom: 2em;
}
.copy p{
  text-align: center;
  color: #707070;
}
.copy i {
  background-color: #FFF;
  color: #333;
  border-radius: 3px;
  padding: 4px 0;
  width: 33px;
  text-align: center;
  font-size: x-large;
  margin-right: 0.3em;
}

/* 600px以下 */
@media (max-width: 600px) {
  .footArea .footLogo {
    float: none;
    width: 100%;
    text-align: center;
  }
  .footArea .footLogo img {
    max-width: 100px;
  }
  .footArea .footTxt {
    float: none;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    margin-top: 2em;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  footer.footArea{
    padding-bottom: 2em;
  }
}

/* ------------------------- 下層フッターエリア */
footer.footArea2nd{
  width: 100%;
  margin: 0 auto;
  color: #FFF;
  background-color: #333;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.footArea2nd .footContents{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.footArea2nd .footLogo img{
  max-width: 100px;
  padding: 2em 0;
}
.footArea2nd .snsList ul:after{
  content: "";
  display: block;
  clear: both;
}
.footArea2nd .snsList li{
  float: left;
}
.footArea2nd .snsList{
  margin: 0 auto;
  width: 103px;
}
.footArea2nd .snsList li a{
  color: #FFF;
}
.footArea2nd .snsList li i{
  background-color: #FFF;
  color: #333;
  border-radius: 3px;
  padding: 2px 0;
  width: 29px;
  text-align: center;
  font-size: x-large;
  margin-right: 0.3em;
}
.footArea2nd .snsList li:last-child i{
  margin-right: 0;
}



/* ------------------------- スマホ用予約ボタン */
/* 501px以上 */
@media (min-width: 501px) {
  .reservationArea{
    display: none;
  }
}
/* 500px以下 */
@media (max-width: 500px) {
  .reservationArea{
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 99;
    background-color: #D49B75;
	opacity: 0;
	animation: BtoT 1s ease 3s forwards;
	-webkit-animation: BtoT 1s ease 3s forwards;
  }
  .reservationBox{
    display: table;
    width: 100%;
  }
  .reservationBox div{
    display: table-cell;
    width: 50%;
  }
  .reservationBox button{
  	font-family: inherit;
	font-size: inherit;
    width: 100%;
    padding: 1.5em 0;
    text-align: center;
    border: none;
    color: #FFF;
    background-color: #D49B75;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  }
  .reservationBox i{
    margin-right: 5px;
  }
  .reservationBox div:nth-child(1){
    border-right: 1px solid #FFF;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
@keyframes BtoT {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(20px);/* Y軸方向に20px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@-webkit-keyframes BtoT {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}















