/*
Theme Name: 南行徳メンタルクリニック v2
Description: 南行徳メンタルクリニック リニューアルテーマ
Version: 1.0
Author: minamigyotoku-clinic
*/

/* ===== VARIABLES ===== */
:root {
  --green:        #4a8c3f;
  --green-dark:   #2d5c25;
  --green-light:  #e8f5e3;
  --orange:       #e07b3a;
  --orange-light: #fdf0e8;
  --text:         #2c2c2c;
  --text-mid:     #5a5a5a;
  --text-light:   #999;
  --white:        #ffffff;
  --bg:           #f7f7f4;
  --border:       #dde8d8;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --radius:       8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section_heading { text-align: center; margin-bottom: 52px; }
.section_heading .en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.section_heading h2 {
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
}
.section_heading h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px auto 0;
}

.more_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.more_link:hover { opacity: 0.65; }

/* ===== HEADER ===== */
.v2_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.v2_header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

.v2_logo img { height: 46px; width: auto; }

.v2_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.v2_address { font-size: 11px; color: var(--text-light); }
.v2_tel {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.v2_tel:hover { opacity: 0.75; }
.v2_tel_first {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: opacity 0.2s;
}
.v2_tel_first:hover { opacity: 0.75; }

.v2_nav_bar { background: var(--green); }
.v2_nav_bar ul { display: flex; justify-content: center; }
.v2_nav_bar li a {
  display: block;
  padding: 14px 22px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.v2_nav_bar li a:hover { background: rgba(255,255,255,0.18); }

/* Hamburger */
.v2_hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.v2_hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile nav overlay */
.v2_mobile_nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.v2_mobile_nav.open { display: flex; }
.v2_mobile_nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.v2_mobile_nav a:hover { opacity: 0.7; }
.v2_mobile_nav_close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ===== HERO ===== */
.v2_hero {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.v2_hero_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.v2_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,56,18,0.78) 0%, rgba(22,56,18,0.32) 100%);
}
.v2_hero_content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 72px;
  color: var(--white);
}
.v2_hero_content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.v2_hero_tagline {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  opacity: 0.92;
}
.v2_hero_buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.v2_btn_call {
  background: var(--orange);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.v2_btn_call:hover { opacity: 0.88; transform: translateY(-1px); }

.v2_btn_reserve {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.v2_btn_reserve:hover {
  background: var(--white);
  color: var(--green);
}

/* ===== NEWS ===== */
.v2_news { padding: 72px 0; background: var(--green-light); }

.v2_news_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.v2_news_card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}
.v2_news_card_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--green-dark);
}
.v2_news_card_title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

.v2_news_item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.v2_news_item:last-of-type { border-bottom: none; }

.v2_news_date { font-size: 12px; color: var(--text-light); white-space: nowrap; padding-top: 2px; }
.v2_news_text { font-size: 14px; line-height: 1.6; }
.v2_news_text a { color: var(--text); transition: color 0.2s; }
.v2_news_text a:hover { color: var(--green); }

.v2_card_footer { margin-top: 20px; text-align: right; }

/* ===== GREETING ===== */
.v2_greeting { padding: 88px 0; background: var(--white); }
.v2_greeting_inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
}
.v2_greeting_img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.v2_greeting_img img { width: 100%; height: 340px; object-fit: cover; }

.v2_greeting_text .label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.v2_greeting_text h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}
.v2_greeting_text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.v2_greeting_text p { font-size: 15px; line-height: 1.9; color: var(--text-mid); }
.v2_greeting_text .more_link { margin-top: 28px; display: inline-flex; }

/* ===== FEATURES ===== */
.v2_features { padding: 88px 0; background: var(--bg); }
.v2_features_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.v2_feature_card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 0 24px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s;
}
.v2_feature_card:hover { transform: translateY(-5px); }
.v2_feature_card img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 18px; }
.v2_feature_card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; padding: 0 16px; }
.v2_feature_card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; padding: 0 16px; }

/* ===== CLINIC PHOTOS ===== */
.v2_photos { padding: 88px 0; background: var(--white); }
.v2_photos_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v2_photos_grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.v2_photos_grid img:hover { opacity: 0.88; }

/* ===== TREATMENTS ===== */
.v2_treatments { padding: 88px 0; background: var(--green-light); }
.v2_treatments_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.v2_treatment_card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}
.v2_treatment_card:hover { transform: translateY(-4px); }
.v2_treatment_card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-dark);
}
.v2_treatment_card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}

/* ===== FOOTER ===== */
.v2_footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.v2_footer_inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.v2_footer_logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.v2_footer_logo p { font-size: 13px; line-height: 1.9; opacity: 0.8; }

.v2_footer_info { min-width: 0; }

.v2_footer_info h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
  font-weight: 600;
}
.v2_footer_info p { font-size: 13px; line-height: 2; }
.v2_footer_info a { color: rgba(255,255,255,0.85); transition: opacity 0.2s; }
.v2_footer_info a:hover { opacity: 0.65; }

.v2_footer_schedule img { max-width: 260px; margin-top: 8px; }

.v2_footer_nav h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
  font-weight: 600;
}
.v2_footer_nav ul { display: flex; flex-direction: column; gap: 10px; }
.v2_footer_nav a { font-size: 13px; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.v2_footer_nav a:hover { color: var(--white); }

.v2_footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
}

/* ===== MOBILE CTA BAR ===== */
.v2_mobile_cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  grid-template-columns: 1fr 1fr;
}
.v2_mobile_cta a {
  padding: 16px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.v2_mobile_cta a:active { opacity: 0.8; }
.v2_cta_call { background: var(--green); }
.v2_cta_reserve { background: var(--orange); }

/* ===== TOP RETURN ===== */
.v2_totop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 50;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2_totop.show { opacity: 1; pointer-events: auto; }
.v2_totop::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg) translate(-2px, 2px);
}

/* ===== SIDE BOOKING ===== */
.side__web__booking {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}

.side_booking_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 10px;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  min-height: 160px;
}
.side_booking_btn:hover {
  background: #c96a2a;
  transform: translateX(-3px);
}

.side_booking_icon {
  font-size: 18px;
  line-height: 1;
}

.side_booking_text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .v2_features_grid { grid-template-columns: repeat(2, 1fr); }
  .v2_footer_inner { grid-template-columns: 1fr 1fr; }
  .v2_footer_inner > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Header */
  .v2_contact { display: none; }
  .v2_nav_bar { display: none; }
  .v2_hamburger { display: flex; }

  /* Hero */
  .v2_hero { height: 400px; }
  .v2_hero_content { padding: 0 24px; }
  .v2_hero_content h1 { font-size: 26px; }
  .v2_hero_tagline { font-size: 14px; margin-bottom: 24px; }
  .v2_btn_call, .v2_btn_reserve { padding: 12px 22px; font-size: 14px; }

  /* Sections */
  .v2_news_grid { grid-template-columns: 1fr; }
  .v2_greeting_inner { grid-template-columns: 1fr; gap: 32px; }
  .v2_greeting_img { display: none; }
  .v2_features_grid { grid-template-columns: repeat(2, 1fr); }
  .v2_photos_grid { grid-template-columns: repeat(2, 1fr); }
  .v2_treatments_grid { grid-template-columns: repeat(2, 1fr); }

  .section_heading h2 { font-size: 22px; }

  /* Footer */
  .v2_footer_inner { grid-template-columns: 1fr; gap: 36px; }

  /* Mobile CTA */
  .v2_mobile_cta { display: grid; }
  .v2_totop { bottom: 80px; }
  .side__web__booking { display: none; }
}

@media (max-width: 480px) {
  .v2_treatments_grid { grid-template-columns: 1fr; }
  .v2_photos_grid { grid-template-columns: 1fr; }
}

/* ===== INNER PAGES ===== */
.v2_page_hero { position: relative; height: 280px; overflow: hidden; }
.v2_page_hero img { width: 100%; height: 100%; object-fit: cover; }
.v2_page_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,56,18,0.72) 0%, rgba(22,56,18,0.32) 100%);
}
.v2_page_hero_content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2_page_hero_title {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: center;
}

.v2_breadcrumb { padding: 16px 0; font-size: 13px; color: var(--text-light); }
.v2_breadcrumb a { color: var(--green); }
.v2_breadcrumb a:hover { text-decoration: underline; }

.v2_page_main { min-height: 60vh; }
.v2_page_content { padding: 60px 0 80px; }

/* ===== DISEASE PAGES ===== */
.v2_disease_intro {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.v2_disease_intro p { font-size: 15px; line-height: 1.9; color: var(--text-mid); }
.v2_disease_symptoms h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  border-left: 4px solid var(--green);
  padding-left: 12px;
  margin-bottom: 20px;
}
.v2_disease_symptoms ul { display: flex; flex-direction: column; gap: 8px; }
.v2_disease_symptoms li {
  font-size: 15px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  line-height: 1.5;
  list-style: none;
}
.v2_disease_symptoms li::before { content: '● '; color: var(--green); font-size: 10px; vertical-align: middle; }

/* ===== FAQ PAGE ===== */
.v2_faq_list { display: flex; flex-direction: column; gap: 12px; }
.v2_faq_item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.v2_faq_question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
}
.v2_faq_question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.v2_faq_answer {
  padding: 0 24px 20px 66px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
}
.v2_faq_answer p + p { margin-top: 8px; }

/* ===== FIRST VISIT ===== */
.v2_step_card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}
.v2_step_header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.v2_step_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.v2_step_label { font-size: 12px; color: var(--green); font-weight: 600; letter-spacing: 0.1em; }
.v2_step_title { font-size: 18px; font-weight: 700; margin: 0; }
.v2_step_card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.v2_step_card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; list-style: none; }
.v2_step_card li { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.v2_step_card li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.v2_warning_title { font-size: 18px; font-weight: 700; color: #c0392b; margin: 32px 0 16px; }
.v2_warning_card { background: #fff8f5; border: 1px solid #ffd5c2; border-radius: var(--radius); padding: 24px 28px; }
.v2_warning_card h4 { font-size: 14px; font-weight: 700; margin: 16px 0 6px; }
.v2_warning_card h4:first-child { margin-top: 0; }
.v2_warning_card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.v2_warning_card ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.v2_warning_card li { font-size: 14px; color: var(--text-mid); }
.v2_warning_card li::before { content: '・'; }

/* ===== DOCTOR PAGE ===== */
.v2_profile_card { background: var(--white); border-radius: var(--radius); padding: 40px; margin-bottom: 32px; box-shadow: var(--shadow); }
.v2_profile_inner { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.v2_profile_img img { width: 200px; height: 240px; object-fit: cover; border-radius: var(--radius); }
.v2_profile_name { font-size: 14px; color: var(--text-mid); margin-bottom: 4px; }
.v2_profile_role { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--green-dark); }
.v2_profile_text p { font-size: 14px; line-height: 1.9; color: var(--text-mid); }
.v2_career_list { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.v2_career_list li { font-size: 14px; padding: 10px 16px; border-left: 3px solid var(--green); background: var(--bg); border-radius: 0 4px 4px 0; }

/* ===== ACCESS PAGE ===== */
.v2_access_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.v2_access_info h3 { font-size: 15px; font-weight: 700; color: var(--green-dark); border-bottom: 1px solid var(--border); padding-bottom: 8px; margin: 20px 0 10px; }
.v2_access_info h3:first-child { margin-top: 0; }
.v2_access_info p, .v2_access_info address { font-size: 14px; line-height: 1.9; color: var(--text-mid); font-style: normal; }
.v2_map { border-radius: var(--radius); overflow: hidden; }
.v2_map iframe { width: 100%; height: 360px; display: block; border: 0; }
.v2_google_btn { padding: 10px 24px; background: var(--green); color: white; border-radius: 4px; font-size: 14px; font-weight: 600; transition: opacity 0.2s; }
.v2_google_btn:hover { opacity: 0.8; color: white; }

/* ===== NOTICE PAGE ===== */
.v2_notice_list { display: flex; flex-direction: column; gap: 20px; }
.v2_notice_item { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--green); }
.v2_notice_date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.v2_notice_title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.v2_notice_content { font-size: 14px; line-height: 1.8; color: var(--text-mid); }
.v2_pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.v2_pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; color: var(--text); transition: all 0.2s; }
.v2_pagination .page-numbers.current { background: var(--green); color: white; border-color: var(--green); }
.v2_pagination .page-numbers:hover { background: var(--green-light); }

/* ===== COLUMN LIST ===== */
.v2_column_list { display: flex; flex-direction: column; gap: 16px; }
.v2_column_item { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); display: flex; gap: 20px; align-items: flex-start; transition: transform 0.2s; }
.v2_column_item:hover { transform: translateY(-2px); }
.v2_column_date { font-size: 12px; color: var(--text-light); white-space: nowrap; padding-top: 4px; flex-shrink: 0; }
.v2_column_title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.v2_column_title a { color: var(--text); transition: color 0.2s; }
.v2_column_title a:hover { color: var(--green); }
.v2_column_excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ===== SINGLE POST ===== */
.v2_article { max-width: 800px; margin: 0 auto; }
.v2_article_date { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.v2_article_title { font-size: 26px; font-weight: 700; margin-bottom: 32px; line-height: 1.4; }
.v2_article_body { font-size: 15px; line-height: 1.9; color: var(--text-mid); }
.v2_article_body p + p { margin-top: 16px; }
.v2_article_body h2 { font-size: 20px; font-weight: 700; margin: 36px 0 14px; border-left: 4px solid var(--green); padding-left: 12px; color: var(--text); }
.v2_article_body h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; color: var(--text); }
.v2_article_body ul, .v2_article_body ol { padding-left: 20px; margin: 12px 0; }
.v2_article_body li { margin-bottom: 6px; }
.v2_pager { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.v2_pager a { color: var(--green); font-size: 14px; font-weight: 600; transition: opacity 0.2s; }
.v2_pager a:hover { opacity: 0.7; }

/* ===== DISEASES INDEX ===== */
.v2_diseases_symptoms_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 60px; }
.v2_symptom_box { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.v2_symptom_box h3 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--green-light); }
.v2_symptom_box li { font-size: 13px; padding: 6px 0; color: var(--text-mid); border-bottom: 1px dashed var(--border); display: flex; align-items: flex-start; gap: 8px; list-style: none; line-height: 1.5; }
.v2_symptom_box li:last-child { border-bottom: none; }
.v2_symptom_box li img { width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0; }

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 768px) {
  .v2_page_hero { height: 200px; }
  .v2_page_hero_title { font-size: 24px; }
  .v2_profile_inner { grid-template-columns: 1fr; }
  .v2_profile_img img { width: 100%; height: auto; }
  .v2_access_grid { grid-template-columns: 1fr; }
  .v2_diseases_symptoms_grid { grid-template-columns: 1fr; }
  .v2_page_content { padding: 40px 5px 60px; }
  .v2_profile_card { padding: 24px; }
  .v2_faq_answer { padding-left: 24px; }
}

/* ===== SCHEDULE TABLE ===== */
.v2_schedule { width: 100%; }

.v2_schedule_title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.v2_schedule_table_wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.v2_schedule_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  min-width: 420px;
}

.v2_schedule_table thead th {
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 10px 4px;
  border-radius: 6px;
}
.v2_schedule_table thead th.sat { background: #2196f3; }
.v2_schedule_table thead th.sun,
.v2_schedule_table thead th.hol { background: #e53935; }

.v2_schedule_table tbody td {
  text-align: center;
  padding: 6px 4px;
  vertical-align: middle;
}

.v2_schedule_table .open {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 8px;
  border: 2px solid var(--green-light);
  white-space: nowrap;
  width: 100%;
}

.v2_schedule_table .closed {
  display: inline-block;
  background: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  padding: 8px 4px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  width: 100%;
}

/* フッター内など緑背景で使う場合 */
.v2_footer .v2_schedule_table { background: transparent; }
.v2_footer .v2_schedule_table .open {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.3);
}
.v2_footer .v2_schedule_title { color: rgba(255,255,255,0.9); }
.v2_footer .v2_schedule_note { color: rgba(255,255,255,0.75); }

/* アクセスページなど白背景で使う場合 */
.v2_schedule_table tbody { background: var(--green); }
.v2_schedule_table tbody td { background: var(--green); }

.v2_schedule_note {
  text-align: center;
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 12px;
  background: var(--orange-light);
  border: 1px solid #f5c6a0;
  border-radius: 6px;
  padding: 8px 16px;
  display: inline-block;
}

/* フッター内のnote */
.v2_footer .v2_schedule_note {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

@media (max-width: 480px) {
  .v2_schedule_table .open,
  .v2_schedule_table .closed { font-size: 11px; padding: 6px 4px; }
  .v2_schedule_table thead th { font-size: 13px; padding: 8px 2px; }
}
