@charset "utf-8";

/*========================================================================================================================


  ◇◆◇ レイアウト ◇◆◇
  
  1.  header
  2.  nav
  3.  contents
  4.  footer
  99. parts  
  
  
========================================================================================================================*/

/*----------------------------------------------------------------------------------------------------

  1. header
  
----------------------------------------------------------------------------------------------------*/

header {
  width:100%;
  background:url(../image/header/bg.png) no-repeat center top;
  background-color:#fff;
}

#hd {
  width:100%;
  height:210px;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  text-align:left;
  position:relative;
  line-height:0;
  background:url(../image/header/sd.png?d=1227) no-repeat 522px bottom;
}

@media screen and (max-width:640px) {
  header {
    background-image:none;
    position:relative;
    z-index:999;
  }
  
  #hd {
    height:inherit;
    background:none;
    padding:1em;
    box-sizing:border-box;
  }
}


/*-----------------------------------------------------------------------------------
  タイトル
-----------------------------------------------------------------------------------*/

.hd-title {
  position:relative;
  font-size:100%;
}

.hd-title small {
  font-weight:normal;
  position:absolute;
  left:110px;
  top:25px;
}

.hd-title img {
  position:absolute;
  left:0;
  top:25px;
}

@media print {
  .hd-title:after {
    content:url(../image/header/logo_pc.png);
    position:absolute;
    left:0;
    top:25px;
  }
}

@media screen and (max-width:640px) {
  .hd-title small {
    position:inherit;
    left:inherit;
    top:inherit;
    display:inline-block;
    margin-bottom:0.5em;
  }

  .hd-title img {
    position:inherit;
    left:inherit;
    top:inherit;
    max-width:300px;
  }
}

@media (max-width:500px) {
  .hd-title small {
		display:inline-block;
		font-size:38.8%;
    font-size:2.4vw;
  }
  
  .hd-title img {
    max-width:250px;
  }
}

@media (max-width:400px) {
  .hd-title small {
		font-size:62.5%;
    font-size:2.4vw;
  }
	
  .hd-title img {
    max-width:220px;
  }
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width:400px) {
  .hd-title small {
    width:110%;
    -webkit-transform:scale(0.9);
    -webkit-transform-origin:0 0;
  }
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width:360px) {
  .hd-title small {
    width:120%;
    -webkit-transform:scale(0.8);
    -webkit-transform-origin:0 0;
  }
}


/* 3つのポイント ----------------------------------------*/

.hd-point {
  list-style:none;
  display:table;
  position:absolute;
  left:0;
  bottom:25px;
  line-height:0;
}

.hd-point li {
  display:table-cell;
  text-align:center;
}

@media screen and (max-width:640px) {
  .hd-point {
    display:none;
  }
}


/*-----------------------------------------------------------------------------------
  TEL・受付時間
-----------------------------------------------------------------------------------*/

.hdR {
  width:568px;
  position:absolute;
  right:0;
  bottom:25px;
  text-align:right;
  line-height:0;
}

.hd-ad {
  margin-bottom:1em;
}

.hd-time {
  max-width:398px;
}

@media screen and (max-width:640px) {
  .hdR {
    display:none;
  }
}

@media screen and (min-width:641px) {
  .insta-sp {
    display:none;
  }
}

@media screen and (max-width:640px) {
  .insta-sp {
	width: 60px;
	height: 60px;
	position: absolute;
    right: 3.75em;
    bottom: 0.25em;
    box-sizing: border-box;
    display:block;
  }
}

@media screen and (max-width:500px) {
  .insta-sp {
	width: 48px;
	height: 48px;
	position: absolute;
    right: 3.75em;
    bottom: 0.25em;
    box-sizing: border-box;
    display:block;
  }
}

/*-----------------------------------------------------------------------------------
  スマホ用Navボタン
-----------------------------------------------------------------------------------*/

.spNav-btn {
  display:none;
}

@media screen and (max-width:640px) {
  .spNav-btn {
    display:inline-block;
  }
}

.spNav-btn {
  text-align:center;
  position:absolute;
  right:1em;
  /*
  top:50%;
  margin-top:-15px;
  */
  bottom:1.25em;
  box-sizing:border-box;
}

.spNav-btn a,
.spNav-btn span,
.spNav-btn span:before,
.spNav-btn span:after {
	display:inline-block;
	transition:all .4s;
	box-sizing:border-box;
}
.spNav-btn a {
	position:relative;
	width:38px;
	height:30px;
}

.spNav-btn span,
.spNav-btn span:nth-of-type(2),
.spNav-btn span:nth-of-type(3) {
	position:absolute;
	left:0;
	width:100%;
	height:4px;
	background-color:#f76a8a;
	border-radius:4px;
}
.spNav-btn span:nth-of-type(1) {
	top:0;
}
.spNav-btn span:nth-of-type(2) {
	top:13px;
}
.spNav-btn span:nth-of-type(3) {
	bottom:0;
}

.spNav-btn.close span:nth-of-type(1) {
	-webkit-transform:translateY(13px) rotate(-315deg);
	transform:translateY(13px) rotate(-315deg);
}
.spNav-btn.close span:nth-of-type(2) {
	opacity:0;
}
.spNav-btn.close span:nth-of-type(3) {
	-webkit-transform:translateY(-13px) rotate(315deg);
	transform:translateY(-13px) rotate(315deg);
}

@media (max-width:500px) {
  .spNav-btn {
    /*margin-top:-13px;*/
  }

  .spNav-btn a {
    position:relative;
    width:32px;
    height:26px;
  }

  .spNav-btn span:nth-of-type(2) {
    top:11px;
  }
  
  .spNav-btn.close span:nth-of-type(1) {
    -webkit-transform:translateY(11px) rotate(-315deg);
    transform:translateY(11px) rotate(-315deg);
  }
  .spNav-btn.close span:nth-of-type(3) {
    -webkit-transform:translateY(-11px) rotate(315deg);
    transform:translateY(-11px) rotate(315deg);
  }
}

@media (max-width:400px) {
  .spNav-btn {
    /*margin-top:-11px;*/
  }

  .spNav-btn a {
    position:relative;
    width:27px;
    height:21px;
  }

  .spNav-btn span,
  .spNav-btn span:nth-of-type(2),
  .spNav-btn span:nth-of-type(3) {
    height:3px;
    border-radius:3px;
  }

  .spNav-btn span:nth-of-type(2) {
    top:9px;
  }
  
  .spNav-btn.close span:nth-of-type(1) {
    -webkit-transform:translateY(9px) rotate(-315deg);
    transform:translateY(9px) rotate(-315deg);
  }
  .spNav-btn.close span:nth-of-type(3) {
    -webkit-transform:translateY(-9px) rotate(315deg);
    transform:translateY(-9px) rotate(315deg);
  }
}


/*----------------------------------------------------------------------------------------------------

  2. nav
  
----------------------------------------------------------------------------------------------------*/

#glnav {
  width:100%;
  background-color:#f76a8a;
}

@media (min-width:641px) {
  #glnav ul {
    width:1100px;
    height:70px;
    margin-left:auto;
    margin-right:auto;
    list-style:none;
  }
  
  #glnav li {
    line-height:0;
    vertical-align:middle;
    float:left;
    box-sizing:border-box;
  }
  
  #glnav li {
    transition:background-color 0.3s ease;
  }
  
  #glnav li a {
    display:block;
    height:70px;
    display:table-cell;
    vertical-align:middle;
  }
  
  #glnav li img {
    border-left:1px solid #fa839e;
  }
  
  #glnav li:last-child img,
  #glnav li:hover img,
  #glnav li.glnav-active img  {
    border-right:1px solid #fa839e;
  }
  
  #glnav li:hover {
    background-color:#fa839e;
  }
  
  #glnav li.glnav-active + li img,
  #glnav li:hover + li img {
    margin-left:-1px;
  }
  
  #glnav .glnav-active,
  #glnav .glnav-active:hover {
    background-color:#fa839e;
  }
  
  #glnav .glnav-active img {
    border-left:1px solid #fa839e;
  }
}

.lte-ie8 #glnav ul {
  width:1100px;
  height:70px;
  margin-left:auto;
  margin-right:auto;
  list-style:none;
}
  
.lte-ie8 #glnav li {
  line-height:0;
  vertical-align:middle;
  float:left;
  box-sizing:border-box;
}
  
.lte-ie8 #glnav li {
  transition:background-color 0.3s ease;
}
  
.lte-ie8 #glnav li a {
  display:block;
  height:70px;
  display:table-cell;
  vertical-align:middle;
}
  
.lte-ie8 #glnav li img {
  border-left:1px solid #fa839e;
}
  
.lte-ie8 #glnav li:last-child img,
.lte-ie8 #glnav li:hover img  {
  border-right:1px solid #fa839e;
}
  
.lte-ie8 #glnav li:hover {
  background-color:#fa839e;
}
  
.lte-ie8 #glnav li:hover + li img {
  margin-left:-1px;
}
  
.lte-ie8 #glnav .glnav-active img,
.lte-ie8 #glnav .glnav-active:hover + li img {
  margin-left:0;
}
  
.lte-ie8 #glnav li:hover + .glnav-active {
  border-left:1px solid #fff;
  margin-left:-1px;
}
  
.lte-ie8 #glnav .glnav-active,
.lte-ie8 #glnav .glnav-active:hover {
  background-color:#fff;
}
  
.lte-ie8 #glnav .glnav-active img {
  border-left:1px solid #fff;
}
  
.lte-ie8 #glnav li.glnav-active img {
  border-right:none;
}
  
.lte-ie8 #glnav li:last-child.glnav-active img {
  border-right:1px solid #fff;
}

@media screen and (max-width:640px) {
  #glnav {
    display:none;
    position:absolute;
    top:0;
    left:0;
    z-index:999;
  }
  
  #glnav li {
    border-bottom:1px solid #fa839e;
    line-height:0;
  }
  
  #glnav li:last-child {
    border-bottom:0;
  }
  
  #glnav li a {
    display:block;
    padding:1.25em;
  }
}

@media (max-width:500px) {
  #glnav li img {
    max-width:inherit;
    height:22px;
  }
}

@media print {
  #glnav .glnav-active img {
    display:none;
  }
  
  #glnav li:nth-child(1).glnav-active a:before { content:url(../image/glnav/01_active.png); }
  #glnav li:nth-child(2).glnav-active a:before { content:url(../image/glnav/02_active.png); }
  #glnav li:nth-child(3).glnav-active a:before { content:url(../image/glnav/03_active.png); }
  #glnav li:nth-child(4).glnav-active a:before { content:url(../image/glnav/04_active.png); }
  #glnav li:nth-child(5).glnav-active a:before { content:url(../image/glnav/05_active.png); }
  #glnav li:nth-child(6).glnav-active a:before { content:url(../image/glnav/06_active.png); }
}


/*----------------------------------------------------------------------------------------------------

  3. contents
  
----------------------------------------------------------------------------------------------------*/

#ct {
  width:100%;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  padding-top:50px;
  padding-bottom:50px;
  text-align:left;
}

@media screen and (max-width:640px) {
  #ct {
    padding-top:2em;
    padding-bottom:0;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box;
  }

  .ct-ov {
    display:none;
    position:fixed;
    top:0;
    left:0;
    z-index:99;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.3);
  }
}

@media screen and (max-width:500px) {
  #ct {
    padding-top:1.5em;
  }
}

@media print {
  .ct-ov {
    display:none !important;
  }
}


/*----------------------------------------------------------------------------------------------------

  3-1. contents > side
  
----------------------------------------------------------------------------------------------------*/

#ct-side {
  width:260px;
  float:left;
}

@media screen and (max-width:640px) {
  #ct-side {
    display:none;
  }
}


/*-----------------------------------------------------------------------------------
  バナー
-----------------------------------------------------------------------------------*/

.side-bn {
  list-style:none;
}

.side-bn li {
  line-height:0;
  margin-bottom:20px;
}


/*-----------------------------------------------------------------------------------
  店舗案内
-----------------------------------------------------------------------------------*/

.side-salonInfo-title {
  text-align:center;
  background:url(../image/salonInfo-bn.png) repeat-y center top;
  position:relative;
  margin-top:65px;
  padding:0.75em 0;
  line-height:0;
}

.side-salonInfo-title:before {
  content:url(../image/salonInfo-top.png);
  position:absolute;
  left:0;
  top:-45px;
}

.side-salonInfo-warp {
  background:url(../image/salonInfo-bn.png) repeat-y center top;
  padding:0 8px 8px 8px;
  box-sizing:border-box;
}

.side-salonInfo {
  background-color:#fff;
  padding:4px;
  box-sizing:border-box;
}

.side-salonInfo p {
  padding:11px 11px 0.5em 11px;
}

.side-salonInfo dl {
  padding:0 11px 15px 11px;
  box-sizing:border-box;
  line-height:1;
}

.side-salonInfo dt,
.side-salonInfo dd {
  box-sizing:border-box;
}

.side-salonInfo dt {
  float:left;
  clear:both;
  width:6em;
  border-top:5px solid #fff;
  background-color:#fee6ec;
  color:#f76a8a;
  text-align:center;
  padding:0.15em 0;
}

.side-salonInfo dd {
  margin-left:5.75em;
  background-color:#fff;
  border-top:5px solid #fff;
  padding:0.35em 0 0.15em 0;
}

.side-salonInfo dt.side-salonInfo--tel {
  padding-bottom:0;
}

.side-salonInfo dd.side-salonInfo--tel {
  padding:0 0;
}

.side-salonInfo--btn {
  display:block;
  background-color:#fa839e;
  text-decoration:none;
  padding:0.65em 1em 0.55em 2.75em;
  transition:background-color 0.3s ease;
  position:relative;
  font-size:93.8%;
}

.side-salonInfo--btn:hover {
  background-color:#fb9cb1;
  text-decoration:none;
}

.side-salonInfo--btn,
.side-salonInfo--btn:visited,
.side-salonInfo--btn:hover {
  color:#fff;
}

.side-salonInfo--btn:before {
  content:url(../image/ic-nextR.png);
  position:absolute;
  left:0.85em;
  top:50%;
  margin-top:-8px;
}


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

.side-blog {
  margin-top:30px;
  margin-bottom:30px;
}

.no-backgroundsize .side-blog .headlineRose {
  background:url(../image/headlineRose-bg-ss.png) no-repeat right center;
}

.no-backgroundsize .side-blog .headlineRose-brown {
  background-color:#b09286;
}

.side-blog ul {
  list-style:none;
}

.side-blog li {
  border-left:1px solid #e8e0dc;
  border-right:1px solid #e8e0dc;
  border-bottom:1px solid #f2edeb;
  background-color:#fff;
  box-sizing:border-box;
}

.side-blog li:last-child {
  border-bottom:1px solid #e8e0dc;
}

.side-blog li a {
  display:block;
  padding:15px;
  box-sizing:border-box;
}

.side-blog li a:after {
  content:"";
  display:block;
  height:0;
  clear:both;
}

.side-blog li a,
.side-blog li a:hover {
  text-decoration:none;
  color:inherit;
}

.side-blog li img {
  float:left;
  transition:opacity 0.3s ease;
}

.side-blog li a:hover img {
  opacity:0.65;
}

.side-blog li p {
  margin-left:85px;
  transition:color 0.3s ease;
}

.side-blog li a:hover p {
  color:#e9b53b;
}


/*----------------------------------------------------------------------------------------------------

  3-1. contents > main
  
----------------------------------------------------------------------------------------------------*/

#ct-main {
  width:800px;
  float:right;
}

@media screen and (max-width:640px) {
  #ct-main {
    width:100%;
    float:none;
  }
}


/*-----------------------------------------------------------------------------------
  ページ見出し
-----------------------------------------------------------------------------------*/

.pg-headline {
  background:url(../image/pg-headline-bg.jpg) no-repeat center top;
  background-size:cover;
  background-color:#fddae2;
  line-height:0;
}

.pg-headline h2 {
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  text-align:left;
}

@media screen and (max-width:640px) {
  .pg-headline {
    padding-left:1em;
    padding-right:1em;
  }
}


/*----------------------------------------------------------------------------------------------------

  4. footer
  
----------------------------------------------------------------------------------------------------*/

footer {
  background-color:#fff;
}

.footer-line{
display: none;
}

@media screen and (max-width:640px) {
  footer {
    background:none;
  }
  .footer-line{
display: block;
}
}


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

.ft-reserve {
  width:100%;
  background-color:#f76a8a;
}

.ft-reserve ul {
  list-style:none;
  display:inline-block;
  margin-left:auto;
  margin-right:auto;
  vertical-align:bottom;
}

.ft-reserve li {
  display:inline-block;
  float:left;
  vertical-align:bottom;
}

.ft-reserve li img { vertical-align:bottom; }

.ft-reserve li.reserve { padding-top:20px; }

.ft-reserve li.reserve a {
  display:block;
  background-color:#fff;
  transition:background-color 0.3s ease;
}

.ft-reserve li.reserve a:hover {
  background-color:#f7a968;
}

@media screen and (max-width:640px) {
  .ft-reserve {
    border-top:1px solid #f2edeb;
    box-sizing:border-box;
    padding-top:0.5em;
    padding-left:1em;
    padding-right:1em;
    background-color:#fff;
  }
  
  .ft-reserve ul,
  .ft-reserve li {
    width:100%;
    display:block;
  }
  
  .ft-reserve li {
    float:none;
    margin-top:1em;
    border-width:1px;
    border-style:solid;
    border-radius:3px;
    overflow:hidden;
  }
  
  .ft-reserve li.tel { padding-top:0; background-color:#fff; border-color:#fb9cb1; }
  .ft-reserve li.reserve { padding-top:0; background-color:#f76a8a; border-color:#f76a8a; }
  .ft-reserve li.reserve a { background:none !important; }
}


/*---------------------------------------------------------------------------------*/

#ft {
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  text-align:left;
  padding-top:25px;
  padding-bottom:25px;
}

#ft h6 {
  font-size:100%;
  display:inline-block;
  line-height:0;
}

#ft h6 small {
  font-weight:normal;
  display:inline-block;
  margin-bottom:0.5em;
}

#ft h6 img {
  margin-bottom:-0.5em;
  max-width:270px;
}

.ft-ad {
  vertical-align:bottom;
  display:inline-block;
  margin-left:30px;
}

.ft-time {
  max-width:398px;
  float:right;
  margin-top:0.15em;
}

.copy {
  padding-top:1.25em;
  padding-bottom:1.25em;
  display:block;
  border-top:1px solid #f2edeb;
}

@media screen and (max-width:640px) {
  #ft {
    padding-top:1.5em;
    padding-bottom:1.5em;
    padding-left:1em;
    padding-right:1em;
    background-color:#fff;
  }
  
  #ft h6 {
    display:block;
    text-align:center;
  }
  
  #ft h6 small {
    width:100%;
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
    margin-bottom:0;
  }
  
  #ft h6:before {
    content:"";
    display:block;
    height:0;
    padding-top:7.8125%;
    margin-top:0.5em;
    background:url(../image/footer/point.png) no-repeat center top;
    background-size:contain;
  }
  
  .ft-ad {
    margin-left:0;
    display:block;
    text-align:center;
    padding-top:2em;
    padding-bottom:2em;
  }
  
  .ft-time {
    float:none;
    margin-top:0;
    max-width:100%;
  }
  
  .copy {
    background-color:#fff;
  }
}

@media screen and (max-width:500px) {
  #ft {
    padding-top:1em;
    padding-bottom:1em;
  }
  
  .ft-ad {
    padding-top:1.75em;
    padding-bottom:1.5em;
  }
  
  #ft h6 img {
    max-width:230px;
  }
}


/*-----------------------------------------------------------------------------------
  pagetop
-----------------------------------------------------------------------------------*/

@media screen and (min-width:641px) {
  .page-top {
    z-index:1000;
    position:fixed;
    right:15px;
    bottom:15px;
    display:inline-block;
    border-radius:60px;
    display:none;
    transition:bottom 0.3s ease;
  }
  
  .page-top a {
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    display:block;
    background-image:url(../image/footer/up.png);
    background-position:center center;
    background-repeat:no-repeat;
    background-color:#bea59b;
    text-align:center;
    width:60px;
    height:60px;
    border-radius:60px;
    transition:background-color 0.3s ease;
  }
  
  .page-top:hover a {
    background-color:#fa839e;
  }
  
  .cssanimations .page-top:hover {
    bottom:25px;
  }
}

@media screen and (max-width:640px) {
  .page-top {
    position:relative;
    display:block !important;
    padding-top:0.5em;
    border-top:1px solid #f2edeb;
  }
  
  .page-top a {
    display:block;
    text-decoration:none;
    padding:1em;
    color:inherit;
  }
  
  .page-top a:before {
    content:"";
    background:url(../image/footer/up_sp.png) no-repeat center top;
    background-size:contain;
    height:14px;
    display:block;
    text-align:center;
    line-height:0;
    margin-bottom:0.5em;
  }
}

@media screen and (max-width:500px) {
  .page-top a:before {
    height:12px;
  }
}


/*----------------------------------------------------------------------------------------------------

  99. parts
  
----------------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------
  見出し（バラ）
-----------------------------------------------------------------------------------*/

.headlineRose {
  background:url(../image/headlineRose-bg.png) no-repeat right center;
  background-size:contain;
  color:#fff;
  padding:0.5em 1em;
}

@media screen and (max-width:640px) {
  .headlineRose {
    padding:0.5em 0.75em;
  }
}

.no-backgroundsize .headlineRose {
  background:url(../image/headlineRose-bg-s.png) no-repeat right center;
}

.headlineRose-brown,
.no-backgroundsize .headlineRose-brown {
  background-color:#b09286;
}


/*-----------------------------------------------------------------------------------
  区切り線
-----------------------------------------------------------------------------------*/

.kLine {
  text-align:center;
  position:relative;
  line-height:0;
}

.kLine span {
  display:inline-block;
  padding:0 1em;
  z-index:2;
  position:relative;
  background-color:#fff;
}

.kLine:before,
.kLine:after {
  content:"";
  display:inline-block;
  width:100%;
  border-top:1px dotted #d5c4be;
  position:absolute;
  left:0;
  top:50%;
  z-index:1;
}

@media screen and (max-width:640px) {
  .kLine span {
    max-width:20%;
  }
}


/*-----------------------------------------------------------------------------------
  画像hover
-----------------------------------------------------------------------------------*/

@media (min-width:641px) {
  img.hvEfc,
  .hvEfc img {
    transition:opacity 0.3s ease;
  }
  
  img.hvEfc:hover,
  .hvEfc:hover img {
    opacity:0.65;
  }
}

