@charset "Shift_JIS";
/*
 * はやし泌尿器クリニック 透析フットケアLP
 * ホームページビルダー クラシック完全対応版
 *
 * CSS変数を使わず、全て実際の値で記述しています。
 * テキストや色の変更は、該当箇所を直接書き換えてください。
 *
 * 主要カラー:
 *   ティール: #0D7C8F
 *   コーラル: #E86B4A
 *   ダークスレート: #1E2A3A
 *   ウォームグレー: #F7F5F2
 */

/* ===== フォント読み込み ===== */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/noto-sans-jp-400.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url(fonts/noto-sans-jp-500.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url(fonts/noto-sans-jp-700.ttf) format('truetype');
}
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/zen-kaku-gothic-new-400.ttf) format('truetype');
}
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 500;
  src: url(fonts/zen-kaku-gothic-new-500.ttf) format('truetype');
}
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 700;
  src: url(fonts/zen-kaku-gothic-new-700.ttf) format('truetype');
}
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 900;
  src: url(fonts/zen-kaku-gothic-new-900.ttf) format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/outfit-400.ttf) format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url(fonts/outfit-600.ttf) format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url(fonts/outfit-700.ttf) format('truetype');
}

/* ===== リセット・ベース ===== */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #1E2A3A;
  background-color: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  line-height: 1.3;
}

/* ===== コンテナ ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

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

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

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E5E0;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

.logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0D7C8F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media (min-width: 768px) {
  .logo-circle {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}

.logo-text-sub {
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.2;
}

.logo-text-main {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1E2A3A;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.2;
}

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

.header-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  background: #E86B4A;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .header-cta {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }
}

.header-cta:hover {
  background: #C9533A;
}

.header-cta .phone-text-sp {
  display: inline;
}
.header-cta .phone-text-pc {
  display: none;
}

@media (min-width: 640px) {
  .header-cta .phone-text-sp {
    display: none;
  }
  .header-cta .phone-text-pc {
    display: inline;
  }
}

/* ===== ヒーローセクション ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(left, rgba(30, 42, 58, 0.82), rgba(30, 42, 58, 0.6), transparent);
  background: linear-gradient(to right, rgba(30, 42, 58, 0.82), rgba(30, 42, 58, 0.6), transparent);
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 107, 74, 0.9);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

.hero h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

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

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

.hero h1 .accent {
  color: #F4A68E;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 560px;
}

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

.hero-desc strong {
  color: #fff;
}

.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  background: #E86B4A;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #C9533A;
}

.btn-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  margin-left: -16px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== セクション共通 ===== */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-label {
  display: inline-block;
  color: #0D7C8F;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1E2A3A;
  margin-bottom: 1rem;
}

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

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

.section-divider {
  width: 4rem;
  height: 4px;
  background: #E86B4A;
  margin: 0 auto;
  border-radius: 9999px;
}

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

/* ===== 悩みセクション ===== */
.concerns {
  background: #F7F5F2;
}

.concerns-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.concern-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #E8E5E0;
  width: 100%;
}

@media (min-width: 768px) {
  .concern-card {
    width: 47%;
  }
}

@media (min-width: 1024px) {
  .concern-card {
    width: 30%;
  }
}

.concern-card .emoji {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

.concern-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1E2A3A;
  margin-bottom: 0.5rem;
}

.concern-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.7;
}

/* 警告ボックス */
.warning-box {
  max-width: 800px;
  margin: 0 auto;
  background: #FDE8E0;
  border-left: 4px solid #E86B4A;
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem 2rem;
}

.warning-box p {
  font-size: 1rem;
  color: #1E2A3A;
  line-height: 1.8;
}

.warning-box strong {
  color: #C9533A;
}

/* ===== フットケアの必要性セクション ===== */
.why-footcare {
  background: #1E2A3A;
  color: #fff;
  position: relative;
}

.stats-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .stat-item {
    width: 30%;
  }
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #E86B4A;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 4.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.stat-source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* 理由リスト */
.reasons-list {
  max-width: 800px;
  margin: 0 auto;
}

.reason-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reason-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #0D7C8F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Outfit', sans-serif;
}

.reason-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.reason-item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ===== 選ばれる理由セクション ===== */
.feature-block {
  margin-bottom: 5rem;
}

.feature-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-grid > div {
  width: 100%;
}

@media (min-width: 1024px) {
  .feature-grid > div {
    width: 47%;
  }
}

.feature-number-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0D7C8F;
  opacity: 0.3;
}

.feature-line {
  height: 1px;
  background: #E8E5E0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.feature-block h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1E2A3A;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .feature-block h3 {
    font-size: 1.875rem;
  }
}

.feature-block .desc {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-highlight {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  color: #0D7C8F;
  font-weight: 500;
  background: #E0F4F4;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.feature-image {
  border-radius: 1rem;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .feature-image img {
    height: 400px;
  }
}

/* 順序変更（デスクトップ） */
@media (min-width: 1024px) {
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

/* タグ */
.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.875rem;
  color: #0D7C8F;
  background: #E0F4F4;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
}

/* チェックリスト */
.check-list-box {
  background: #F7F5F2;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.check-list-box h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1E2A3A;
  margin-bottom: 0.75rem;
}

.check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.check-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6B7280;
}

.check-list-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0D7C8F;
  display: inline-block;
}

/* ===== ケアの流れセクション ===== */
.care-flow {
  background: #0D7C8F;
  color: #fff;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.care-flow .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.care-flow .section-title {
  color: #fff;
}

.care-flow .section-divider {
  background: rgba(255, 255, 255, 0.4);
}

.care-flow .inner {
  position: relative;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: 60px;
  display: block;
}

.steps-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .step-card {
    width: 47%;
  }
}

@media (min-width: 1024px) {
  .step-card {
    width: 22%;
  }
}

.step-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.step-num {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0D7C8F;
  background: #E0F4F4;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===== Instagramセクション ===== */
.instagram-section {
  background: #FFFFFF;
}

.instagram-card {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  background: #F7F5F2;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #E8E5E0;
}

.instagram-card:hover {
  border-color: #E86B4A;
}

.ig-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ig-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: -webkit-linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  min-width: 56px;
}

.ig-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1E2A3A;
}

.ig-sub {
  font-size: 0.875rem;
  color: #6B7280;
}

.ig-desc {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ig-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ig-tag {
  font-size: 0.875rem;
  color: #0D7C8F;
  background: #E0F4F4;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.ig-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  color: #E86B4A;
  font-weight: 700;
}

/* ===== クリニック案内セクション ===== */
.clinic-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.clinic-grid > div {
  width: 100%;
}

@media (min-width: 1024px) {
  .clinic-grid > div {
    width: 47%;
  }
}

.clinic-image {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.clinic-image img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .clinic-image img {
    height: 288px;
  }
}

.access-box {
  background: #F7F5F2;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.access-box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1E2A3A;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.access-box h3 svg {
  color: #0D7C8F;
}

.access-box .address {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.access-box .station {
  font-size: 0.875rem;
  color: #6B7280;
}

.clinic-name-sub {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.25rem;
}

.clinic-name-main {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1E2A3A;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin-bottom: 1.5rem;
}

.phone-box {
  background: #FDE8E0;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.phone-box svg {
  color: #E86B4A;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.phone-box .phone-label {
  font-size: 0.875rem;
  color: #E86B4A;
  font-weight: 500;
}

.phone-box .phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9533A;
  font-family: 'Outfit', sans-serif;
}

.phone-box .phone-number:hover {
  color: #E86B4A;
}

.hours-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1E2A3A;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.hours-title svg {
  color: #0D7C8F;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.hours-table thead tr {
  background: #0D7C8F;
  color: #fff;
}

.hours-table th {
  padding: 0.5rem;
  text-align: center;
  font-weight: 500;
}

.hours-table th:first-child {
  text-align: left;
  padding-left: 0.75rem;
  border-radius: 0.5rem 0 0 0;
}

.hours-table th:last-child {
  border-radius: 0 0.5rem 0 0;
}

.hours-table td {
  padding: 0.625rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid #E8E5E0;
}

.hours-table td:first-child {
  text-align: left;
  padding-left: 0.75rem;
  font-weight: 500;
  color: #1E2A3A;
}

.hours-table .open {
  color: #0D7C8F;
  font-weight: 900;
  font-size: 1.125rem;
}

.hours-table .closed {
  color: #6B7280;
  font-weight: 700;
  font-size: 1rem;
}

.hours-note {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}

.dept-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dept-tag {
  background: #E0F4F4;
  color: #095E6D;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
}

/* ===== CTAセクション ===== */
.cta-section {
  background: #1E2A3A;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section .inner {
  position: relative;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .cta-section h2 {
    font-size: 1.875rem;
  }
}

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

.cta-section .cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .cta-section .cta-desc {
    font-size: 1.125rem;
  }
}

.cta-section .btn-primary {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.cta-section .cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
}

/* ===== フッター ===== */
.site-footer {
  background: #1E2A3A;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-circle {
  width: 40px;
  height: 40px;
}

.footer-logo .logo-text-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo .logo-text-main {
  color: #fff;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== スマホ固定CTA ===== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #FFFFFF;
  border-top: 1px solid #E8E5E0;
  padding: 0.75rem;
}

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

.mobile-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  background: #E86B4A;
  color: #fff;
  width: 100%;
  padding: 0.875rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
}

.mobile-cta a:hover {
  background: #C9533A;
}

/* ===== フェードインアニメーション ===== */
.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
