/* ==========================================
           リセットCSS & グローバルスタイル
        ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ja-txt: "Shippori Mincho", serif;
  --en-txt: "Aboreto", "Georgia", serif;
  --color-primary: #B8A068;
  --color-secondary: #8B7B6B;
  --color-accent: #7C7461;
  --color-bg-beige: #F5F0E8;
  --color-text-main: #333;
  --color-text-sub: #666;
  --color-text-light: #999;
  --color-border: #E0E0E0;
}

body {
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: #fff;
}

/* ==========================================
           共通コンポーネント
        ========================================== */

/* コンテナ */
.c-container {
  padding: 0 20px;
}

/* レスポンシブ改行 */
br.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

/* View Moreボタン（共通） */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7C7461;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-size: clamp(0.64rem, 0.566rem + 0.32vw, 0.85rem);
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.view-more-btn:hover::before {
  left: 0;
}

.view-more-btn:hover {
  background: #8A7A6A;
  transform: translateX(3px);
}

.view-more-btn::after {
  content: '';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  border-width: 0px 0px 16px 16px;
}

.view-more-btn:hover::after {
  transform: translateX(3px);
}

/* 共通セクションロゴ */
.section-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: var(--color-primary);
  font-style: italic;
  font-weight: normal;
  position: relative;
}

.section-logo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
}

/* ==========================================
           メインビジュアル
        ========================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 719px;
  overflow: hidden;
  padding-bottom: 200px;
}

.hero-image-wrapper {
  position: absolute;
  top: 49%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 56px;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 1328px;
  height: 719px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.hero-content {
  display: grid;
  gap: calc(6.5rem + 0.5vw);
  position: absolute;
  left: 14%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 500px;
}

.hero-title {
  color: #333;
  font-family: var(--ja-txt);
  font-size: clamp(1.75rem, 1.564rem + 0.76vw, 2.25rem);
  font-weight: 400;
  line-height: 80px;
}

.hero-description {
  font-size: clamp(1.25rem, 1.157rem + 0.38vw, 1.5rem);
  font-family: var(--ja-txt);
  line-height: 2;
  color: #333;
  letter-spacing: 0.05em;
}

.web-btn {
  position: absolute;
  right: 6%;
  bottom: 175px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #9B8B7A 0%, #8A7A6A 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.web-btn.sp {
  display: none;
}

.web-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.web-btn .text-small {
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.web-btn .text-main {
  font-size: 14px;
  margin-top: 2px;
}

.scroll-indicator {
  position: absolute;
  left: 7%;
  bottom: 310px;
  writing-mode: vertical-lr;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #333;
  z-index: 3;
}

.scroll-indicator.sp {
  display: none;
}

.scroll-indicator svg {
  position: absolute;
  left: 4px;
  top: 80px;
} -->

/* ==========================================
           ABOUTセクション
        ========================================== */
.about-section {
  position: relative;
  padding: 0 0 80px;
  background: url(/assets/img/top-bg-image.png) 0px -62.437px / 100% 116.978% no-repeat;
  z-index: 997;
}

.wave-container {
  position: absolute;
  top: -170px;
  left: 0;
  width: 100%;
  height: 636px;
  z-index: 5;
  pointer-events: none;
}

.wave-container svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.about-container {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 20px 80px;
}

.about-content {
  padding-right: 20px;
}

.section-title-wrapper {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.clinic-logo .section-title-wrapper {
  margin-bottom: 0;
}

.section-title-wrapper.center .section-title {
  justify-content: center;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-icon {
  display: flex;
  width: 48px;
  height: 46px;
  aspect-ratio: 24 / 23;
}

.section-title h2 {
  font-size: clamp(2.25rem, 2.157rem + 0.38vw, 2.5rem);
  font-weight: 400;
  color: #9B8B7A;
  font-family: var(--en-txt);
}

.section-subtitle {
  margin-bottom: clamp(1.25rem, 0.786rem + 1.9vw, 2.5rem);
  padding-left: 16.5px;
  color: #333;
  font-family: var(--ja-txt);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.about-subtitle {
  margin-bottom: clamp(1.25rem, 0.786rem + 1.9vw, 2.5rem);
  padding-left: 16.5px;
  color: #333;
  font-family: var(--ja-txt);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

.about-text {
  margin-bottom: clamp(1.25rem, 0.786rem + 1.9vw, 2.5rem);
}

.about-text h3 {
  font-size: 1.15rem;
  margin-bottom: clamp(1.25rem, 1.157rem + 0.38vw, 1.5rem);
  font-weight: 400;
  line-height: 2;
  color: #3A3A3A;
  letter-spacing: 0.02em;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: #666;
  margin-bottom: clamp(1.25rem, 1.157rem + 0.38vw, 1.5rem);
  letter-spacing: 0.02em;
}

.about-image {
  position: relative;
  width: clamp(21.875rem, 17rem + 20vw, 35rem);
  height: clamp(15.625rem, 12.143rem + 14.29vw, 25rem);
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
           TREATMENTセクション
        ========================================== */
.treatment-section {
  padding: 80px 0;
}

.treatment-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.treatment-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.treatment-section .section-title-en {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.treatment-section .section-title-ja {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
}

.treatment-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.treatment-card {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.treatment-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.treatment-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-card-icon {
  width: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-card-icon img {
  width: 100%;
  padding: 10px;
}

.treatment-card-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-sub);
  margin-bottom: 30px;
  min-height: 100px;
}

.treatment-section .section-footer {
  text-align: center;
}

/* ==========================================
           FEATUREセクション
        ========================================== */
.feature-section {
  padding: 80px 0 0;
  background: url(/assets/img/top-bg-image02.png) 0px -40.502px / 100% 116.978% no-repeat;
  overflow: hidden;
}

.feature-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
}

.feature-section .section-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.feature-section .section-title-en {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.feature-section .section-title-ja {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  margin-bottom: 30px;
}

.section-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-sub);
  max-width: 600px;
  margin: 0 auto;
}

.feature-points {
  margin-top: 100px;
}

.feature-point {
  margin-bottom: 120px;
  position: relative;
}

.point-header {
  position: absolute;
  top: -50px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 20px;
  align-items: center;
}

.feature-point:nth-child(odd) .point-header {
  left: 40px;
}

.feature-point:nth-child(even) .point-header {
  right: 40px;
}

.point-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  font-weight: 300;
  opacity: 0.8;
}

.point-number {
  font-family: 'Georgia', serif;
  font-size: 100px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 0.8;
  opacity: 0.5;
}

.point-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.feature-point:nth-child(odd) .point-container {
  margin-right: 180px;
  margin-left: -90px;
  flex-direction: row;
}

.feature-point:nth-child(even) .point-container {
  margin-left: 180px;
  margin-right: -90px;
  flex-direction: row-reverse;
}

@media screen and (min-width: 1440px) {
  .feature-point:nth-child(odd) .point-container {
    margin-left: -90px;
  }

  .feature-point:nth-child(even) .point-container {
    margin-right: -90px;
  }
}

.point-content {
  flex: 1;
  padding: 80px 40px 60px;
  position: relative;
  z-index: 2;
}

.point-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--color-text-main);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.point-description {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-sub);
  letter-spacing: 0.02em;
}

.point-image {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #E8E2DB 0%, #D5CFC6 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
}

/* ==========================================
           GALLERYセクション
        ========================================== */
.gallery-section {
  position: relative;
  padding-top: 80px;
  background: url(/assets/img/top-bg-image03.png) 82% 100px / cover no-repeat;
  overflow: hidden;
}

.gallery-section .wave-container {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 464px;
  z-index: 1;
  pointer-events: none;
}

.gallery-header {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.gallery-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: var(--color-primary);
  font-style: italic;
  font-weight: normal;
  position: relative;
}

.gallery-logo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
}

.gallery-title {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.gallery-subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
}

.gallery-images-wrapper {
  position: relative;
  width: 100%;
  height: clamp(12.5rem, 9.714rem + 11.43vw, 20rem);
  margin: 80px 0;
  overflow: hidden;
  z-index: 2;
}

.gallery-slider {
  display: flex;
  height: 100%;
  gap: 32px;
  animation: slideAnimation 30s linear infinite;
}

.gallery-slider:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex-shrink: 0;
  width: clamp(18.125rem, 14.086rem + 16.57vw, 29rem);
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
}

.gallery-item:nth-child(1) .image-placeholder,
.gallery-item:nth-child(4) .image-placeholder {
  background: linear-gradient(135deg, #E8E2DB 0%, #D5CFC6 100%);
}

.gallery-item:nth-child(2) .image-placeholder,
.gallery-item:nth-child(5) .image-placeholder {
  background: linear-gradient(135deg, #DDD7CE 0%, #C8C2B9 100%);
}

.gallery-item:nth-child(3) .image-placeholder,
.gallery-item:nth-child(6) .image-placeholder {
  background: linear-gradient(135deg, #E5DFD6 0%, #D0CAC1 100%);
}

@keyframes slideAnimation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 16px));
  }
}

/* ==========================================
           DOCTORセクション
        ========================================== */

.doctor-container {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.doctor-content {
  padding-right: 5px;
  text-align: center;
}

.doctor-title-wrapper {
  margin-bottom: 40px;
}

.doctor-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.doctor-icon {
  display: flex;
  width: 48px;
  height: 46px;
  aspect-ratio: 24 / 23;
}

.doctor-title h2 {
  font-size: clamp(2.25rem, 2.157rem + 0.38vw, 2.5rem);
  font-weight: 400;
  color: #9B8B7A;
  font-family: var(--en-txt);
}

.doctor-subtitle {
  margin-bottom: clamp(1.25rem, 0.786rem + 1.9vw, 2.5rem);
  padding-left: 67.5px;
  color: var(--color-text-main);
  font-family: var(--ja-txt);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

.doctor-text {
  margin-bottom: clamp(1.25rem, 0.786rem + 1.9vw, 2.5rem);
}

.doctor-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--color-text-sub);
  margin-bottom: clamp(1.25rem, 1.157rem + 0.38vw, 1.5rem);
  letter-spacing: -0.01em;
}

.doctor-image {
  position: relative;
  width: clamp(21.875rem, 17rem + 20vw, 35rem);
  height: clamp(15.625rem, 12.143rem + 14.29vw, 25rem);
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
           COLUMNセクション
        ========================================== */
.column-section {
  padding: 80px 0;
  background-color: #fff;
}

.column-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.column-section .section-title-en {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.column-section .section-title-ja {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
}

.column-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.column-list {
  margin-bottom: 50px;
}

.column-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--color-border);
  padding: 30px 0;
  transition: background-color 0.3s ease;
}

.column-item:first-child {
  padding-top: 0;
}

.column-item:hover {
  background-color: rgba(245, 240, 232, 0.3);
}

.column-item-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.column-thumbnail {
  flex-shrink: 0;
  width: 210px;
  height: 120px;
  background-color: #CCCCCC;
  border-radius: 4px;
  overflow: hidden;
}

.column-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.column-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.column-date {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.column-category {
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.column-title {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  font-weight: 500;
}

.column-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.column-item:hover .column-arrow {
  transform: translateX(4px);
  color: var(--color-text-sub);
}

.column-arrow svg {
  width: 8px;
  height: 14px;
}

.column-section .section-footer {
  text-align: center;
}

/* ==========================================
           CONTACTセクション完全版
   ========================================== */
	
.contact-section {
	margin-top:80px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-content {
  display: flex;
  padding: 80px 60px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
  text-align: center;
  width: 100%;
}

.section-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.logo-mark {
  width: 45px;
  height: 45px;
  background-color: #AF9454;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-style: italic;
}

.section-title-en {
  color: #7C7461;
  font-size: 28px;
  letter-spacing: 4px;
  font-weight: 300;
}

.section-title-ja {
  color: #333;
  font-size: 24px;
  letter-spacing: 8px;
  margin-bottom: 30px;
}

.section-description {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 2px;
}

/* メインコンテンツグリッド */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  width: 100%;
}

/* 左側：アクセス情報 */
.access-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.clinic-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.clinic-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clinic-logo .logo-mark {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.clinic-logo .logo-text {
  color: #7C7461;
  font-size: 20px;
  letter-spacing: 3px;
}

.clinic-details {
  /*   flex: 1; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clinic-name {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.info-label {
  min-width: 80px;
  color: #7C7461;
}

.map-container {
  width: 100%;
  flex: 1;
  min-height: 250px;
  background: #e0e0e0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* 右側：診療時間とCTA */
.schedule-cta {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

/* 診療時間テーブル */
.schedule-table-wrapper {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.schedule-table-wrapper img {
  width: 100%;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  height: 100%;
}

.schedule-table th,
.schedule-table td {
  padding: 12px;
  text-align: center;
  font-size: 13px;
}

.schedule-table thead th:not(:last-child),
.schedule-table tbody th:not(:last-child),
.schedule-table tbody td:not(:last-child) {
  border-right: 1px solid #ddd;
}

.schedule-table thead tr {
  border-bottom: 1px solid #ddd;
}

.schedule-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.schedule-table thead th {
  color: #7C7461;
  font-weight: normal;
}

.schedule-table tbody th {
  color: #7C7461;
  font-weight: normal;
  text-align: left;
  padding-left: 20px;
}

.schedule-table tbody td {
  color: #666;
}

.schedule-icon {
  font-size: 16px;
}

/* CTAボックス */
.cta-box {
	width: 100%;
    background: white;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #7C7461;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.cta-box .phone-icon {
  width: 15px;
}

.cta-box .cta-button-icon {
  width: 19px;
}

.cta-box img {
  width: 100%;
}

.cta-title {
  color: #333;
  font-size: clamp(1.25rem, 1.157rem + 0.38vw, 1.5rem);
  letter-spacing: 4px;
  margin-bottom: 30px;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
}

.cta-phone-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 2;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.phone-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C7461;
  font-size: 16px;
}

.cta-phone-label {
  color: #7C7461;
  font-size: 11px;
  letter-spacing: 1px;
}

.cta-phone-number {
  color: #7C7461;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}

.cta-hours {
  color: #666;
  font-size: 12px;
  margin-left: 25px;
}

.cta-buttons-contact {
  max-width: 680px;
  width: 100%;
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.cta-button-contact {
  display: flex;
  max-width: 320px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 20px;
  background: #7C7461;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-button-contact:hover {
  opacity: 0.8;
}

.cta-button-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cta-button-text {
  font-size: 12px;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* ==========================================
           フッター完全版
        ========================================== */
footer {
  background: #f5f3f0;
  padding: 60px 0 30px;
  position: relative;
}

.page-top {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.page-top:hover {
  opacity: 0.8;
}

.page-top svg circle,
.page-top svg path {
  transition: all 0.3s;
}

.page-top:hover svg circle {
  fill: #7C7461;
}

.page-top:hover svg path {
  fill: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  margin-bottom: 50px;
}

/* 左側：会社情報 */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-info img {
  width: 100%
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-mark {
  width: 45px;
  height: 45px;
  background: #AF9454;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-style: italic;
}

.footer-logo .logo-text {
  color: #7C7461;
  font-size: 24px;
  letter-spacing: 4px;
}

.footer-clinic-name {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-detail-item {
  display: flex;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.footer-detail-label {
  min-width: 80px;
  color: #7C7461;
}

.footer-buttons {
  display: flex;
  gap: 20px;
}

.footer-btn-icon {
  width: 19px;
}

.footer-btn {
  display: flex;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 116px;
  background: #7C7461;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-btn:hover {
  opacity: 0.8;
}

.footer-btn-icon {
  font-size: 18px;
}

.footer-phone {
  display: flex;
  width: 252px;
  padding: 12px 16px;
  align-items: center;
  gap: 36px;
  background: #7C7461;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-phone:hover {
  opacity: 0.8;
}

.footer-phone-label {
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-phone-number {
  font-size: 20px;
  letter-spacing: 2px;
}

.footer-hours {
  text-align: left;
  color: #666;
  font-size: 12px;
}

/* 右側：サイトマップ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-nav-arrow {
  color: #7C7461;
  font-size: 12px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 20px;
}

.footer-nav-item a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-nav-item a:hover {
  opacity: 0.6;
}

.footer-nav-subtitle {
  color: #999;
  font-size: 11px;
  margin-left: 5px;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  color: #999;
  font-size: 12px;
}

/* ==========================================
   レスポンシブ - 768px統一版（修正版）
   ========================================== */

@media (max-width: 768px) {
  /* ヘッダー関連 */

  /* ヒーローセクション */
  .hero-section {
    min-height: 450px;
    padding-bottom: 150px;
  }

  .hero-image img {
    object-fit: contain;
  }

  .hero-image-wrapper {
    padding: 0 0;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    top: 44%;
    gap: 230px;
    transform: translateY(-50%);
    text-align: left;
    max-width: none;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.6;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.8;
  }

  .web-btn {
    display: none;
  }

  .web-btn.sp {
    display: flex;
    top: -50px;
    right: 20px;
    bottom: 120px;
    width: 80px;
    height: 80px;
    z-index: 998;
  }

  .web-btn .text-small,
  .web-btn .text-main {
    font-size: 12px;
  }

  .scroll-indicator {
    display: none;
  }

  .scroll-indicator.sp {
    display: flex;
    left: 50%;
    top: 5px;
    font-size: 10px;
    z-index: 998;
  }

  .scroll-indicator.sp svg {
    position: absolute;
    left: 4px;
    top: -38px;
  }

  /* ABOUTセクション - テキスト上、画像下、左寄せ */
  .about-section {
    padding: 100px 0 60px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 108px 20px 40px;
    background: url(/assets/img/top-bg-image-sp.png) 769px -40.502px / 100% 116.978% no-repeat;
  }

  .about-content {
    order: 1;
    /* テキストを上に */
    text-align: left;
    /* 左寄せ */
    padding: 0;
  }

  .section-title-wrapper {
    margin-bottom: 30px;
  }

  .section-title {
    justify-content: flex-start;
    /* 左寄せ */
    gap: 15px;
    margin-bottom: 10px;
  }

  .section-title-wrapper.center .section-title {
    width: auto;
  }

  .section-title {
    width: 40px;
    height: 38px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 0;
    text-align: left;
  }

  .section-title-wrapper.center .section-subtitle {
    text-align: center;
  }

  .about-section {
    background: initial;
  }

  .about-text h3 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
  }

  .about-text p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: left;
  }

  .about-image {
    order: 2;
    /* 画像を下に */
    width: 100%;
    height: 250px;
    margin: 0 auto;
  }

  /* TREATMENTセクション - 2×2グリッド維持 */
  .treatment-section {
    padding: 0;
  }

  .treatment-container {
    padding: 40px 20px;
  }

  .treatment-section .section-header {
    margin-bottom: 40px;
  }

  .treatment-section .section-logo {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .treatment-section .section-title-en {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .treatment-section .section-title-ja {
    font-size: 16px;
  }

  .treatment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2×2グリッド維持 */
    gap: 10px;
    margin-bottom: 40px;
  }

  .treatment-card {
    padding: 13px 8px;
  }

  .treatment-card-title {
    font-size: 13px;
    min-height: 40px;
  }

  .treatment-card-icon {
    width: 64px;
  }

  .treatment-card-icon img {
    width: 100%;
    padding: 7px;
  }

  .treatment-card-description {
    font-size: 10.24px;
    line-height: 2;
    margin-bottom: 5px;
    min-height: 80px;
  }

  /* FEATUREセクション */
  .feature-section {
    padding: 40px 0;
  }

  .feature-container {
    padding: 0 15px;
  }

  .feature-section .section-header {
    margin-bottom: 0;
    padding: 0;
  }

  .feature-section .section-logo {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .feature-section .section-title-en {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .feature-section .section-title-ja {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .section-lead {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 10px;
  }

  .feature-points {
    margin-top: 0;
  }

  .feature-point {
    margin-bottom: 0;
  }

  .point-header {
    position: relative;
    top: 44px;
    left: 0 !important;
    right: 0 !important;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
  }

  .point-label {
    font-size: 12px;
  }

  .point-number {
    font-size: 60px;
  }

  .point-container {
    flex-direction: column !important;
  }

  .feature-point:nth-child(odd) .point-container {
    margin-right: 14px;
    margin-left: -18px;
    flex-direction: row;
  }

  .feature-point:nth-child(odd) .point-header {
    padding-left: 90px;
  }

  .feature-point:nth-child(even) .point-container {
    margin-left: 14px;
    margin-right: -18px;
  }

  .feature-point:nth-child(even) .point-header {
    padding-left: 120px;
  }

  .point-content {
    padding: 40px 16px 0px;
    text-align: left;
  }

  .point-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .point-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .point-image {
    padding: 30px;
  }

  .image-placeholder {
    height: 200px;
  }

  .gallery-section .wave-container {
    height: 264px;
  }

  .gallery-section {
    padding-top: 150px;
  }

  .wave-container {
    top: -50px;
    height: 180px;
  }

  .gallery-header {
    top: 80px;
  }

  .gallery-logo {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .gallery-title {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .gallery-subtitle {
    font-size: 16px;
  }

  .gallery-images-wrapper {
    margin-top: 40px;
  }

  .gallery-slider {
    gap: 20px;
  }

  /* DOCTORセクション - テキスト上、画像下、左寄せ */
  .doctor-section {
    padding: 60px 0;
  }

  .doctor-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  .doctor-content {
    order: 1;
    /* テキストを上に */
    text-align: left;
    /* 左寄せ */
    padding: 0;
  }

  .doctor-title-wrapper {
    margin-bottom: 30px;
  }

  .doctor-title {
    justify-content: flex-start;
    /* 左寄せ */
    gap: 15px;
    /*     margin-bottom: 15px; */
  }

  .doctor-icon {
    width: 40px;
    height: 38px;
  }

  .doctor-title h2 {
    font-size: 32px;
  }

  .doctor-subtitle {
    font-size: 16px;
    padding-left: 54.5px;
    margin-bottom: 20px;
    text-align: left;
  }

  .doctor-text {
    margin-bottom: 30px;
  }

  .doctor-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 0;
    text-align: center;
  }

  .doctor-image {
    order: 2;
    /* 画像を下に */
    width: 100%;
    height: 250px;
    margin: 0 auto;
  }

  /* COLUMNセクション - サムネイルサイズ維持 */
  .column-section {
    padding: 60px 0;
  }

  .column-section .section-header {
    margin-bottom: 40px;
  }

  .column-section .section-logo {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .column-section .section-title-en {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .column-section .section-title-ja {
    font-size: 16px;
  }

  .column-container {
    padding: 0 20px;
  }

  .column-item {
    padding: 20px 0;
  }

  .column-item-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-direction: column;
  }

  .column-thumbnail {
    width: 210px;
    /* サイズ維持 */
    height: 120px;
    /* サイズ維持 */
    flex-shrink: 0;
  }

  .column-content {
    flex: 1;
    gap: 10px;
    min-width: 0;
    /* テキスト省略対応 */
  }

  .column-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .column-date {
    font-size: 12px;
  }

  .column-category {
    font-size: 11px;
    padding: 3px 10px;
  }

  .column-title {
    font-size: 14px;
    line-height: 1.5;
  }

  .column-arrow {
    display: none;
    /* モバイルでは矢印を非表示 */
  }

  /* CONTACTセクション */
  .contact-section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .contact-content {
    padding: 40px 20px;
    gap: 30px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title-ja {
    font-size: 20px;
    letter-spacing: 6px;
  }

  .schedule-table {
    font-size: 11px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 8px 4px;
  }

  .cta-box {
    min-height: auto;
    padding: 30px 20px;
  }

  .cta-content {
    flex-direction: column;
    gap: 25px;
  }

  .cta-phone-group {
    align-items: center;
    text-align: center;
  }

  .cta-phone-number {
    font-size: 20px;
  }

  .cta-hours {
    margin-left: 0;
  }

  .cta-buttons-contact {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  /* フッター */
  footer {
    padding: 50px 0 20px;
  }

  .page-top {
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-info {
    gap: 20px;
    align-items: center;
  }

  .footer-buttons {
   gap: 20px;
    justify-content: center;
  }

  .footer-phone {
    margin: 0 auto;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
  }

  /* View Moreボタン共通 */
  .doctor-content .view-more-btn {
    padding: 10.24px 11px 10.24px 19px;
    font-size: 10.24px;
    letter-spacing: 0.1em;
    width: 125.16px;
    display: flex;
    margin: 0 auto;
  }

  .view-more-btn::after {
    border-width: 0px 0px 10.24px 10.24px;
  }
}

/* 極小画面用の微調整（375px以下） */
@media (max-width: 375px) {
  .column-item-inner {
    flex-direction: column;
    /* 縦並びに変更 */
  }

  .column-thumbnail {
    width: 100%;
    height: 180px;
  }

  .column-arrow {
    display: flex;
    /* 矢印を表示 */
  }
}