@charset "UTF-8";
body {
  color: #603A19;
  overflow-x: hidden;
  background: #FFFEFD;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  height: 100%;
  position: relative;
}

.font-md {
  font-size: 12px;
}

.font-lr {
  font-size: 19px;
}

.font-lg {
  font-size: 25px;
}

.kozuka_b {
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kozuka_h {
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #CB7F74;
  text-align: center;
  color: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 260px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#container {
  width: 100%;
  height: 100vh;
}

header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background: white;
  box-shadow: 0 3pt 10px #000000A3;
}
header.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  width: 120px;
}
header .main-nav {
  width: 170px;
  padding-top: 2px;
}

.bg-img {
  position: relative;
  z-index: -1;
  height: 800px;
  background-image: url(../img/bg-img_empfirst_salon.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.wrapper {
  margin: 0 auto;
  padding: 0 2%;
}

.content_wrapper {
  margin: 0 auto;
}

.title_warraper {
  text-align: center;
  width: 100%;
  margin: 20px auto 7px auto;
}

.center {
  text-align: center;
}

#phone .btnripple2 {
  /*波紋の基点とするためrelativeを指定*/
  /*波紋の形状*/
  position: fixed;
  z-index: 11;
  left: 75%;
  bottom: 115px;
  display: inline-block;
  background: #603A19;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  outline: none;
  box-shadow: 0 3pt 10px #000000A3;
  /*アニメーションの設定*/
  transition: all 0.3s;
  /*波形のアニメーション*/
}
#phone .btnripple2 img {
  position: absolute;
  top: 31%;
  left: 29%;
}
#phone .btnripple2::after, #phone .btnripple2::before {
  /*絶対配置で波形の位置を決める*/
  content: "";
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid #603A19;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  animation: 1s circleanime linear infinite;
}
#phone .btnripple2::before {
  animation-delay: 0.5s;
}
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
#phone .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

#footer-fixed {
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 2px;
  width: 100%;
}
#footer-fixed.footer-container {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}
#footer-fixed button {
  color: white;
  box-shadow: 0 3pt 10px #000000A3;
  border: none;
}
#footer-fixed button:focus {
  outline: 0;
}
#footer-fixed #line {
  margin-right: 30px;
  background: #603A19;
  padding: 20px 30px;
  border-radius: 5px;
}
#footer-fixed #fixform {
  padding: 20px 20px;
  border-radius: 5px;
  background: #CB7F74;
  box-shadow: 0 3pt 10px #000000A3;
}
#footer-fixed #fixform a {
  color: white;
}
#footer-fixed #fixform a:hover {
  text-decoration: none;
}

.reservation {
  padding: 5px 0 20px 0;
  background: #FFBFBD;
}
.reservation .btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.reservation .btn .reservationbtn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #CB7F74;
  border: none;
  padding: 12px;
  border-radius: 7px;
}
.reservation .btn .reservationbtn a {
  color: white;
  text-decoration: none;
}
.reservation .btn .reservationbtn span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.reservation .btn .reservationbtn:focus {
  outline: 0;
}
.reservation .btn .reservationbtn:hover {
  outline: none;
  text-decoration: none;
}
.reservation .btn .reservationbtn:hover a {
  color: #CB7F74;
}
.reservation .btn .reservationbtn:hover span {
  transform: none;
}

.priceimgwrapper {
  width: 100%;
  background: #CB7F74;
  padding: 10px 0 8px 0;
  pointer-events: none;
}

.small_price {
  padding-top: 10px;
}

.bg_price .textbox {
  background: #CB7F74;
  color: white;
  text-align: center;
}
.bg_price .textbox .title {
  padding: 15px 0 7px 0;
}
.consulting_imgs {
  width: 100%;
  pointer-events: none;
  margin: 10px 0;
}

.anxiety {
  position: relative;
  margin: 20px 0 0 0;
}
.anxiety .anxiety_title {
  text-align: center;
}
.anxiety .list {
  margin: 5px auto 0 auto;
  text-align: center;
  display: block;
}
.anxiety .list ul {
  padding-left: 0;
  list-style: disc;
  display: inline-block;
}
.anxiety .list ul li {
  text-align: left;
}

.solution {
  text-align: center;
}
.solution .solution_title {
  background: #CB7F74;
  color: white;
  padding: 10px 0;
}
.solution .solution_subtitle {
  margin-top: 20px;
}

.compare {
  text-align: center;
}

.merits .merits_card {
  display: flex;
  justify-content: center;
}
.merits .merits_card .card {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.trouble {
  margin-bottom: 20px;
}
.trouble .trouble_bg {
  width: 100%;
  pointer-events: none;
}
.trouble .troubletext {
  text-align: center;
  margin-top: 5px;
  padding: 10px 0;
  background: #CB7F74;
  color: white;
}

.card button {
  font-weight: 700;
  text-decoration: none;
  color: #603A19 !important;
}
.card button:hover {
  text-decoration: none;
}

.voice .swiper-container {
  width: 90%;
  padding-top: 10px;
  padding-bottom: 20px;
}
.voice .swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 200px;
}

.flow .swiper-container {
  width: 90%;
  padding-top: 10px;
  padding-bottom: 20px;
}
.flow .swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 200px;
}
.flow .swiper-wrapper {
  margin-bottom: 20px;
}
.flow .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.flow .swiper-pagination-bullet-active {
  color: #fff;
  background: #603A19;
}

.access .tablestyle {
  background: #CB7F74;
  padding: 15px 0 15px 0;
}
.access .tablestyle li {
  color: white;
  text-align: center;
}
.access .tablestyle li:hover {
  color: white;
  text-decoration: none;
}

footer {
  background: #CB7F74;
  text-align: center;
  padding: 30px 0;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:hover {
  color: white;
  text-decoration: none;
}

.thanks {
  height: 500px;
  position: relative;
}
.thanks p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 601px) {
  .bg-img .bg-txt {
    width: 45%;
  }
}

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