/* ============================================
   リセット & ベーススタイル
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #0369a1;
}

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

/* ============================================
   カラー定義
   ============================================ */

:root {
  --brand-white: #ffffff;
  --brand-sky: #e0f2fe;
  --brand-blue: #0369a1;
  --brand-green: #059669;
  --brand-green-light: #d1fae5;
  --text-main: #333333;
  --bg-section: rgb(250, 253, 250);
  --bg-card: rgb(240, 250, 240);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
}

/* ============================================
   コンテナ
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   ヘッダー
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--brand-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 50;
  transition: transform 0.3s ease;
}

.header-hidden {
  transform: translateY(-100%);
}

.header-visible {
  transform: translateY(0);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .header-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 2rem;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* ロゴエリア */
.logo-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1.5rem;
  }
}

.logo-link:hover .logo-title {
  color: var(--brand-blue);
}

/* PC用ナビゲーション */
.nav-pc {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-pc {
    display: flex;
  }
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--brand-blue);
}

.nav-link-small {
  font-size: 0.875rem;
}

/* ボタン */
.btn-contact,
.btn-reservation {
  position: relative;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-contact {
  background-color: var(--brand-green-light);
  color: var(--brand-green);
  border: 2px solid var(--brand-green-light);
}

.btn-contact:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  border-color: var(--brand-green);
}

.btn-reservation {
  background-color: var(--brand-white);
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}

.btn-reservation:hover {
  background-color: var(--brand-green-light);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-contact:hover .btn-icon,
.btn-reservation:hover .btn-icon {
  transform: rotate(12deg);
}

/* モバイルメニューボタン */
.mobile-menu-btn-wrapper {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .mobile-menu-btn-wrapper {
    display: none;
  }
}

.mobile-menu-btn {
  color: var(--gray-600);
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--brand-blue);
}

.mobile-menu-btn:focus {
  outline: none;
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 256px;
  background-color: var(--brand-white);
  box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  transition: transform 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-closed {
  transform: translateX(100%);
}

.mobile-menu-open {
  transform: translateX(0);
}

.close-menu-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--gray-500);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-menu-btn:hover {
  color: var(--brand-blue);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
}

.mobile-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 0.5rem;
}

.btn-contact-mobile,
.btn-reservation-mobile {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-contact-mobile {
  background-color: var(--brand-green-light);
  color: var(--brand-green);
  border: 2px solid var(--brand-green-light);
}

.btn-contact-mobile:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  border-color: var(--brand-green);
}

.btn-reservation-mobile {
  margin-top: 0.75rem;
  background-color: var(--brand-white);
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}

.btn-reservation-mobile:hover {
  background-color: var(--brand-green-light);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

/* メニューオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
}

@media (min-width: 768px) {
  .menu-overlay {
    display: none;
  }
}

.overlay-hidden {
  display: none;
}

.body-no-scroll {
  overflow: hidden;
}

/* ============================================
   ヒーローセクション
   ============================================ */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* ロゴ（左上） */
.hero-logo {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .hero-logo {
    top: 2rem;
    left: 2.5rem;
  }
}

@media (max-width: 660px) {
   .hero-logo {
    display: none;
  }
}

.hero-logo-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 0, 0, 0.5), 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .hero-logo-text {
    font-size: 1.125rem;
  }
}

/* 医院情報（右上） */
.hero-info {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  text-align: right;
}

@media (min-width: 768px) {
  .hero-info {
    top: 2rem;
    right: 4rem;
  }
}

.hero-info-content {
  color: #ffffff;
}

.hero-info-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-info-text {
    font-size: 1rem;
  }
}

.hero-info-phone {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-info-phone {
    font-size: 2.25rem;
  }
}

.hero-info-phone i {
  margin-right: 0.25rem;
}

/* テキストコンテンツ */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PC表示 */
.hero-content-pc {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
}

@media (min-width: 768px) {
  .hero-content-pc {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero-content-pc {
    padding: 0 6rem;
  }
}

@media (min-width: 1280px) {
  .hero-content-pc {
    padding: 0 8rem;
  }
}

.hero-text-wrapper {
  max-width: 42rem;
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-no-wrap {
  white-space: nowrap;
}

/* Coming Soon バッジ */
.coming-soon-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.coming-soon-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .coming-soon-badge {
    padding: 0.625rem 1.75rem;
    margin-bottom: 1.75rem;
  }
  
  .coming-soon-text {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .coming-soon-badge {
    padding: 0.75rem 2rem;
  }
  
  .coming-soon-text {
    font-size: 1rem;
  }
}

.hero-subtitle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.6;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.6;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

/* スマホ表示 */
.hero-content-sp {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content-sp {
    display: none;
  }
}

.hero-text-wrapper-sp {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title-sp {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-sp {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.3);
}

.hero-description-sp {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.6;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.3);
}

/* ============================================
   信念と約束セクション
   ============================================ */

.belief-section {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.belief-content {
  max-width: 56rem;
  margin: 0 auto;
}

.belief-box {
  background-color: var(--brand-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border-left: 4px solid var(--brand-green);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .belief-box {
    padding: 2rem;
  }
}

.belief-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .belief-title {
    font-size: 1.5rem;
  }
}

.belief-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}

@media (min-width: 768px) {
  .belief-list {
    font-size: 1rem;
  }
}

.belief-item {
  display: flex;
  align-items: flex-start;
}

.belief-icon {
  color: var(--brand-green);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.belief-text-long {
  line-height: 1.8;
}

/* バッジ */
.badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.badge {
  background-color: var(--brand-white);
  color: var(--brand-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.badge i {
  margin-right: 0.5rem;
}

.belief-intro {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .belief-intro {
    font-size: 1.125rem;
  }
}

/* ============================================
   基本情報セクション
   ============================================ */

.info-section {
  padding: 4rem 0;
  background-color: var(--brand-white);
}

.clinic-info-box {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .clinic-info-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.clinic-info-item {
  background-color: var(--bg-section);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .clinic-info-item {
    padding: 2rem;
  }
}

.info-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-icon {
  color: var(--brand-green);
  font-size: 1.25rem;
}

.info-item-text {
  font-size: 0.875rem;
  color: var(--gray-800);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .info-item-text {
    font-size: 1rem;
  }
}

/* ============================================
   採用情報セクション
   ============================================ */

.recruit-section {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.recruit-content {
  max-width: 56rem;
  margin: 0 auto;
}

.recruit-box {
  background-color: var(--brand-white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .recruit-box {
    padding: 3rem;
  }
}

.recruit-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.recruit-badge-text {
  background-color: var(--brand-green);
  color: var(--brand-white);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.recruit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .recruit-title {
    font-size: 1.875rem;
  }
}

.recruit-description {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .recruit-description {
    font-size: 1.125rem;
  }
}

.recruit-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.recruit-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-800);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .recruit-feature-item {
    font-size: 1rem;
  }
}

.recruit-feature-icon {
  color: var(--brand-green);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.recruit-contact {
  background-color: var(--bg-section);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.recruit-contact-text {
  font-size: 0.875rem;
  color: var(--gray-800);
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .recruit-contact-text {
    font-size: 1rem;
  }
}

/* ============================================
   当院の特徴セクション
   ============================================ */

.features-section {
  padding: 5rem 0;
  background-color: var(--bg-section);
}

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

.section-label {
  color: var(--brand-green);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: var(--gray-600);
  margin-top: 1rem;
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  border-radius: 1rem;
  padding: 2rem;
  background-color: var(--bg-card);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--brand-white);
  color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  text-align: center;
}

/* スマホ表示: バリアフリー＆広い診察スペースのみ縮小して1行で表示 */
@media (max-width: 767px) {
  .feature-title-long {
    font-size: 1.1rem;
    white-space: nowrap;
  }
}

.feature-text {
  color: var(--gray-600);
  line-height: 1.8;
  text-align: center;
}

/* ============================================
   診療案内セクション
   ============================================ */

.menu-section {
  padding: 5rem 0;
  background-color: var(--bg-section);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background-color: var(--brand-white);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}

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

.menu-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-green-light);
  overflow: hidden;
}

.menu-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
  object-position: center;
  clip-path: circle(50%);
}

.menu-card:hover .menu-icon-image {
  transform: scale(1.1);
}

.menu-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.menu-link {
  color: var(--gray-500);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 0.25rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.menu-card:hover .menu-link {
  color: var(--brand-green);
  border-color: var(--brand-green);
  transform: scale(1.1);
  font-size: 1rem;
}

/* ============================================
   アクセス・診療時間セクション
   ============================================ */

.access-section {
  padding: 5rem 0;
  background-color: var(--bg-section);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.clinic-info {
  margin-bottom: 2rem;
}

.clinic-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.clinic-detail {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.clinic-icon {
  width: 1.5rem;
  color: var(--brand-blue);
  margin-right: 0.5rem;
}

.schedule-table-wrapper {
  background-color: var(--brand-white);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.schedule-table {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  border-collapse: collapse;
}

@media (min-width: 768px) {
  .schedule-table {
    font-size: 1rem;
  }
}

.schedule-table thead {
  background-color: rgba(224, 242, 254, 0.5);
  color: var(--gray-700);
}

.schedule-table th {
  padding: 0.75rem 0.25rem;
  font-weight: 700;
}

.schedule-table th:first-child {
  padding: 0.75rem 0.5rem;
}

.schedule-table .sat {
  color: #2563eb;
}

.schedule-table .sun {
  color: #ef4444;
}

.schedule-table tbody {
  color: var(--gray-600);
}

.schedule-table tbody tr {
  border-top: 1px solid var(--gray-200);
}

.schedule-table td {
  padding: 1rem 0.25rem;
}

.time-cell {
  font-weight: 500;
  background-color: var(--gray-50);
  font-size: 0.75rem;
  padding: 1rem 0.5rem;
}

@media (min-width: 768px) {
  .time-cell {
    font-size: 0.875rem;
  }
}

.time-note {
  font-size: 0.625rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .time-note {
    font-size: 0.75rem;
  }
}

.open {
  color: var(--brand-blue);
}

.closed {
  background-color: var(--gray-100);
  color: var(--gray-400);
}

.schedule-note {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.map-wrapper {
  height: 320px;
  background-color: var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .map-wrapper {
    height: auto;
    min-height: 320px;
  }
}

.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.map-iframe:hover {
  filter: grayscale(0%);
}

.map-label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--brand-white);
  padding: 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  pointer-events: none;
}

/* ============================================
   フッター
   ============================================ */

.footer {
  padding-top: 12rem;
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.footer-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 100%;
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    padding: 0 1.5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    padding: 0 2rem 1rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-info {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-info {
    grid-column: 1 / 3;
  }
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}

.footer-description {
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 28rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-600);
  border-bottom: 2px solid var(--gray-300);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-top: 1rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--brand-green);
}

.footer-link-icon {
  font-size: 0.75rem;
  color: var(--brand-green);
}

.footer-badge {
  background-color: var(--brand-green-light);
  color: var(--brand-green);
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  margin-left: 0.25rem;
}

.footer-copyright {
  border-top: 1px solid var(--gray-300);
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ============================================
   サブページ共通スタイル
   ============================================ */

.breadcrumb-section {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: var(--brand-white);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.breadcrumb-link {
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--brand-blue);
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}

.breadcrumb-current {
  color: var(--gray-800);
  font-weight: 500;
}

.page-title-section {
  padding: 3rem 0;
  background: linear-gradient(to right, var(--brand-sky), var(--brand-white));
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
}

.content-section {
  padding: 5rem 0;
  background-color: var(--brand-white);
}

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

/* コンセプトボックス */
.concept-box {
  max-width: 56rem;
  margin: 0 auto;
  background-color: rgba(224, 242, 254, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .concept-box {
    padding: 3rem;
  }
}

.concept-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.concept-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.concept-lead {
  font-size: 1.125rem;
}

.concept-lead strong {
  color: var(--brand-blue);
}

/* 施設グリッド */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.facility-card {
  background-color: var(--brand-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.facility-icon {
  width: 64px;
  height: 64px;
  background-color: var(--brand-sky);
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.875rem;
}

.facility-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  text-align: center;
}

.facility-text {
  color: var(--gray-600);
  text-align: center;
}

/* 院長紹介 */
.director-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  background-color: rgba(224, 242, 254, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .director-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem;
  }
}

.director-photo {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .director-photo {
    width: 33.333%;
  }
}

.director-photo-frame {
  position: relative;
}

.director-photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--brand-green);
  border-radius: 50%;
  transform: translate(0.75rem, 0.75rem);
  opacity: 0.2;
  z-index: 0;
}

.director-image {
  position: relative;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.director-name-wrapper {
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .director-name-wrapper {
    text-align: left;
  }
}

.director-role {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.director-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}

.director-name-en {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.director-content {
  flex: 1;
}

.info-box {
  background-color: var(--brand-white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.info-box-title {
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.5rem;
}

.info-box-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gray-700);
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-icon {
  color: var(--brand-blue);
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.info-icon-green {
  color: var(--brand-green);
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.publication-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.8;
}

.publication-list p {
  margin: 0;
}

/* CTAセクション */
.cta-section {
  padding: 5rem 0;
  background-color: var(--brand-blue);
  color: #ffffff;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta i {
  margin-right: 0.5rem;
}

.btn-cta-outline {
  background-color: transparent;
  color: #ffffff;
}

.btn-cta-outline:hover {
  background-color: #ffffff;
  color: var(--brand-blue);
}

.btn-cta-solid {
  background-color: #ffffff;
  color: var(--brand-blue);
}

.btn-cta-solid:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* アクティブなナビゲーションリンク */
.nav-link-active {
  color: var(--brand-blue);
  font-weight: 700;
  border-bottom: 2px solid var(--brand-blue);
}

.mobile-link-active {
  color: var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
}

/* 追加のサブページスタイル */
.max-content-width {
  max-width: 56rem;
  margin: 0 auto;
}

.info-box-light {
  background-color: rgba(224, 242, 254, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.info-box-title-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.info-box-title-medium {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.info-box-text-large {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.info-box-text {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.info-box-text-small {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box-border-blue {
  background-color: var(--brand-white);
  border-left: 4px solid var(--brand-blue);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.info-box-border-green {
  background-color: var(--brand-white);
  border-left: 4px solid var(--brand-green);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.info-box-border-green-thick {
  background-color: var(--brand-white);
  border: 2px solid var(--brand-green);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.info-box-green {
  background-color: rgba(5, 150, 105, 0.1);
  border-left: 4px solid var(--brand-green);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.info-icon-blue {
  color: var(--brand-blue);
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.info-icon-green {
  color: var(--brand-green);
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.info-list-nested {
  list-style: none;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gray-700);
}

.info-box-note {
  background-color: var(--gray-50);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.info-box-note-light {
  background-color: rgba(224, 242, 254, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.info-box-note-green {
  background-color: rgba(5, 150, 105, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-item {
  display: flex;
  align-items: flex-start;
}

.process-number {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.process-title {
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.process-text {
  color: var(--gray-700);
  line-height: 1.8;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-item {
  background-color: var(--gray-50);
  padding: 1rem;
  border-radius: 0.5rem;
}

.check-title {
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.check-details {
  list-style: none;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* 採用情報ページスタイル */
.recruit-list {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.recruit-card {
  background-color: var(--brand-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.recruit-card-blue {
  border: 2px solid var(--brand-blue);
}

.recruit-card-green {
  border: 2px solid var(--brand-green);
}

.recruit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

@media (max-width: 768px) {
  .recruit-card-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.recruit-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  white-space: nowrap;
  flex-shrink: 0;
}

.recruit-badge {
  background-color: var(--brand-green);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}

.recruit-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .recruit-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recruit-item-title {
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.recruit-card-green .recruit-item-title {
  color: var(--brand-green);
}

.recruit-item-title i {
  margin-right: 0.5rem;
}

.recruit-item-content {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.recruit-salary {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.recruit-salary-green {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-green);
}

.recruit-note {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.recruit-task-list {
  list-style: none;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefits-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background-color: var(--brand-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.benefit-title {
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.benefit-title i {
  margin-right: 0.5rem;
}

.benefit-text {
  color: var(--gray-700);
}

.application-list {
  list-style: none;
  display: inline-block;
  text-align: left;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.email-link {
  font-size: clamp(0.875rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-blue);
  transition: color 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.email-link:hover {
  color: var(--brand-green);
}

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

/* general.html用の追加スタイル */
.treatment-content {
  margin-bottom: 2rem;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.treatment-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.treatment-item-title-simple {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.treatment-number {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.treatment-number-green {
  background-color: var(--brand-green);
}

.treatment-subsection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.treatment-subtitle {
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.process-list-small {
  gap: 1rem;
}

.process-number-small {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  margin-right: 0.75rem;
}

.denture-types {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.denture-type-item {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.denture-type-title {
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  color: var(--gray-700);
}

.faq-question {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.faq-answer {
  margin: 0;
}

.info-box-red {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.info-icon-red {
  color: #ef4444;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* oral-surgery.html用の追加スタイル */
.treatment-cards {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.treatment-card {
  background-color: var(--brand-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.treatment-card-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--brand-sky);
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.treatment-card-content {
  flex: 1;
}

.treatment-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.info-box-red-small {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.info-box-red-large {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.survival-rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .survival-rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.survival-rate-card {
  background-color: var(--brand-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.survival-rate-card-green .survival-rate-title {
  color: #16a34a;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.survival-rate-card-green .survival-rate-number {
  color: #16a34a;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.survival-rate-card-red .survival-rate-title {
  color: #dc2626;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.survival-rate-card-red .survival-rate-number {
  color: #dc2626;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.survival-rate-text {
  font-size: 0.875rem;
  color: var(--gray-700);
}

.process-text-small {
  color: var(--gray-700);
  font-size: 0.875rem;
}

.recruit-benefits-section,
.recruit-application-section{
  padding: 2.5rem 0;
}

@media (max-width: 768px) {
  .sp{
    display: block;
  }
}
@media (min-width: 769px) {
  .sp{
    display: none;
  }
}

