@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,700");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700&display=swap");
div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, span, p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol, dl, li, dt, dd {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
}

.selectsalon {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fef2ff;
  background: -webkit-linear-gradient(110deg, #fef2ff 0%, white 50%, #e4faff 100%);
  background: -o-linear-gradient(110deg, #fef2ff 0%, white 50%, #e4faff 100%);
  background: linear-gradient(340deg, #fef2ff 0%, white 50%, #e4faff 100%);
}

@media screen and (max-width: 479px) {
  .selectsalon {
    padding: 2em;
  }
}

.selectsalon .inner {
  max-width: 500px;
}

.selectsalon .inner img {
  width: 100%;
}

.selectsalon .inner a {
  display: block;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 0.4em;
}

.selectsalon .inner a:hover {
  opacity: 0.7;
}

.selectsalon .inner .on_plusd {
  margin-bottom: 2em;
}

.selectsalon .inner .on_yomu {
  margin-bottom: 2em;
}

.bsec {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bsec .content {
  margin: auto;
  text-align: center;
}

.stage1 {
  background: #fff;
  position: relative;
  overflow: hidden;
  -webkit-animation: fadein 1.5s;
  animation: fadein 1.5s;
}

.stage1 .bg {
  background: url(../img/plusd_himg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 58vh;
  z-index: 0;
  -webkit-animation: bgslide 6s ease forwards;
  animation: bgslide 6s ease forwards;
  opacity: 0;
}

.stage1 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 400px;
  height: 42vh;
  z-index: 10;
  background: #fff;
  padding: 0;
  margin: auto;
}

.stage1 .content .inner {
  position: relative;
  top: -170px;
}

@media screen and (max-width: 479px) {
  .stage1 .content .inner {
    top: -120px;
  }
}

.stage1 h1 {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .stage1 h1 {
    width: auto;
  }
}

.stage1 h1 img {
  max-width: 300px;
}

@media screen and (max-width: 479px) {
  .stage1 h1 img {
    max-width: 210px;
  }
}

.stage1 h1 span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .05em;
  color: #666;
  margin-top: 20px;
}

.stage1 .btn_reserve {
  margin: 40px 0 0 0;
}

@media screen and (max-width: 479px) {
  .stage1 .btn_reserve {
    padding: 0 2em;
    margin: 30px 0 0 0;
  }
}

.stage1 .btn_reserve a {
  background: #eee;
  position: relative;
  color: #444;
  display: block;
  padding: 1em 3.5em;
  text-align: center;
  border-radius: .5em;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  font-size: 16px;
  letter-spacing: .2em;
}

@media screen and (max-width: 479px) {
  .stage1 .btn_reserve a {
    font-size: 15px;
  }
}

.stage1 .btn_reserve a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.stage1 .btn_reserve a:hover {
  opacity: .8;
}

.stage1 .btn_reserve a span {
  display: block;
  font-size: 0.6em;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bgslide {
  0% {
    background-position: 0 center;
    opacity: 1;
  }
  100% {
    background-position: 40% center;
    opacity: .7;
  }
}

@keyframes bgslide {
  0% {
    background-position: 0 center;
    opacity: 1;
  }
  100% {
    background-position: 40% center;
    opacity: .7;
  }
}

.stage2 {
  background: #fff;
  position: relative;
}

.stage2 .content {
  text-align: center;
}

.stage2 .content a {
  background: #fcf1fc;
  background: -webkit-gradient(linear, left top, right top, color-stop(15%, #fcf1fc), color-stop(95%, #cbf6ff));
  background: -webkit-linear-gradient(left, #fcf1fc 15%, #cbf6ff 95%);
  background: -o-linear-gradient(left, #fcf1fc 15%, #cbf6ff 95%);
  background: linear-gradient(90deg, #fcf1fc 15%, #cbf6ff 95%);
  display: block;
  padding: 2em;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #555;
}

.stage2 .content a span {
  background: url(../img/icon_insta_mono.png) no-repeat;
  background-size: contain;
  padding: .2em 0 .2em 2.3em;
}

.shopinfo {
  background: #444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #eee;
  padding: 5em 1em;
}

@media screen and (max-width: 767px) {
  .shopinfo {
    padding: 3em 1.5em;
  }
}

@media screen and (max-width: 479px) {
  .shopinfo {
    padding: 3em 0 0 0;
  }
}

.shopinfo .summary {
  padding-right: 5%;
  margin-bottom: 3em;
}

.shopinfo .gmap {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .shopinfo .gmap {
    width: 100%;
  }
}

.shopinfo .gmap iframe {
  height: 300px;
  border-radius: .5em;
  vertical-align: bottom;
}

@media screen and (max-width: 479px) {
  .shopinfo .gmap iframe {
    height: 300px;
    border-radius: 0;
  }
}

.shopinfo h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 34px;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  padding-bottom: .5em;
  margin-bottom: 1.5em;
}

.shopinfo h2:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 1.7em;
  height: 1px;
  background: #eee;
}

.shopinfo .infoblock {
  max-width: 500px;
  border-bottom: solid 1px #555;
  padding: .7em .7em;
  margin: auto auto .7em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.shopinfo .infoblock h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 18px;
  width: 6em;
}

@media screen and (max-width: 479px) {
  .shopinfo .infoblock h3 {
    font-size: 16px;
  }
}

.shopinfo .infoblock p {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 14px;
  color: #ccc;
}

@media screen and (max-width: 479px) {
  .shopinfo .infoblock p {
    font-size: 13px;
  }
}

.shopinfo .infoblock p a {
  color: #ccc;
  text-decoration: none;
}

footer {
  background: #222;
  padding: 2em 1em;
  text-align: center;
  margin: 0;
}

footer small {
  font-family: 'Roboto', sans-serif;
  color: #999;
}

.salon02 .bg {
  background: url(../img/yomu_himg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.salon03 .bg {
  background: url(../img/yorud_himg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

/*# sourceMappingURL=style_v2.css.map */