@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*==================================
style 
===================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  min-height: 100%;
  width: 100%;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.center {
  text-align: center;
}

.inner {
  width: 1050px;
  max-width: 100%;
  margin: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.flex {
  display: flex;
}

.flex_center {
  justify-content: center;
}

.flex_around {
  justify-content: space-around;
}

.flex_between {
  justify-content: space-between;
}

.flex_end {
  justify-content: flex-end;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.05);
  }
  40% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1.08);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.dokidoki {
  animation-name: dokidoki;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 1s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: linear;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  animation-iteration-count: infinite;
  /* アニメーションをループさせる */
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.fuwafuwa {
  animation-name: fuwafuwa;
  animation-delay: 0s;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 1050px) {
  .inner {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*==================================
main
===================================*/
.wrapper {
  overflow-x: hidden;
}

header {
  padding: 1% 2%;
}
header p {
  text-align: center;
  line-height: 1.5;
}
header p span {
  font-size: 120%;
  font-weight: 600;
  color: #f9776b;
}

.cv {
  margin-top: -8%;
  padding: 0 5%;
}
.mv {
  background-image: url(../img/mv_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  background-position: center;
  background-size: cover;
  padding-top: 2.5rem;
  padding-bottom: 6%;
  overflow: hidden;
}
.mv .mv_img {
  text-align: center;
  margin-top: 2rem;
  padding: 0 5%;
}
.mv .mv_img img {
  transform: translateX(1.5%);
}

.open_img {
  padding: 0 5%;
  margin-top: -6vw;
}

.price {
  padding: 2.5rem 0;
}

.bg01 {
  margin-top: -5vw;
  padding-top: 6%;
  background-image: url(../img/price_bg01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.bg02 {
  background-image: url(../img/price_bg02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.chosen {
  position: relative;
}
.chosen::after {
  content: "";
  width: 100%;
  height: 65%;
  max-height: 500px;
  background-color: #fdefef;
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  z-index: -1;
}

.nayami {
  position: relative;
  padding: 7rem 0 8rem;
  margin-top: 8rem;
  margin-bottom: 12rem;
}
.nayami::after {
  content: "";
  width: 88%;
  height: 100%;
  background-color: #f1edfe;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -10;
}
.nayami .nayami_wrap {
  margin-top: 10rem;
}
.nayami .nayami_block {
  margin-top: -7rem;
}
.nayami .nayami_block .nayami_babble {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(120px);
}
.nayami .nayami_block .nayami_img {
  width: 50%;
  text-align: center;
}
.nayami .nayami_block:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.nayami .nayami_block:nth-of-type(odd) .nayami_babble {
  transform: translateX(-120px);
}
.nayami .lumecca_block {
  border: 7px solid #ff776b;
  background: #fff;
  margin-top: 10rem;
  padding: 0 4% 4%;
  position: relative;
}
.nayami .lumecca_block::before {
  content: "";
  background: #ff776b;
  width: 100%;
  height: 26%;
  position: absolute;
  top: 0;
  left: 0;
}
.nayami .lumecca_block .lumecca_chach {
  margin-top: -7rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}
.nayami .lumecca_block .lumecca_img01 {
  position: relative;
}
.nayami .lumecca_block p {
  font-size: 3.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}
.nayami .lumecca_block p span {
  color: #ff776b;
}

.case {
  margin: 8rem auto 0;
  padding: 5rem 0;
  background: #ff776b;
  position: relative;
}
.case::before {
  content: "";
  width: 100%;
  height: 29px;
  background-image: url(../img/gold_line.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -16px;
  left: 0;
}
.case::after {
  content: "";
  width: 100%;
  height: 29px;
  background-image: url(../img/gold_line.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -16px;
  left: 0;
}
.case ul.flex {
  flex-wrap: wrap;
  margin-top: 6rem;
}
.case ul.flex li {
  width: 50%;
  margin-bottom: 3rem;
  text-align: center;
}
.case ul.flex li img {
  box-shadow: 5px 6px 11px 1px rgba(0, 25, 28, 0.15);
}

.kodawari {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.kodawari p {
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background: #ffefe6;
  padding: 5% 8%;
  margin: 4rem auto 5rem;
}
.kodawari p span {
  color: #cc0000;
}

.reason {
  overflow: hidden;
}
.reason .reason-wrap {
  background-image: linear-gradient(98deg, rgb(254, 210, 173) 1%, rgb(255, 228, 217) 48%, rgb(254, 210, 173) 100%);
  box-shadow: 8px 6px 7px rgba(127, 48, 76, 0.19);
  padding: 12rem 0 17rem;
  position: relative;
}
.reason .reason-wrap::before {
  content: "";
  display: block;
  width: 1040px;
  height: 40px;
  background-image: url(../img/reason_shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.reason .reason-block .txt {
  width: 47%;
}
.reason .reason-block .txt p {
  margin-top: 5rem;
  line-height: 1.6;
  font-weight: 300;
}
.reason .reason-block figure {
  width: 50%;
  text-align: right;
  position: relative;
  z-index: 1;
}
.reason .reason-block figure::after {
  content: "";
  display: block;
  width: 566px;
  height: 566px;
  background-image: url(../img/circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 15%;
  left: -18%;
  z-index: -1;
}
.reason .reason-block:nth-of-type(even) > .flex {
  flex-direction: row-reverse;
}
.reason .reason-block:nth-of-type(even) > .flex figure {
  text-align: left;
}
.reason .reason-block + .reason-block {
  margin-top: 10rem;
}

.voice {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.voice .voice-block-wrap {
  border: 7px solid;
  border-image: linear-gradient(to top, rgb(165, 196, 252) 0%, rgb(209, 195, 252) 35%, rgb(165, 196, 252) 100%) 1;
  margin-top: 8rem;
  padding: 5rem 3rem;
  position: relative;
}
.voice .voice-block-wrap .head-txt {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.voice .voice-block-wrap .icon {
  position: absolute;
  top: -80px;
  right: 4%;
  z-index: 1;
}
.voice .voice-block-wrap .txt {
  width: 50%;
  margin-top: 4rem;
}
.voice .voice-block-wrap .txt p {
  margin-top: 2.5rem;
  line-height: 1.6;
  font-weight: 500;
}
.voice .voice-block-wrap .txt p span {
  color: #ff776b;
}
.voice .voice-block-wrap figure {
  width: 50%;
  text-align: right;
  padding-left: 2%;
}
.voice .voice-block:nth-of-type(odd) .voice-block-wrap .flex {
  flex-direction: row-reverse;
}
.voice .voice-block:nth-of-type(odd) .voice-block-wrap .icon {
  top: -80px;
  left: 4%;
}
.voice .voice-block:nth-of-type(odd) .voice-block-wrap figure {
  text-align: left;
  padding-right: 2%;
  padding-left: 0;
}
.voice .voice-block:first-of-type .voice-block-wrap {
  margin-top: 5.5rem;
}

.note {
  padding-top: 5rem;
}
.note .inner {
  width: 1000px;
  max-width: 90%;
}
.note_wrap {
  background: #ffe4d9;
  box-shadow: 11px 11px 7px rgba(77, 78, 61, 0.13);
  padding: 4%;
}
.note_title {
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.note ul {
  list-style: disc;
  max-width: 900px;
  margin-top: 1.5rem;
}
.note ul li {
  line-height: 1.5;
  font-size: 2.6rem;
  margin-left: 4rem;
}
.note ul li + li {
  margin-top: 1.5rem;
}

.info {
  text-align: center;
  padding-top: 8rem;
}
.info dl {
  margin-top: 3.4rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.info dl dt {
  font-size: 2.6rem;
  font-weight: 600;
  color: #ff776b;
  border-top: 1px solid #ffe4d9;
  padding-top: 4rem;
  margin-bottom: 4rem;
  letter-spacing: 0.2em;
}
.info dl dd {
  padding-bottom: 4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.info dl dd:nth-of-type(1) {
  letter-spacing: 0.2em;
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 31.25%;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

footer {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

/*==================================
レスポンシブ 1050px
===================================*/
@media screen and (max-width: 1050px) {
  .mv .mv_img {
    margin-top: 1rem;
  }
  .open_img {
    margin-top: -6vw;
  }
  .nayami .lumecca_block::before {
    height: 48vw;
  }
  .nayami .lumecca_block p {
    font-size: 2.6rem;
  }
  .voice .voice-block-wrap .icon {
    width: 170px;
  }
  .voice .voice-block .ttl {
    width: 90%;
  }
}
/*==================================
レスポンシブ 768px
===================================*/
@media screen and (max-width: 768px) {
  .cv {
    width: 86%;
    margin: -8% auto 0;
  }
  header p {
    font-size: 2.666vw;
  }
  .nayami {
    position: relative;
    padding: 4rem 0;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .nayami .ttl {
    width: 80%;
    margin: auto;
  }
  .nayami .nayami_wrap {
    margin-top: 3rem;
  }
  .nayami .nayami_block {
    margin-top: 3rem;
    display: block;
  }
  .nayami .nayami_block .nayami_babble {
    width: 90%;
    margin-right: auto;
    transform: translateX(0);
  }
  .nayami .nayami_block .nayami_img {
    width: 65%;
    margin-left: auto;
  }
  .nayami .nayami_block:nth-of-type(odd) .nayami_babble {
    margin-left: auto;
    transform: translateX(0);
  }
  .nayami .nayami_block:nth-of-type(odd) .nayami_img {
    margin-right: auto;
    margin-left: initial;
  }
  .nayami .lumecca_block {
    border: 5px solid #ff776b;
    margin-top: 5rem;
    padding: 0 5% 5%;
  }
  .nayami .lumecca_block::before {
    height: 48vw;
  }
  .nayami .lumecca_block .lumecca_chach {
    margin-top: -6vw;
    margin-bottom: 2rem;
  }
  .nayami .lumecca_block p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .case {
    margin: 3rem auto 0;
  }
  .case .ttl {
    width: 60%;
    margin: auto;
  }
  .case ul.flex {
    display: block;
    margin-top: 2rem;
  }
  .case ul.flex li {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
  .kodawari {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .kodawari p {
    font-size: 1.8rem;
    padding: 5%;
    margin: 2rem auto;
  }
  .reason .reason-wrap {
    padding: 6rem 0;
  }
  .reason .reason-wrap::before {
    width: 100%;
  }
  .reason .reason-block > .flex {
    display: block;
  }
  .reason .reason-block .txt {
    width: 100%;
  }
  .reason .reason-block .txt p {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .reason .reason-block figure {
    width: 100%;
  }
  .reason .reason-block figure::after {
    width: 200px;
    height: 200px;
    top: initial;
    bottom: -5rem;
    left: 0;
  }
  .reason .reason-block:nth-of-type(even) figure {
    width: 100%;
  }
  .reason .reason-block:nth-of-type(even) figure::after {
    bottom: -4rem;
    left: initial;
    right: 0;
  }
  .reason .reason-block + .reason-block {
    margin-top: 5rem;
  }
  .reason .reason-block:nth-of-type(1) .ttl {
    width: 78%;
  }
  .reason .reason-block:nth-of-type(2) .ttl {
    width: 80%;
  }
  .reason .reason-block:nth-of-type(3) .ttl {
    width: 66%;
  }
  .voice {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .voice .voice-block-wrap {
    margin-top: 7rem;
    padding: 7% 5% 5%;
    position: relative;
  }
  .voice .voice-block-wrap::before {
    width: 40px;
    height: 40px;
  }
  .voice .voice-block-wrap::after {
    width: 40px;
    height: 40px;
  }
  .voice .voice-block-wrap > .flex {
    display: block;
  }
  .voice .voice-block-wrap .head-txt {
    width: 150px;
    top: -30px;
  }
  .voice .voice-block-wrap .head-txt:after {
    width: 120%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    right: initial;
  }
  .voice .voice-block-wrap .icon {
    top: -60px;
    right: 0;
    width: 100px;
  }
  .voice .voice-block-wrap .txt {
    width: 100%;
    margin-top: 2rem;
  }
  .voice .voice-block-wrap .txt p {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  .voice .voice-block-wrap figure {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .voice .voice-block:nth-of-type(odd) .voice-block-wrap::before {
    width: 40px;
    height: 40px;
  }
  .voice .voice-block:nth-of-type(odd) .voice-block-wrap::after {
    width: 40px;
    height: 40px;
  }
  .voice .voice-block:nth-of-type(odd) .voice-block-wrap .head-txt:after {
    left: 50%;
    right: initial;
  }
  .voice .voice-block:nth-of-type(odd) .voice-block-wrap .icon {
    top: -60px;
    left: 0;
    width: 100px;
  }
  .voice .voice-block:nth-of-type(odd) .voice-block-wrap figure {
    padding-right: 0;
    text-align: center;
  }
  .voice .voice-block:nth-of-type(1) .ttl {
    width: 81%;
    margin: 0 auto 0 0;
  }
  .voice .voice-block:nth-of-type(2) .ttl {
    width: 90%;
    margin: 0 auto 0 0;
  }
  .voice .voice-block:nth-of-type(3) .ttl {
    width: 96%;
    margin: 0 auto 0 0;
  }
  .note {
    padding-top: 3rem;
  }
  .note_wrap {
    padding: 7% 5%;
  }
  .note_title {
    font-size: 2.6rem;
  }
  .note ul {
    max-width: initial;
  }
  .note ul li {
    font-size: 1.8rem;
    margin-left: 2.5rem;
  }
  .info {
    text-align: center;
    padding-top: 6rem;
  }
  .info .logo {
    width: 70%;
    margin: auto;
  }
  .info .salon {
    font-size: 2.2rem;
  }
  .info dl {
    margin-top: 2rem;
  }
  .info dl dt {
    font-size: 1.8rem;
    padding-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }
  .info dl dd {
    padding-bottom: 2rem;
  }
  .info dl dd:nth-of-type(1) {
    letter-spacing: 0.05em;
  }
  .gmap {
    padding-bottom: 56.25%;
  }
  footer {
    font-size: 1.2rem;
  }
}