/* MOANI BEAUTY - メインスタイルシート */

/* ========================================
   カラーパレット
   ======================================== */
:root {
  --primary-pink: #f4c3c8;
  --soft-pink: #f9e4e7;
  --beige: #f5f0e8;
  --dark-beige: #e8dfd1;
  --gold: #c9a661;
  --text-dark: #4a4a4a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
  color: var(--text-dark);
  line-height: 1.8;
  background-color: var(--beige);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* ========================================
   タイポグラフィ
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.4;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.03em;
}

p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.05em;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__nav a {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.header__nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 500;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(244, 195, 200, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 195, 200, 0.4);
  opacity: 1;
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--secondary:hover {
  background: var(--gold);
  color: var(--white);
  opacity: 1;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--beige) 100%);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero__title {
  margin-bottom: 2rem;
  line-height: 1.3;
}

.hero__description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 2;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   セクション共通
   ======================================== */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section--white {
  background: var(--white);
}

.section--beige {
  background: var(--beige);
}

.section--pink {
  background: var(--soft-pink);
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section__title {
  margin-bottom: 1.5rem;
}

.section__description {
  max-width: 700px;
  margin: 0 auto;
  line-height: 2;
  color: var(--text-light);
}

/* ========================================
   コンセプトセクション
   ======================================== */
.concept__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.concept__text {
  padding: 2rem;
}

.concept__text h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.concept__text p {
  line-height: 2.2;
  margin-bottom: 1.5rem;
}

.concept__keywords {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.concept__keyword {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.concept__image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

.concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   メニューカード
   ======================================== */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.menu-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.menu-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.1);
}

.menu-card__content {
  padding: 2rem;
}

.menu-card__category {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.menu-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.menu-card__description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.menu-card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.menu-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.menu-card__link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-card__link::after {
  transform: translateX(5px);
}

/* ========================================
   お客様の声
   ======================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--soft-pink);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial__text {
  margin-bottom: 1.5rem;
  line-height: 2;
  font-size: 0.95rem;
  padding-top: 2rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-beige);
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial__detail {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========================================
   代表メッセージ
   ======================================== */
.message {
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--beige) 100%);
  padding: 6rem 2rem;
}

.message__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.message__intro {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 3rem;
  line-height: 2.2;
  color: var(--text-dark);
}

.message__body {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  margin-bottom: 3rem;
}

.message__body p {
  margin-bottom: 2rem;
  line-height: 2.2;
  text-align: left;
}

.message__body p:last-child {
  margin-bottom: 0;
}

.message__signature {
  text-align: right;
  margin-top: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.message__cta {
  margin-top: 3rem;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer__section ul {
  list-style: none;
}

.footer__section li {
  margin-bottom: 0.75rem;
}

.footer__section a {
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer__info p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   メニュー詳細ページ
   ======================================== */
.menu-detail {
  padding-top: 8rem;
}

.menu-detail__hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--beige) 100%);
  overflow: hidden;
}

.menu-detail__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.menu-detail__category {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.menu-detail__section {
  padding: 4rem 2rem;
}

.menu-detail__container {
  max-width: 900px;
  margin: 0 auto;
}

.menu-detail__intro {
  font-size: 1.15rem;
  line-height: 2.2;
  margin-bottom: 3rem;
  text-align: center;
}

.menu-detail__content h3 {
  font-size: 1.75rem;
  margin: 3rem 0 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.menu-detail__content p {
  line-height: 2.2;
  margin-bottom: 1.5rem;
}

.menu-detail__content ul {
  list-style: none;
  margin: 2rem 0;
}

.menu-detail__content li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.8;
}

.menu-detail__content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* 料金表 */
.pricing {
  background: var(--soft-pink);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.pricing__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.pricing__list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.pricing__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing__item:last-child {
  border-bottom: none;
}

.pricing__name {
  font-size: 1.1rem;
  font-weight: 500;
}

.pricing__price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

.pricing__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 施術の流れ */
.flow {
  margin: 3rem 0;
}

.flow__steps {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.flow__step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

.flow__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pink), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.flow__content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.flow__content p {
  line-height: 1.8;
  color: var(--text-light);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary-pink), var(--gold));
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0 0;
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.cta .btn {
  background: var(--white);
  color: var(--gold);
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
}

.cta .btn:hover {
  background: var(--beige);
}

/* ========================================
   代表メッセージページ - ピンクボックス
   ======================================== */
./* 代表メッセージページ - ピンクボックス */
.pink-box {
  background: #fff5f7;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border-left: 4px solid var(--gold);
}

.pink-box h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pink-box p {
  font-size: 1.1rem;
  line-height: 2.0;
  margin-bottom: 1.5rem;
}

.pink-box p:last-child {
  margin-bottom: 0;
}

/* スマホ版 - ピンクボックスの横幅を最大限に広げる */
@media (max-width: 767px) {
  .message-page .menu-detail__content {
    max-width: 100% !important;
    padding: 0 5% !important;
  }
  
  .pink-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 2rem 1.5rem !important;
    margin: 2rem 0 !important;
    box-sizing: border-box !important;
  }
  
  .pink-box h3 {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .pink-box p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* 他のボックスも同様に */
  .message-page div[style*="background"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 2rem 1.5rem !important;
    margin: 2rem 0 !important;
    box-sizing: border-box !important;
  }
  
  /* すべての段落テキスト */
  .message-page .menu-detail__content > p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* 見出し */
  .message-page h2 {
    font-size: 1.8rem !important;
    line-height: 1.6 !important;
  }
  
  .message-page h3 {
    font-size: 1.3rem !important;
    line-height: 1.7 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .message-page h4 {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
  }
  
  .message-page h5 {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
  }
}


/* ========================================
   アクセスページ
   ======================================== */
.access__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.access__info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
}

.access__info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.access__info p {
  line-height: 2;
  margin-bottom: 1rem;
}

.access__map {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* PC表示時にスマホ専用の改行を非表示 */
/* PC版トップページヘッダー画像位置調整 */
@media (min-width: 768px) {
  .hero-section {
    background-position: 70% center !important;
  }
  
  /* PC版：ロゴサイズ */
  header img,
  .header img,
  .header__logo img,
  .logo img {
    width: 150px !important;
    max-width: 150px !important;
    height: auto !important;
    max-height: 80px !important;
    object-fit: contain !important;
  }
  
  /* PC版：プロフィール画像 - 完全な円形に強制 */
  .profile-page .profile-image,
  .profile-page .profile-photo,
  .profile-image-container img,
  .profile-photo-container img,
  .profile-section img,
  .message-page img[src*="profile"] {
    width: 280px !important;
    height: 280px !important;
    min-width: 280px !important;
    min-height: 280px !important;
    max-width: 280px !important;
    max-height: 280px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 30px auto !important;
    aspect-ratio: 1 / 1 !important;
    border: none !important;
  }
  
  /* コンテナも正方形に */
  .profile-image-container,
  .profile-photo-container {
    width: 280px !important;
    height: 280px !important;
    min-width: 280px !important;
    min-height: 280px !important;
    max-width: 280px !important;
    max-height: 280px !important;
    margin: 30px auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }
  
  /* 二重枠を削除 */
  .profile-image-container::before,
  .profile-image-container::after,
  .profile-photo-container::before,
  .profile-photo-container::after {
    display: none !important;
    content: none !important;
  }
  
  /* 楕円形の枠をすべて削除 */
  .profile-page .oval,
  .profile-page .ellipse,
  .profile-section .oval,
  .profile-section .ellipse {
    display: none !important;
  }
  
  /* すべての楕円形を円形に変更 */
  [class*="oval"],
  [class*="ellipse"],
  .profile-page svg ellipse,
  .profile-section svg ellipse {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    rx: 50% !important;
    ry: 50% !important;
  }
  
  /* SVGの楕円形要素を削除 */
  .profile-page svg,
  .profile-section svg {
    display: none !important;
  }
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media (max-width: 767px) {
  /* スマホ表示時にスマホ専用の改行を表示 */
  .sp-only {
    display: block;
  }
  
  /* PC専用要素を非表示 */
  .pc-only {
    display: none !important;
  }

  /* ========================================
     ヘッダーとロゴ
     ======================================== */
  /* ヘッダー全体 */
  header, .header {
    padding: 10px 5% !important;
    height: auto !important;
  }
  
  /* ロゴ画像 */
  header img, 
  .header img, 
  .header__logo img,
  .logo img,
  header .logo,
  .logo-container,
  .header-logo {
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
    max-height: 60px !important;
    object-fit: contain !important;
  }
  
  /* ロゴコンテナ */
  .logo-container,
  .header-logo,
  .header__logo {
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
  }

  /* ヒーローセクションの背景画像位置調整（女性の笑顔が見えるように） */
  .hero {
    background-position: 65% center !important;
  }

  /* ========================================
     コンテナ幅の統一
     ======================================== */
  .container, .content, .text-container, .section, 
  .message-box, .highlight-box, .card, .about-section,
  .testimonials-section, footer, .info-box,
  .section__container,
  .menu-detail__container,
  .hero__content,
  .message__content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* ========================================
     画像の幅（ヘッダーロゴを除く）
     ======================================== */
  img:not(header img):not(.header img):not(.header__logo img):not(.logo img) {
    width: 90% !important;
    max-width: 90% !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
  }
  
  /* ========================================
     本文のテキスト
     ======================================== */
  p, .body-text {
    font-size: 16px !important;
    line-height: 2.0 !important;
    letter-spacing: 0.05em;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    width: 100%;
  }
  
  /* ========================================
     ボックス内のテキスト
     ======================================== */
  .message-box, .highlight-box, .testimonial-card, .info-box {
    padding: 30px 20px !important;
    font-size: 16px !important;
    line-height: 2.0 !important;
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    box-sizing: border-box !important;
  }

  
  /* ========================================
     見出し
     ======================================== */
  h2, h3 {
    font-size: 22px !important;
    line-height: 1.8 !important;
    word-break: keep-all !important;
    width: 100%;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
  }
  
  h4 {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-top: 1.5rem !important;
  }
  
  h2 + p, h3 + p, h4 + p {
    margin-top: 0 !important;
  }
  
  /* ========================================
     ページ上部の余白削減
     ======================================== */
  .hero-section + section,
  .page-header + section,
  section:first-of-type {
    margin-top: 50px !important;
    padding-top: 0 !important;
  }
  
  /* ========================================
     句読点の禁則処理
     ======================================== */
  p, .message-box, .text-content, li {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    hanging-punctuation: first last !important;
  }

  /* ヒーローセクションのスマホ調整 */
  .hero__title {
    font-size: 32px !important;
    line-height: 1.6 !important;
  }

  .hero__description {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  .hero__subtitle {
    font-size: 14px !important;
  }

  /* メニュー詳細ヒーローのスマホ調整 */
  .menu-detail__hero h1 {
    font-size: 28px !important;
    line-height: 1.6 !important;
  }

  .menu-detail__hero p {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  /* ピンクボックス・メッセージボックス内のテキスト */
  .highlight-box,
  .message-box,
  .message__body,
  div[style*="background"] p {
    padding: 30px 20px !important;
    font-size: 16px !important;
    line-height: 2.0 !important;
  }

  /* ゴールドの強調テキスト */
  .gold-text,
  .emphasis-text,
  p[style*="color: var(--gold)"],
  p[style*="font-weight: 600"] {
    font-size: 18px !important;
    line-height: 2.0 !important;
    margin: 1.5rem 0 !important;
  }

  /* ========================================
     MOANI BEAUTYとはセクション
     ======================================== */
  #about-section, .about-section {
    width: 100% !important;
    padding: 40px 5% !important;
  }
  
  #about-section .container,
  #about-section .text-container,
  #about-section p {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
  
  #about-section p {
    font-size: 15px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }
  
  #about-section img,
  .about-section img,
  .about-image {
    width: 90% !important;
    max-width: 90% !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
    object-fit: cover;
    border-radius: 10px;
  }
  
  #about-section .image-container,
  .about-section .image-container {
    width: 100% !important;
    padding: 0 5% !important;
    margin: 20px 0 !important;
    overflow: visible !important;
  }
  
  #about-section h2, #about-section h3 {
    font-size: 20px !important;
    line-height: 1.8 !important;
    text-align: center;
    width: 100%;
  }
  
  #about-section .gold-text,
  #about-section .emphasis-text {
    font-size: 16px !important;
    line-height: 2.0 !important;
    width: 100%;
    text-align: center;
  }

  /* ========================================
     お客様の声セクション
     ======================================== */
  #testimonials-section, .testimonials-section, .testimonials {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    padding: 40px 5% !important;
  }
  
  /* カードコンテナ */
  .testimonials-container,
  .testimonials-wrapper,
  .voice-cards,
  .testimonials {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
  }
  
  /* 各お客様の声カード */
  .testimonial-card,
  .voice-card,
  .testimonial-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
    background: #f9f3f0 !important;
    border-radius: 10px !important;
  }
  
  /* カード内のすべての要素 */
  .testimonial-card *,
  .voice-card * {
    display: block !important;
    visibility: visible !important;
  }
  
  /* 引用符アイコン */
  .testimonial-card .quote-icon,
  .voice-card .quote-icon {
    display: block !important;
    font-size: 40px !important;
    color: #d4a5a5 !important;
    margin-bottom: 15px !important;
  }
  
  .testimonial-card blockquote,
  .testimonial-card .quote,
  .testimonial-text,
  .voice-card .quote {
    display: block !important;
    font-size: 16px !important;
    line-height: 2.0 !important;
    margin-bottom: 20px !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 1rem 0 !important;
  }
  
  .testimonial-card .customer-info,
  .testimonial-card .name,
  .testimonial-card .details,
  .voice-card .customer-info {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    width: 100%;
    color: #666 !important;
  }

  /* ========================================
     フッター
     ======================================== */
  footer, .footer {
    width: 100% !important;
    padding: 40px 5% !important;
    box-sizing: border-box !important;
  }
  
  footer .container,
  footer .footer-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  footer p, footer .description {
    font-size: 14px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  footer h3, footer .footer-title, footer h4 {
    font-size: 20px !important;
    line-height: 1.8 !important;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  footer ul, footer .menu-list {
    width: 100%;
    padding-left: 0;
  }
  
  footer li, footer .menu-item {
    font-size: 15px !important;
    line-height: 2.0 !important;
    margin-bottom: 0.5rem;
  }

  /* ========================================
     代表メッセージページ
     ======================================== */
  .message-page .hero-section + section,
  .message-page section:first-of-type,
  .message-page .page-header + section {
    margin-top: 0 !important;
    padding-top: 20px !important;
  }
  
  .message-page h2:first-of-type {
    font-size: 26px !important;
    line-height: 1.8 !important;
    white-space: normal !important;
  }
  
  .message-page .message-box,
  .message-page .highlight-box,
  .message-page .pink-box {
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
  }
  
  .message-page .message-box p,
  .message-page .highlight-box p {
    font-size: 16px !important;
    line-height: 2.2 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    width: 100%;
  }
  
  .message-page p,
  .message-page .message-box,
  .message-page .text-content {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    hanging-punctuation: first last !important;
  }
  
  .message-page p {
    font-size: 16px !important;
    line-height: 2.2 !important;
    letter-spacing: 0.05em;
  }
  
  .message-page .gold-text,
  .message-page .emphasis-text {
    font-size: 18px !important;
    line-height: 2.0 !important;
  }
  
  /* 代表メッセージページのテキストを左揃えに */
  .message-page,
  .message-page p,
  .message-page .text-content,
  .message-page .message-text,
  .message-page .menu-detail__content {
    text-align: left !important;
  }
  
  /* すべてのテキストボックスを広げる */
  .message-page .message-box,
  .message-page .highlight-box,
  .message-page .pink-box,
  .message-page .white-box,
  .message-page .text-content,
  .message-page .menu-detail__content {
    width: 95% !important;
    max-width: 95% !important;
    min-width: 95% !important;
    margin: 20px auto !important;
    padding: 35px 25px !important;
    box-sizing: border-box !important;
  }
  
  /* ピンクボックス専用スタイル */
  .message-page .pink-box,
  .message-page .highlight-box,
  .message-page div[style*="soft-pink"] {
    background: #fff5f7 !important;
    border-radius: 15px !important;
  }
  
  /* ピンクボックス内のテキスト */
  .message-page .pink-box p,
  .message-page .highlight-box p,
  .message-page div[style*="soft-pink"] p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
  }
  
  /* ピンクボックス内の最後の段落 */
  .message-page .pink-box p:last-child,
  .message-page .highlight-box p:last-child,
  .message-page div[style*="soft-pink"] p:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ピンクボックス内の見出し */
  .message-page .pink-box h3,
  .message-page .highlight-box h3,
  .message-page div[style*="soft-pink"] h3 {
    font-size: 20px !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
  }
  
  /* ピンクボックスなどのdivスタイル要素 */
  .message-page div[style*="background"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 35px 25px !important;
    box-sizing: border-box !important;
  }
  
  /* テキストの改行を自然に */
  .message-page p {
    width: 100% !important;
    max-width: 100% !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    white-space: normal !important;
    font-size: 16px !important;
    line-height: 2.0 !important;
  }
  
  /* ゴールドテキストも同様に */
  .message-page .gold-text {
    width: 100% !important;
    max-width: 100% !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    font-size: 18px !important;
    line-height: 2.0 !important;
  }
  
  /* 見出しのみ中央揃えを維持 */
  .message-page h1,
  .message-page h2,
  .message-page h3 {
    text-align: center !important;
  }
  
  /* ボックス内のテキストも左揃え */
  .message-page .message-box,
  .message-page .highlight-box,
  .message-page .pink-box,
  .message-page .white-box {
    text-align: left !important;
  }
  
  .message-page .message-box p,
  .message-page .highlight-box p,
  .message-page .pink-box p,
  .message-page .white-box p {
    text-align: left !important;
  }
  
  /* ゴールドの強調テキストは中央揃えを維持 */
  .message-page .gold-text,
  .message-page .emphasis-text,
  .message-page p[style*="text-align: center"] {
    text-align: center !important;
  }
  
  /* 改行を自然に */
  .message-page p,
  .message-page .message-box p {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    white-space: normal !important;
  }
  
  /* ========================================
     スマホ版 - ピンクボックスの横幅を最大限に広げる
     ======================================== */
  .message-page .menu-detail__content {
    max-width: 100% !important;
    padding: 0 5% !important;
  }
  
  .pink-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 2rem 1.5rem !important;
    margin: 2rem 0 !important;
    box-sizing: border-box !important;
  }
  
  .pink-box h3 {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .pink-box p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* 他のボックスも同様に */
  .message-page div[style*="background"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 2rem 1.5rem !important;
    margin: 2rem 0 !important;
    box-sizing: border-box !important;
  }
  
  /* すべての段落テキスト */
  .message-page .menu-detail__content > p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* 見出し */
  .message-page h2 {
    font-size: 1.8rem !important;
    line-height: 1.6 !important;
  }
  
  .message-page h3 {
    font-size: 1.3rem !important;
    line-height: 1.7 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .message-page h4 {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
  }
  
  .message-page h5 {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
  }

  /* ========================================
     Reborn骨盤子宮リリースページ
     ======================================== */
  .pelvis-page .page-title,
  .pelvis-page h1 {
    font-size: 22px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  
  /* 施術の流れセクション全体 */
  .pelvis-page .flow-section,
  .pelvis-page .steps-section,
  .pelvis-page .procedure-section,
  .flow-section,
  .steps-section,
  .procedure-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 40px 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }
  
  /* 施術の流れのコンテナ */
  .flow-container,
  .steps-container,
  .procedure-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 5% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* 各ステップカード */
  .step-card,
  .flow-item,
  .procedure-step,
  .step {
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    padding: 25px 20px !important;
    box-sizing: border-box !important;
    background: #f9f3f0 !important;
    border-radius: 10px !important;
  }
  
  /* ステップ番号 */
  .step-number,
  .step-card .number {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    margin-bottom: 15px !important;
  }
  
  /* ステップタイトル */
  .step-card h3,
  .flow-item h3,
  .procedure-step h3,
  .step-title {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }
  
  /* ステップの説明文 */
  .step-card p,
  .flow-item p,
  .procedure-step p,
  .step-description {
    font-size: 16px !important;
    line-height: 2.0 !important;
    width: 100% !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    margin: 0 !important;
  }
  
  /* こんな方におすすめボックス */
  .recommend-box,
  .for-you-box,
  .target-box,
  .recommended-section,
  .who-box,
  .pelvis-page .recommendation-box,
  .pelvis-page .target-audience-box,
  .pelvis-page .info-box {
    width: 90% !important;
    max-width: 90% !important;
    margin: 30px auto !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
    background: #fff5f7 !important;
    border-radius: 10px !important;
  }
  
  /* こんな方におすすめの見出し */
  .recommend-box h3,
  .for-you-box h3,
  .recommended-section h3 {
    font-size: 20px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  
  /* こんな方におすすめのリスト */
  .recommend-box ul,
  .for-you-box ul,
  .recommended-section ul,
  .pelvis-page .recommendation-box ul {
    width: 100% !important;
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  
  .recommend-box ul li,
  .for-you-box ul li,
  .recommended-section ul li,
  .pelvis-page .recommendation-box li {
    font-size: 16px !important;
    line-height: 2.0 !important;
    margin-bottom: 15px !important;
    padding-left: 25px !important;
    position: relative !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* リストのアイコン（チェックマークや点） */
  .recommend-box ul li:before,
  .for-you-box ul li:before,
  .recommended-section ul li:before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #d4a5a5 !important;
    font-size: 18px !important;
  }
  
  .pelvis-page .flow-step,
  .pelvis-page .step-item,
  .pelvis-page .procedure-step {
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
  }
  
  .pelvis-page .flow-step p,
  .pelvis-page .step-item p,
  .pelvis-page .procedure-step p {
    font-size: 15px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    padding: 0 !important;
  }
  
  .pelvis-page .step-number {
    font-size: 18px !important;
    margin-bottom: 10px;
  }
  
  .pelvis-page .step-title {
    font-size: 16px !important;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .pelvis-page .recommendation-box p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
  }
  
  .pelvis-page .recommendation-box ul {
    padding-left: 1.5em;
    margin: 0;
  }
  
  .pelvis-page .recommendation-box li {
    margin-bottom: 10px;
    list-style-position: outside;
  }
  
  .pelvis-page .container,
  .pelvis-page .content {
    width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  
  .pelvis-page section {
    width: 100% !important;
    padding: 30px 5% !important;
  }
  
  .pelvis-page p, .pelvis-page li {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
  }

  /* ========================================
     Rebornロミロミページ
     ======================================== */
  .lomilomi-page .flow-section, 
  .lomilomi-page .steps-section {
    width: 100% !important;
    padding: 40px 5% !important;
  }
  
  .lomilomi-page .flow-step, 
  .lomilomi-page .step-item {
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
  }
  
  .lomilomi-page .flow-step p, 
  .lomilomi-page .step-item p {
    font-size: 15px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    padding: 0 !important;
  }
  
  .lomilomi-page .course-section,
  .lomilomi-page .menu-section {
    width: 100% !important;
    padding: 40px 5% !important;
  }
  
  .lomilomi-page .course-description,
  .lomilomi-page .course-card {
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    padding: 25px 20px !important;
    box-sizing: border-box !important;
  }
  
  .lomilomi-page .course-description p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    width: 100%;
    margin: 0 0 1rem 0;
  }
  
  .lomilomi-page .container,
  .lomilomi-page .content {
    width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  
  .lomilomi-page section {
    width: 100% !important;
    padding: 30px 5% !important;
  }
  
  .lomilomi-page .info-box,
  .lomilomi-page .recommendation-box {
    width: 90% !important;
    margin: 20px auto !important;
    padding: 25px 20px !important;
  }

  /* ========================================
     アクセス・ご予約ページ
     ======================================== */
  .access-page .hero-section + section,
  .access-page section:first-of-type,
  .access-page .page-header + section,
  .reservation-page .hero-section + section,
  .reservation-page section:first-of-type,
  .reservation-page .page-header + section {
    margin-top: 0 !important;
    padding-top: 20px !important;
  }
  
  .access-page .cancel-policy-box, 
  .access-page .cancellation-box,
  .reservation-page .cancel-policy-box, 
  .reservation-page .cancellation-box {
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    padding: 25px 20px !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .cancel-policy-box h3,
  .cancellation-box h3 {
    font-size: 18px !important;
    margin-bottom: 10px;
  }
  
  .cancel-policy-box p,
  .cancellation-box p {
    font-size: 16px !important;
    line-height: 2.0 !important;
    margin: 0;
  }
  
  .access-page .container,
  .reservation-page .container {
    width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  
  .access-page section,
  .reservation-page section {
    width: 100% !important;
    padding: 30px 5% !important;
  }
  
  .access-page .info-box,
  .reservation-page .info-box {
    width: 90% !important;
    margin: 20px auto !important;
    padding: 25px 20px !important;
  }


  /* 見出しと本文の間の余白 */
  h2, h3, h4 {
    margin-top: 2rem !important;
  }

  h2 + p, h3 + p, h4 + p {
    margin-top: 0 !important;
  }

  /* メッセージセクションの調整 */
  .message__intro {
    font-size: 16px !important;
    line-height: 2.0 !important;
  }

  /* 代表メッセージページの調整 */
  .menu-detail__content p {
    font-size: 16px !important;
    line-height: 2.0 !important;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 20px var(--shadow);
    transition: right 0.3s ease;
  }

  .header__nav.active {
    right: 0;
  }

  .header__menu-toggle {
    display: block;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .concept__content {
    grid-template-columns: 1fr;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .message__body {
    padding: 2rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flow__step {
    flex-direction: column;
    gap: 1rem;
  }

  /* 施術の流れとコース説明の見切れ防止 */
  .flow__steps {
    max-height: none !important;
    overflow: visible !important;
  }

  .flow__step {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .flow__content {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .flow__content h4 {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-bottom: 0.75rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .flow__content p {
    font-size: 15px !important;
    line-height: 1.9 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .pricing__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  /* ========================================
     CTA（予約ボタン）セクション
     ======================================== */
  /* CTA全体 */
  .cta-section,
  .cta-container,
  .call-to-action,
  .cta {
    width: 100% !important;
    padding: 40px 5% !important;
    box-sizing: border-box !important;
  }
  
  /* CTAボタン上のテキスト */
  .cta-text,
  .cta-description,
  .cta-section p,
  .cta-container p,
  .cta h3,
  .cta p {
    width: 90% !important;
    max-width: 90% !important;
    margin: 0 auto 30px auto !important;
    padding: 0 !important;
    font-size: 16px !important;
    line-height: 2.0 !important;
    text-align: center !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  
  /* CTAの見出し */
  .cta h3 {
    font-size: 20px !important;
    line-height: 1.8 !important;
  }
  
  /* CTAボタン */
  .cta-button,
  .reservation-button,
  .cta-section .button,
  .cta-container .button,
  .cta .btn,
  .cta a.btn {
    width: 90% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    padding: 18px 30px !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    white-space: normal !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  
  /* ========================================
     プロフィール画像を円形に
     ======================================== */
  /* プロフィールページの画像を完全な円形に */
  .profile-page .profile-image,
  .profile-page .profile-photo,
  .profile-image-container img,
  .profile-photo-container img,
  .profile-section img,
  .message-page .profile-image,
  .message-page img[src*="profile"] {
    width: 220px !important;
    height: 220px !important;
    min-width: 220px !important;
    min-height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 30px auto !important;
    aspect-ratio: 1 / 1 !important;
    border: none !important;
  }
  
  /* 円形フレームコンテナ */
  .profile-image-container,
  .profile-photo-container {
    width: 220px !important;
    height: 220px !important;
    min-width: 220px !important;
    min-height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    margin: 30px auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }
  
  /* 二重枠を削除 */
  .profile-image-container::before,
  .profile-image-container::after,
  .profile-photo-container::before,
  .profile-photo-container::after {
    display: none !important;
    content: none !important;
  }
  
  /* 楕円形の枠をすべて削除 */
  .profile-page .oval,
  .profile-page .ellipse,
  .profile-section .oval,
  .profile-section .ellipse {
    display: none !important;
  }
  
  /* すべての楕円形を円形に変更 */
  [class*="oval"],
  [class*="ellipse"],
  .profile-page svg ellipse,
  .profile-section svg ellipse {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    rx: 50% !important;
    ry: 50% !important;
  }
  
  /* SVGの楕円形要素を削除 */
  .profile-page svg,
  .profile-section svg {
    display: none !important;
  }
  
  /* ========================================
     会社概要テーブル - スマホ対応
     ======================================== */
  .menu-detail__content table {
    font-size: 14px;
  }
  
  .menu-detail__content table td {
    display: block;
    width: 100% !important;
    padding: 0.5rem 0 !important;
  }
  
  .menu-detail__content table tr {
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .menu-detail__content table td:first-child {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }
}

/* ========================================
   フェムエステページ - 比較表
   ======================================== */
/* スマホ版：比較表画像 */
.comparison-table-image {
  width: 100% !important;
  margin: 2rem 0 !important;
  text-align: center !important;
}

.comparison-table-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* PC版：比較表テーブル */
.comparison-table-container {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 2rem 0 !important;
  box-sizing: border-box !important;
}

.comparison-table {
  width: 100% !important;
  min-width: 600px !important;
  border-collapse: collapse !important;
  background: white !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem !important;
  text-align: center !important;
  border: 1px solid var(--dark-beige) !important;
}

.comparison-table thead th {
  background: var(--soft-pink) !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.comparison-table tbody th {
  background: var(--beige) !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  text-align: left !important;
  width: 20% !important;
}

.comparison-table tbody td {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

/* ========================================
   フェムエステページ - 施術の流れ
   ======================================== */
.femcare-page .flow-section,
.femcare-page .steps-section,
.femcare-page .procedure-section {
  width: 100% !important;
  max-width: 100% !important;
  padding: 40px 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

.femcare-page .flow-container,
.femcare-page .steps-container,
.femcare-page .procedure-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 5% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.femcare-page .step-card,
.femcare-page .flow-item,
.femcare-page .procedure-step,
.femcare-page .step {
  width: 90% !important;
  max-width: 90% !important;
  margin: 20px auto !important;
  padding: 25px 20px !important;
  box-sizing: border-box !important;
  background: #f9f3f0 !important;
  border-radius: 10px !important;
}

.femcare-page .step-card h3,
.femcare-page .flow-item h3,
.femcare-page .procedure-step h3 {
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin-bottom: 15px !important;
  width: 100% !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

.femcare-page .step-card p,
.femcare-page .flow-item p,
.femcare-page .procedure-step p {
  font-size: 16px !important;
  line-height: 2.0 !important;
  width: 100% !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  margin: 0 !important;
}

/* スマホ版 - 比較表とフェムエステページ */
@media (max-width: 767px) {
  /* 比較表はスマホでは画像表示（上記の .sp-only/.pc-only で制御） */
  
  .femcare-page .menu-detail__content {
    max-width: 100% !important;
    padding: 0 5% !important;
  }
  
  /* 施術の流れ - より具体的なセレクタ */
  .femcare-page .flow__steps {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .femcare-page .flow__step {
    width: 95% !important;
    max-width: 95% !important;
    margin: 20px auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
  }
  
  .femcare-page .flow__content {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .femcare-page .flow__content h4 {
    font-size: 16px !important;
    line-height: 1.8 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }
  
  .femcare-page .flow__content p {
    font-size: 15px !important;
    line-height: 2.0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }
  
  .femcare-page .step-card,
  .femcare-page .flow-item,
  .femcare-page .procedure-step {
    width: 95% !important;
    max-width: 95% !important;
    padding: 20px 15px !important;
  }
  
  .femcare-page .step-card h3,
  .femcare-page .flow-item h3,
  .femcare-page .procedure-step h3 {
    font-size: 16px !important;
  }
  
  .femcare-page .step-card p,
  .femcare-page .flow-item p,
  .femcare-page .procedure-step p {
    font-size: 15px !important;
  }
}

/* ========================================
   アクセシビリティ
   ======================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   ユーティリティクラス
   ======================================== */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}
