/* ===== 基本 ===== */
body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  color: #333;
  background: #f7fbff;
  line-height: 1.8;
}

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

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

/* ===== ヘッダー ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #dcecff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-logo h1 {
  margin: 0;
  color: #1f6fb8;
  font-size: 28px;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-bottom: 6px;
}

.main-nav a.active,
.main-nav a:hover {
  color: #1f6fb8;
}

.main-nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #1f6fb8;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-btn {
  background: #1f6fb8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.header-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.tel-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-tel {
  color: #1f6fb8;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.fax-line {
  margin-top: 0;
  color: #4b6d8c;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.fax-label,
.header-fax {
  font-size: 13px;
}

/* ===== ヒーロー ===== */
.hero {
  background-image:
    linear-gradient(
      to right,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.72) 30%,
      rgba(255,255,255,0.25) 55%,
      rgba(255,255,255,0) 75%
    ),
    url("images/hero-main.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 560px;
  overflow: hidden;
}

.hero-content {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 45px 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.hero-text {
  width: 48%;
  text-align: center;
}

.hero-illust {
  display: none;
}

.hero-message {
  color: #1f6fb8;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.hero-message::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d5e4f2;
  margin: 28px auto 0;
}

.hero-message p {
  margin: 0;
}

.hero-lead {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
  color: #333;
}

.hero-sub {
  margin: 14px 0 24px;
  font-size: 14px;
  font-weight: 600;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

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

.icon-item img,
.hero-icons img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 14px rgba(31, 111, 184, 0.12);
}

/* ===== お知らせ ===== */
.news-section {
  background: #f7fbff;
  padding: 70px 20px;
}

.news-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.news-heading {
  width: 220px;
  flex-shrink: 0;
  text-align: left;
}

.news-heading {
  width: 220px;
  flex-shrink: 0;
  text-align: left;
  padding-left: 8px;
}

.news-heading h2 {
  color: #1f6fb8;
  font-size: 32px;
  margin: 0;
  letter-spacing: 3px;
}

.news-heading h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #1f6fb8;
  margin: 12px 0 24px 50px;
}

.news-more {
  display: inline-block;
  border: 1px solid #1f6fb8;
  color: #1f6fb8;
  padding: 9px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.news-more:hover {
  background: #1f6fb8;
  color: #fff;
}

.news-box {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31,111,184,0.06);
}

.news-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-box li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid #e5eef8;
}

.news-box li:last-child {
  border-bottom: none;
}

.news-date {
  color: #1f6fb8;
  font-weight: 700;
  font-size: 15px;
}

.news-box a {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

.news-box a:hover {
  color: #1f6fb8;
}

.news-box em {
  background: #ef7d9a;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
}

/* スマホ */
@media (max-width: 900px) {
  .news-wrapper {
    display: block;
  }

  .news-heading {
    width: auto;
    text-align: center;
    margin-bottom: 32px;
  }

  .news-heading h2::after {
    margin: 12px auto 22px;
  }

  .news-box li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }
}

/* ===== 施設紹介 ===== */
.facility-section {
  padding: 60px 40px 50px;
  background: #fff;
}

.center-title {
  text-align: center;
  margin-bottom: 34px;
  color: #1f6fb8;
  font-size: 30px;
  letter-spacing: 4px;
}

.center-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: #1f6fb8;
  margin: 10px auto 0;
}

.facility-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.facility-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 111, 184, 0.08);
  transition: 0.3s;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(31, 111, 184, 0.15);
}

.facility-photo img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.facility-info {
  padding: 22px 18px;
  text-align: center;
}

.facility-logo {
  height: 50px;
  width: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

.facility-type {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.facility-type.pink {
  background: #ef7d9a;
}

.facility-type.brown {
  background: #b58a65;
}

.facility-type.green {
  background: #82bd59;
}

.facility-info p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
}

.more {
  color: #1f6fb8;
  font-weight: 700;
  font-size: 14px;
}

/* ===== CTA ===== */
.contact-cta {
  max-width: 1000px;
  margin: 18px auto 50px;
  padding: 26px 50px;
  background: #f4f9ff;
  border: 1px solid #dbe9f8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 6px 18px rgba(31, 111, 184, 0.06);
}

.contact-cta h2 {
  margin: 0 0 6px;
  color: #1f6fb8;
  font-size: 24px;
}

.contact-cta p {
  margin: 0;
  color: #4b6d8c;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.cta-tel {
  color: #1f6fb8;
  font-size: 24px;
  font-weight: bold;
}

.cta-mail {
  background: #1f6fb8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
}

/* ===== フッター ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid #dcecff;
}

.footer-info {
  background: #1f6fb8;
  color: #fff;
  text-align: center;
  padding: 24px 20px;
}

.footer-info p {
  margin: 4px 0;
}

.footer-bottom {
  background: #15558f;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

/* ===== 下層ページ共通 ===== */
.page-hero {
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url("images/hero-main.png");
  background-size: cover;
  background-position: center center;
  padding: 90px 20px;
  text-align: center;
}

.page-hero h2 {
  margin: 0;
  color: #1f6fb8;
  font-size: 36px;
  letter-spacing: 4px;
}

.page-hero p {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #4b6d8c;
}

/* ===== 法人概要 ===== */
.about-section {
  background: #f7fbff;
  padding: 70px 20px 90px;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-message,
.about-card {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(31, 111, 184, 0.06);
  margin-bottom: 40px;
}

.about-message h3,
.about-card h3,
.about-policy h3 {
  margin: 0 0 22px;
  color: #1f6fb8;
  font-size: 26px;
  letter-spacing: 2px;
  text-align: center;
}

.about-message p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 2;
}

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

.about-table th,
.about-table td {
  border-bottom: 1px solid #e5eef8;
  padding: 18px 12px;
  text-align: left;
  vertical-align: top;
}

.about-table th {
  width: 180px;
  color: #1f6fb8;
  font-weight: 700;
  background: #f4f9ff;
}

.about-policy {
  margin-top: 40px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.policy-card {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(31, 111, 184, 0.06);
}

.policy-card h4 {
  margin: 0 0 12px;
  color: #1f6fb8;
  font-size: 22px;
}

.policy-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* ===== お問い合わせページ ===== */
.contact-page-section {
  background: #f7fbff;
  padding: 70px 20px 90px;
}

.contact-page-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-message,
.contact-card,
.contact-address-card {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(31, 111, 184, 0.06);
}

.contact-message {
  padding: 40px;
  margin-bottom: 34px;
  text-align: center;
}

.contact-message h3,
.contact-card h3,
.contact-address-card h3 {
  margin: 0 0 18px;
  color: #1f6fb8;
  font-size: 24px;
  letter-spacing: 2px;
}

.contact-message p {
  margin: 0 0 10px;
  line-height: 2;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 34px;
}

.contact-card {
  padding: 36px 28px;
  text-align: center;
}

.contact-page-tel {
  display: inline-block;
  color: #1f6fb8;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-page-fax {
  color: #1f6fb8;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 14px;
}

.contact-card p {
  margin: 0;
  color: #4b6d8c;
  font-weight: 600;
}

.contact-address-card {
  padding: 34px;
  text-align: center;
}

.contact-address-card p {
  margin: 4px 0;
  font-weight: 600;
}

/* ===== お知らせ一覧ページ ===== */
.news-list-page,
.news-detail-page {
  background: #f7fbff;
  padding: 70px 20px 90px;
}

.news-list-inner,
.news-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}

.news-list-card,
.news-detail-inner {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 22px;
  padding: 30px 36px;
  box-shadow: 0 6px 18px rgba(31, 111, 184, 0.06);
}

.news-list-card {
  margin-bottom: 22px;
}

.news-list-date,
.news-detail-date {
  color: #1f6fb8;
  font-weight: 700;
}

.news-list-card h3 {
  margin: 8px 0 10px;
  color: #1f6fb8;
  font-size: 22px;
}

.news-list-card p,
.news-detail-inner p {
  margin: 0 0 14px;
  line-height: 2;
}

.news-detail-inner h1 {
  color: #1f6fb8;
  font-size: 28px;
  margin: 8px 0 28px;
}

.back-news {
  display: inline-block;
  margin-top: 24px;
  border: 1px solid #1f6fb8;
  color: #1f6fb8;
  padding: 9px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.back-news:hover {
  background: #1f6fb8;
  color: #fff;
}

/* ===== スマホ ===== */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    padding: 18px 20px;
  }

  .header-logo h1 {
    font-size: 24px;
  }

  .main-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-contact {
    flex-direction: column;
    gap: 8px;
  }

  .header-contact-info {
    align-items: center;
  }

  .hero {
    height: auto;
    min-height: 620px;
    background-position: center bottom;
  }

  .hero-content {
    padding: 55px 20px 70px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-message {
    font-size: 22px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .news-inner {
    display: block;
  }

  .section-heading {
    width: auto;
    text-align: center;
    margin-bottom: 32px;
  }

  .section-heading h2::after {
    margin: 12px auto 22px;
  }

  .news-box li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }

  .facility-grid,
  .policy-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    flex-direction: column;
    text-align: center;
    margin: 20px;
    padding: 24px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .page-hero {
    padding: 70px 20px;
  }

  .page-hero h2 {
    font-size: 30px;
  }

  .about-message,
  .about-card,
  .contact-message {
    padding: 28px 22px;
  }

  .about-table th,
  .about-table td {
    display: block;
    width: auto;
  }

  .about-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }

  .about-table td {
    padding-top: 6px;
  }

  .contact-page-tel,
  .contact-page-fax {
    font-size: 24px;
  }
}

/* ===== お知らせ一覧ページ ===== */

.page-hero {
  background: #f2f8ff;
  padding: 90px 20px 70px;
  text-align: center;
}

.page-hero h2 {
  margin: 0 0 18px;
  color: #1f6fb8;
  font-size: 42px;
  letter-spacing: 4px;
}

.page-hero p {
  margin: 0;
  color: #555;
  font-size: 16px;
}

.news-list-page {
  padding: 70px 20px 100px;
  background: #fff;
}

.news-list-box {
  max-width: 1100px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(31,111,184,0.08);
  transition: 0.3s;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(31,111,184,0.14);
}

.news-date {
  min-width: 130px;
  color: #1f6fb8;
  font-weight: 700;
  font-size: 18px;
}

.news-title {
  flex: 1;
  color: #222;
  font-size: 22px;
  font-weight: 700;
}

.news-tag {
  background: #ef7d9a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== お知らせ一覧ページ バランス調整 ===== */
.news-list-page {
  padding: 50px 20px 80px;
}

.news-list-inner,
.news-list-box {
  max-width: 900px;
  margin: 0 auto;
}

.news-list-page .page-hero,
.page-hero {
  padding: 65px 20px 55px;
}

.page-hero h2 {
  font-size: 34px;
}

.page-hero p {
  font-size: 15px;
}

.news-item {
  padding: 24px 28px;
  margin-bottom: 18px;
  border-radius: 20px;
}

.news-content h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.news-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
}

.news-date {
  font-size: 15px;
}

.news-tag {
  padding: 5px 12px;
  font-size: 11px;
}

/* ===== フッターナビ余白修正 ===== */
.footer-nav {
  padding: 28px 0;
  text-align: center;
}

.footer-nav a {
  margin: 0 18px;
  display: inline-block;
}

/* ===== お知らせ詳細ページ ===== */

.news-detail-page {
  padding: 70px 20px 100px;
  background: #f7fbff;
}

.news-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 8px 30px rgba(31,111,184,0.08);
}

.detail-date {
  color: #1f6fb8;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}

.news-detail-inner h1 {
  margin: 0 0 36px;
  font-size: 36px;
  line-height: 1.5;
  color: #222;
}

.detail-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 36px;
}

.news-detail-inner p {
  line-height: 2;
  margin-bottom: 24px;
  font-size: 16px;
  color: #444;
}

.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #1f6fb8;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

.back-button:hover {
  opacity: 0.85;
}

/* ===== お知らせ詳細ページ ===== */

.page-hero {
  background: #f2f8ff;
  padding: 70px 20px;
  text-align: center;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h2 {
  font-size: 54px;
  color: #1f6fb8;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.page-hero p {
  font-size: 17px;
  color: #555;
}

/* 本文 */

.news-detail-page {
  background: #f7fbff;
  padding: 70px 20px 100px;
}

.news-detail-inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(31,111,184,0.08);
}

.detail-date {
  color: #1f6fb8;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
}

.news-detail-inner h1 {
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #222;
}

.news-detail-inner p {
  font-size: 17px;
  line-height: 2.2;
  color: #444;
  margin-bottom: 28px;
}

.back-button {
  display: inline-block;
  margin-top: 40px;
  background: #1f6fb8;
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.back-button:hover {
  opacity: 0.85;
}

/* ===== お知らせ詳細ページ 調整版 ===== */

/* ヘッダー幅をトップページと揃える */
.site-header .header-inner {
  max-width: 1280px;
  padding: 16px 40px;
}

/* 上の「お知らせ」エリアを小さめに */
.news-detail-page + .site-footer {
  margin-top: 0;
}

.page-hero {
  padding: 55px 20px 45px;
}

.page-hero h2 {
  font-size: 34px;
  margin: 0 0 10px;
}

.page-hero p {
  font-size: 14px;
  margin: 0;
}

/* 記事本文の幅・文字サイズ・行間を調整 */
.news-detail-page {
  padding: 55px 20px 80px;
}

.news-detail-inner {
  max-width: 760px;
  padding: 42px 48px;
  border-radius: 22px;
}

.detail-date {
  font-size: 14px;
  margin-bottom: 16px;
}

.news-detail-inner h1 {
  font-size: 30px;
  line-height: 1.45;
  margin: 0 0 28px;
}

.news-detail-inner p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.back-button {
  margin-top: 28px;
  padding: 11px 24px;
  font-size: 14px;
}

/* ===== 施設紹介ページ ===== */
.facility-hero {
  background: #f2f8ff;
  padding: 70px 20px 60px;
}

.facility-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.facility-hero-text h2 {
  color: #1f6fb8;
  font-size: 40px;
  letter-spacing: 4px;
  margin: 0 0 20px;
}

.facility-hero-text p {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.facility-hero-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(31,111,184,0.12);
}

.facility-feature-section,
.facility-list-section {
  padding: 70px 20px;
  background: #fff;
}

.facility-list-section {
  background: #f7fbff;
}

.facility-section-title {
  color: #1f6fb8;
  text-align: center;
  font-size: 30px;
  letter-spacing: 3px;
  margin: 0 0 42px;
}

.facility-section-title::before,
.facility-section-title::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: #8bbce8;
  vertical-align: middle;
  margin: 0 18px;
}

.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 26px 18px;
  border-right: 1px solid #dbe9f8;
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eaf4ff;
  color: #1f6fb8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.feature-card h3 {
  color: #1f6fb8;
  font-size: 18px;
  margin: 0 0 12px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.facility-list-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.facility-intro-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,111,184,0.08);
  transition: 0.3s;
  text-align: center;
}

.facility-intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(31,111,184,0.14);
}

.facility-intro-label {
  display: inline-block;
  color: #fff;
  padding: 6px 18px;
  border-radius: 0 0 10px 10px;
  font-size: 13px;
  font-weight: 700;
}

.facility-intro-label.pink {
  background: #ef7d9a;
}

.facility-intro-label.green {
  background: #82bd59;
}

.facility-intro-label.orange {
  background: #f0a35e;
}

.facility-intro-card h3 {
  font-size: 32px;
  margin: 20px 0 0;
  color: #333;
}

.facility-intro-card .ruby {
  font-size: 13px;
  color: #777;
  margin: 0 0 16px;
}

.facility-intro-card p {
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.8;
}

/* ロゴ */
.facility-intro-logo {
  width: auto;
  height: 78px;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px;
}

/* 写真 */
.facility-intro-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.facility-intro-card span {
  display: block;
  color: #1f6fb8;
  font-weight: 700;
  padding: 18px 0;
}

.facility-contact-box {
  max-width: 1000px;
  margin: 60px auto 80px;
  padding: 28px 44px;
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(31,111,184,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.facility-contact-box h2 {
  color: #1f6fb8;
  font-size: 22px;
  margin: 0 0 6px;
}

.facility-contact-box p {
  margin: 0;
}

.facility-contact-box a {
  background: #1f6fb8;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

/* スマホ */
@media (max-width: 900px) {
  .facility-hero-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .facility-list-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid #dbe9f8;
  }

  .facility-contact-box {
    flex-direction: column;
    text-align: center;
    margin: 40px 20px 70px;
    padding: 26px 20px;
  }
}

/* ===== 施設詳細ページ ===== */
.facility-detail-hero {
  background: #f2f8ff;
  padding: 70px 20px 60px;
}

.facility-detail-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.facility-detail-text {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 26px;
  padding: 42px 38px;
  box-shadow: 0 8px 24px rgba(31,111,184,0.07);
}

.facility-category {
  display: inline-block;
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.facility-category.pink {
  background: #ef7d9a;
}


.facility-category.brown {
  background: #b58a65;
}

.facility-category.green {
  background: #82bd59;
}

.facility-detail-text h2 {
  color: #222;
  font-size: 44px;
  letter-spacing: 4px;
  margin: 0;
}

.facility-lead {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.facility-detail-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(31,111,184,0.12);
}

/* 施設紹介本文 */
.facility-detail-section {
  background: #fff;
  padding: 70px 20px;
}

.facility-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-left: 5px solid #1f6fb8;
  padding: 10px 0 10px 34px;
}

.facility-detail-inner h3,
.facility-info-inner h3 {
  color: #1f6fb8;
  font-size: 28px;
  letter-spacing: 3px;
  margin: 0 0 24px;
}

.facility-detail-inner p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 18px;
}

/* 特徴 */
.facility-point-section {
  background: #f7fbff;
  padding: 70px 20px;
}

.facility-point-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-point-card {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 22px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(31,111,184,0.06);
}

.facility-point-card h4 {
  color: #1f6fb8;
  font-size: 20px;
  margin: 0 0 14px;
}

.facility-point-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* 施設情報 */
.facility-info-section {
  background: #fff;
  padding: 70px 20px;
}

.facility-info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.facility-info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31,111,184,0.06);
}

.facility-info-table th,
.facility-info-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e5eef8;
  text-align: left;
  vertical-align: top;
}

.facility-info-table th {
  width: 180px;
  color: #1f6fb8;
  background: #f4f9ff;
  font-weight: 700;
}

.facility-info-table tr:last-child th,
.facility-info-table tr:last-child td {
  border-bottom: none;
}

/* スマホ */
@media (max-width: 900px) {
  .facility-detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .facility-detail-text {
    padding: 32px 24px;
  }

  .facility-detail-text h2 {
    font-size: 36px;
  }

  .facility-detail-photo img {
    height: 250px;
  }

  .facility-point-grid {
    grid-template-columns: 1fr;
  }

  .facility-info-table th,
  .facility-info-table td {
    display: block;
    width: auto;
  }

  .facility-info-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }

  .facility-info-table td {
    padding-top: 6px;
  }
}

.facility-category.green {
  background: #82bd59;
}

.facility-category.orange {
  background: #f0a35e;
}

/* ===== 施設紹介ページ 色味統一 ===== */

/* 全体背景 */
.facility-feature-section,
.facility-list-section,
.facility-point-section,
.facility-info-section {
  background: #f7fbff;
}

/* タイトル */
.facility-section-title,
.facility-detail-inner h3,
.facility-info-inner h3 {
  color: #1f6fb8;
}

/* カード */
.feature-card,
.facility-point-card,
.facility-intro-card,
.facility-detail-text,
.facility-info-table {
  box-shadow: 0 6px 18px rgba(31,111,184,0.06);
  border: 1px solid #e3eef9;
}

/* カードhover */
.facility-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(31,111,184,0.12);
}

/* ラベル色統一 */
.facility-intro-label.pink,
.facility-category.pink {
  background: #ef8fa7;
}

.facility-intro-label.green,
.facility-category.green {
  background: #8dbd73;
}

.facility-intro-label.orange,
.facility-category.orange {
  background: #efb06e;
}

/* ボタン */
.facility-contact-box a,
.contact-btn,
.back-button {
  background: #1f6fb8;
  box-shadow: 0 4px 12px rgba(31,111,184,0.18);
}

.facility-contact-box a:hover,
.contact-btn:hover,
.back-button:hover {
  opacity: 0.9;
}

/* 施設名 */
.facility-intro-card h3,
.facility-detail-text h2 {
  color: #2f3c4c;
}

/* 本文 */
.facility-intro-card p,
.facility-detail-inner p,
.facility-point-card p {
  color: #555;
}

.facility-intro-logo {
  height: 62px;
  width: auto;
  margin: 24px auto 12px;
  display: block;
  object-fit: contain;
}

.facility-intro-label.brown {
  background: #b58a65;
}

/* ===== 施設一覧カード 最終整理版 ===== */

.facility-list-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.facility-intro-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 24px 24px;
  box-shadow: 0 8px 24px rgba(31,111,184,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid #e3eef9;
  transition: 0.3s;
}

.facility-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(31,111,184,0.12);
}

/* ラベル */
.facility-intro-label {
  display: inline-block;
  margin: 0 auto 22px;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.facility-intro-label.pink {
  background: #ef8fa7;
}

.facility-intro-label.brown {
  background: #b58a65;
}

.facility-intro-label.green {
  background: #82bd59;
}

/* ロゴ */
.facility-intro-logo {
  height: 78px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

/* 説明文 */
.facility-intro-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 24px;
  min-height: 88px;
}

/* 写真 */
.facility-intro-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

/* 詳しく見る */
.facility-intro-card span {
  color: #1f6fb8;
  font-weight: 700;
  font-size: 16px;
  margin-top: auto;
}

.facility-detail-logo {
  width: auto;
  height: 100px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* 施設詳細 本文 */
.facility-detail-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
}

.facility-catch {
  font-size: 42px;
  color: #888;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.08em;

  margin-top: 80px;

  text-align: right;
}

.facility-catch span {
  color: #555;
}

.facility-detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.facility-detail-logo {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
}

.facility-category {
  display: inline-block;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
}

.facility-catch {
  font-size: 42px;
  color: #555;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;

  margin-top: 70px;
  margin-left: 120px; /* ←これで右へ移動 */

  position: relative;
  z-index: 2;
}

/* ===== 施設詳細 上部シンプル版 ===== */
.facility-detail-text {
  display: block;
  text-align: left;
}

.facility-detail-logo {
  width: auto;
  height: 110px;
  object-fit: contain;
  margin: 18px 0 4px;
}

.facility-ruby {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #8c8c8c;
  margin: 0 0 28px 58px;
  font-weight: 600;
}

.facility-detail-text {
  position: relative;
  overflow: hidden;
}

.facility-detail-text::after {
  content: "";
  position: absolute;

  right: -50px;
  bottom: -40px;

  width: 360px;
  height: 360px;

  background-image: url("images/icon-sakura.png");
  background-size: contain;
  background-repeat: no-repeat;

  opacity: 0.08;

  pointer-events: none;
}
.facility-catch {
  display: block;
  width: auto;

　font-size: 56px !important;

  color: #555;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.6;

  margin: 70px 0 0 0;
  text-align: center;

  position: relative;
  z-index: 10;
  white-space: nowrap;
}

/* ===== キャッチコピー最終調整 ===== */
.facility-detail-text .facility-catch {
  display: block !important;
  width: 100% !important;

  font-size: 42px !important;
  color: #555 !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em;
  line-height: 1.6;

  margin: 60px 0 0 0 !important;
  text-align: center !important;

  position: relative;
  z-index: 20;
  white-space: nowrap;
}