/* ========================================
   デイサービスぽの - スタイルシート
   Pastel Hawaiian Theme
======================================== */

/* ---------- CSS変数 ---------- */
:root {
  --color-base: #f9efeb;
  --color-blue: #ABDCEC;
  --color-blue-dark: #7fc3dc;
  --color-pink: #F6BCC2;
  --color-pink-dark: #e89aa3;
  --color-yellow: #F4DE94;
  --color-yellow-dark: #d4b95a;
  --color-text: #5a4a42;
  --color-text-light: #8a7a72;
  --color-white: #ffffff;
  --color-bg-soft: #fdf7f4;

  --font-main: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'メイリオ', sans-serif;
  --shadow-soft: 0 4px 20px rgba(90, 74, 66, 0.1);
  --shadow-card: 0 8px 32px rgba(90, 74, 66, 0.12);
  --radius-card: 20px;
  --radius-btn: 50px;
  --transition: all 0.3s ease;
}

/* ---------- ベース ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

/* ---------- スクロールアニメーション ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- コンテナ ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- ボタン共通 ---------- */
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-pink-dark), #c96b77);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 20px rgba(201, 107, 119, 0.4);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 107, 119, 0.5);
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.tag-yellow { background: var(--color-yellow); color: #7a5a10; }
.tag-pink   { background: var(--color-pink);   color: #8a3a44; }
.tag-blue   { background: var(--color-blue);   color: #2a5a6a; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.accent-pink { color: var(--color-pink-dark); }

/* ========================================
   HEADER
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(90, 74, 66, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.tel-label {
  font-size: 0.72rem;
  color: var(--color-text-light);
}

.tel-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-pink-dark);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.tel-number:hover {
  color: var(--color-text);
}

.tel-hours {
  font-size: 0.72rem;
  color: var(--color-text-light);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(249, 239, 235, 0.95) 0%,
    rgba(246, 188, 194, 0.40) 50%,
    rgba(171, 220, 236, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-character {
  flex-shrink: 0;
  width: 220px;
}
.hero-character img {
  width: 100%;
  filter: drop-shadow(0 8px 20px rgba(90,74,66,0.15));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-text {
  flex: 1;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a5a6a;
  background: rgba(171, 220, 236, 0.5);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(171, 220, 236, 0.3);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-text);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.9);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========================================
   ABOUT
======================================== */
.about {
  background: var(--color-base);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.about-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-bottom: 5px solid transparent;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(90, 74, 66, 0.14);
}
.about-card-pink { border-bottom-color: var(--color-pink); }
.about-card-blue { border-bottom-color: var(--color-blue); }

.about-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-card-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.about-card-sub {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 16px;
}

.about-card-text {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--color-text-light);
}

.philosophy-box {
  background: linear-gradient(135deg, #fff9f5, #fdf3f7);
  border-radius: var(--radius-card);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--color-yellow);
}

.philosophy-character {
  flex-shrink: 0;
  width: 160px;
}

.philosophy-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 12px;
  border-left: 4px solid var(--color-yellow);
  padding-left: 12px;
}

.philosophy-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.philosophy-text strong {
  color: var(--color-pink-dark);
}

.philosophy-concept {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ========================================
   RECOMMEND
======================================== */
.recommend {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-pink) 100%);
  position: relative;
  padding: 0;
}

.recommend-wave-top, .recommend-wave-bottom {
  line-height: 0;
}
.recommend-wave-top svg, .recommend-wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

.recommend .container {
  padding: 60px 24px;
}

.recommend .section-title {
  color: white;
}

.recommend .section-tag {
  background: rgba(255,255,255,0.3);
  color: white;
}

.recommend .section-lead {
  color: rgba(255,255,255,0.85);
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recommend-item {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.recommend-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.recommend-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  transform: scale(1.1);
}


.recommend-item p {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

/* ========================================
   REHAB FEATURES
======================================== */
.rehab {
  background: var(--color-bg-soft);
}

.rehab-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rehab-feature-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.rehab-feature-card:hover {
  transform: translateY(-4px);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-base);
  line-height: 1;
}

.rehab-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--color-text);
  border-left: 4px solid var(--color-blue);
  padding-left: 12px;
}
.rehab-feature-card:nth-child(2) h3 { border-left-color: var(--color-pink); }
.rehab-feature-card:nth-child(3) h3 { border-left-color: var(--color-yellow); }
.rehab-feature-card:nth-child(4) h3 { border-left-color: var(--color-pink-dark); }

.rehab-feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ========================================
   MACHINES
======================================== */
.machines {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-base) 100%);
  padding: 80px 0;
}

.machines-bg {
  width: 100%;
}

.machines-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.machine-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.machine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(90, 74, 66, 0.14);
}

.machine-card-reverse {
  direction: rtl;
}
.machine-card-reverse > * {
  direction: ltr;
}

.machine-img-wrap {
  height: 300px;
  overflow: hidden;
}

.machine-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.machine-card:hover .machine-img-wrap img {
  transform: scale(1.04);
}

.machine-info {
  padding: 40px 36px 40px 0;
}

.machine-card-reverse .machine-info {
  padding: 40px 0 40px 36px;
}

.machine-info h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--color-text);
  position: relative;
  padding-bottom: 12px;
}
.machine-info h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--color-blue);
  border-radius: 2px;
}

.machine-info p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

.machines-note {
  margin-top: 40px;
  background: rgba(171, 220, 236, 0.2);
  border-left: 4px solid var(--color-blue);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ========================================
   SCHEDULE
======================================== */
.schedule {
  background: var(--color-bg-soft);
}

.schedule-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.schedule-col {
  background: white;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.schedule-badge {
  font-size: 1rem;
  font-weight: 900;
  padding: 8px 20px;
  border-radius: 50px;
}
.badge-blue { background: var(--color-blue); color: #2a5a6a; }
.badge-pink { background: var(--color-pink); color: #8a3a44; }

.schedule-time-range {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 700;
}

/* タイムライン */
.timeline {
  list-style: none;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-blue), var(--color-pink));
  border-radius: 2px;
}

.schedule-pm .timeline::before {
  background: linear-gradient(180deg, var(--color-pink), var(--color-yellow));
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 63px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-blue);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--color-blue);
  z-index: 1;
}
.schedule-pm .timeline-item::before {
  background: var(--color-pink);
  box-shadow: 0 0 0 2px var(--color-pink);
}

.timeline-item-main::before {
  background: var(--color-text) !important;
  box-shadow: 0 0 0 2px var(--color-text) !important;
  width: 16px;
  height: 16px;
  left: 61px;
}

.timeline-item-end::before {
  background: var(--color-yellow-dark) !important;
  box-shadow: 0 0 0 2px var(--color-yellow-dark) !important;
}

.timeline-time {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--color-blue-dark);
  padding-top: 2px;
  text-align: right;
  padding-right: 32px;
}
.schedule-pm .timeline-time {
  color: var(--color-pink-dark);
}

.timeline-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.timeline-content p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.timeline-item-main .timeline-content strong {
  color: var(--color-text);
  font-size: 1rem;
}

.schedule-note {
  text-align: center;
  font-size: 0.87rem;
  color: var(--color-text-light);
  padding: 12px;
  background: rgba(249, 239, 235, 0.8);
  border-radius: 8px;
}

/* ========================================
   HANAHOU TIME
======================================== */
.hanahou {
  background: var(--color-base);
  padding: 0;
}

.hanahou-bg {
  background: linear-gradient(135deg, #fff8e1, #fff0f3, #e8f6fe);
  padding: 80px 0;
}

.hanahou-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hanahou-img {
  flex-shrink: 0;
  width: 220px;
}
.hanahou-img img {
  animation: float 5s ease-in-out infinite;
}

.hanahou-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 12px 0 20px;
  line-height: 1.3;
}

.hanahou-sub {
  font-size: 1.2rem;
  color: var(--color-pink-dark);
}

.hanahou-text p {
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.hanahou-badge {
  display: inline-block;
  background: var(--color-yellow);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #7a5a10;
  margin-top: 8px;
}

/* ========================================
   FACILITY INFO
======================================== */
.info {
  background: var(--color-bg-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-table-wrap {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr:nth-child(even) td,
.info-table tr:nth-child(even) th {
  background: #fdf7f4;
}

.info-table th, .info-table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(90, 74, 66, 0.06);
}

.info-table th {
  width: 130px;
  font-weight: 700;
  color: var(--color-text);
  background: rgba(171, 220, 236, 0.15);
  white-space: nowrap;
}

.info-tel {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-pink-dark);
  transition: var(--transition);
}
.info-tel:hover {
  color: var(--color-text);
}

.info-map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-caption {
  margin-top: 12px;
  font-size: 0.87rem;
  color: var(--color-text-light);
  text-align: center;
}

/* ========================================
   INSTAGRAM
======================================== */
.instagram {
  background: var(--color-base);
  padding: 0;
}

.instagram-bg {
  background: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 100%);
  padding: 80px 0;
}

.instagram .section-title {
  color: var(--color-text);
}

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

.instagram-icon {
  display: inline-flex;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3);
}

.instagram-coming {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 8px;
}

.instagram-sub {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.instagram-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.mock-photo {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg,
    rgba(246, 188, 194, 0.4),
    rgba(171, 220, 236, 0.4),
    rgba(244, 222, 148, 0.4)
  );
  animation: shimmer 2.5s ease-in-out infinite alternate;
}
.mock-photo:nth-child(2) { animation-delay: 0.3s; }
.mock-photo:nth-child(3) { animation-delay: 0.6s; }
.mock-photo:nth-child(4) { animation-delay: 0.9s; }
.mock-photo:nth-child(5) { animation-delay: 1.2s; }
.mock-photo:nth-child(6) { animation-delay: 1.5s; }

@keyframes shimmer {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* ========================================
   CONTACT
======================================== */
.contact {
  background: var(--color-bg-soft);
}

.contact-box {
  background: white;
  border-radius: var(--radius-card);
  padding: 60px 48px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid var(--color-pink);
}

.contact-character {
  flex-shrink: 0;
  width: 160px;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.contact-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.contact-tel:hover {
  transform: scale(1.02);
}

.contact-tel-icon {
  font-size: 2rem;
}

.contact-tel-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-pink-dark);
  letter-spacing: 0.04em;
}

.contact-hours {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.open-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-pink));
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-info {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-info a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer-info a:hover {
  color: var(--color-yellow);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px 100px;
  }
  .hero-character { width: 160px; }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .philosophy-text h3 {
    border-left: none;
    border-bottom: 4px solid var(--color-yellow);
    padding-left: 0;
    padding-bottom: 8px;
    display: inline-block;
  }
  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rehab-features {
    grid-template-columns: 1fr;
  }
  .machine-card,
  .machine-card-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .machine-img-wrap {
    height: 220px;
  }
  .machine-info,
  .machine-card-reverse .machine-info {
    padding: 28px;
  }
  .schedule-tabs {
    grid-template-columns: 1fr;
  }
  .hanahou-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 8px;
  }
  .header-tel {
    align-items: center;
  }
  .header-logo-img {
    height: 44px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .recommend-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .recommend-item {
    padding: 24px 12px;
  }
  .section {
    padding: 60px 0;
  }
  .schedule-col {
    padding: 28px 20px;
  }
  .instagram-mock-grid {
    max-width: 320px;
  }
  .contact-tel-number {
    font-size: 1.8rem;
  }
  .info-table th {
    width: 100px;
  }
}
