@charset "UTF-8";

/* =======================================================
   Variables & Reset
======================================================= */
:root {
  --base-bg: #fbfaf8;       /* 肌色寄りの白（背景） */
  --white: #ffffff;
  --text-main: #231815;     /* 基本フォントカラー（墨色） */
  --text-light: #7a7371;
  --primary-color: #f4a9b6; /* 淡いピンク */
  --primary-light: #fff7f9; /* ほんのりピンク */
  --accent-color: #d86a83;  /* ローズピンク（アクセント） */
  --line-color: #ece6e2;
  --font-sans: Roboto,Noto Sans Japanese,Noto Sans JP,游ゴシック体,YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,ヒラギノ角ゴ ProN,Hiragino Kaku Gothic ProN,メイリオ,Meiryo,sans-serif;
  --font-serif: 'Noto Serif JP', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans); color: var(--text-main);
  background-color: var(--base-bg); line-height: 2.2; letter-spacing: 0.05em; font-size: 16px; 
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }

/* ★SEO対策: addressタグが標準で斜体(italic)になるのを防ぐリセット */
address { font-style: normal; }

/* =======================================================
   SEO & Accessibility (LLMO) Hidden Classes
======================================================= */
/* 視覚的には隠しつつ、Googleクローラーと音声読み上げに文脈を伝える魔法のクラス */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* =======================================================
   Layout Components
======================================================= */
.container { width: 90%; max-width: 1000px; margin: 0 auto; }

.pc-only { display: block; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none !important; }
  .sp-only { display: block !important; }
  span.sp-only { display: inline !important; }
}

.section-title { text-align: center; margin-bottom: 40px; }
.section-title span { display: block; font-family: var(--font-sans); font-size: 0.85rem; color: var(--accent-color); letter-spacing: 0.1em; margin-bottom: 5px; font-weight: bold; }
.section-title h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
.section-title p { margin-top: 15px; color: var(--text-main); font-size: 1rem; line-height: 1.8;}

.tax-note {
  color: #d35400;
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* =======================================================
   Header & Logo
======================================================= */
.header { background-color: var(--white); border-bottom: 1px solid var(--line-color); padding: 15px 0; }
.header-inner { width: 90%; max-width: 1000px; margin: 0 auto; text-align: center; }

/* ★修正: スマホ時のロゴのレイアウト崩れを解消 */
.logo-area h1 { margin: 0; padding: 0; line-height: 1; }
.logo-area h1 a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 15px; 
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
.logo-area h1 a:hover { background: transparent; opacity: 0.8; color: inherit; }

.logo-img { display: block; max-width: 100%; height: auto; max-width: 360px; }
.logo-text { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--text-main); letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .header { padding: 10px 0; }
  .logo-area h1 a { flex-direction: column; gap: 5px; }
  .logo-img { max-width: 240px; } 
  .logo-text { font-size: 1.1rem; }
}

/* =======================================================
   Coming Soon & Greeting
======================================================= */
.coming-soon { padding: 60px 0 30px; }
.message-box { background-color: var(--white); border: 2px solid var(--primary-color); border-radius: 12px; padding: 40px 30px; text-align: center; box-shadow: 0 10px 20px rgba(244, 169, 182, 0.15); }
.message-box h2 { color: var(--accent-color); font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 20px; line-height: 1.4; }
.message-box p { font-size: 1rem; }

@media (max-width: 768px) {
  .message-box { padding: 30px 20px; text-align: left; }
  .message-box h2 { font-size: 1.2rem; text-align: center; }
  .message-box p { font-size: 0.95rem; }
}

.greeting { padding: 50px 0; }
.doctor-flex { display: flex; gap: 40px; align-items: center; background-color: var(--white); padding: 40px; border-radius: 12px; border: 1px solid var(--line-color); }
.doctor-img { flex: 0 0 40%; border-radius: 8px; overflow: hidden; }
.placeholder-img { width: 100%; aspect-ratio: 3/4; background-color: var(--line-color); display: flex; align-items: center; justify-content: center; color: #999; text-align: center; padding: 20px; }
.doctor-text { flex: 1; }
.doctor-text p { margin-bottom: 1.5em; }
.doctor-name { margin-top: 30px; font-weight: bold; font-size: 1.1rem; color: var(--accent-color); text-align: right; }
@media (max-width: 768px) {
  .doctor-flex { flex-direction: column; padding: 25px; gap: 25px; }
  .doctor-img { width: 80%; margin: 0 auto; }
  .doctor-name { text-align: center; }
}

/* =======================================================
   Price Cards (Campaign Tables)
======================================================= */
.campaign-price {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.price-card {
  background: var(--base-bg);
  border-radius: 15px;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid var(--line-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.price-card-header {
  padding: 40px 30px;
  text-align: center;
  color: var(--white);
}

.price-card.-student .price-card-header { background: linear-gradient(135deg, #c78216, #d9a041); }
.price-card.-women .price-card-header { background: linear-gradient(135deg, var(--accent-color), #e77f93); }
.price-card.-men .price-card-header { background: linear-gradient(135deg, #597780, #7a97a0); }

.price-card-header .badge {
  display: inline-block;
  background: var(--white);
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.price-card-header h3 {
  font-family: var(--font-serif);
  font-size: 2.0rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.price-card-header p {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.8;
}

.price-card-body {
  padding: 40px;
  background: var(--white);
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-light);
  margin-top: 30px;
  line-height: 1.4;
}
.category-title:first-child { margin-top: 0; }

.table-wrapper-responsive {
  width: 100%;
}

.campaign-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.campaign-table th, 
.campaign-table td {
  padding: 18px 15px;
  border-bottom: 1px solid var(--line-color);
  text-align: center;
  line-height: 1.6;
}

.campaign-table thead th {
  background-color: var(--primary-light);
  font-weight: bold;
  font-size: 1.05rem;
}
.price-card.-women .campaign-table thead th { color: var(--accent-color); }
.price-card.-student .campaign-table thead th { background-color: #fdfaf4; color: #c78216; }
.price-card.-men .campaign-table thead th { background-color: #f4f6f7; color: #597780; }

/* ★LLMO対策: tdからthに変更したアイテム名（施術部位）のスタイル調整。クラス指定に統合 */
.campaign-table .item-name {
  text-align: left;
  font-weight: bold;
  width: 35%;
  font-size: 1.15rem;
  background-color: transparent;
  color: var(--text-main);
}

.campaign-table .small-text {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: normal;
  margin-top: 3px;
  line-height: 1.4;
}

.price-normal {
  color: #666;
  text-decoration: line-through;
  font-size: 1.05rem;
}

.camp-price {
  font-size: 1.6rem;
  font-weight: bold;
}
.price-card.-women .camp-price { color: var(--accent-color); }
.price-card.-student .camp-price { color: #c78216; }
.price-card.-men .camp-price { color: #597780; }

.group-discount {
  background: #fff9ed;
  border: 2px dashed #c78216;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  line-height: 1.6;
}
.group-discount h4 {
  color: #d35400;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.group-discount p { font-size: 1.1rem; }
.group-discount strong {
  color: #d35400;
  font-size: 1.8rem;
  display: block;
  margin-top: 10px;
}

/* ★修正: スマホサイズ時のテーブル「カード型」リセット */
@media (max-width: 768px) {
  .price-card-header { padding: 30px 15px; }
  .price-card-body { padding: 25px 15px; }
  
  .price-card-header .badge { font-size: 0.85rem; margin-bottom: 10px; }
  .price-card-header h3 { font-size: 1.4rem; }
  .price-card-header .small-title { display: block; font-size: 1.1rem; margin-top: 5px; }
  .price-card-header p { font-size: 0.95rem; }

  .category-title { font-size: 1.2rem; margin-top: 20px; }

  .campaign-table, 
  .campaign-table thead, 
  .campaign-table tbody, 
  .campaign-table th, 
  .campaign-table td, 
  .campaign-table tr {
    display: block;
  }
  
  .campaign-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .campaign-table tr {
    border: 1px solid var(--line-color);
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fafafa;
    overflow: hidden;
  }
  
  .campaign-table td {
    border: none;
    border-bottom: 1px dashed var(--line-color);
    position: relative;
    padding: 10px 15px 10px 40%; 
    text-align: right;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .campaign-table td:last-child {
    border-bottom: 0;
  }

  .campaign-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    font-size: 0.8rem;
    color: var(--text-light);
  }

  /* ★LLMO対策: thに変更したアイテム名のスマホスタイル再定義。クラス指定に統合 */
  .campaign-table .item-name {
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--line-color);
    font-size: 1.1rem;
    color: var(--text-main);
    display: block;
  }
  .campaign-table .item-name::before {
    content: none; 
  }
  .price-card.-women .campaign-table .item-name { background-color: #fff7f9; }
  .price-card.-student .campaign-table .item-name { background-color: #fdfaf4; }
  .price-card.-men .campaign-table .item-name { background-color: #f4f6f7; }

  .campaign-table .small-text { display: inline-block; margin-left: 5px; font-size: 0.75rem; }
  .price-normal { font-size: 0.95rem; }
  .camp-price { font-size: 1.4rem; }

  .group-discount { padding: 20px; }
  .group-discount h4 { font-size: 1.3rem; }
  .group-discount p { font-size: 0.95rem; }
  .group-discount strong { font-size: 1.4rem; }
}

/* =======================================================
   Contact Area
======================================================= */
.contact-area { padding: 80px 0 50px; }
.contact-box { background: linear-gradient(135deg, var(--primary-light), #fff); border: 2px solid var(--primary-color); border-radius: 20px; padding: 50px 30px; text-align: center; box-shadow: 0 10px 30px rgba(244, 169, 182, 0.2); }
.contact-icon { font-size: 3rem; margin-bottom: 10px; line-height: 1; }
.contact-box h3 { font-family: var(--font-serif); color: var(--text-main); font-size: 1.4rem; margin-bottom: 15px; line-height: 1.4; }
.contact-desc { font-weight: bold; color: var(--accent-color); margin-bottom: 25px; line-height: 1.8;}
.tel-link { display: inline-block; background-color: var(--white); color: var(--accent-color); font-family: var(--font-sans); font-size: 2.2rem; font-weight: 700; padding: 15px 40px; border-radius: 50px; border: 2px solid var(--accent-color); box-shadow: 0 6px 0 var(--primary-color); margin-bottom: 20px; transition: all 0.2s ease; line-height: 1.2; }
.tel-link:hover { transform: translateY(4px); box-shadow: 0 2px 0 var(--primary-color); opacity: 1; }
.tel-label { font-size: 1.2rem; margin-right: 5px; }
.contact-time { font-size: 0.95rem; color: var(--text-light); }
@media (max-width: 768px) {
  .contact-box { padding: 40px 20px; }
  .tel-link { font-size: 1.6rem; padding: 12px 25px; }
  .tel-label { font-size: 1rem; }
}

/* =======================================================
   Access & Footer
======================================================= */
.access-info { text-align: center; padding: 0 0 50px; }
.clinic-title { font-weight: bold; font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.footer { background-color: var(--text-main); color: var(--white); text-align: center; padding: 40px 20px 30px; font-size: 0.9rem; }
.footer-main-link { display: inline-block; margin-bottom: 25px; padding: 10px 30px; border: 1px solid rgba(255,255,255,0.3); border-radius: 30px; font-size: 0.85rem; color: #ddd; background-color: transparent; transition: all 0.3s ease; line-height: 1.4;}
.footer-main-link:hover { background: rgba(255,255,255,0.1); color: #fff; opacity: 1; }