/* ============================================================
   Base / Reset
   ============================================================ */
html {
  scroll-behavior: smooth;
}

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

:root {
  --color-navy: #00467c;
  --color-black: #434343;
  --color-black-pure: #000;
  --color-white: #fff;
  --color-blue: #266ad4;
  --color-green: #00cecc;
  --color-yellow: #f3ff17;
  --color-light-blue: #ddf4f6;
  --color-gray-light: #f0f3f5;
  --font-family: "Noto Sans JP", sans-serif;
}

body {
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  background: url("../images/bg.png") center top / 100% auto repeat-y;
}

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

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

/* ============================================================
   ハンバーガーメニュー（デフォルト非表示）
   ============================================================ */
.hamburger {
  display: none;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
}

/* --------------------------------------------------
   Header - クリニック名・住所
   -------------------------------------------------- */
.header__clinic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.header__clinic-name {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 131px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.header__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 1.2px;
  line-height: 1.6;
  padding-top: 10px;
  white-space: nowrap;
}

.header__address {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.6;
  white-space: nowrap;
}

/* --------------------------------------------------
   Header - 予約・電話番号・ボタン
   -------------------------------------------------- */
.header__contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  margin-left: 48px;
}

/* --------------------------------------------------
   Header - 電話番号
   -------------------------------------------------- */
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 236px;
  flex-shrink: 0;
}

.header__phone-label {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.header__phone-label-line {
  flex: 1 0 0;
  height: 0;
  border-top: 0.4px solid var(--color-black-pure);
}

.header__phone-label-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.48px;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone-number {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__phone-icon {
  width: 26px;
  height: 29px;
  flex-shrink: 0;
}

.header__phone-tel {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  white-space: nowrap;
}

/* --------------------------------------------------
   Header - アクセス・採用案内ボタン
   -------------------------------------------------- */
.header__buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 6px;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 18px 8px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.header__btn:hover {
  opacity: 0.8;
}

.header__btn--access {
  background-color: var(--color-blue);
}

.header__btn--recruit {
  background-color: var(--color-green);
}

.header__btn img {
  flex-shrink: 0;
}

/* --------------------------------------------------
   Header - アステップむろまち
   -------------------------------------------------- */
.header__astep {
  background-color: var(--color-gray-light);
  border-bottom-left-radius: 16px;
  width: 170px;
  flex-shrink: 0;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header__astep:hover {
  opacity: 0.7;
}

.header__astep-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  width: 100%;
}

.header__astep-logo {
  width: 72px;
  height: 28px;
}

.header__astep-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.header__astep-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.4;
  text-align: center;
}

/* 外部リンクアイコン */
.header__astep-link {
  display: inline-grid;
  position: relative;
  width: 16px;
  height: 14px;
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 2px;
}

.header__astep-link-icon {
  width: 14px;
  height: 9px;
  border: 0.8px solid var(--color-black-pure);
  position: absolute;
  bottom: 2px;
  right: 0;
}

.header__astep-link-icon--front {
  background-color: var(--color-gray-light);
  bottom: 5px;
  right: 3px;
}

/* ============================================================
   Nav (ナビゲーション)
   ============================================================ */
.nav {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 36px 40px 0;
}

.nav__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

/* --------------------------------------------------
   Nav - 各メニュー項目
   -------------------------------------------------- */
.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.6;
  white-space: nowrap;
  background-image: linear-gradient(var(--color-yellow), var(--color-yellow));
  background-repeat: no-repeat;
  background-position: left bottom 1px;
  background-size: 100% 8px;
  transition: opacity 0.2s;
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__arrow {
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}

/* PC時はモバイル専用項目を非表示 */
.nav__item--mobile-only {
  display: none;
}

/* --------------------------------------------------
   Nav - ドロップダウンメニュー
   -------------------------------------------------- */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 200px;
  background-color: var(--color-yellow);
  border-radius: 12px;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
}

.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.4;
}

/* ============================================================
   ページヒーロー（下層ページ共通）
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 522px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.56);
}

.page-hero__title {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.8;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   デイケア・ナイトケアからのお知らせ
   ============================================================ */
.dc-news {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 143px 0;
}

.dc-news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dc-news__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.dc-news__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.dc-news__dots {
  width: 80px;
  height: 8px;
}

/* --------------------------------------------------
   デイケアお知らせ - カード一覧
   -------------------------------------------------- */
.dc-news__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.dc-news__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
  flex-shrink: 0;
  color: inherit;
  transition: opacity 0.2s;
}

.dc-news__card:hover {
  opacity: 0.7;
}

.dc-news__card-image {
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

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

.dc-news__card-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1;
}

.dc-news__card-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* ============================================================
   施設ギャラリー（Swiper）
   ============================================================ */
.dc-gallery {
  width: 100%;
  padding: 100px 0 120px;
  overflow: hidden;
}

.dc-gallery__slider {
  width: 100%;
  overflow: visible;
}

.dc-gallery__slide {
  width: 520px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.dc-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   プログラム（デイケアページ）
   ============================================================ */
.dc-program {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / contain repeat;
}

.dc-program__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

/* --------------------------------------------------
   プログラム - ページ内ナビボタン
   -------------------------------------------------- */
.dc-program__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.dc-program__nav-btn {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 20px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.dc-program__nav-btn:hover {
  opacity: 0.8;
}

/* --------------------------------------------------
   プログラム - 各セクション共通
   -------------------------------------------------- */
.dc-program__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.dc-program__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.dc-program__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

/* --------------------------------------------------
   プログラム - 区切り線
   -------------------------------------------------- */
.dc-program__divider {
  width: 100%;
  border: none;
  border-top: 2px solid var(--color-blue);
  opacity: 0.2;
}

/* --------------------------------------------------
   プログラム - PDF画像
   -------------------------------------------------- */
.dc-program__pdf {
  width: 100%;
  max-width: 1080px;
}

.dc-program__pdf img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------
   プログラム - 注意事項
   -------------------------------------------------- */
.dc-program__notice {
  list-style: disc;
  margin-left: 27px;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.9;
}

/* --------------------------------------------------
   プログラム - プログラム一覧テーブル
   -------------------------------------------------- */
.dc-program__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 80px;
}

.dc-program__table-th {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 14px 40px;
  border: 1px solid var(--color-white);
}

.dc-program__table-th:first-child {
  width: 380px;
}

.dc-program__table-name {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 14px 40px;
  border-right: 1px solid var(--color-white);
  border-top: 1px solid var(--color-white);
  width: 380px;
}

.dc-program__table-name a {
  color: var(--color-white);
  text-decoration: underline;
}

.dc-program__table-desc {
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 14px 40px;
  border-top: 1px solid var(--color-blue);
}

/* ============================================================
   まるい美術館ページ
   ============================================================ */
.museum {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / contain repeat;
}

.museum__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  max-width: 1080px;
  margin: 0 auto;
}

.museum__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

/* --- 展覧会情報カード --- */
.museum__exhibit-info {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px 0;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-black);
  font-weight: 700;
}

.museum__exhibit-name {
  font-size: 28px;
  letter-spacing: 0.56px;
  line-height: 1.2;
}

.museum__exhibit-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
}

/* --- ポスター画像 --- */
.museum__posters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 760px;
}

.museum__posters img {
  width: 100%;
  height: auto;
}

.museum__placeholder {
  width: 100%;
  height: 400px;
  background-color: #b1b1b1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.64px;
}

/* --- アーカイブ --- */
.museum__archive-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
}

.museum__archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.museum__archive-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(25% - 12px);
  color: inherit;
  transition: opacity 0.2s;
}

.museum__archive-card:hover {
  opacity: 0.7;
}

.museum__archive-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
}

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

.museum__archive-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.museum__archive-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.6;
}

.museum__archive-vol {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.museum__archive-name,
.museum__archive-artist {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* ============================================================
   認知機能リハページ
   ============================================================ */

/* --- 共通セクション区切り線 --- */
.section-divider {
  max-width: 1080px;
  margin: 0 auto;
  border: none;
  border-top: 2px solid var(--color-blue);
  opacity: 0.2;
}

/* --- セクション共通 --- */
.cr-about,
.cr-what,
.cr-functions {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 120px 143px;
}

.cr-about__inner,
.cr-what__inner,
.cr-functions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.cr-about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.cr-about__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.cr-about__intro {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
  max-width: 840px;
}

.cr-about__note {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
  max-width: 840px;
  margin-top: 28px;
}

/* ============================================================
   利用までの流れ（ひきこもりページ）
   ============================================================ */
.hiki-flow {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / contain repeat;
}

.hiki-flow__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.hiki-flow__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hiki-flow__card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hiki-flow__card-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hiki-flow__card-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.96px;
  line-height: 1.6;
  width: 160px;
}

.hiki-flow__card-body {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* ============================================================
   Q&A（ひきこもりページ）
   ============================================================ */
.hiki-qa {
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background-color: var(--color-light-blue);
}

.hiki-qa__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.hiki-qa__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hiki-qa__card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 26px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hiki-qa__question {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.64px;
  line-height: 1.6;
}

.hiki-qa__answer {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* ============================================================
   採用案内ページ - 求人詳細
   ============================================================ */
.recruit-detail {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 143px 100px;
}

.recruit-detail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.recruit-detail__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
  width: 100%;
}

.recruit-detail__table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-detail__table th {
  width: 250px;
  background-color: var(--color-light-blue);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.6;
  padding: 32px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-white);
}

.recruit-detail__table td {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.6;
  padding: 32px;
  vertical-align: top;
  border: 1px solid var(--color-light-blue);
}

.recruit-detail__table ul {
  list-style: disc;
  margin-left: 24px;
}

.recruit-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 80px 20px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.recruit-detail__btn:hover {
  opacity: 0.8;
}

/* ============================================================
   採用案内ページ - 求人一覧
   ============================================================ */
.recruit-list {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 143px 100px;
}

.recruit-list__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-list__item {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.recruit-list__image {
  width: 340px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.recruit-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-list__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.recruit-list__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
}

.recruit-list__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.recruit-list__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.6;
  height: 157px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.recruit-list__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 80px 20px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.recruit-list__btn:hover {
  opacity: 0.8;
}

/* ============================================================
   カフェページ
   ============================================================ */
.cafe-about {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 60px 143px 120px;
}

.cafe-about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cafe-about__logo {
  width: 210px;
  height: 210px;
}

.cafe-about__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.cafe-about__photo {
  width: 524px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.cafe-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   maruco.ページ
   ============================================================ */
.maruco-photo {
  width: 100%;
  max-width: 840px;
  border-radius: 12px;
  overflow: hidden;
}

.maruco-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.maruco-works-link {
  font-size: 24px;
  font-weight: 700;
  color: #5884f1;
}

/* --- マルコスパイラル図解 --- */
.maruco-spiral {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  width: 100%;
}

.maruco-spiral__svg {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.maruco-spiral__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.maruco-spiral__label {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  text-align: center;
  line-height: 1.6;
  border: 8px solid;
}

.maruco-spiral__item--pink .maruco-spiral__label {
  border-color: #f0b0b0;
}

.maruco-spiral__item--blue .maruco-spiral__label {
  border-color: #a0c4e8;
}

.maruco-spiral__item--orange .maruco-spiral__label {
  border-color: #e8b880;
}

.maruco-spiral__sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black-pure);
  text-align: center;
  line-height: 1.6;
}

/* --- 作品ギャラリー --- */
.maruco-gallery {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 120px 143px;
}

.maruco-gallery__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maruco-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 40px;
}

.maruco-gallery__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.maruco-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.maruco-gallery__item:hover img {
  transform: scale(1.05);
}

/* --- 寄付実績カード --- */
.maruco-donation {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 223px 60px;
}

.maruco-donation__card {
  padding: 32px 40px;
  border-radius: 12px;
  background: linear-gradient(57deg, #ddf4f6 1.06%, #ecfdff 94.24%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maruco-donation__label {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.maruco-donation__label-line {
  flex: 1 0 0;
  height: 0;
  border-top: 0.4px solid var(--color-black-pure);
}

.maruco-donation__label-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black-pure);
  letter-spacing: 0.64px;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.maruco-donation__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* --- クリエーターズファイル --- */
.maruco-creators {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.maruco-creators__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maruco-creators__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.maruco-creators__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.maruco-creators__note {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* ============================================================
   訪問看護ページ
   ============================================================ */
.vn-logo {
  width: 100%;
  padding: 60px 0 40px;
  display: flex;
  justify-content: center;
}

.vn-logo__image {
  width: 440px;
  height: auto;
}

/* --- 看護師・作業療法士カード --- */
.vn-roles {
  display: flex;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
}

.vn-roles__card {
  flex: 1;
  min-width: 0;
  padding: 32px 40px;
  border-radius: 12px;
  background: linear-gradient(69deg, #ddf4f6 1.06%, #ecfdff 100.72%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vn-roles__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.96px;
  line-height: 1.6;
  text-align: center;
}

.vn-roles__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* --- サービス一覧 --- */
.vn-service-list {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  width: 100%;
}

/* --- 利用までの流れ（訪問看護） --- */
.vn-flow {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / contain repeat;
}

.vn-flow__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.vn-flow__steps {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin-top: 32px;
}

.vn-flow__step {
  flex: 1;
  min-width: 0;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.vn-flow__step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.96px;
  line-height: 1.6;
  text-align: center;
}

.vn-flow__arrow {
  color: var(--color-green);
  font-size: 20px;
  flex-shrink: 0;
  align-self: center;
}

/* --- プログラム詳細カード --- */
.cr-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  padding: 32px 40px;
  border-radius: 12px;
  background: linear-gradient(79.53deg, #ddf4f6 1.06%, #ecfdff 100.72%);
}

.cr-detail__label {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.6;
  letter-spacing: 0.96px;
  text-align: center;
  width: 100%;
}

.cr-detail__card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 26px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cr-detail__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  font-size: 16px;
}

.cr-detail__key {
  width: 80px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.64px;
  line-height: 1.6;
}

.cr-detail__key--wide {
  width: 110px;
}

.cr-detail__key--xl {
  width: 170px;
}

.cr-detail__list {
  list-style: disc;
  margin-left: 24px;
  line-height: 1.6;
}

.cr-detail__sub-card {
  padding: 16px 40px;
  border-radius: 12px;
  background: linear-gradient(60deg, #ddf4f6 1.06%, #ecfdff 100.72%);
  margin-bottom: 10px;
}

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

.cr-detail__sub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.64px;
  line-height: 1.6;
}

.cr-detail__val {
  flex: 1;
  min-width: 0;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.cr-detail__note {
  font-size: 14px;
  line-height: 1.6;
}

.cr-detail__link {
  color: #5884f1;
  text-decoration: underline;
}

.cr-detail__divider {
  width: 100%;
  border: none;
  border-top: 2px dashed #ccc;
}

.cr-detail__footer {
  text-align: center;
  font-size: 16px;
  color: var(--color-black-pure);
  line-height: 1.6;
}

/* --- 認知機能カード群 --- */
.cr-func-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
  width: 100%;
  padding: 32px 40px;
  border-radius: 12px;
  background: linear-gradient(86.38deg, #ddf4f6 1.06%, #ecfdff 100.72%);
}

.cr-func-divider {
  width: 100%;
  border: none;
  border-top: 2px dashed #b0dde0;
}

.cr-func-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 760px;
  max-width: 100%;
}

.cr-func-block__header {
  text-align: center;
}

.cr-func-block__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.cr-func-block__desc {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.cr-func-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 26px 40px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.cr-func-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.64px;
  margin-bottom: 18px;
}

.cr-func-card__title-main {
  font-size: 20px;
}

.cr-func-card__title-block {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.64px;
  line-height: 1.6;
}

.cr-func-card__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.64px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ============================================================
   見学から登録まで（デイケアページ）
   ============================================================ */
.dc-flow {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / cover repeat-y;
}

.dc-flow__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dc-flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.dc-flow__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

/* --------------------------------------------------
   見学 - ステップカード一覧
   -------------------------------------------------- */
.dc-flow__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.dc-flow__card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dc-flow__card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dc-flow__card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
  flex-shrink: 0;
}

.dc-flow__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.6;
  letter-spacing: 0.96px;
  flex: 1;
  min-width: 0;
  align-self: center;
}

.dc-flow__card-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.dc-flow__card-phone {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.dc-flow__link {
  color: #5884f1;
  text-decoration: underline;
}

/* ============================================================
   インスタグラム（デイケアページ）
   ============================================================ */
.dc-instagram {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 120px 143px;
}

.dc-instagram__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dc-instagram__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.dc-instagram__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.dc-instagram__feed {
  width: 100%;
  max-width: 500px;
}

.dc-instagram__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 80px 20px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
  margin-top: 6px;
}

.dc-instagram__btn:hover {
  opacity: 0.8;
}

/* ============================================================
   FV (ファーストビュー)
   ============================================================ */
.fv {
  position: relative;
  background-color: var(--color-white);
  width: 100%;
  padding: 10px 0 0;
  overflow: hidden;
}

/* --------------------------------------------------
   FV - Swiper スライダー
   -------------------------------------------------- */
.fv__slider {
  width: 100%;
  height: 554px;
  overflow: visible;
}

.fv__slider .swiper-slide {
  width: 87.8%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 16px;
  transition: opacity 0.3s;
}

.fv__slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.4;
}

.fv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ページネーション（ドット） */
.fv__slider .swiper-pagination {
  bottom: 16px;
}

.fv__slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  opacity: 0.6;
}

.fv__slider .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

/* 前後矢印 */
.fv__slider .swiper-button-prev,
.fv__slider .swiper-button-next {
  color: var(--color-white);
  width: 44px;
  height: 44px;
}

.fv__slider .swiper-button-prev::after,
.fv__slider .swiper-button-next::after {
  font-size: 20px;
}

/* --------------------------------------------------
   FV - キャッチコピー
   -------------------------------------------------- */
.fv__catch {
  position: absolute;
  left: 118px;
  bottom: 24px;
  top: 414px;
  z-index: 10;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv__catch-text {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.8;
  white-space: nowrap;
}

/* ============================================================
   重要なお知らせバナー
   ============================================================ */
.site-notice {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 60px 143px 0;
}

.site-notice__inner {
  background-color: #fff8f0;
  border: 2px solid #e8a64a;
  border-radius: 12px;
  padding: 32px 40px;
}

.site-notice__title {
  font-size: 20px;
  font-weight: 700;
  color: #d35400;
  text-align: center;
  margin-bottom: 16px;
}

.site-notice__text {
  font-size: 16px;
  line-height: 2;
  color: var(--color-black-pure);
}

.site-notice__text + .site-notice__text {
  margin-top: 12px;
}

.site-notice__text--emphasis {
  font-weight: 700;
  color: #d35400;
}

/* ============================================================
   お知らせ
   ============================================================ */
.news {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 143px 120px;
}

.news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 80px;
}

/* --------------------------------------------------
   お知らせ - タイトル＋一覧レイアウト
   -------------------------------------------------- */
.news__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

/* --------------------------------------------------
   お知らせ - タイトル
   -------------------------------------------------- */
.news__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.news__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.news__dots {
  width: 80px;
  height: 8px;
}

/* --------------------------------------------------
   お知らせ - 一覧
   -------------------------------------------------- */
.news__list {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  font-size: 18px;
  border-bottom: 0.5px solid var(--color-black);
  padding-bottom: 16px;
  padding-top: 16px;
}

.news__item:first-child {
  padding-top: 0;
}

.news__date {
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.news__text {
  flex: 1 0 0;
  min-width: 0;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news__text a {
  color: inherit;
  transition: opacity 0.2s;
}

.news__text a:hover {
  opacity: 0.6;
}

/* --------------------------------------------------
   お知らせ - ボタン
   -------------------------------------------------- */
.news__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px 20px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.news__btn:hover {
  opacity: 0.8;
}

/* ============================================================
   診察について
   ============================================================ */
.consultation {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: linear-gradient(76.28deg, #ddf4f6 1.06%, #ecfdff 100.72%);
  overflow: hidden;
}

/* --------------------------------------------------
   診察について - 背景ドット装飾
   -------------------------------------------------- */
.consultation__bg-dot {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 479px;
  height: 479px;
  pointer-events: none;
}

.consultation__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------
   診察について - タイトル
   -------------------------------------------------- */
.consultation__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.consultation__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.consultation__dots {
  width: 80px;
  height: 8px;
}

/* --------------------------------------------------
   診察について - 予約カード
   -------------------------------------------------- */
.consultation__card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation__card-label {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.consultation__card-label-line {
  flex: 1 0 0;
  height: 0;
  border-top: 0.4px solid var(--color-black-pure);
}

.consultation__card-label-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black-pure);
  letter-spacing: 0.64px;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.consultation__card-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 16px;
}

.consultation__card-phone img {
  width: 26px;
  height: 29px;
  flex-shrink: 0;
}

.consultation__card-tel {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1;
  white-space: nowrap;
}

.consultation__card-note {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
}

/* --------------------------------------------------
   診察について - 注意事項
   -------------------------------------------------- */
.consultation__notice {
  list-style: disc;
  padding: 24px 0;
  margin-left: 27px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.9;
}

.consultation__notice-emphasis {
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: underline;
  text-decoration-color: var(--color-blue);
  text-underline-offset: 2px;
}

/* --------------------------------------------------
   診察について - 診察スケジュール表
   -------------------------------------------------- */
.consultation__schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

.schedule {
  border-collapse: collapse;
}

.schedule__time-header {
  width: 134px;
}

.schedule__day-header {
  width: 154px;
  height: 50px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  border: 1px solid var(--color-white);
}

.schedule__time {
  width: 134px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 8px 40px;
  border-right: 1px solid var(--color-white);
  border-top: 1px solid var(--color-white);
}

.schedule__cell {
  width: 154px;
  height: 88px;
  background-color: var(--color-white);
  color: var(--color-blue);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-blue);
}

.schedule__cell-note {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin-top: -4px;
}

.consultation__schedule-note {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.6;
  align-self: flex-start;
}

/* ============================================================
   まるいクリニックについて
   ============================================================ */
.about {
  position: relative;
  width: 100%;
  padding: 80px calc((100% - 1080px) / 2);
  background: url("../images/about-bg.png") center / cover no-repeat;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 2.4;
  letter-spacing: 0.64px;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.about__text {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   施設のご案内
   ============================================================ */
.facility {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 120px 0;
  overflow: hidden;
}

.facility__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

/* --------------------------------------------------
   施設のご案内 - タイトル
   -------------------------------------------------- */
.facility__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.facility__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.facility__dots {
  width: 80px;
  height: 8px;
}

.facility__desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
}

/* --------------------------------------------------
   施設のご案内 - Swiperスライダー
   -------------------------------------------------- */
.facility__slider {
  width: 100%;
  padding-left: 40px;
  padding-bottom: 48px;
  overflow: visible;
}

.facility__slider .swiper-wrapper {
  align-items: flex-start;
}

/* --------------------------------------------------
   施設のご案内 - カード
   -------------------------------------------------- */
.facility__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 386px;
}

.facility__card-image {
  width: 100%;
  height: 288px;
  border-radius: 12px;
  overflow: hidden;
}

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

.facility__card-body {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.facility__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.6;
}

.facility__card-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.6;
}

/* ページネーション */
.facility__pagination {
  margin-top: 24px;
}

.facility__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-blue);
  opacity: 0.3;
}

.facility__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ============================================================
   サービス一覧
   ============================================================ */
.service {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / cover repeat-y;
}

.service__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------
   サービス一覧 - タイトル
   -------------------------------------------------- */
.service__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.service__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.service__dots {
  width: 80px;
  height: 8px;
}

/* --------------------------------------------------
   サービス一覧 - カード一覧
   -------------------------------------------------- */
.service__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.service__card {
  display: flex;
  flex-direction: column;
  width: 344px;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}

.service__card-image {
  width: 100%;
  height: 257px;
  overflow: hidden;
}

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

.service__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0 19px;
}

.service__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.6;
  letter-spacing: 0.96px;
  text-align: center;
}

.service__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 80px 20px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.service__card-btn:hover {
  opacity: 0.8;
}

/* ============================================================
   アクセス
   ============================================================ */
.access {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 120px 0;
}

.access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------
   アクセス - タイトル
   -------------------------------------------------- */
.access__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.access__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.access__dots {
  width: 80px;
  height: 8px;
}

/* --------------------------------------------------
   アクセス - 地図
   -------------------------------------------------- */
.access__map {
  width: 975px;
  height: 490px;
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------
   アクセス - 住所・予約カード
   -------------------------------------------------- */
.access__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 40px 143px 0;
}

.access__address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access__address-main {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black-pure);
  line-height: 1.6;
}

.access__directions {
  font-size: 18px;
  font-weight: 400;
  color: #5e5e5e;
  line-height: 1.6;
  max-width: 609px;
}

.access__notes {
  font-size: 16px;
  font-weight: 400;
  color: #5e5e5e;
  line-height: 1.6;
  max-width: 609px;
}

/* --------------------------------------------------
   アクセス - 予約カード
   -------------------------------------------------- */
.access__reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(67.23deg, #ddf4f6 1.06%, #ecfdff 94.24%);
  flex-shrink: 0;
}

.access__reserve-label {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.access__reserve-label-line {
  flex: 1 0 0;
  height: 0;
  border-top: 0.4px solid var(--color-black-pure);
}

.access__reserve-label-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black-pure);
  letter-spacing: 0.64px;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.access__reserve-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 16px;
}

.access__reserve-phone img {
  width: 26px;
  height: 29px;
  flex-shrink: 0;
}

.access__reserve-tel {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1;
  white-space: nowrap;
}

.access__reserve-note {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   イベント・その他
   ============================================================ */
.event {
  position: relative;
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: url("../images/service-bg.png") center top / cover repeat-y;
}

.event__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------
   イベント・その他 - タイトル
   -------------------------------------------------- */
.event__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.event__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: 0.64px;
  text-align: center;
}

.event__dots {
  width: 80px;
  height: 8px;
}

/* --------------------------------------------------
   イベント・その他 - カード一覧
   -------------------------------------------------- */
.event__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.event__row {
  display: flex;
  gap: 24px;
}

.event__card {
  display: flex;
  flex-direction: column;
  width: 344px;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}

.event__card-image {
  width: 100%;
  height: 257px;
  overflow: hidden;
}

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

.event__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0 19px;
  flex: 1;
}

.event__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.6;
  letter-spacing: 0.96px;
  text-align: center;
}

.event__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 80px 20px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.event__card-btn:hover {
  opacity: 0.8;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: var(--color-white);
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 40px 143px 32px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* --------------------------------------------------
   Footer - クリニック名・所在地
   -------------------------------------------------- */
.footer__clinic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer__clinic-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer__logo {
  width: 157px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer__title {
  font-size: 29px;
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.9;
  line-height: 1.6;
  padding-top: 16px;
  white-space: nowrap;
}

.footer__address-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 378px;
  padding: 12px 16px;
  border-radius: 8px;
  background: linear-gradient(55.27deg, #ddf4f6 1.06%, #ecfdff 100.72%);
}

.footer__address-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.9;
  line-height: 1.6;
}

.footer__tel {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.9;
  line-height: 1.6;
}

.footer__tel img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --------------------------------------------------
   Footer - ナビゲーション
   -------------------------------------------------- */
.footer__nav {
  display: flex;
  gap: 30px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__nav-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black-pure);
  line-height: 1.4;
}

.footer__nav-heading a {
  color: inherit;
  transition: opacity 0.2s;
}

.footer__nav-heading a:hover {
  opacity: 0.6;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.4;
}

.footer__nav-list a {
  color: inherit;
  transition: opacity 0.2s;
}

.footer__nav-list a:hover {
  opacity: 0.6;
}

.footer__nav-sublist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black-pure);
  line-height: 1.4;
}

/* ============================================================
   Copyright
   ============================================================ */
.copyright {
  background-color: var(--color-black-pure);
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.copyright__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
}

/* ============================================================
   Responsive - Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* --- Header --- */
  .header__inner {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 12px;
  }

  .header__title {
    font-size: 22px;
  }

  .header__address {
    font-size: 13px;
  }

  .header__contact {
    margin-left: 0;
    gap: 16px;
  }

  .header__phone {
    width: auto;
  }

  .header__phone-tel {
    font-size: 24px;
  }

  .header__astep {
    width: 140px;
    padding: 20px 14px;
  }

  /* --- Nav --- */
  .nav {
    padding: 24px 20px 0;
  }

  .nav__list {
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav__link {
    font-size: 15px;
  }

  /* --- ページヒーロー --- */
  .page-hero {
    height: 360px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  /* --- デイケアお知らせ --- */
  .dc-news {
    padding: 0 20px;
  }

  .dc-news__list {
    gap: 16px;
  }

  .dc-news__card {
    width: calc(33.333% - 11px);
  }

  .dc-news__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  /* --- 施設ギャラリー --- */
  .dc-gallery__slide {
    width: 400px;
    height: 246px;
  }

  /* --- プログラム --- */
  .dc-program {
    padding: 80px 20px;
  }

  .dc-program__inner {
    gap: 80px;
  }

  .dc-program__nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .dc-program__nav-btn {
    flex: 1 1 calc(50% - 6px);
    font-size: 16px;
    padding: 14px 0 16px;
  }

  .dc-program__table-th:first-child,
  .dc-program__table-name {
    width: 260px;
  }

  .dc-program__table-th,
  .dc-program__table-name,
  .dc-program__table-desc {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* --- 利用までの流れ --- */
  .hiki-flow {
    padding: 80px 20px;
  }

  .hiki-flow__card {
    padding: 24px 20px;
  }

  .hiki-flow__card-label {
    width: 120px;
    font-size: 20px;
  }

  /* --- Q&A --- */
  .hiki-qa {
    padding: 80px 20px;
  }

  .hiki-qa__card {
    padding: 20px 24px;
  }

  /* --- 採用案内詳細 --- */
  .recruit-detail {
    padding: 60px 20px 80px;
  }

  .recruit-detail__table th {
    width: 180px;
    padding: 20px;
  }

  .recruit-detail__table td {
    padding: 20px;
  }

  /* --- 採用案内 --- */
  .recruit-list {
    padding: 80px 20px 80px;
  }

  .recruit-list__item {
    gap: 24px;
  }

  .recruit-list__image {
    width: 260px;
    height: 180px;
  }

  .recruit-list__btn {
    padding: 14px 60px 16px;
    font-size: 16px;
  }

  /* --- カフェ --- */
  .cafe-about {
    padding: 60px 20px 80px;
  }

  .cafe-about__photo {
    width: calc(50% - 16px);
    height: 300px;
  }

  /* --- marucoギャラリー --- */
  .maruco-gallery {
    padding: 80px 20px;
  }

  .maruco-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* --- maruco寄付 --- */
  .maruco-donation {
    padding: 0 20px 40px;
  }

  /* --- 訪問看護 --- */
  .vn-logo__image {
    width: 320px;
  }

  .vn-roles {
    gap: 20px;
  }

  .vn-roles__card {
    padding: 24px 20px;
  }

  .vn-flow {
    padding: 80px 20px;
  }

  .vn-flow__step {
    padding: 24px 16px;
  }

  .vn-flow__step-title {
    font-size: 20px;
  }

  /* --- まるい美術館 --- */
  .museum {
    padding: 80px 20px;
  }

  .museum__inner {
    gap: 80px;
  }

  .museum__exhibit-name {
    font-size: 22px;
  }

  .museum__archive-card {
    width: calc(50% - 8px);
  }

  /* --- 認知機能リハページ --- */
  .cr-about,
  .cr-what,
  .cr-functions {
    padding: 80px 20px;
  }

  .cr-detail {
    padding: 24px 20px;
  }

  .cr-detail__card {
    padding: 20px 24px;
  }

  .cr-func-group {
    padding: 24px 20px;
  }

  .cr-func-card {
    padding: 20px 24px;
  }

  .cr-func-block {
    width: 100%;
  }

  /* --- 見学から登録まで --- */
  .dc-flow {
    padding: 80px 20px;
  }

  .dc-flow__card {
    padding: 24px 28px;
  }

  .dc-flow__card-phone {
    font-size: 26px;
  }

  /* --- インスタグラム --- */
  .dc-instagram {
    padding: 80px 20px;
  }

  /* --- FV --- */
  .fv {
    padding: 10px 0 0;
  }

  .fv__slider {
    height: 400px;
  }

  .fv__slider .swiper-slide {
    width: 85%;
  }

  .fv__catch {
    left: 40px;
    top: auto;
    bottom: 20px;
  }

  .fv__catch-text {
    font-size: 18px;
    white-space: normal;
  }

  /* --- 重要なお知らせバナー --- */
  .site-notice {
    padding: 40px 20px 0;
  }

  .site-notice__inner {
    padding: 24px 20px;
  }

  .site-notice__title {
    font-size: 18px;
  }

  .site-notice__text {
    font-size: 14px;
  }

  /* --- お知らせ --- */
  .news {
    padding: 0 20px 80px;
  }

  .news__inner {
    padding: 0 20px;
  }

  .news__content {
    flex-direction: column;
    gap: 24px;
  }

  .news__item {
    font-size: 16px;
  }

  /* --- 診察について --- */
  .consultation {
    padding: 80px 20px;
  }

  .consultation__card {
    padding: 24px 40px;
  }

  .consultation__card-tel {
    font-size: 26px;
  }

  .consultation__card-note {
    font-size: 16px;
  }

  .consultation__notice {
    font-size: 16px;
  }

  .schedule__day-header {
    width: 100px;
    font-size: 16px;
  }

  .schedule__time {
    width: 100px;
    font-size: 16px;
    padding: 8px 16px;
  }

  .schedule__cell {
    width: 100px;
    height: 72px;
    font-size: 24px;
  }

  /* --- まるいクリニックについて --- */
  .about {
    padding: 60px 20px;
  }

  .about__title {
    font-size: 26px;
  }

  .about__text {
    font-size: 20px;
    white-space: normal;
  }

  /* --- 施設のご案内 --- */
  .facility {
    padding: 80px 0;
  }

  .facility__slider {
    padding-left: 20px;
  }

  .facility__card {
    width: 300px;
  }

  .facility__card-image {
    height: 224px;
  }

  .facility__card-title {
    font-size: 20px;
  }

  .facility__card-text {
    font-size: 15px;
  }

  /* --- サービス一覧 --- */
  .service {
    padding: 80px 20px;
  }

  .service__list {
    gap: 20px;
  }

  .service__card {
    width: calc(33.333% - 14px);
  }

  .service__card-image {
    height: 200px;
  }

  .service__card-btn {
    padding: 14px 40px 16px;
    font-size: 16px;
  }

  /* --- アクセス --- */
  .access__map {
    width: 100%;
    max-width: 975px;
    padding: 0 20px;
  }

  .access__map iframe {
    border-radius: 8px;
  }

  .access__info {
    padding: 40px 20px 0;
    flex-direction: column;
    gap: 24px;
  }

  .access__directions {
    max-width: 100%;
  }

  .access__notes {
    max-width: 100%;
  }

  /* --- イベント・その他 --- */
  .event {
    padding: 80px 20px;
  }

  .event__row {
    gap: 20px;
  }

  .event__card {
    width: calc(33.333% - 14px);
  }

  .event__card-image {
    height: 200px;
  }

  .event__card-btn {
    padding: 14px 40px 16px;
    font-size: 16px;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 20px 32px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__clinic {
    width: 100%;
    align-items: flex-start;
  }

  .footer__address-card {
    width: 100%;
    max-width: 400px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ============================================================
   Responsive - Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Header --- */
  .header {
    position: relative;
  }

  .header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    padding-right: 64px;
    gap: 12px;
  }

  .header__clinic-name {
    flex-wrap: wrap;
  }

  .header__logo {
    width: 100px;
    height: auto;
  }

  .header__title {
    font-size: 20px;
    padding-top: 6px;
  }

  .header__address {
    font-size: 12px;
    white-space: normal;
  }

  /* ドロワー内に移動した header__contact */
  .nav .header__contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-left: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--color-gray-light);
    margin-top: 8px;
  }

  .nav .header__phone {
    width: 100%;
    align-items: center;
  }

  .nav .header__phone-tel {
    font-size: 22px;
  }

  .nav .header__buttons {
    padding-top: 0;
    justify-content: center;
    width: 100%;
  }

  .nav .header__btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .header__btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .header__astep {
    display: none;
  }

  /* --- ハンバーガーボタン --- */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1100;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
  }

  .hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hamburger.is-open .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- ドロワーメニュー（Nav） --- */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-white);
    z-index: 1000;
    padding: 80px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav__item {
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav__link {
    font-size: 16px;
    background: none;
    padding: 14px 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav__dropdown {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 0 12px 8px;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    display: none;
  }

  .nav__dropdown.is-accordion-open {
    display: block;
  }

  .nav__item--has-dropdown .nav__link {
    cursor: pointer;
  }

  .nav__item--has-dropdown .nav__arrow {
    transition: transform 0.3s;
  }

  .nav__item--has-dropdown.is-accordion-open .nav__arrow {
    transform: rotate(180deg);
  }

  .nav__dropdown-list {
    gap: 6px;
  }

  .nav__dropdown-item {
    color: var(--color-black);
    font-size: 14px;
  }

  .nav__dropdown-item a {
    color: inherit;
  }

  /* モバイル専用項目を表示 */
  .nav__item--mobile-only {
    display: list-item;
  }

  /* オーバーレイ */
  body.is-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  /* --- ページヒーロー --- */
  .page-hero {
    height: 240px;
  }

  .page-hero__title {
    font-size: 24px;
  }

  /* --- デイケアお知らせ --- */
  .dc-news {
    padding: 60px 16px 0;
  }

  .dc-news__title {
    font-size: 22px;
  }

  .dc-news__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .dc-news__card {
    width: 100%;
    max-width: 340px;
  }

  .dc-news__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  /* --- 施設ギャラリー --- */
  .dc-gallery {
    padding: 60px 0 80px;
  }

  .dc-gallery__slide {
    width: 280px;
    height: 172px;
    border-radius: 12px;
  }

  /* --- プログラム --- */
  .dc-program {
    padding: 60px 16px;
  }

  .dc-program__inner {
    gap: 60px;
  }

  .dc-program__title {
    font-size: 24px;
  }

  .dc-program__nav {
    gap: 10px;
  }

  .dc-program__nav-btn {
    flex: 1 1 calc(50% - 5px);
    font-size: 14px;
    padding: 12px 0 14px;
    letter-spacing: 0.5px;
  }

  .dc-program__table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
  }

  .dc-program__table thead,
  .dc-program__table tbody,
  .dc-program__table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .dc-program__table-th:first-child,
  .dc-program__table-name {
    width: 160px;
  }

  .dc-program__table-th,
  .dc-program__table-name,
  .dc-program__table-desc {
    padding: 10px 12px;
    font-size: 13px;
  }

  .dc-program__notice {
    font-size: 15px;
  }

  /* --- インスタグラム --- */
  /* --- 見学から登録まで --- */
  .dc-flow {
    padding: 60px 16px;
  }

  .dc-flow__title {
    font-size: 24px;
  }

  .dc-flow__card {
    padding: 20px 16px;
  }

  .dc-flow__card-number {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .dc-flow__card-title {
    font-size: 18px;
  }

  .dc-flow__card-body {
    font-size: 15px;
  }

  .dc-flow__card-phone {
    font-size: 22px;
  }

  /* --- 利用までの流れ --- */
  .hiki-flow {
    padding: 60px 16px;
  }

  .hiki-flow__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 12px;
  }

  .hiki-flow__card-label {
    width: auto;
    font-size: 18px;
  }

  .hiki-flow__card-body {
    font-size: 15px;
  }

  /* --- Q&A --- */
  .hiki-qa {
    padding: 60px 16px;
  }

  .hiki-qa__card {
    padding: 16px;
  }

  .hiki-qa__question,
  .hiki-qa__answer {
    font-size: 15px;
  }

  /* --- 採用案内詳細 --- */
  .recruit-detail {
    padding: 40px 16px 60px;
  }

  .recruit-detail__title {
    font-size: 18px;
  }

  .recruit-detail__table,
  .recruit-detail__table tbody,
  .recruit-detail__table tr {
    display: block;
    width: 100%;
  }

  .recruit-detail__table th,
  .recruit-detail__table td {
    display: block;
    width: 100%;
    padding: 16px;
  }

  .recruit-detail__table th {
    border-bottom: none;
  }

  .recruit-detail__table td {
    font-size: 15px;
    border-left: 1px solid var(--color-light-blue);
    border-right: 1px solid var(--color-light-blue);
    border-bottom: 1px solid var(--color-light-blue);
    border-top: none;
  }

  .recruit-detail__btn {
    padding: 14px 60px 16px;
    font-size: 16px;
  }

  /* --- 採用案内 --- */
  .recruit-list {
    padding: 60px 16px 60px;
  }

  .recruit-list__item {
    flex-direction: column;
    gap: 16px;
  }

  .recruit-list__image {
    width: 100%;
    height: 200px;
  }

  .recruit-list__desc {
    height: auto;
    -webkit-line-clamp: unset;
  }

  .recruit-list__btn {
    padding: 14px 40px 16px;
    font-size: 16px;
  }

  /* --- カフェ --- */
  .cafe-about {
    padding: 40px 16px 60px;
  }

  .cafe-about__logo {
    width: 160px;
    height: 160px;
  }

  .cafe-about__photo {
    width: 100%;
    height: 260px;
  }

  /* --- maruco寄付 --- */
  /* --- marucoギャラリー --- */
  .maruco-gallery {
    padding: 60px 16px;
  }

  .maruco-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .maruco-donation {
    padding: 0 16px 40px;
  }

  .maruco-donation__card {
    padding: 20px 16px;
  }

  .maruco-donation__label-text {
    font-size: 14px;
    white-space: normal;
  }

  .maruco-donation__body {
    font-size: 14px;
  }

  /* --- 訪問看護 --- */
  .vn-logo__image {
    width: 260px;
  }

  .vn-roles {
    flex-direction: column;
    gap: 16px;
  }

  .vn-roles__card {
    padding: 20px 16px;
  }

  .vn-roles__title {
    font-size: 20px;
  }

  .vn-flow {
    padding: 60px 16px;
  }

  .vn-flow__steps {
    flex-direction: column;
    gap: 16px;
  }

  .vn-flow__step {
    width: 100%;
    padding: 24px 16px;
  }

  .vn-flow__step-title {
    font-size: 18px;
  }

  .vn-flow__arrow {
    transform: rotate(90deg);
  }

  /* --- まるい美術館 --- */
  .museum {
    padding: 60px 16px;
  }

  .museum__inner {
    gap: 60px;
  }

  .museum__exhibit-name {
    font-size: 20px;
  }

  .museum__exhibit-desc {
    font-size: 15px;
  }

  .museum__archive-card {
    width: calc(50% - 8px);
  }

  .museum__archive-date,
  .museum__archive-vol,
  .museum__archive-name,
  .museum__archive-artist {
    font-size: 14px;
  }

  /* --- 認知機能リハページ --- */
  .cr-about,
  .cr-what,
  .cr-functions {
    padding: 60px 16px;
  }

  .cr-about__title {
    font-size: 24px;
  }

  .cr-about__intro {
    font-size: 15px;
  }

  .cr-detail {
    padding: 20px 16px;
  }

  .cr-detail__label {
    font-size: 20px;
  }

  .cr-detail__card {
    padding: 16px;
  }

  .cr-detail__row {
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
  }

  .cr-detail__key {
    width: auto;
  }

  .cr-func-group {
    padding: 20px 16px;
  }

  .cr-func-block__title {
    font-size: 22px;
  }

  .cr-func-block__desc {
    font-size: 14px;
  }

  .cr-func-card {
    padding: 16px;
    font-size: 15px;
  }

  .cr-func-card__title-main {
    font-size: 18px;
  }

  .cr-func-card__title-block {
    font-size: 18px;
  }

  /* --- インスタグラム --- */
  .dc-instagram {
    padding: 60px 16px;
  }

  .dc-instagram__title {
    font-size: 24px;
  }

  .dc-instagram__btn {
    padding: 14px 60px 16px;
    font-size: 16px;
  }

  /* --- FV --- */
  .fv {
    padding: 10px 16px 0;
  }

  .fv__slider {
    height: 250px;
  }

  .fv__slider .swiper-slide {
    width: 90%;
    border-radius: 12px;
  }

  .fv__slider .swiper-button-prev,
  .fv__slider .swiper-button-next {
    display: none;
  }

  .fv__catch {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    z-index: auto;
    margin-top: 16px;
    border-radius: 8px;
  }

  .fv__catch-text {
    font-size: 15px;
    white-space: normal;
  }

  /* --- お知らせ --- */
  .news {
    padding: 0 16px 60px;
  }

  .news__inner {
    padding: 0;
    gap: 24px;
  }

  .news__heading {
    align-self: center;
  }

  .news__title {
    font-size: 26px;
  }

  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 15px;
  }

  .news__text {
    flex: auto;
    white-space: normal;
  }

  .news__btn {
    font-size: 16px;
    padding: 14px 32px 16px;
  }

  /* --- 診察について --- */
  .consultation {
    padding: 60px 16px;
    overflow-x: clip;
    overflow-y: visible;
  }

  .consultation__bg-dot {
    display: none;
  }

  .consultation__heading {
    padding-bottom: 24px;
  }

  .consultation__title {
    font-size: 26px;
  }

  .consultation__card {
    padding: 20px 24px;
    width: 100%;
  }

  .consultation__card-label-text {
    font-size: 14px;
  }

  .consultation__card-tel {
    font-size: 24px;
  }

  .consultation__card-note {
    font-size: 15px;
  }

  .consultation__notice {
    font-size: 15px;
    padding: 16px 0;
    line-height: 1.8;
  }

  .consultation__schedule {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }

  .schedule {
    min-width: 560px;
  }

  .schedule__time-header {
    width: 80px;
  }

  .schedule__day-header {
    width: auto;
    min-width: 70px;
    height: 40px;
    font-size: 14px;
  }

  .schedule__time {
    width: 80px;
    font-size: 13px;
    padding: 8px 6px;
    word-break: keep-all;
    white-space: nowrap;
  }

  .schedule__cell {
    width: auto;
    min-width: 70px;
    height: 64px;
    font-size: 20px;
  }

  .schedule__cell-note {
    font-size: 12px;
  }

  .consultation__schedule-note {
    font-size: 14px;
  }

  /* --- まるいクリニックについて --- */
  .about {
    padding: 48px 16px;
  }

  .about__title {
    font-size: 22px;
    line-height: 1.6;
  }

  .about__text {
    font-size: 16px;
  }

  /* --- 施設のご案内 --- */
  .facility {
    padding: 60px 0;
  }

  .facility__header {
    padding: 0 16px 24px;
  }

  .facility__title {
    font-size: 26px;
  }

  .facility__desc {
    font-size: 15px;
  }

  .facility__slider {
    padding-left: 16px;
  }

  .facility__card {
    width: auto;
  }

  .facility__card-image {
    height: 200px;
  }

  .facility__card-title {
    font-size: 18px;
  }

  .facility__card-text {
    font-size: 14px;
  }

  /* --- サービス一覧 --- */
  .service {
    padding: 60px 16px;
  }

  .service__heading {
    padding-bottom: 24px;
  }

  .service__title {
    font-size: 26px;
  }

  .service__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .service__card {
    width: 100%;
    max-width: 400px;
  }

  .service__card-image {
    height: 220px;
  }

  .service__card-title {
    font-size: 20px;
  }

  .service__card-btn {
    padding: 14px 60px 16px;
    font-size: 16px;
  }

  /* --- アクセス --- */
  .access {
    padding: 60px 0;
  }

  .access__heading {
    padding-bottom: 24px;
  }

  .access__title {
    font-size: 26px;
  }

  .access__map {
    width: 100%;
    height: 300px;
    padding: 0 16px;
  }

  .access__info {
    padding: 24px 16px 0;
  }

  .access__address-main {
    font-size: 16px;
  }

  .access__directions {
    font-size: 15px;
  }

  .access__notes {
    font-size: 14px;
  }

  .access__reserve {
    width: 100%;
    padding: 20px;
  }

  .access__reserve-tel {
    font-size: 26px;
  }

  .access__reserve-note {
    font-size: 15px;
  }

  /* --- イベント・その他 --- */
  .event {
    padding: 60px 16px;
  }

  .event__heading {
    padding-bottom: 24px;
  }

  .event__title {
    font-size: 26px;
  }

  .event__list {
    gap: 24px;
  }

  .event__row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .event__card {
    width: 100%;
    max-width: 400px;
  }

  .event__card-image {
    height: 220px;
  }

  .event__card-title {
    font-size: 20px;
  }

  .event__card-btn {
    padding: 14px 60px 16px;
    font-size: 16px;
  }

  /* --- Footer --- */
  .footer {
    padding: 32px 16px 24px;
  }

  .footer__clinic-name {
    flex-wrap: wrap;
  }

  .footer__logo {
    width: 120px;
    height: auto;
  }

  .footer__title {
    font-size: 22px;
    padding-top: 10px;
  }

  .footer__address-card {
    width: 100%;
  }

  .footer__nav {
    flex-direction: column;
    gap: 20px;
  }

  /* --- Copyright --- */
  .copyright__text {
    font-size: 13px;
  }
}

/* ============================================================
   Scroll-to-top Button
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--color-blue);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--color-navy);
}

.scroll-top::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  transform: rotate(-45deg);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   News Category Badge (Top page + News list)
   ============================================================ */
.news__category {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   News List Page
   ============================================================ */
.news-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.news-page__heading {
  text-align: center;
  margin-bottom: 48px;
}

.news-page__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.news-page__list {
  list-style: none;
}

.news-page__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border-bottom: 0.5px solid var(--color-black);
  font-size: 16px;
}

.news-page__item:first-child {
  border-top: 0.5px solid var(--color-black);
}

.news-page__date {
  font-weight: 500;
  color: var(--color-blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-page__cat {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-page__link {
  flex: 1 0 0;
  min-width: 0;
  color: var(--color-black-pure);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.news-page__link:hover {
  opacity: 0.6;
}

.news-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.news-page__pagination a,
.news-page__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  transition: background-color 0.2s, color 0.2s;
}

.news-page__pagination a:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.news-page__pagination .is-current {
  background-color: var(--color-blue);
  color: var(--color-white);
}

/* ============================================================
   News Detail Page
   ============================================================ */
.news-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.news-detail__header {
  margin-bottom: 40px;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-detail__date {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue);
}

.news-detail__cat {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 20px;
}

.news-detail__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.6;
}

.news-detail__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
  margin-bottom: 60px;
}

.news-detail__body p {
  margin-bottom: 1.5em;
}

.news-detail__body img {
  margin: 24px 0;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 32px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.news-detail__back:hover {
  background-color: var(--color-navy);
}

@media (max-width: 768px) {
  .news-page {
    padding: 40px 16px 60px;
  }

  .news-page__item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 8px;
  }

  .news-page__link {
    width: 100%;
    flex-basis: 100%;
  }

  .news-detail {
    padding: 40px 16px 60px;
  }

  .news-detail__title {
    font-size: 20px;
  }
}
