@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*body全体の初期スタイル調整*/
body {
  font-size: 1.6rem;
  font-family: "Noto Serif JP";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
@media screen and (max-width: 750px) {
  body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #fff;
}

a:hover,
a:active {
  color: #0588cd;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0;
  padding: 0;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5rem 0rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  margin: 0.5rem 0rem;
  padding: 0.3rem 0.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}
@media screen and (max-width: 750px) {
  h3 {
    font-size: 1.4rem;
  }
}

h4 {
  margin: 0.5rem 0rem;
  padding: 0.3rem 0.6rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  margin: 0.5rem 0rem;
  padding: 0.1rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 750px) {
  h5 {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------
hover・・・ボタンホバー効果
-------------------------------------------------------------*/
.c-btn:hover {
  opacity: 0.7;
}

.u-break {
  display: inline-block;
}

.u-PC {
  display: block !important;
}
@media screen and (max-width: 750px) {
  .u-PC {
    display: none !important;
  }
}

.u-SP {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .u-SP {
    display: block !important;
  }
}

/*--------------------------------------------------
ブラウザの幅を768px以下にすると電話発信のダイアログが出る
-----------------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.p-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 3px solid #2fb01d;
  overflow: auto;
}
@media screen and (max-width: 750px) {
  .p-header {
    border-bottom: 2px solid #2fb01d;
  }
}
.p-header__innr {
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-header__logo {
  width: 15%;
  margin: 8px;
  margin-right: 20%;
  margin-left: 16px;
}
@media screen and (max-width: 750px) {
  .p-header__logo {
    width: 20%;
    margin: 5px 5px 5px 16px;
  }
}
.p-header__otoiawase {
  width: 40%;
  margin: 12px;
}
@media screen and (max-width: 750px) {
  .p-header__otoiawase {
    display: none;
    width: 20%;
    margin: 4px 0px;
  }
}
.p-header__moushikomi {
  width: 30%;
  margin: 12px;
}
@media screen and (max-width: 750px) {
  .p-header__moushikomi {
    width: 50%;
    margin: 4px 8px 4px 0px;
  }
}
.p-header__img {
  width: 100%;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.p-main {
  background-color: #f2f2f2;
}

.p-article {
  background-color: #fff;
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-article {
    background-color: #fff;
    border-left: none;
    border-right: none;
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.p-fv {
  height: auto;
  background: #ecdec6;
  background-image: url(../images/first-view-background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
}
.p-fv__innr {
  max-width: 800px;
  margin: 0 auto;
}
.p-fv__img {
  width: 100%;
}

.p-fvBtm {
  height: auto;
  background: #ededed;
  background-image: url(../images/first-view-background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-fvBtm__innr {
  max-width: 800px;
  margin: 0 auto;
}
.p-fvBtm__img {
  width: 100%;
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.p-cta {
  width: 100%;
  position: relative;
  background: hsl(357, 78%, 72%);
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.p-cta__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/CTA-background3.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-cta__innr {
  max-width: 950px;
  width: 100%;
  margin: 0px auto 0px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-cta__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-cta__btn {
  position: absolute;
  width: 85%;
  left: 10.8%;
  bottom: 40%;
}
.p-cta__btn img {
  width: 92%;
}
@media screen and (max-width: 750px) {
  .p-cta__btn {
    width: 90%;
    left: 9.5%;
    bottom: 40%;
  }
  .p-cta__btn img {
    width: 90%;
  }
}
.p-cta__tel {
  position: absolute;
  width: 95%;
  left: 8.5%;
  bottom: 5%;
}
.p-cta__tel img {
  width: 87%;
}
@media screen and (max-width: 750px) {
  .p-cta__tel {
    width: 90%;
    left: 9.4%;
    bottom: 5.2%;
  }
  .p-cta__tel img {
    width: 90%;
  }
}

/*--------------------------------------------------
お悩みエリア
-----------------------------------------------------*/
.p-onayami {
  height: auto;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-onayami__innr {
  max-width: 800px;
  margin: 0 auto;
}
.p-onayami__img {
  width: 100%;
}

/*--------------------------------------------------
解決エリア
-----------------------------------------------------*/
.p-kaiketu {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-kaiketu__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-kaiketu__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-kaiketu__img {
  width: 100%;
}

/*--------------------------------------------------
Before/Afterエリア
-----------------------------------------------------*/
.p-henka {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-henka__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-henka__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-henka__img {
  width: 100%;
}

/*--------------------------------------------------
選ばれる４つの理由エリア
-----------------------------------------------------*/
.p-riyuu {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-riyuu__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-riyuu__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-riyuu__img {
  width: 100%;
}

/*--------------------------------------------------
施術の流れエリア
-----------------------------------------------------*/
.p-nagare {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-nagare__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-nagare__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-nagare__img {
  width: 100%;
}

/*--------------------------------------------------
VOC エリア
-----------------------------------------------------*/
.p-voc {
  width: 100%;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-voc__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
}
@media screen and (max-width: 750px) {
  .p-voc__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}
.p-voc__img {
  width: 100%;
}

/*--------------------------------------------------
FAQエリア
-----------------------------------------------------*/
.p-faq {
  width: 100%;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /*------------- FAQアコーディオン部分 --------------*/
}
.p-faq__innr {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background-color: #fce7ed;
  padding: 180px 60px 70px;
}
@media screen and (max-width: 750px) {
  .p-faq__innr {
    margin: 0px auto 0px;
    padding: 100px 20px 40px;
  }
}
.p-faq__title {
  width: 100%;
}
.p-faq__titleImg {
  width: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq__img {
  width: 100%;
}
.p-faq__accordion {
  margin-bottom: 5px;
}
.p-faq__question {
  background-image: -webkit-gradient(linear, left top, right top, from(#ee5b93), color-stop(51%, #e496ad), color-stop(99%, #ee5b93));
  background-image: linear-gradient(90deg, #ee5b93, #e496ad 51%, #ee5b93 99%);
  color: #fff;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: normal;
  padding: 12px 50px 12px 14px;
  margin: 0;
  border: none;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .p-faq__question {
    font-size: 1.6rem;
  }
}
.p-faq__questionHead {
  font-size: 4.2rem;
  font-weight: bold;
  font-style: italic;
  line-height: normal;
  padding-right: 24px;
  padding-bottom: 12px;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-faq__questionHead {
    font-size: 3.2rem;
    padding-right: 20px;
    padding-bottom: 8px;
  }
}
.p-faq__questionText {
  display: block;
}
.p-faq__questionIcon {
  display: block;
}
.p-faq__questionIcon::after {
  visibility: visible;
  content: "";
  width: 16px;
  height: 10px;
  display: block;
  background-image: url(../images/arrow.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(2);
          transform: translateY(-50%) scale(2);
}
.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 12px 50px 12px 14px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-faq__answerHead {
  color: #ee5b93;
  font-size: 4.2rem;
  font-weight: bold;
  font-style: italic;
  line-height: normal;
  padding-right: 24px;
  padding-bottom: 12px;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-faq__answerHead {
    font-size: 3.2rem;
    padding-right: 20px;
    padding-bottom: 8px;
  }
}
.p-faq__answerText {
  display: block;
  color: #000;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  height: auto;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .p-faq__answerText {
    font-size: 1.4rem;
  }
}

.p-faq__question.is-active .p-faq__questionIcon::after {
  -webkit-transform: rotate(180deg) scale(2) translateY(3px);
          transform: rotate(180deg) scale(2) translateY(3px);
}

.p-faq__answer.is-open {
  line-height: 1.5;
  height: auto;
  opacity: 1;
  margin-bottom: 30px;
}

/*--------------------------------------------------
店舗情報 エリア
-----------------------------------------------------*/
.p-salonInfo {
  width: 100%;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-salonInfo__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fff;
}
.p-salonInfo__img {
  width: 100%;
}
.p-salonInfo__map {
  width: 90%;
  margin: 0 auto;
  padding: 0px 0 60px;
}
@media screen and (max-width: 750px) {
  .p-salonInfo__map {
    width: 90%;
    margin: 0 auto;
  }
}
.p-salonInfo__mapimg {
  width: 100%;
}

/*--------------------------------------------------
ダミーコンテンツ
-----------------------------------------------------*/
.p-dummy {
  width: 100%;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-dummy__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fbf9e5;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
}
@media screen and (max-width: 750px) {
  .p-dummy__innr {
    width: 100%;
    margin: 0px auto 0px;
  }
}

/*--------------------------------------------------
固定メニュー
-----------------------------------------------------*/
.p-fixMenu {
  display: block;
  width: calc((100vw - 800px) / 2 * 0.9);
  position: fixed;
  bottom: -400px;
  right: 0%;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .p-fixMenu {
    width: 100%;
    bottom: -200px;
    left: 0;
  }
}
.p-fixMenu.js-isActive {
  bottom: 15px;
}
@media screen and (max-width: 750px) {
  .p-fixMenu.js-isActive {
    bottom: 0;
  }
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.p-footer {
  background-color: #fff;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  border-top: 5px solid #bba055;
  border-bottom: 5px solid #bba055;
}
@media screen and (max-width: 750px) {
  .p-footer {
    border-top: 5px solid #bba055;
    border-bottom: 5px solid #bba055;
  }
}
.p-footer a {
  color: #000;
}

.p-small {
  color: #000;
  font-size: 1.4rem;
}

.p-fixMenuArea {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-fixMenuArea {
    display: block;
  }
}

/*--------------------------------------------------
プライバシーページ
-----------------------------------------------------*/
.p-privacy {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-privacy a {
  color: #000;
}
.p-privacy__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  padding: 50px 100px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-privacy__innr {
    width: 100%;
    margin: 0px auto 0px;
    padding: 30px 20px;
  }
}
.p-privacy__img {
  width: 100%;
}

/*--------------------------------------------------
特商法ページ
-----------------------------------------------------*/
.p-low {
  width: 100%;
  position: relative;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-low a {
  color: #000;
}
.p-low__innr {
  max-width: 800px;
  width: 100%;
  margin: 0px auto 0px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 22px -9px #555555;
          box-shadow: 0px 0px 22px -9px #555555;
  padding: 50px 100px;
  color: #000;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-low__innr {
    width: 100%;
    margin: 0px auto 0px;
    padding: 30px 20px;
    font-size: 1.2rem;
  }
}
.p-low__img {
  width: 100%;
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
.p-low table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}

.p-low th,
.p-low td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.p-low th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

.p-low td {
  background-color: #fff;
  text-align: left;
}

.p-swiper__slide {
  width: 264px;
  height: 166px;
  overflow: hidden;
  position: relative;
}
.p-swiper__cardImg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */