/*
Theme Name: Patient Page Styles
Description: Custom styles for the patient page featuring a pastel pink theme.
*/

:root {
  --primary-color: #333333;
  /* Dark text */
  --accent-color: #fcb8c9;
  /* Pastel pink, as requested */
  --accent-light: #fdf5f7;
  /* Very light pink background */
  --text-color: #444444;
  /* Body text */
  --gray-bg: #f5f5f5;
  /* Light gray section bg */
  --white: #ffffff;
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-family-heading: 'Noto Sans JP', sans-serif;
  --font-family-en: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

body.patient-body {
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Typography & General */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline-block;
  }

  .pc-only {
    display: none;
  }
}

/* Layout */
.container {
  /* max-width: 1000px; */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.bg-light-pink {
  background-color: var(--accent-light);
}

.bg-gray {
  background-color: var(--gray-bg);
}

/* Common Titles */
.section-title {
  font-family: var(--font-family-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title span {
  position: relative;
  z-index: 2;
}

.section-title::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(252, 184, 201, 0.2);
  font-size: 80px;
  font-style: italic;
  font-family: var(--font-family-en);
  font-weight: 100;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) rotate(90deg);
  width: 2px;
  height: 40px;
  background-color: var(--accent-color);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-title::before {
    font-size: 40px;
    top: 5px;
  }
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left span {
  padding-left: 0;
}

.section-title.text-left::before {
  left: 0;
  transform: none;
}

.section-title.text-left::after {
  left: 30px;
  transform: rotate(90deg);
}

/* Button */
.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(252, 184, 201, 0.4);
}

.btn-primary:hover {
  background-color: #f5a2b6;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(252, 184, 201, 0.5);
}

/* -------------------- Header -------------------- */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 4%;
}

.header-logo a {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo span {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  font-family: var(--font-family-base);
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  padding: 10px 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-list li a:hover {
  color: var(--accent-color);
}

/* Dropdown */
.nav-list li {
  position: relative;
}

.sub-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: max-content;
  min-width: 220px;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-color);
  z-index: 10;
}

.has-child:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-nav li {
  border-bottom: 1px dashed #eee;
}

.sub-nav li:last-child {
  border-bottom: none;
}

.sub-nav a {
  display: block !important;
  padding: 12px 20px !important;
  color: var(--text-color) !important;
  font-size: 14px !important;
  text-align: left !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
}

.sub-nav a:hover {
  color: var(--accent-color) !important;
  background-color: var(--accent-light) !important;
  padding-left: 25px !important;
}

.header-nav-contact .btn-contact {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 20px;
  transition: var(--transition);
  display: inline-block;
}

.header-nav-contact .btn-contact:hover {
  background-color: #f5a2b6;
}

.sp-contact {
  display: none;
}

.menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .header-inner {
    height: 60px;
  }

  .header-logo a {
    font-size: 18px;
  }

  .header-logo span {
    font-size: 10px;
  }

  .header-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    transform: translateX(100%);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
  }

  .header-nav.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-list li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav-list li a {
    display: block;
    padding: 15px 5%;
    font-size: 16px;
  }

  .sub-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background-color: var(--accent-light);
    padding: 0;
    min-width: 100%;
    display: block;
  }

  .sub-nav li {
    border-bottom: 1px solid #eee;
  }

  .sub-nav a {
    padding: 12px 10% !important;
    font-size: 14px !important;
  }

  /* Prevent hover effects from interfering on mobile */
  .has-child:hover .sub-nav {
    transform: none;
  }

  .pc-contact {
    display: none;
  }

  .sp-contact {
    display: block;
    width: 100%;
    padding: 20px 5%;
    margin-top: 20px;
    text-align: center;
  }

  .sp-contact .btn-contact {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    padding: 10px;
    z-index: 101;
  }

  .menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
  }

  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Body PT */
body.patient-body {
  padding-top: 80px;
}

@media (max-width: 1024px) {
  body.patient-body {
    padding-top: 60px;
  }
}

/* -------------------- Hero -------------------- */
.patient-hero {
  position: relative;
  height: 600px;
  background-color: var(--accent-light);
  background-image: url('../images/patient/fv.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 5rem;
}

.patient-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(252, 184, 201, 0.4) 0%, rgba(253, 245, 247, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
  display: flex;
  justify-content: flex-start;
}

.hero-text-box {
  background: rgba(255, 255, 255, 0.85);
  /* Semi-transparent white box */
  padding: 40px;
  border-radius: 20px;
  display: inline-block;
  max-width: 580px;
  /* Constrain width to avoid overlapping face */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 15px;
  border: 1px solid var(--accent-color);
}

.hero-title {
  font-family: var(--font-family-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin: 0;
}

.hero-title-sub {
  display: block;
  font-size: 26px;
  /* Smaller font size for the first line */
  margin-bottom: 5px;
}

.hero-btn-wrap {
  margin-top: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--accent-color);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(252, 184, 201, 0.5);
}

.hero-btn:hover {
  background-color: #f5a2b6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(252, 184, 201, 0.7);
  color: var(--white);
}

@media (max-width: 768px) {
  .patient-hero {
    height: 515px;
    background-image: url('../images/patient/fv_sp.webp');
    /* Switch to SP image */
    /* background-position: center bottom; */
    background-position: right bottom;
    align-items: flex-start;
    /* Move content to the top */
    margin-top: 3.7rem;
  }

  .hero-content {
    margin-top: 20px;
    /* Spacing from top */
    margin-bottom: 0;
  }

  .hero-text-box {
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-badge {
    font-size: 14px;
    padding: 6px 16px;
  }

  .hero-title {
    font-size: 30px;
    /* A bit smaller for mobile */
  }

  .hero-title-sub {
    font-size: 22px;
  }
}

/* -------------------- Greeting -------------------- */
.greeting-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.greeting-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.greeting-text {
  flex: 1;
}

.greeting-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .greeting-content {
    flex-direction: column;
    gap: 30px;
  }
}

/* -------------------- 4 Points -------------------- */
.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.point-card {
  background: var(--white);
  padding: 50px 30px 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
  margin-top: 20px;
}

.point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.point-num {
  font-family: var(--font-family-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--accent-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(252, 184, 201, 0.4);
}

.point-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.point-text {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.8;
}

.point-content-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

.point-icon {
  flex-shrink: 0;
  width: 90px;
}

.point-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.point-text-wrap {
  flex: 1;
}

@media (max-width: 768px) {
  .points-grid {
    grid-template-columns: 1fr;
  }

  .point-card {
    padding: 40px 20px 30px;
    margin-top: 20px;
  }

  .point-num {
    font-size: 20px;
    width: 50px;
    height: 50px;
    top: -25px;
    left: 20px;
  }

  .point-content-wrap {
    gap: 15px;
  }

  .point-icon {
    width: 60px;
  }
}

/* -------------------- Indications -------------------- */
.indic-wrap {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.indic-box {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
  border: 3px solid var(--accent-light);
}

.indic-box-title {
  font-family: var(--font-family-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ddd;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: inline-block;
  text-align: left;
}

.check-list-container {
  text-align: center;
}

/* For Centering the list block */
.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.check-list.negative li::before {
  background-color: #999;
  /* An X icon instead of check for negative */
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.indic-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .indic-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .indic-box {
    padding: 30px 20px;
  }

  .indic-box-title {
    font-size: 18px;
  }

  .check-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

/* -------------------- About -------------------- */
.about-section {
  background: linear-gradient(135deg, var(--accent-light) 0%, #ffe5ec 100%);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.about-image-column {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-section .btn-wrap {
  text-align: center;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}

/* -------------------- Links Section -------------------- */
.patient-links-section {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/patient/hifu_bg.webp') no-repeat center center;
  background-size: cover;
}

.patient-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.patient-link-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  padding: 30px 15px;
  /* Reduced padding for 3 columns */
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  /* Slightly smaller for 3 columns */
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  line-height: 1.4;
}

.patient-link-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.patient-link-btn .icon-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 20px;
}

@media (max-width: 768px) {
  .patient-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .patient-link-btn {
    padding: 30px 20px;
    font-size: 16px;
    flex-direction: column;
  }

  .patient-link-btn .icon-arrow {
    margin-left: 0;
    margin-top: 15px;
    transform: rotate(135deg);
  }
}

/* -------------------- Daily Flow -------------------- */
.daily-flow-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.daily-flow-list {
  flex: 1;
}

.daily-flow-item {
  display: flex;
  margin-bottom: 30px;
}

.daily-num {
  font-family: var(--font-family-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 1.2;
}

.daily-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.daily-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.daily-flow-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .daily-flow-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .daily-flow-image {
    order: -1;
  }

  /* Image on top in mobile */
}

/* -------------------- Devices -------------------- */
.devices-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.devices-intro {
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* -------------------- News & Column -------------------- */
.news-column-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* お知らせ (News) */
.news-area,
.column-area {
  display: flex;
  flex-direction: column;
}

.news-list-vertical {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.news-item-row {
  border-bottom: 1px dashed #ddd;
}

.news-item-row:last-child {
  border-bottom: none;
}

.news-item-row a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.news-item-row a:hover .news-title {
  color: var(--accent-color);
}

.news-date {
  font-family: var(--font-family-en);
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
  width: 90px;
}

.news-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* お役立ち情報 (Column) */
.column-list-vertical {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.column-item-row {
  border-bottom: 1px dashed #ddd;
}

.column-item-row:last-child {
  border-bottom: none;
}

.column-item-row a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.column-item-row a:hover .column-title {
  color: var(--accent-color);
}

.column-thumbnail-small {
  width: 100px;
  height: 75px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.column-thumbnail-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.column-item-row a:hover .column-thumbnail-small img {
  transform: scale(1.05);
}

.column-info-small {
  flex: 1;
}

.column-date {
  display: block;
  font-family: var(--font-family-en);
  font-size: 13px;
  color: #999;
  margin-bottom: 5px;
}

.column-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .news-column-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .news-column-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .news-item-row a {
    flex-direction: column;
    gap: 5px;
  }

  .news-date {
    width: auto;
  }
}

/* -------------------- FAQ -------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  padding-left: 60px;
  padding-right: 50px;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  line-height: 1.5;
}

.faq-question:hover {
  background-color: var(--accent-light);
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family-en);
  font-size: 24px;
  color: var(--accent-color);
  font-weight: 700;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: translateY(-80%) rotate(45deg);
  transition: var(--transition);
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: var(--gray-bg);
}

.faq-answer-inner {
  padding: 20px;
  padding-left: 60px;
  position: relative;
}

.faq-answer-inner::before {
  content: 'A';
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: var(--font-family-en);
  font-size: 24px;
  color: #999;
  font-weight: 700;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* -------------------- Subpages common -------------------- */
.subpage-hero {
  height: 300px;
  background-color: var(--accent-light);
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-hero .hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-hero .hero-title {
  text-align: center;
  font-family: var(--font-family-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .subpage-hero .hero-title {
    font-size: 26px;
  }
}

.subpage-hero .hero-title-sub {
  display: block;
  font-size: 20px;
}

.subpage-hero-alt {
  padding: 120px 0 60px;
  background-color: var(--bg-gray);
  text-align: center;
}

.subpage-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px;
  font-family: var(--font-family-heading);
  letter-spacing: 0.05em;
}

.subpage-subtitle {
  font-size: 16px;
  color: var(--accent-color);
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  margin: 0;
}

@media (max-width: 768px) {
  .subpage-hero-alt {
    padding: 80px 20px 40px;
  }

  .subpage-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .subpage-subtitle {
    font-size: 14px;
  }
}

.subpage-content h3.text-left {
  text-align: left;
}

.subpage-content .check-list {
  margin-left: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Effectiveness */
.note-box {
  background-color: var(--gray-bg);
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.note-box p {
  margin: 0;
  font-size: 14px;
  color: #d9534f;
  font-weight: bold;
}

/* Pregnancy */
.pregnancy-note-box {
  background-color: var(--gray-bg);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.pregnancy-note-box .check-list {
  list-style-type: none !important;
  margin-bottom: 0;
  margin-left: 10px;
}

.pregnancy-note-box .check-list li {
  padding-left: 30px;
  margin-bottom: 15px;
}

.pregnancy-note-box .check-list li:last-child {
  margin-bottom: 0;
}

.accent-border-box {
  border: 2px solid var(--accent-color);
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.accent-border-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-color);
}

/* Comparison */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  padding: 15px;
  border: 1px solid #ddd;
  background-color: var(--accent-color);
  color: var(--white);
}

.comparison-table td {
  padding: 15px;
  border: 1px solid #ddd;
  line-height: 1.5;
}

.comparison-table td.fw-bold {
  font-weight: bold;
}

.comparison-table td.bg-fafafa {
  background-color: #fafafa;
}

.comparison-table tr.hifu-row td {
  background-color: #fff0f5;
}

.comparison-table tr.hifu-row td.hifu-accent {
  color: var(--accent-color);
  font-weight: bold;
}

.table-notes {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.table-notes p {
  margin-bottom: 5px;
}

.illustration-wrap {
  margin-top: 50px;
  text-align: center;
}

.illustration-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Flow */
.flow-steps {
  max-width: 800px;
  margin: 0 auto;
}

.flow-step-card {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  border-left: 5px solid var(--accent-color);
}

@media (max-width: 768px) {
  .flow-step-card {
    padding: 30px;
  }
}

.flow-step-title {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.flow-step-text {
  margin-bottom: 15px;
}

.flow-step-note {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.flow-step-note-red {
  font-size: 14px;
  color: #d9534f;
  margin: 0;
  font-weight: bold;
}

.btn-line {
  background-color: #06C755;
  color: white;
}

.btn-line:hover {
  background-color: #05b04a;
  color: white;
}

/* Devices */
.important-notice-header {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
}

.device-section-block {
  margin-bottom: 40px;
}

.device-section-title {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  border-left: 5px solid var(--accent-color);
  padding-left: 15px;
}

.device-note {
  font-size: 14px;
  color: #666;
}

.device-note-red {
  font-size: 14px;
  color: #d9534f;
  font-weight: bold;
}

.contact-box {
  background-color: var(--gray-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.contact-box h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* -------------------- Access Section -------------------- */
.access-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.access-images {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.access-image-item {
  flex: 1;
}

.access-image-item img {
  width: 100%;
  height: 300px;
  /* 高さを統一 */
  object-fit: cover;
  /* 縦横比を保ちつつ枠いっぱいに表示 */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .access-images {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .access-image-item img {
    height: auto;
    /* スマホでは自動調整 */
  }
}

.access-map-area {
  flex: 1;
}

.access-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.access-map img {
  display: block;
  width: 100%;
}

.access-map-link {
  text-align: right;
  margin-top: 10px;
}

.access-map-link a {
  font-size: 0.95rem;
  color: var(--primary-color);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.access-map-link a::after {
  content: "→";
  font-family: var(--font-family-en);
  font-size: 1.1em;
}

.access-info {
  flex: 1;
}

.access-list {
  margin: 0;
}

.access-list dt {
  font-weight: 700;
  color: var(--primary-color);
  padding: 15px 0 5px;
  border-top: 1px solid #eee;
}

.access-list dt:first-child {
  border-top: none;
  padding-top: 0;
}

.access-list dd {
  margin: 0 0 15px 0;
  line-height: 1.8;
}

.access-list dd .notice {
  color: #d9534f;
  font-size: 0.9em;
  display: block;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .access-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .access-map-area {
    width: 100%;
  }
}

.page-child p {
  line-height: 1.8;
}

/* -------------------- Footer -------------------- */
.page-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 20px;
  font-size: 14px;
}

.footer-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  margin: 0;
}

.footer-logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  text-align: left;
  text-decoration: none;
}

.footer-logo a span {
  font-size: 12px;
  display: block;
  font-family: var(--font-family-base);
  font-weight: 500;
}

.footer-logo a:hover {
  color: var(--accent-color);
}

.footer-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.page-footer .copyright {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .page-footer {
    margin-bottom: 86px;
  }

  .single .page-footer {
    margin-bottom: -75px;
  }

  .footer-bottom-info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-logo a {
    text-align: center;
    font-size: 20px;
  }

  .footer-logo a span {
    font-size: 10px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
  }
}

/* -------------------- Single Post Content -------------------- */
.single-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.single-article {
  background: var(--white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

.single-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 20px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.single-date {
  color: #999;
  font-family: var(--font-family-en);
  font-size: 14px;
}

.single-category {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.single-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin: 0;
}

.single-thumbnail {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Typography */
.single-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}

.single-content p {
  margin-bottom: 25px;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
}

.single-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 60px 0 25px;
  padding: 15px 20px;
  background-color: var(--accent-light);
  border-left: 5px solid var(--accent-color);
}

.single-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-light);
  position: relative;
}

.single-content h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.single-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 3px solid var(--accent-color);
}

.single-content ul {
  margin: 0 0 30px 20px;
  padding: 0;
  list-style: none;
}

.single-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.single-content ul li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.single-content ol {
  margin: 0 0 30px 20px;
  padding-left: 20px;
}

.single-content ol li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.single-content blockquote {
  margin: 30px 0;
  padding: 25px 30px;
  background-color: #f9f9f9;
  border-left: 5px solid var(--accent-color);
  font-style: italic;
  color: #666;
}

.single-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-content blockquote ol {
  margin-left: 0;
  margin-bottom: 10px;
  padding: 0;
}

.single-content blockquote a {
  line-break: anywhere;
}

.single-content blockquote ol li {
  margin: 0;
  padding: 0;
}

.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--white);
}

.single-content table th,
.single-content table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}

.single-content table th {
  background-color: var(--accent-light);
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
}

/* Navigation */
.single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.single-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.single-nav a:hover {
  color: var(--accent-color);
}

.single-nav .nav-list a {
  display: inline-block;
  padding: 12px 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
}

.single-nav .nav-list a:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.single-nav .nav-prev,
.single-nav .nav-next {
  flex: 1;
}

.single-nav .nav-next {
  text-align: right;
}

@media (max-width: 768px) {
  .single-article {
    padding: 30px 20px;
  }

  .single-title {
    font-size: 22px;
  }

  .single-content h2 {
    font-size: 20px;
    margin: 40px 0 20px;
    padding: 12px 15px;
  }

  .single-content h3 {
    font-size: 18px;
    margin: 35px 0 15px;
  }

  .single-nav {
    flex-direction: column;
    text-align: center;
  }

  .single-nav .nav-prev,
  .single-nav .nav-next {
    width: 100%;
    text-align: center;
  }

  .single-nav .nav-list {
    order: -1;
    margin-bottom: 10px;
  }

  .single-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
  }
}

/* -------------------- Pagination -------------------- */
.c-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.c-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.c-pagination .page-numbers:hover {
  background-color: var(--accent-light);
  color: var(--primary-color);
}

.c-pagination .page-numbers.current {
  background-color: var(--primary-color);
  color: var(--white);
  pointer-events: none;
}

/* -------------------- Doctor Profile -------------------- */
.doctor-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 50px;
  margin-bottom: 50px;
}

.doctor-card:last-child {
  margin-bottom: 0;
}

.doctor-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--accent-light);
}

.doctor-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--white);
}

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

.doctor-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0.05em;
}

.doctor-name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.1em;
}

.doctor-name-link {
  font-size: 14px;
}

.doctor-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.doctor-section {
  margin-bottom: 35px;
}

.doctor-section:last-child {
  margin-bottom: 0;
}

.doctor-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px;
  padding-left: 14px;
  border-left: 4px solid var(--accent-color);
  line-height: 1.4;
}

.doctor-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.doctor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.doctor-list li:last-child {
  margin-bottom: 0;
}

.doctor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.doctor-list.link-list li::before {
  display: none;
}

.doctor-list.link-list li {
  padding-left: 0;
}

.doctor-list.link-list a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.doctor-list.link-list a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.history-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 20px;
  font-size: 15px;
  margin: 0;
}

.history-list dt {
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.history-list dd {
  margin: 0;
  color: var(--text-color);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--accent-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .doctor-card {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .doctor-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }

  .doctor-grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .history-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .history-list dt {
    padding-top: 10px;
  }

  .history-list dd {
    padding-bottom: 15px;
  }
}

.page-block-quote {
  margin: 30px 0;
  padding: 25px 30px;
  background-color: #f9f9f9;
  border-left: 5px solid var(--accent-color);
}

.page-block-quote p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

/* Surgical Stats Table */
.surgical-stats-table-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--accent-light);
}

.surgical-stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.surgical-stats-table tr {
  border-bottom: 1px solid var(--accent-light);
}

.surgical-stats-table tr:last-child {
  border-bottom: none;
}

.surgical-stats-table th,
.surgical-stats-table td {
  padding: 16px 24px;
  text-align: left;
}

.surgical-stats-table th {
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--white);
  width: 50%;
}

.surgical-stats-table td {
  color: var(--text-color);
  text-align: right;
}

/* Main Category */
.surgical-stats-table .row-main {
  background-color: var(--accent-light);
}

.surgical-stats-table .row-main th {
  font-weight: 700;
  background-color: transparent;
  color: var(--primary-color);
}

.surgical-stats-table .row-main td {
  font-weight: 700;
  color: var(--primary-color);
}

/* Sub Category */
.surgical-stats-table .row-sub th {
  padding-left: 48px;
  position: relative;
  font-weight: 400;
}

.surgical-stats-table .row-sub th::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

/* Total & Time */
.surgical-stats-table .row-total,
.surgical-stats-table .row-time {
  background-color: #ffffff;
}

.surgical-stats-table .row-total th,
.surgical-stats-table .row-total td,
.surgical-stats-table .row-time th,
.surgical-stats-table .row-time td {
  font-weight: 700;
  color: var(--primary-color);
}

.surgical-stats-table .row-total td {
  font-size: 1.2em;
  color: var(--accent-color);
}

.surgical-stats-table .row-time td {
  font-family: var(--font-family-en);
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .surgical-stats-table-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .surgical-stats-table th,
  .surgical-stats-table td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .surgical-stats-table .row-sub th {
    padding-left: 35px;
  }

  .surgical-stats-table .row-sub th::before {
    left: 20px;
  }
}

/* -------------------- Floating Reservation Buttons -------------------- */

/* PC: Floating on Right */
.floating-reservation {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 25px 12px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: -4px 0 15px rgba(252, 184, 201, 0.4);
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.floating-reservation:hover {
  padding-right: 20px;
  background-color: #f5a2b6;
  color: var(--white);
}

.floating-reservation .btn-text {
  font-size: 18px;
}

/* SP: Sticky Bottom Bar */
.fixed-reservation-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 12px 20px 24px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.btn-reservation-sp {
  display: block;
  background-color: var(--accent-color);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(252, 184, 201, 0.5);
  transition: transform 0.2s ease;
}

.btn-reservation-sp:active {
  transform: scale(0.98);
}

/* Adjust footer or body padding if needed */
@media (max-width: 768px) {
  body.patient-body {
    padding-bottom: 90px;
  }
}

/* -------------------- Single Page Specific Floating Button -------------------- */

/* PC: Bottom Right */
.floating-column-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-column-btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-5px);
}

/* SP: Above Reservation Bar */
.fixed-column-sp {
  position: fixed;
  bottom: 25px;
  /* Reservation bar height + padding */
  left: 5%;
  width: 90%;
  z-index: 999;
}

.btn-column-sp {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 12px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  line-height: 1.3;
}

.btn-column-sp:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {

  /* Ensure content doesn't get hidden under two bars */
  body.single-post {
    padding-bottom: 160px !important;
  }
}
/* -------------------- Partners Section -------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 50px;
	text-decoration: none;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 1; /* Override default link hover opacity */
}

.partner-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.partner-item span{
	text-decoration: none;
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-item {
    min-height: 100px;
    padding: 15px;
  }
}


.single-article p strong{
	font-weight: 600;
}