



/* 共通開始 */

/* 基本リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  background: linear-gradient(
    135deg,
    #FFF6F9 0%,    /* ほぼ白に近い淡いピンク */
    #FEE3EC 33%,   /* さくら色 */
    #FFDDEB 66%,   /* 明るいピンク */
    #F9B9C3 100%   /* さくら色のアクセント */
  );
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}


/* タイトルとセクション見出し */
h1, section h2 {
  font-family: 'Pacifico', cursive;
}



header {
  background: linear-gradient(135deg, #FFF6F9 0%, #FEE3EC 70%, #FFDDEB 100%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}



.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 3000px;
  padding: 0 9vw;        /* 左右に余白を追加（お好みで調整） */
  box-sizing: border-box;
  font-size: 19px;
}






.subtitle {
  font-size: 1.8em;
  color: #666;
  font-family: 'Pacifico', cursive;
}




nav {
  display: flex;
  align-items: center;
  margin-left: auto;     /* h1とnavの間を最大化してnavを右端に */
  gap: .5rem;
}





header h1 {
  font-size: 35px;
  color: #333;
  margin-right: 1rem;
  color: #7DAA92; /* ラベンダー系 */
  /* または #a8edea（水色系）、#fed6e3（ピンク系） */
  white-space: nowrap; /* 強制的に1行にする */
}



nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: 0;
  padding-left: 0;
}

nav a {
  position: relative;
  color: #A47551;
  font-weight: bold;
  letter-spacing: 0.03em;
  transition: color 0.3s, letter-spacing 0.35s, transform 0.35s;
  padding: 0.2em 0;
  text-decoration: none; /* ←これを追加！ */
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, #a8edea, #6c63ff);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
nav a:hover {
  color: #6c63ff;
  letter-spacing: 0.12em;
  transform: scale(1.08);
}
nav a:hover::after {
  transform: scaleX(1);
}



nav ul li a {
  font-size: 1.0rem; /* お好みのサイズに変更 */
}








.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.8);
  pointer-events: none; /* 画像上でのドラッグや選択を防ぐ場合 */
}

.hero-content {
  max-width: 600px;
  color: #fff;
  z-index: 2;
  /* 例: 右寄せしたい場合 */
  margin-left: auto;
  margin-right: 10vw; /* 右端からの距離を調整 */
}



.hero-content h2 {
  font-size: 2.4rem;
  font-family: 'Pacifico', 'Quicksand', sans-serif;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: #B8EFCF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: inline-block;
  /* left, bottomは削除！ */
}

.hero-content p {
  font-size: 1.5rem;
  font-family: 'Quicksand', sans-serif;
  color: #B8EFCF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  margin-top: 0; /* h2との間を詰めたい場合 */
  text-align: center;
}



main {
  padding: 6rem 2rem 2rem; /* ヘッダーの固定分余白追加 */
  max-width: 1350px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

section h2 {
  font-size: 2.0rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #a8edea;
  padding-bottom: 0.5rem;
}




footer {
  text-align: center;
  padding: 2rem;
  background-color: #eee;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #555;
}


/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  /* ヘッダー */
  .header-inner {
    padding: 0 5vw;
    font-size: 17px;
  }
  header h1 {
    font-size: 28px;
  }
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  nav ul li a {
    font-size: 0.95rem;
  }

  /* ヒーロー */
  .hero {
    min-height: 300px;
  }
  .hero-content {
    max-width: 80%;
    margin-right: 5vw;
  }
  .hero-content h2 {
    font-size: 2.0rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }

  /* メインコンテンツ */
  main {
    padding: 5rem 2rem 2rem;
  }
  section {
    padding: 1.5rem;
  }
  section h2 {
    font-size: 1.8rem;
  }

  /* フッター */
  footer {
    padding: 1.5rem;
    font-size: 0.85rem;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  /* ヘッダー */
  .header-inner {
    flex-direction: column;
    padding: 0.8rem 4vw;
    font-size: 15px;
  }
  header h1 {
    font-size: 24px;
    margin: 0 0 0.5rem 0;
    text-align: center;
    width: 100%;
  }
  nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav ul li a {
    font-size: 0.9rem;
    padding: 0.1em 0;
  }

  /* ヒーロー */
  .hero {
    min-height: 250px;
    height: 60vh;
  }
  .hero-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .hero-content p {
    font-size: 1.1rem;
    text-align: center;
  }

  /* メインコンテンツ */
  main {
    padding: 5.5rem 1rem 1rem;
  }
  section {
    padding: 1.2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  section h2 {
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 2px solid #a8edea;
    padding-bottom: 0.5rem;
  }

  /* フッター */
  footer {
    padding: 1.2rem;
    font-size: 0.8rem;
  }
}

/* 共通終了 */




/* ヒーリングとは開始 */



#about .about-flex {
  display: flex;
  align-items: flext-start;
  gap: 2rem;
}


#about .about-img {
  padding: 10px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  border-radius: 20px;
  display: inline-block;
  margin-left: auto;
}
#about .about-img img {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(120,180,160,0.13);
  transition: transform 0.3s, box-shadow 0.3s;
}
#about .about-img img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(120,180,160,0.22);
}







#about img {
  width: 50%;
  height: 50%;
}



/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  #about .about-flex {
    flex-direction: column;
    align-items: center;
  }
  #about .about-img {
    margin: 2rem auto 0;
  }
  #about .about-img img {
    max-width: 100%;
  }
  #about img {
    width: 100%;
    height: auto;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  #about .about-flex {
    flex-direction: column;
    align-items: center;
  }
  #about .about-img {
    margin: 2rem auto 0;
  }
  #about .about-img img {
    max-width: 100%;
  }
  #about img {
    width: 100%;
    height: auto;
  }
}



/* ヒーリングとは終了 */


/* ヒーラー紹介開始 */



#therapist {
  background: #f8f8f8; /* 他セクションと同じ背景色に */
  padding: 2.5rem 1rem;
  font-family: 'Quicksand', sans-serif;
}


.therapist-image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.therapist-photo {
  width: 100%;
  max-width: 600px; /* 画像を大きく */
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(217,140,164,0.12);
  background: #fff;
}
.therapist-profiles {
  display: flex;
  gap: 1rem; /* カードの間隔を広げる */
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.profile-card {
  background: #fff0f5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(217,140,164,0.10);
  padding: 2rem 2rem;
  min-width: 520px;    /* カードを幅広に */
  max-width: 700px;    /* カードを幅広に */
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile-card h3 {
  font-size: 1.18rem;
  color: #B76E79;
  margin-bottom: 0.7em;
  text-align: center;
  width: 100%;
}
.profile-card ul {
  padding-left: 1.2em;
  margin: 0 0 1em 0;
  font-size: 1rem;
  color: #6B3A4A;
  line-height: 1.8;
  list-style: none;

}
.profile-comment {
  font-size: 0.98rem;
  color: #7F4A5A;
  line-height: 1.7;
  margin-top: 0.3em;
  margin-bottom: 0;
  text-align: left;
}



.profile-card ul li {
  text-decoration: none;
}


.profile-header {
  display: flex;
  align-items: center;
  width: auto;         /* コンテンツ幅にする */
  margin: 0 auto 0.7em auto; /* 左右中央寄せ！下に余白 */
}

.profile-name {
  font-size: 1.18rem;
  color: #B76E79;
  font-weight: bold;
  margin: 0; /* ← これが重要 */
  padding: 0; /* ← これも重要 */
}

.social-icons {
  display: flex;
  gap: 0; /* gapもゼロ */
  margin-left: 0; /* 余計な余白を消す */
}

.social-icons a {
  display: inline-block;
  line-height: 1;
}

.social-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(217,140,164,0.10);
  transition: transform 0.15s;
  margin-left: 4px; /* ← これで名前と最初のアイコンの間を最小限に */
}
.social-icons img:first-child {
  margin-left: 4px;  /* 名前と最初のアイコンだけに最小の余白 */
}
.social-icons img:not(:first-child) {
  margin-left: 4px;  /* アイコン同士も最小の余白 */
}



/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .therapist-profiles {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .profile-card {
    min-width: auto;
    max-width: 600px;
    width: 90%;
    padding: 1.5rem;
  }
  .therapist-photo {
    max-width: 90%;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  .therapist-profiles {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .profile-card {
    min-width: auto;
    max-width: 100%;
    width: 90%;
    padding: 1.2rem;
  }
  .therapist-photo {
    max-width: 90%;
  }
  .profile-header {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.7em;
  }
  .profile-name {
    font-size: 1.1rem;
  }
  .social-icons {
    margin-left: auto;
  }
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}


/* ヒーラー紹介終了 */

/* 活動内容開始 */


.activity-images {
  display: flex;            /* 横並び */
  gap: 1.5rem;              /* 画像間の隙間 */
  margin-top: 1.5rem;
  flex-wrap: wrap;          /* 画面が狭い時に折り返し */
}

.activity-images img {
  width: 285px;             /* お好みでサイズ調整 */
  height: auto;
  border-radius: 12px;      /* お好みで角丸 */
  box-shadow: 0 2px 8px rgba(120,180,160,0.13); /* お好みで影 */
  object-fit: cover;
}



.healing-menu-heading {
  margin: 3rem 0 2rem;
  padding: 1rem 0;
  font-size: 1.8rem;
  color: #2a5934;
  border-bottom: 3px solid #78b4a0;
  text-align: center;
}




.service-section {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 12px;
  align-items: center;
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-image {
  width: 350px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120,180,160,0.13);
  object-fit: cover;
}

.price {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  font-weight: bold;
  color: #2a5934;
}






.menu-columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-column {
  display: flex;
  flex-direction: column;
  align-items: center; /* ここがポイント！ */
  width: 285px;
}







.menu-images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-image {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120,180,160,0.13);
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #2a5934;
}

.menu-item {
  font-weight: bold;
  font-size: 1.2rem;
  color: #2a5934;
  border-bottom: 3px solid #78b4a0;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.menu-contents {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-content {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(120,180,160,0.13);
  color: #2a5934;
  width: 100%;
  text-align: left;
}

.price {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  font-weight: bold;
  color: #2a5934;
  text-align: center;
}


/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  /* 活動写真 */
  .activity-images {
    justify-content: center;
  }
  .activity-images img {
    width: 48%;
    min-width: 200px;
    max-width: 300px;
  }
  /* メニュー画像・項目・内容 */
  .menu-images, .menu-items, .menu-contents {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .menu-image, .menu-item, .menu-content {
    width: 30%;
    min-width: 250px;
    max-width: 320px;
  }
  /* 価格 */
  .price {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    font-weight: bold;
    color: #2a5934;
    text-align: center;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  /* 活動写真 */
  .activity-images {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .activity-images img {
    width: 90%;
    max-width: 400px;
  }
  /* メニュー画像・項目・内容 */
  .menu-images, .menu-items, .menu-contents {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .menu-image, .menu-item, .menu-content {
    width: 90%;
    max-width: 400px;
  }
  /* 価格 */
  .price {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    font-weight: bold;
    color: #2a5934;
    text-align: center;
  }
}

/* 活動内容終了 */


/* お客様の声開始 */


#voice .voice-list {
  max-width: 1000px; /* 適宜調整 */
  margin: 0 auto;
  padding: 0 20px;
}
.voice-card {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.voice-image-left,
.voice-image-right {
  width: 120px; /* 画像サイズは調整 */
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 15px;
}
.voice-content {
  flex: 1;
  min-width: 0;
  margin-left: 50px;
}
.voice-text {
  margin: 0 0 10px 0;
  line-height: 1.6;
}
.voice-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  gap: 10px;
}
.voice-name, .voice-date {
  display: inline-block;
  text-align: right;
}




/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .voice-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .voice-image-left {
    margin: 0 auto 20px;
  }
  .voice-content {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .voice-meta {
    justify-content: center;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  .voice-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .voice-image-left {
    margin: 0 auto 20px;
  }
  .voice-content {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .voice-meta {
    justify-content: center;
  }
}


/* お客様の声終了 */




/* イベント情報開始 */

.event-flex {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.event-text {
  flex: 1;
  /* max-widthは不要（あるとテキストが幅を取りすぎて画像が右に寄らない） */
}


.event-img {
  max-width: 530px;
  /* width: 100% は絶対に書かない */
  margin-left: 40px;
  display: flex;
  align-items: flex-start;
}

.event-img img {
  width: 100%;
  max-width: 530px;
  display: block;
}

.event-text ul li {
  margin-bottom: 1.5em;
}

.warning {
  color: red;
}





.event-history {
  margin-top: 3rem;
  padding: 2rem 1rem 1.5rem 1rem;
  background: #f8f6fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(217,140,164,0.07);
}

.history-title {
  font-size: 1.15rem;
  color: #B76E79;
  margin-bottom: 1.1em;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history-list li {
  display: flex;
  gap: 1.2em;
  align-items: center;
  padding: 0.7em 0;
  border-bottom: 1px solid #ece3ea;
  font-size: 1rem;
}

.history-list li:last-child {
  border-bottom: none;
}

.history-date {
  color: #D98CA4;
  font-weight: bold;
  min-width: 7em;
  font-size: 0.98em;
}

.history-name {
  color: #6B3A4A;
}




/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .event-flex {
    flex-direction: column;
    align-items: center;
  }
  .event-img {
    margin: 2rem auto 0;
    max-width: 80%;
    width: 100%;
  }
  .event-img img {
    max-width: 100%;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  .event-flex {
    flex-direction: column;
    align-items: center;
  }
  .event-img {
    margin: 2rem auto 0;
    max-width: 100%;
    width: 100%;
  }
  .event-img img {
    max-width: 100%;
  }
}

/* イベント情報終了 */




/* お問い合わせ開始 */


#contact p {
  font-size: 20px;
}



form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  border: none;
  background-color: #6c63ff;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #574b90;
}
.btn-center {
  text-align: center;
}

.btn-center button {
  /* お好みで装飾 */
  padding: 0.7em 2.5em;
  font-size: 1.1em;
  border-radius: 6px;
  border: none;
  background: #D98CA4;
  color: #fff;
  cursor: pointer;
  margin-top: 1.5em;
  transition: background 0.2s;
}
.btn-center button:hover {
  background: #B76E79;
}


/* タブレット（768px〜959px） */
@media (min-width: 768px) and (max-width: 959px) {
  #contact p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  form label {
    font-size: 1rem;
    margin-top: 1rem;
  }
  form input, form textarea {
    font-size: 1rem;
    padding: 0.7rem;
  }
  .btn-center button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  #contact p {
    font-size: 1rem;
    line-height: 1.6;
  }
  form label {
    font-size: 0.95rem;
    margin-top: 0.8rem;
  }
  form input, form textarea {
    font-size: 0.95rem;
    padding: 0.6rem;
  }
  .btn-center button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    width: 100%;
    max-width: 300px;
    margin: 1.5em auto 0;
    display: block;
  }
}



/* お問い合わせ終了 */

