body {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0px;
  margin: 0;
  background-color: #fffcef;
  /* フォントを追加（Zen Maru Gothic） */
  font-family: zen-maru-gothic, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #6c6059;
}

/* ---------------------------- loading ---------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffcef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease; /* 消える時のふわっと感 */
}

/* -ローディングアニメーション（ぐるぐる回るやつ）- */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #d6bda5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* -読み完了後は非表示- */
#loading.hide {
  opacity: 0;
  pointer-events: none;
}

/* ------------------- header ------------------------*/

header {
  display: block;
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: inherit; /*親要素の色を引き継*/
  text-decoration: none; /*架線を消す*/
}

ul {
  list-style: none;
}

#salonIcon {
  position: fixed;
  top: 0;
  left: 0;
  width: 5%;
  height: auto;
  z-index: 1000;
}

#salonIcon img {
  width: 100%;
  height: auto;
}

h1 {
  position: relative;
  top: 0%;
  /* フォントを’ads-soyokaze’に指定する*/
  font-family: ads-soyokaze, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.6px; /*文字間隔*/
  line-height: 2.4; /*行間*/
}
/* ---------------------- PC用ナビゲーション --------------------*/
#nav-pc {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.nav-pc-ul {
  position: relative;
  /* pc用ナビの中身を横一列に配置 */
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: auto;
  padding-top: 5%;
}

.nav-pc__list img {
  width: 100%;
  height: auto;
}

#drop-down {
  position: absolute;
  top: 100%;
  left: 10%;
  z-index: 100;
  width: 60%;
  height: auto;
  padding-top: 4%;
  margin: 0;
  background-color: #ffffff;
  border-radius: 5%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  /* ドロップダウンは通常時は隠しておく */
  visibility: hidden;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#drop-down p {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

#drop-down a {
  color: #6c6059;
  text-decoration: none;
}

#drop-down a:hover {
  color: hsl(29, 37%, 74%);
}

#menu:hover #drop-down {
  visibility: visible;
  opacity: 1;
}

.nav-sns__icon {
  margin-left: 4%;
}

/*---------------------- ハンバーガーナビゲーション ---------------*/
#nav-area {
  display: none;
  position: fixed;
  top: 4%;
  right: 0%;
  width: 50%;
  height: auto;
  pointer-events: none;
  z-index: 9999;
}
.open #nav-area {
  pointer-events: auto;
}

.toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 2%;
  right: 4%;
  width: 40px;
  height: 34px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 999999;
}

.toggle-btn span {
  position: absolute;
  width: 1rem;
  height: 0.1rem;
  background-color: #6c6059;
}

.toggle-btn span:nth-child(1) {
  top: 4px;
  transition-duration: 1s;
}

.toggle-btn span:nth-child(2) {
  top: 14px;
  transition-duration: 0.9s;
}

.toggle-btn span:nth-child(3) {
  top: 24px;
  transition-duration: 0.5s;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
  transition-duration: 1s;
}

.open .toggle-btn span:nth-child(2) {
  display: none;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(+315deg);
  transition-duration: 1s;
}

.open #nav-hum {
  right: -10px;
  opacity: 1;
}

#nav-hum {
  display: block;
  position: relative;
  top: 2%;
  right: -100%;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-radius: 15px;
  transition: all 0.5s;
  pointer-events: auto;
  z-index: 100000;
}

#nav-hum ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  width: 100%;
  height: auto;
  padding: 0;
  margin: 5% auto;
}

.hum-item__wrap {
  display: block;
  width: 100%;
  height: auto;
  /* フォントを’ab-kirigirisu’に指定する*/
  font-family: ab-kirigirisu, sans-serif;
  /* 文字間隔を狭める */
  letter-spacing: 0px;
  font-style: normal;
  text-align: center;
}

#nav-hum a {
  display: block;
  width: 100%;
  padding: 4% 0 4% 0;
  font-size: 1rem;
  color: #6c6059;
  text-decoration: none;
}

#hum-icon__wrap {
  display: flex;
  width: 100%;
  height: auto;
  margin: 1% auto 1% auto;
  cursor: pointer;
}

.hum_insta,
.hum_facebook {
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  text-align: center;
}

.hum_insta a {
  display: block;
  width: 100%;
}

.hum_insta img,
.hum_facebook img {
  width: 8%;
  height: auto;
}

.hum-item__wrap :hover,
.hum_insta :hover,
.hum_facebook :hover {
  background-color: #d6bda5;
  border-radius: 15px;
}

/* -----------------------line------------------------------ */
#line {
  position: fixed;
  bottom: 2%;
  right: 1%;
  width: 30%;
  height: auto;
  z-index: 1000;
}

#line-icon {
  width: 100%;
  height: auto;
}

#line-icon img {
  width: 100%;
  height: auto;
}
/* -----------------------main------------------------------ */
main {
  position: relative;
  width: 100%;
  height: auto;
}

/* ---------------------パソコン用トップページ画像---------------------*/
#main-visua__Pc {
  width: 100%;
  height: auto;
  margin-top: 4%;
}
/* ---------------------スマホ用トップページ画像---------------------*/
#main-visual__sp {
  display: none;
}
/* ----------------------------concept-------------------------*/
#concept-wrap {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  margin-left: calc(-50vw + 50%);
  padding: 50px 0 50px 0;
  background-image: url('../assets/img/flower.png');
  background-repeat: no-repeat;
  background-size: 6rem;
  background-position: calc(100%) calc(110%);
}

/* content-ttlは各タイトルを装飾するためのクラス名 */
.content-ttl {
  width: max-content;
  margin: 8% auto 0 auto;
  /* フォントを’ads-soyokaze’に指定する*/
  font-family: ab-kirigirisu, sans-serif;
  letter-spacing: 2px; /*文字間隔*/
  line-height: 1.8; /*行間*/
  color: #d6bda5;
}

/* --------サイトの横幅を統一させる----------- */
#concept-intro,
#concept-approach,
#concept-message,
#therapist-profile__wrap,
#therapist-message__wrap,
#sns-content,
#access-content,
#banner {
  width: 80%;
  height: auto;
}

#concept-intro {
  margin-left: auto;
  margin-right: auto;
}

#concept-intro__description {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 5%;
}

#salon-txt__wrap {
  width: 100%;
  height: auto;
  text-align: center;
}

/* ------良い加減での美肌の近道を伝える子連れOKサロン-------- */
#salon-txt {
  display: block;
  margin-top: 5%;
  color: #9e7f63;
  /* フォントを’ads-soyokaze’に指定する*/
  font-family: ads-soyokaze, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 1.6px; /*文字間隔*/
  line-height: 2; /*行間*/
}

#bird-orange {
  width: 240px;
  height: auto;
  animation: sway 2s ease-in-out infinite; /* 2秒周期で無限ループ */
}

/* ----------鳥を横揺れさせる--------- */
@keyframes sway {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  } /* 左にちょっと動く */
  50% {
    transform: translateX(5px);
  } /* 右にちょっと動く */
  75% {
    transform: translateX(-5px);
  } /* 左に戻る */
  100% {
    transform: translateX(0);
  } /* 元の位置 */
}

#bird-orange img {
  width: 100%;
  height: auto;
}

#concept-img__main {
  display: inline-block;
  width: 600px;
  height: auto;
  cursor: pointer;
  border: 2px solid #d6bda5;
  border-radius: 2em;
  overflow: hidden;
  box-shadow: 4px 6px 4px #e4ccb6;
}

#concept-img__main img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

#concept-img__main img:hover {
  transform: scale(1.2);
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 5rem;
  border-radius: 2em;
  overflow: hidden;
}

.iimage-slide {
  width: 33.33%;
  height: auto;
}

.iimage-slide img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.iimage-slide img:hover {
  transform: scale(1.6);
}

#concept-approach {
  margin: 3rem auto 0 auto;
}

#concept-approach__description {
  width: 100%;
  height: auto;
}

/* ---身近なものでキレイにかわいくなれる方法を・・・-- */
#approach-txt {
  display: block;
  margin: 10% auto 10% auto;
  width: 100%;
  height: auto;
  font-size: 2rem;
  color: #9e7f63;
  text-align: center;
  /* フォントを’ads-soyokaze’に指定する*/
  font-family: ads-soyokaze, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.6px; /*文字間隔*/
  line-height: 2.4; /*行間*/
}

#approach-img {
  width: 100%;
  height: auto;
  text-align: center;
  border-radius: 2em;
  overflow: hidden;
}

#approach-img img {
  width: 100%;
  height: auto;
}

/* ---セラピスト画像の縁をぼかす---- */
#approach-img img,
#therapist-profile__img img,
#therapist-message__img img {
  /* マスクを設定 */
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );

  /* マスクのその他の設定 */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

#beauty,
#cute {
  color: rgb(255, 181, 128);
}

#concept-message {
  margin: 10% auto 0 auto;
}

#message-txt__wrap {
  width: 100%;
  height: auto;
}

.message-txt {
  display: block;
  width: 80%;
  height: auto;
  margin: 6% auto 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 2; /*行間*/
}

/* -----ママだから、美に時間をかけるのは難しい、、、 */
#problem {
  display: block;
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 2rem;
  color: rgb(105, 181, 215);
  /* フォントを’ads-soyokaze’に指定する*/
  font-family: ads-soyokaze, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.6px; /*文字間隔*/
  line-height: 1.8; /*行間*/
}

/* ------------------------therapist-------------------------- */
#therapist-wrap {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  margin-left: calc(-50vw + 50%);
}

#therapist-profile__wrap {
  position: relative;
  justify-content: center;
  margin: 0 auto 0 auto;
  padding-bottom: 10%;
}

#therapist-profile {
  width: 50%;
  height: auto;
  margin: 0 auto 0 auto;
  text-align: center;
}

#therapist-name {
  width: 100%;
  height: auto;
  font-size: 1.2rem;
  margin-top: 6%;
}

#therapist-address {
  width: 100%;
  height: auto;
  font-size: 0.875rem;
  margin-top: 2%;
  line-height: 2; /*行間*/
}

#therapist-profile-txt {
  display: flex;
  margin-top: 6%;
}

.career {
  margin-right: 8%;
  text-align: left;
  line-height: 2; /*行間*/
  border-left: 3.6px solid #96d4de;
  padding-left: 10px;
}

.career span {
  display: inline-block;
  font-size: 0.8rem;
  color: #85b5bc;
}

#therapist-profile__img__wrap {
  position: relative;
  width: 80%;
  height: auto;
}

#therapist-profile__img {
  width: 100%;
  height: auto;
  border-radius: 2em;
  overflow: hidden;
}

#therapist-profile__img img {
  width: 100%;
  height: auto;
}

#bird-blue {
  position: absolute;
  left: -60%;
  bottom: -32%;
  width: 50%;
}

#bird-blue img {
  width: 100%;
  height: auto;
  animation: runAcrossBounce 14s linear infinite;
}

@keyframes runAcrossBounce {
  0% {
    transform: translateX(-5vw) translateY(0);
  }
  10% {
    transform: translateX(0vw) translateY(-10px);
  }
  20% {
    transform: translateX(10vw) translateY(0);
  }
  30% {
    transform: translateX(20vw) translateY(-20px);
  }
  40% {
    transform: translateX(30vw) translateY(0);
  }
  50% {
    transform: translateX(40vw) translateY(-20px);
  }
  60% {
    transform: translateX(50vw) translateY(0);
  }
  70% {
    transform: translateX(60vw) translateY(-20px);
  }
  80% {
    transform: translateX(70vw) translateY(0);
  }
  90% {
    transform: translateX(80vw) translateY(-20px);
  }
  100% {
    transform: translateX(100vw) translateY(0);
  }
}

#therapist-message__wrap {
  display: flex;
  margin: 5rem auto 0 auto;
}

#therapist-message-img__wrap {
  position: relative;
  width: 40%;
  height: auto;
}

#therapist-message__img {
  width: 100%;
  height: auto;
}

#therapist-message__img img {
  width: 100%;
  height: auto;
  border-radius: 2em;
}

#bird-pink {
  display: inline-block;
  position: absolute;
  right: -180%;
  bottom: -10%;
  width: 100%;
  height: auto;
  animation: wiggle 1s infinite ease-in-out;
}

@keyframes wiggle {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-3px) rotate(-3deg);
  }
  50% {
    transform: translateX(3px) rotate(3deg);
  }
  75% {
    transform: translateX(-3px) rotate(-3deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

#bird-pink img {
  width: 100%;
  height: auto;
}

#therapist-message {
  width: 60%;
  height: auto;
  font-size: 0.875rem;
  margin-left: auto;
  margin-right: auto;
}

.about-me {
  display: block;
  margin-top: 8%;
  margin-left: 8%;
  line-height: 2; /*行間*/
}

/* -----------------------sns--------------------------------- */

#sns-wrap {
  width: 100%;
  height: auto;
  padding: 5rem 0 5rem 0;
  text-align: center;
}

#sns-wrap p {
  width: 100%;
  height: auto;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

#sns-content {
  margin: 10% auto 0 auto;
}

#sns-content ul {
  padding: 0%;
  margin: 0%;
  display: flex;
  justify-content: space-around;
}

#sns-content a {
  color: #6c6059;
  text-decoration: none;
}

#instagram {
  width: 30%;
  padding: 0%;
  margin: 0%;
  /* インスタの画像を中央に寄せる */
  text-align: center;
  border: 2px solid #e19a67;
  border-radius: 15px;
  background-color: #e7bda0;
  box-shadow: 2px 4px 4px rgb(149, 123, 84);
}

#facebook {
  width: 30%;
  padding: 0%;
  margin: 0%;
  /* インスタの画像を中央に寄せる */
  text-align: center;
  border: 2px solid #66a1b8;
  border-radius: 15px;
  background-color: #b7d1db;
  box-shadow: 2px 4px 4px rgb(84, 101, 104);
}

#ameblo {
  width: 30%;
  padding: 0%;
  margin: 0%;
  /* インスタの画像を中央に寄せる */
  text-align: center;
  border: 2px solid rgb(128, 149, 117);
  border-radius: 15px;
  background-color: #b6c8b8;
  box-shadow: 2px 4px 4px rgb(88, 101, 82);
}

#instagram a,
#facebook a,
#ameblo a {
  display: block;
  margin: 0.1rem;
}

#instagram h3,
#facebook h3,
#ameblo h3 {
  font-size: 100%;
}

#instagram img,
#facebook img,
#ameblo img {
  width: 13%;
  height: auto;
}

/* ------カーソルが乗った時にじんわりと半透明に変わる */
#instagram:hover,
#facebook:hover,
#ameblo:hover {
  opacity: 0.8;
}

/* -----カーソルが乗った時にじんわりと色が変わる------ */
#instagram:hover h3,
#facebook:hover h3,
#ameblo:hover h3 {
  color: rgb(244, 253, 255);
  transition: color 0.4s ease; /* アニメーションの速度と効果 */
}

/* --------------クリック時にボタンが凹む--------- */
#instagram:active,
#facebook:active,
#ameblo:active {
  box-shadow: 0 1px #64677a;
  transform: translateY(3px);
}

/*------------------------- access ----------------------------*/

#access-wrap {
  width: 100%;
  height: auto;
  padding: 5rem 0 5rem 0;
}

#access-content {
  margin: 2rem auto 0 auto;
}

#map {
  width: 80%;
  height: auto;
  margin: 10% auto 10% auto;
}

#map iframe {
  width: 100%;
}

#access-content section {
  width: 100%;
  height: auto;
  text-align: center;
}

.item-ttl {
  font-size: 0.875rem;
  padding-top: 20px;
  color: #d6bda5;
}

.dot-line {
  border-bottom: 4px dotted #e3dad5;
  width: 100%;
  height: 0;
  margin: 0;
}

/*------------------------------ banner ---------------------- */
#banner {
  display: flex;
  margin: 0 auto 10% auto;
}

/* ----------------------------- school ---------------------- */
#school {
  margin-right: 4%;
}

#school img {
  width: 100%;
  height: auto;
}

/* ----------------------------- goods ---------------------- */
#goods img {
  width: 100%;
  height: auto;
}

/* ----------------------------- footer ---------------------- */

#footer-salonicon {
  width: 4rem;
  height: auto;
  margin: 16% auto 0 auto;
}

#footer-salonicon img {
  width: 100%;
  height: auto;
}

#footer-nav {
  width: 80%;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-right: auto;
  margin-left: auto;
}

.footer-ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 50px auto 0 auto;
}

.footer-li {
  text-align: center;
}

.footer-li img {
  width: 80%;
  height: auto;
}

.footer-sns__icon {
  width: 20%;
  height: auto;
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 50px auto auto auto;
}

.footer-sns__icon li {
  width: 2rem;
  height: auto;
  padding: 0%;
  margin: 0%;
}

.footer-sns__icon img {
  width: 80%;
  height: auto;
}

#copy {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------フェードイン効果--------------- */
/* 初期状態：下にズレて透明 */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.4s ease-out;
}

/* 表示されたらふわっと戻る */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
