/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";

/* 共通部分
--------------------------------------------------- */
html {
  font-size: 100%;
}

body {
  font-family: yu-gothic-pr6n,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1e212d;
  background-color: #faf3e0;
}

a {
  text-decoration: none;
}

h2 {
  font-family: brandon-grotesque, sans-serif;
  font-style: bold;
  letter-spacing: 0.2em;
}

h2.section-title {
  text-align: center;
  padding: 100px 0;
}

h2.section-title::after {
  content: "";
  display: block;
  background-image: url(../images/title_line.png);
  background-size: contain;
  height: 10px;
  width: 350px;
  margin: 0 auto;
}

.white-bg {
  background-color: white;
  width: 100%;
}

section:before {
    content: " ";
    margin-top: -90px;
    height: 90px;
    display: block;
    visibility: hidden;
}


/* 動き---------------- */
/* フェードインアウト */
.fadeUpTrigger {
  opacity: 0;
}

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

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }

}

/* ローディング */
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100vh;
z-index: 999;
background:#faf3e0;
text-align:center;
color:#fff;
}

/* Loading画像中央配置*/
#splash_logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
width:260px;
}

/* fadeUpをするアイコンの動き */
#splash .fadeUp{
-webkit-animation-name: fadeUpAnime;
        animation-name: fadeUpAnime;
-webkit-animation-duration:2s;
        animation-duration:2s;
-webkit-animation-fill-mode:forwards;
        animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
from {
  opacity: 0;
transform: translateY(100px);
}

to {
  opacity: 1;
transform: translateY(0);
}
}

/*リンクを右下に固定*/
#page-top img {
  width: 50%;
}

#page-top {
  position: fixed;
  right: -65px;
  bottom:10px;;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*上に上がる動き*/
#page-top.UpMove{
  -webkit-animation: UpAnime 1s forwards;
          animation: UpAnime 1s forwards;
}
@-webkit-keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*下に下がる動き*/
#page-top.DownMove{
  -webkit-animation: DownAnime 1s forwards;
          animation: DownAnime 1s forwards;
}
@-webkit-keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(100px);
  }
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(100px);
  }
}

/* スライダー */
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*　背景画像設定　*/
.slider-item01 {
  background:url(../images/TOP01-pc.jpg);
}

.slider-item02 {
  background:url(../images/TOP02-pc.jpg);
}

.slider-item03 {
  background:url(../images/TOP03-pc.jpg);
}

.slider-item04 {
  background:url(../images/TOP04-pc.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

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

/* ヘッダー
--------------------------------------------------- */
header {
  background-color: #b68973;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 15px 0;
  z-index: 150;
}


header .innerWrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header h1 img {
  width: 50%;
}

header nav {
  display: flex;
}

header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul li {
  list-style: none;
  font-family: brandon-grotesque, sans-serif;
  letter-spacing: 0.2em;
  padding-left: 1.2em;
}

header .snsIcon {
  display: flex;
  margin-left: 1em;
}

header .snsIcon img {
  width: 40%;
}

header p.instIcon {
  text-align: center;
}

header nav ul li a {
  color: #1e212d;
}

header nav ul li a:hover {
  color: #faf3e0;
}

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

/* メインビジュアル */
.mainvisual {
  margin-top: 90px;
}

/* --------------------------------------------------- */
/* コンセプト */

#CONCEPT {
  padding: 15em 0 10em;
}

.section-description p {
  width: 100%;
  background-image: url(../images/concept-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 100px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  text-align: center;
}


/* --------------------------------------------------- */
/* アバウト---------------------------------------- */
#MENUPRICE {
  padding-top: 10%;
}
/* プロフィール */
.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/profile-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  padding: 130px 0;
}


.profile img {
  width: 200px;
  margin: -50px 50px 0 30px;
}

.profileText {
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

.profile .profileCon1 {
  font-size: 22px;
  font-weight: bold;
}

.profile .profileCon2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
}

.profileCon3,.profileCon4 {
  font-size: 16px;
}

.profile .profileCon3 {
  margin: 1.5em 0;
}

/* サロン */
.salon {
  background-image: url(../images/salon-img.jpg);
  background-repeat: no-repeat;
  background-position: 0 70%;
  padding: 330px 0 600px 0;
  position: relative;
}

.salon .text-wrap p {
  line-height: 2.25;
  background-image: url(../images/salon-flame.png);
  background-size: contain;
  background-position: center;
  padding: 6em 6em 4em 6em;
  position: absolute;
  top: 220px;
  left: 660px;
  font-size: 0.9vw;
}

.salon-logo {
  position: absolute;
  right: 140px;
  top: 660px;
  width: 35vw;
}

/* キッズスペース */
.kidsspace {
  background-image: url(../images/kids-img.jpg);
  background-repeat: no-repeat;
  background-position: 100% 90%;
  padding: 160px 0 650px 0;
  position: relative;
}

.kidsspace .text-wrap p {
  line-height: 2.25;
  background-image: url(../images/kids-frame.png);
  background-size: contain;
  background-position: center;
  padding: 6em 6em 5em 7em;
  position: absolute;
  top: 64px;
  right: 672px;
  font-size: 0.9vw;
}

.kids-logo {
  position: absolute;
  left: 140px;
  top: 420px;
  width: 35vw;
}

.add-wrap {
  background-color: #FAF3E0;
  padding-bottom: 100px;
}

/* ホームケア用品 */
.homecare {
  background-image: url(../images/home-img.jpg);
  background-repeat: no-repeat;
  background-position: 0% 70%;
  padding: 4em 0 35em 0;
  position: relative;
}

.homecare .text-wrap p {
  line-height: 2.25;
  background-image: url(../images/salon-flame.png);
  background-size: contain;
  background-position: center;
  padding: 7em 5em 5em 7em;
  position: absolute;
  top: 5px;
  left: 730px;
  font-size: 0.9vw;
}

.home-logo {
  position: absolute;
  right: 40px;
  top: 210px;
  width: 35vw;
}

.hand-bg {
  position: relative;
}

.hand-bg img {
  width: 100%;
  height: auto;
  position: absolute;
}
/* --------------------------------------------------- */

/* MENU&PRICE */
#MENUPRICE h2.section-title::before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 50px;/*画像の幅*/
  height: 50px;/*画像の高さ*/
  background-image: url(../images/menu-icon.png);
  background-size: contain;
  vertical-align: middle;
}

/* メニュー表全体 */
#MENUPRICE .inner-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.menu1,
.menu2,
.menu3 {
display: flex;
}

#MENUPRICE .text-wrap {
  padding: 100px 71px 0px 56px;
}

.menuText {
  list-style: none;
  border-bottom: dotted 2px #1e212d;
  line-height: 1.1;
  margin-bottom: 1em;
}

span.price {
  float: right;
  font-family: brandon-grotesque, sans-serif;
}

.menu1 .menutext-wrap, .menu2 .menutext-wrap, .menu3 .menutext-wrap  {
  padding: 100px 55px 180px 40px;
  font-size: 16px;
}

/* カット */
.cut {
  background-image: url(../images/cut.png);
  background-size: 100%;
  width: 100%;
  height: auto;
  margin-right: 3.375em;
}

/* パーマ */
.perm {
  background-image: url(../images/perm.png);
  background-size: 100%;
  width: 100%;
  height: auto;
  position: relative;
}

/* カラー */
.color {
  background-image: url(../images/color.png);
  background-size: 100%;
  width: 100%;
  height: auto;
  margin-right: 3.375em;
}

/* ストレート */
.straight {
  background-image: url(../images/st.png);
  background-size: 100%;
  width: 100%;
  height: auto;
  position: relative;
}

/* other */
.other {
  background-image: url(../images/other.png);
  background-size: 100%;
  width: 100%;
  height: auto;
  margin-right: 3.375em;
}

.otherText {
  font-size: 80%;
  border-bottom: none;
  margin-top: -5px;
}

/* 注意事項 */
.attention {
  background-image: url(../images/attention.png);
  background-size: contain;
  width: 100%;
  height: auto;
}

ul.attentiontext-wrap {
  padding: 2em 0em 1em 6em;
}

li.attentionText {
  list-style: none;
  margin-top: 1em;
}

.attentionText-wrap li {
  border-bottom: none;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

/* 髪の長さイラスト */
.hairImg {
  width: 100%;
  margin-bottom: 10em;
}

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

/* アクセス */
#ACCESS .inner-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

#ACCESS {
  padding-bottom: 5em;
}

.access-wrap {
  display: flex;
  align-items: center;
}

.mapImg {
  width: 50%;
}

.mapImg img{
  width: 88%;
}

.access-wrap dl {
  display: table;
  font-family: yu-gothic-pr6n,sans-serif;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.2em;
}

.access-wrap  dl dt {
  display: table-cell;
  width: 5em; /* 数字は任意で変更してください */
  white-space: nowrap;
}

.access-wrap  dl dd {
  display: table-cell;
}

.accessText {
  background-image: url(../images/access_frame.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  padding: 6em 0em 6em 5em;
  line-height: 1.7;
}

/* footer */
footer {
  background-color: #b68973;
  /* height: 145px; */
}

footer nav {
  display: flex;
  padding-top: 20px;
  justify-content: center;
}

footer nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer nav ul li {
  list-style: none;
  font-family: brandon-grotesque, sans-serif;
  letter-spacing: 0.2em;
  padding-left: 1.2em;
}

footer .snsIcon {
  display: flex;
  margin-left: 1em;
}

footer .snsIcon img {
  width: 40%;
}

footer p.instIcon {
  text-align: center;
}

footer nav ul li a {
  color: #1e212d;
}

footer nav ul li a:hover {
  color: #faf3e0;
}

p.copyright {
  text-align: center;
  color: #faf3e0;
  font-size: 0.75vw;
  font-family: brandon-grotesque, sans-serif;
  letter-spacing: 0.2em;
  padding: 20px 0;
}

/* ハンバーガーメニュー */
#menu-button {
  display: none;
}

.gnav-sp-wrap {
  display: none;
}

/* PC非表示 */
.salon-logosp {
  display: none;
}

.kids-logosp {
  display: none;
}

.home-logosp {
  display: none;
}

.single-item {
  display: none;
}
/*================================================
Tablet : 画面の横幅が960pxまで
==================================================*/
@media screen and (max-width: 960px) {
  .gnav-pc-wrap {
    display: none;
  }

  header {
    display: flex;
    justify-content: space-between;
}


h1 {
  margin: 18px 0 0 28px;
}

/* ページトップリンク-----------*/
#page-top img {
  width: 30%;
}

#page-top {
  right: -125px;
}

.section-description p {
  font-size: 2vw;
}

/* アバウト */
#ABOUT {
  padding-bottom: 0;
}

h2.section-title {
  padding: 5em 0 2.5em 0;
}

/* プロフィール */
.profile {
  padding: 5% 0 10% 0;
}

.profile img {
  width: 20%;
  margin-right: 0.875em;
}

.profile .profileCon1 {
  font-size: 2.3vw;
  font-weight: bold;
}

.profile .profileCon2 {
  font-size: 3.35vw;
  font-weight: bold;
  line-height: 1.3;
}

.profileCon3,.profileCon4 {
  font-size: 1.8vw;
}


/* サロン */
.salon .text-wrap p {
  padding: 7.5em 6.25em 5.3em 6.25em;
  position: absolute;
  top: 13%;
  left: 5%;
  font-size: 1.8vw;
}

.salon-logo {
  display: none;
}

.salon-logosp {
  display: block;
  width: 80%;
  max-width: 6em;
  margin: 0 0 -413px auto;
}

/* キッズスペース */
.kidsspace .text-wrap p {
  padding: 7.5em 6.25em 5.3em 6.25em;
  position: absolute;
  top: 0%;
  right: 0%;
  font-size: 1.8vw;
}

.kids-logo {
  display: none;
}

.kids-logosp {
  display: block;
  width: 80%;
  max-width: 12em;
  margin: 0 auto -460px 0;
}

.add-wrap {
  background-color: #FAF3E0;
  padding-bottom: 200px;
}

/* ホームケア用品 */
.homecare {
  background-position: 0% 5%;
}

.homecare .text-wrap p {
  position: absolute;
  top: -15%;
  left: 5%;
  font-size: 1.8vw;
}
.home-logo {
  display: none;
}

.home-logosp {
  display: block;
  width: 100%;
  max-width: 12em;
  margin: 0 0 -410px auto;
}


/* 料金表 */
.menu1, .menu2, .menu3 {
  padding: 0 10px;
}

.menu1 .menutext-wrap, .menu2 .menutext-wrap, .menu3 .menutext-wrap {
  padding: 5.5em 4em 13em 3em;
}


.cut .menutext-wrap {
  background-size: contain;
  font-size: 1.5vw;
}

.perm .menutext-wrap {
  background-size: contain;
  font-size: 1.5vw;
}

.color .menutext-wrap {
  background-size: contain;
  font-size: 1.5vw;
}

.straight .menutext-wrap {
  background-size: contain;
  font-size: 1.5vw;
}

.other .menutext-wrap {
  background-size: contain;
  font-size: 1.5vw;
}

ul.attentiontext-wrap {
  padding: 2em 0em 1em 4em;
  font-size: 1.5vw;
}

.hairImg {
  width: 100%;
  padding: 0 5em;
  margin-bottom: 0;
}

/* アクセス */
.accessText {
  font-size: 1.7vw;
  padding: 5em 0em 6em 4em;
}

/* footer */
footer .gnav-pc-wrap {
  display: block;
}

footer nav {
  display: flex;
  padding-top: 20px;
  justify-content: center;
}

footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer nav ul li {
  list-style: none;
  font-family: brandon-grotesque, sans-serif;
  letter-spacing: 0.2em;
  padding-left: 1.2em;
}

footer .snsIcon {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}


footer nav ul li a {
  color: #1e212d;
}

footer nav ul li a:hover {
  color: #faf3e0;
}

p.copyright {
  padding: 10px 0;
  font-size: 1.35vw;
}

/* ハンバーガーメニュー */
  #menu-button {
    display: block;
    width: 60px;
    height: 60px;
    padding: 22px 18px;
  }

  .menu-button-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 90%;
}

  .menu-button-inner span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2D3D42;
    position: absolute;
  }

  .menu-button-inner span:nth-child(1) {
    top: 0;
  }

  .menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .menu-button-inner span:nth-child(3) {
    bottom: 0;
  }

  /* -- ハンバーガーメニュー内容 -- */
  .gnav-sp-wrap {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color:  #faf3e0;
    position: fixed;
    z-index: 100;
    margin-top: 100px;
    padding-top: 100px;
  }

  ul.gnav-sp li {
    text-align: center;
    margin-bottom: 45px;
        font-family: brandon-grotesque, sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #1e212d;
    font-weight: bold;
  }

  ul.gnav-sp li a:visited {
    color: #1e212d;
  }

  ul.gnav-sns-sp {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  ul.gnav-sns-sp li {
    list-style-type: none;
    margin: 0 15px;
  }

  ul.gnav-sns-sp li img {
    width: 30px;
  }
}

/*================================================
Smartphone :  画面の横幅が620pxまで
=================================================*/
@media screen and (max-width: 620px) {
/*　背景画像設定　*/
.slider-item01 {
  background:url(../images/TOP01-sp.jpg);
}

.slider-item02 {
  background:url(../images/TOP02-sp.jpg);
}

.slider-item03 {
  background:url(../images/TOP03-sp.jpg);
}

.slider-item04 {
  background:url(../images/TOP04-sp.jpg);
}

.slider-item {
  width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

  .section-description p {
    font-size: 3vw;
    padding: 130px 0px;
  }

  /* プロフィール */
  .profileCon3, .profileCon4 {
    font-size: 2.25vw;
  }

  .profile .profileCon3 {
    margin: 0.5em 0;
  }

  /* メニュー */
  .hand-bg img {
    top: -6em;
  }

  .menu1, .menu2, .menu3 {
    display: block;
  }

  #MENUPRICE {
    padding: 0 1.5em;
  }

  .menu1 .menutext-wrap, .menu2 .menutext-wrap, .menu3 .menutext-wrap {
    font-size: 3.25vw;
    padding: 5.5em 5em 0em 4em;
  }

    /* cut */
  .cut {
    padding-bottom: 35%;
    margin-right: 0;
  }

  /* perm */
  .perm {
    padding-bottom: 45%;
    margin-right: 0;
  }

  /* color */
  .color {
    padding-bottom: 35%;
    margin-right: 0;
  }

  /* straight */
  .straight {
    padding-bottom: 35%;
    margin-right: 0;
  }

  /* other */
  .other {
    padding-bottom: 45%;
    margin-right: 0;
  }

  .attention {
    height: auto;
    padding-bottom: 8em;
  }

  ul.attentiontext-wrap {
    padding: 4% 0% 0% 19%;
    font-size: 3vw;
  }

  /* 髪の長さイラスト */
  .hairImg {
    display: none;
  }

  .single-item {
    display: block;
    max-width: 50%;
    margin: 0 auto;
  }

  .slick-arrow:before{
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
  }

  .slick-next:before{
    background: url(../images/arrow_R.png)!important;
    background-size: contain!important;
  }

  .slick-prev:before{
    background: url(../images/arrow_l.png)!important;
    background-size: contain!important;
  }

  /* アクセス */
  .access-wrap {
    display: block;
    margin: 0 20px;
  }

  .access-wrap {
    display: block;
  }

  .accessText {
    width: 100%;
    height: auto;
    padding: 4.75em 0em 2em 3em;
    line-height: 1.7;
    font-size: 3vw;
  }

  .mapImg {
    width: 100%;
    padding-top: 3.25em;
    margin-left: 1.25em;
  }

  p.copyright {
    font-size: 2.25vw;
  }
}

/*================================================
Smartphone :  画面の横幅が520pxまで
=================================================*/
@media screen and (max-width: 520px) {
  h2.section-title {
    padding: 2em 0;
  }

  /* ヘッダー */
  header {
    padding: 0;
  }

  .mainvisual {
    margin-top: 80px;
  }


.section-description p {
    /* margin-top: 6em; */
    font-size: 3vw;
}

  /* アバウト */
  .profile {
    display: inline-block;
    text-align: center;
    background-image: none;
  }

  .profile img {
    width: 30%;
    padding-top: 30px;
  }

  .profileText {
    background-image: url(../images/profile-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 3em 1em 5em 1em;
    line-height: 1.5;
    margin-bottom: 200px;
}

  .profile .profileCon1 {
    font-size: 3vw;
  }

  .profile .profileCon2 {
    font-size: 4vw;
  }

  .profileCon3, .profileCon4 {
    font-size: 3vw;
  }


/* サロン */
  .salon-logosp {
    display: none;
  }

  .salon {
    background-size: 100%;
    padding: 0px 0 450px 0;
  }


  .salon .text-wrap p {
    font-size: 3vw;
    top: -40%;
    left: 22%;
  }

  .salon-logo {
    display: block;
    width: 80%;
    align-items: center;
    position: absolute;
    top: 23em;
    left: 5em;
  }

  /* キッズスペース */
  .kidsspace {
    background-size: 100%;
    padding: 0 0 680px 0;
  }

  .kidsspace .text-wrap p {
    top: 15%;
    left: -20%;
    font-size: 3vw;
    padding: 4.5em 4em 3em 14em;
  }

  .kids-logosp {
    display: none;
  }

  .kids-logo {
    display: block;
    width: 80%;
    position: absolute;
    top: 500px;
    left: 10px;
  }

  .add-wrap {
    padding-bottom: 240px;
}

  /* ホームケア */
  .homecare {
    background-size: 100%;
    padding: 0px 0 530px 0;
  }

  .homecare .text-wrap p {
    font-size: 3vw;
    top: -34%;
    left: 25%;
  }

  .home-logosp {
    display: none;
  }

  .home-logo {
    display: block;
    width: 75%;
    position: absolute;
    top: 30%;
    right: 2%;
}

  .hand-bg {
    position: relative;
  }

  .hand-bg img {
    width: 100%;
    height: auto;
    position: absolute;
    top: -6em;
  }

  /* メニュー＆料金 */
  #MENUPRICE h2.section-title {
    font-size: 6.5vw;
  }


  .menuText {
    line-height: 2.5vw;
  }

  .otherText {
    line-height: 3vw;
  }


  /* footer */
  footer nav ul {
    display: flex;
    flex-direction: column;
    line-height: 2.5;
  }

  p.copyright {
    font-size: 2.5vw;
  }

  /* ハンバーガーメニュー */
  .gnav-sp-wrap {
    margin-top: 90px;
  }
}

/*================================================
Smartphone :  画面の横幅が400pxまで
=================================================*/
@media screen and (max-width: 400px) {
  h2.section-title {
    padding: 2em 0;
  }

  h2.section-title::after {
    width: auto;
  }

  /* コンセプト */
  #CONCEPT {
    padding: 0 0 5em 0;
  }

  .section-description p {
    font-size: 3vw;
  }

  .section-description p {
    padding: 78px 0px 48px 15px;
    margin-top: 30px;
  }

  /* プロフィール */
  .profile {
    padding: 20px 0px;
  }

  .profile .profileCon1 {
    font-size: 4vw;
  }

  .profile .profileCon2 {
    font-size: 5.5vw;
  }

  .profile .profileCon3 {
    margin: 0.25em 0;
  }

  .profileCon3, .profileCon4 {
    font-size: 3vw;
  }

  .profileText {
    margin-bottom: 40px;
  }

  /* サロン */
  .salon .text-wrap p {
    font-size: 3.5vw;
    top: -1%;
    right: 0%;
    padding: 6em 0em 3em 5em;
}

  .salon-logo {
    left: 3em;
  }

  /* キッズスペース */
  .kidsspace {
    padding: 100px 0 450px 0;
  }

  .kidsspace .text-wrap p {
    top: 22%;
    left: -5%;
    font-size: 3.5vw;
    padding: 4em 0em 3em 10em;
  }

  .kids-logo {
    top: 390px;
    left: 10px;
  }

  /* ホームケア */
  .homecare .text-wrap p {
    font-size: 3.5vw;
    top: -34%;
    right: 4%;
    padding: 10em 3em 8em 4em;
}

  /* メニュー */
  #MENUPRICE img {
    margin-bottom: 1em;
  }

  .menu1 .menutext-wrap, .menu2 .menutext-wrap, .menu3 .menutext-wrap {
    font-size: 3.5vw;
    padding: 4.5em 3em 0em 2em;
  }

  .menuText {
    line-height: 0.85;
    margin-bottom: 0.75em;
  }


  .otherText {
    margin-top: -5px;
  }

  /* 注意事項 */
  ul.attentiontext-wrap {
    padding: 7% 0% 5% 16%;
    font-size: 3.25vw;
  }

  li.attentionText {
    margin-top: 0.25em;
  }

  .attention {
    width: 110%;
    height: auto;
    padding-bottom: 5em;
  }

  ul.attentiontext-wrap {
    padding: 12% 0% 5% 20%;
    font-size: 3vw;
  }

  /* アクセス */
  .accessText {
    padding: 4.5em 0em 2em 3.5em;
    font-size: 3vw;
  }

  p.copyright {
    font-size: 3.5vw;
  }
}