/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
}

/* Font Families */
/* Google Fonts are loaded in HTML head */

/* Color Variables */
:root {
  --color-primary: #fa9a00;
  --color-text: #333;
  --color-white: #fff;
}

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

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

body.is-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10000;
}

.header__inner {
  max-width: 1554px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  height: 150px;
}

.header__logo {
  display: grid;
  gap: .75rem;
}

.header__access {
  font-size: clamp(9px, -45.7px + 5.33vw, 13px);
}

.header__medical-corporation {
  background: #eee;
  border-radius: 9999px;
  font-size: clamp(10px, -44.6725px + 5.33vw, 14px);
  line-height: 1.8;
  padding: 0 1em;
  text-align: center;
}

.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.header__right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
  padding-top: 10px;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header__utility-nav {
  display: flex;
}

.header__utility-list {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header__utility-item {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__utility-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
  transition: opacity 0.3s;
}

.header__utility-link:hover {
  opacity: 0.7;
}

.header__utility-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__utility-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header__utility-text {
  font-family:
    "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.header__hours-wrapper {
  display: flex;
  gap: 24px;
}

.header__hours {
  font-size: 13px;
}

.header__divider {
  width: 1px;
  height: 40px;
  background: #333;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fa9a00;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header__tel:hover {
  opacity: 0.8;
}

.header__tel-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__tel-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header__tel-number {
  font-family: "Roboto Condensed", "Arial", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: #fa9a00;
  white-space: nowrap;
  letter-spacing: 0;
}

.header__button {
  background: #fa9a00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
  font-family:
    "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header__button:hover {
  opacity: 0.8;
}

.header__nav {
  flex: 1;
  display: flex;
  align-items: center;
}

.header__nav-list {
  height: 100%;
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-link {
  font-size: 16px;
  color: #333;
  transition:
    opacity 0.3s,
    color 0.3s;
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: normal;
  padding-bottom: 10px;
  height: 100%;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-item--has-dropdown {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header__nav-item--has-dropdown:hover .header__nav-link,
.header__nav-item--has-dropdown .header__nav-link:hover {
  color: #fa9a00;
}

.header__nav-arrow {
  width: 10px;
  height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-arrow-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff5e5;
  width: 100%;
  padding: 50px 20px;
  display: block;
  z-index: 999;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
}

.header__nav-item--has-dropdown:hover .header__dropdown,
.header__dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
  gap: 20px;
  width: 100%;
}

.header__dropdown-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.header__dropdown-item:hover {
  opacity: 0.8;
}

.header__dropdown-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__dropdown-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header__dropdown-text {
  flex: 1 0 0;
  font-family:
    "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.header__dropdown-text > span {
  display: block;
}

.header__dropdown-text-small {
  font-size: 12px;
  margin-top: 0;
}

.header__hamburger {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger-line {
  width: 28px;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header__nav-link--current {
  color: #ff9900;
  font-weight: bold;
}

/* Pre-footer */
.pre-footer {
  padding: 60px 0;
  background: #f7f7f7;
  border-radius: 100px 100px 0 0;
}

.pre-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pre-footer__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  flex: 1;
  max-width: 725px;
}

.pre-footer__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.pre-footer__label {
  font-family: 'Roboto Condensed', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fa9a00;
  margin: 0;
  line-height: 1;
  font-style: normal;
}

.pre-footer__title {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #333;
  margin: 0;
  text-align: center;
  line-height: normal;
  font-style: normal;
  word-break: auto-phrase;
}

.pre-footer__table-wrapper {
  width: 100%;
  max-width: 725px;
}

.pre-footer__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 15px;
  overflow: hidden;
}

.pre-footer__th {
  padding: 16px;
  text-align: center;
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  background: #ffb236;
  border: 1px solid #eee;
  line-height: 1;
  font-style: normal;
}

.pre-footer__time {
  padding: 0 16px;
  min-width: 100px;
  height: 49px;
  text-align: left;
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 1px solid #eee;
  width: 165px;
  line-height: 1;
  font-style: normal;
}

.pre-footer__td {
  min-width: 70px;
  height: 49px;
  text-align: center;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #333;
  background: #fff;
  border: 1px solid #eee;
  line-height: 1;
  font-style: normal;
}

.pre-footer__td--available {
  color: #333;
}

.pre-footer__td--closed {
  color: #333;
}

.pre-footer__td--half {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.pre-footer__star {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fa9a00;
  line-height: 1;
  font-style: normal;
}

.pre-footer__time-note {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333;
  line-height: 1;
  font-style: normal;
  white-space: nowrap;
}

.pre-footer__note {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 100%;
  max-width: 725px;
}

.pre-footer__note-line {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  font-style: normal;
}

.pre-footer__note-star {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #fa9a00;
  line-height: 1.5;
  font-style: normal;
}

.pre-footer__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}

.pre-footer__info-text {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  margin: 0;
  text-align: center;
  line-height: normal;
  font-style: normal;
  word-break: auto-phrase;
}

.pre-footer__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  align-items: center;
  justify-content: center;
}

.pre-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px 18px;
  background: #fa9a00;
  color: #333;
  border-radius: 50px;
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s;
  font-style: normal;
  width: 377px;
  flex-shrink: 0;
}

.pre-footer__button:hover {
  opacity: 0.8;
}

.pre-footer__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.pre-footer__tel:hover {
  opacity: 0.7;
}

.pre-footer__tel-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.pre-footer__tel-number {
  font-family: 'Roboto Condensed', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: #333;
  line-height: normal;
  font-style: normal;
}

.pre-footer__map {
  max-width: 420px;
  width: 100%;
  height: 436px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  background: #f0f0f0;
  position: relative;
}

.pre-footer__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pre-footer__map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Floating Btns */
.floating-btn-links {
  background: #fff;
  border: 1px solid #f25d0d;
  border-radius: 8px;
  /* bottom: 8px; */
  bottom: 50%;
  display: grid;
  /* grid-template-columns: repeat(4, 112px); */
  /* height: 96px; */
  /* left: 50%; */
  left: 0;
  overflow: hidden;
  position: fixed;
  /* transform: translateX(-50%); */
  transform: translateY(50%);
  z-index: 9999;
  width: 96px;
}

.floating-btn-links__item {
  height: 100%;
  padding: 8px 16px;
  width: 100%;
}

.floating-btn-links__item:first-child {
  background: #f25d0d;
}

.floating-btn-links__item:not(:first-child) {
  /* border-left: 1px solid #f25d0d; */
  border-top: 1px solid #f25d0d;
}

.floating-btn-links__item img {
  object-fit: contain;
  transition: opacity .2s ease;
}

.floating-btn-links__item:hover img {
  opacity: .6;
}

/* Footer */
.footer {
  /* padding: 70px 0 128px; */
  padding: 70px 0 40px;
  background: #f7f7f7;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer__right {
  display: flex;
  gap: 40px;
  flex: 1;
  align-items: flex-start;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  flex-shrink: 0;
}

.footer__logo {
  display: grid;
  gap: 8px;
  width: 242px;
}

.footer__medical-corporation {
  background: #ddd;
  border-radius: 9999px;
  font-size: 12px;
  padding: .25rem 1rem;
  text-align: center;
}

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

.footer__address-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1px 0 3px;
}

.footer__address-text {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.65px;
  margin: 0;
  font-style: normal;
}

.footer__contact {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 0 0 1px;
  height: 19px;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.footer__contact-tel {
  font-family: "Roboto Condensed", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #333;
  line-height: normal;
  font-style: normal;
}

.footer__contact-instagram {
  width: 20px;
  height: 20px;
  display: block;
}

.footer__banner {
  width: 242px;
  height: 97px;
  position: relative;
}

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

.footer__copyright {
  font-family: "Roboto Condensed", "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888;
  margin: 0;
  line-height: normal;
  font-style: normal;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 21.26px;
  flex: 1;
  min-width: 0;
}

.footer__nav-title {
  font-family:
    "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  line-height: 1;
  font-style: normal;
  word-break: auto-phrase;
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 0;
  row-gap: 8px;
  height: 220.375px;
}

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

.footer__nav-link {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  line-height: normal;
  font-style: normal;
  transition: opacity 0.3s;
}

.footer__nav-link--bold {
  font-weight: 500;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__detail {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  min-width: 0;
}

.footer__detail-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__detail-title {
  font-family:
    "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  line-height: 1;
  font-style: normal;
  word-break: auto-phrase;
}

.footer__detail-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.footer__detail-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__detail-row {
  display: flex;
  gap: 4px;
  align-items: start;
  flex-direction: column;
}

.footer__detail-label {
  font-family:
    "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  width: 100%;
  line-height: normal;
  font-style: normal;
  margin-bottom: 8px;
}

.footer__detail-value {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: normal;
  font-style: normal;
}

.footer__detail-text {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  font-style: normal;
}

/* reCAPTCHA Badge */
.grecaptcha-badge {
  display: none!important;
}

/* Hero Section */
.hero {
  margin-top: 110px;
  height: 380px;
  width: 100%;
  padding: 0 50px;
}

.hero__content {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-position: right center;
  border-radius: 25px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__label {
  font-family: 'Roboto Condensed', 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: normal;
}

.hero__title {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}

.hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
}

.hero__breadcrumb-link {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
  line-height: 1;
}

.hero__breadcrumb-link:hover {
  opacity: 0.7;
}

.hero__breadcrumb-separator {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  line-height: 1;
}

.hero__breadcrumb-current {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .header__inner {
    gap: 48px;
  }

  .header__access {
    font-size: clamp(10px, -27.5px + 4.88vw, 12px);
  }

  .header__medical-corporation {
    font-size: 12px;
  }

  .header__logo-img {
    height: 40px;
  }

  .header__utility-text,
  .header__button,
  .header__nav-link {
    font-size: 14px;
  }

  .header__dropdown {
    padding: 40px 20px;
  }

  .header__dropdown-grid {
    gap: 15px;
  }

  .header__utility-icon,
  .header__tel-icon {
    width: 18px;
    height: 18px;
  }

  .header__tel-number {
    font-size: 18px;
  }

  .header__right {
    gap: 8px;
  }

  .header__utility {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }

  .header__hours-wrapper {
    flex-direction: column-reverse;
    gap: 4px;
  }

  .header__hours {
    font-size: 11px;
  }

  .header__divider {
    display: none;
  }

  .header__nav-list {
    gap: 12px;
  }

  .pre-footer__inner {
    flex-direction: column;
  }

  .pre-footer__map {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
  }

  .footer__inner {
    justify-content: center;
  }

  .footer__right {
    flex-direction: column;
    gap: 40px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .header__inner {
    height: 80px;
    gap: 0;
    padding: 8px 16px;
  }

  .header__logo {
    gap: 4px;
  }

  .header__access {
    font-size: 9px;
  }

  .header__medical-corporation {
    font-size: 10px;
  }

  .header__logo-img {
    height: 32px;
  }

  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
    height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.is-active {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 20px;
    width: 100%;
  }

  .header__nav-item {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .header__nav-link {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    white-space: nowrap;
  }

  .header__nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
  }

  .header__nav-item--has-dropdown.is-open .header__nav-arrow {
    transform: rotate(180deg);
  }

  .header__dropdown {
    position: static;
    width: 100%;
    padding: 0;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease,
      padding 0.3s ease;
    margin-top: 0;
    visibility: visible;
  }

  .header__nav-item--has-dropdown.is-open .header__dropdown {
    max-height: 2000px;
    opacity: 1;
    padding: 10px 0;
    pointer-events: auto;
  }

  .header__dropdown-inner {
    max-width: 100%;
    padding: 0;
  }

  .header__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    padding: 0;
  }

  .header__dropdown-item {
    width: 100%;
    min-width: auto;
    border: none;
    border-radius: 4px;
    padding: 12px;
    margin: 0;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .header__dropdown-icon {
    display: none;
  }

  .header__dropdown-text {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .header__right {
    padding-top: 0;
  }

  .header__utility {
    display: none;
  }

  .header__contact {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__hours {
    display: none;
  }

  .pre-footer {
    padding: 60px 0;
    border-radius: 50px 50px 0 0;
  }

  .pre-footer__inner {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .pre-footer__content {
    max-width: 100%;
  }

  .pre-footer__title-wrapper {
    gap: 8px;
  }

  .pre-footer__label {
    font-size: 16px;
  }

  .pre-footer__title {
    font-size: 24px;
  }

  .pre-footer__table-wrapper {
    max-width: 100%;
    overflow-x: auto;
  }

  .pre-footer__table {
    min-width: 600px;
  }

  .pre-footer__th,
  .pre-footer__time,
  .pre-footer__td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .pre-footer__buttons {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .pre-footer__button {
    width: 100%;
    max-width: 377px;
    font-size: 20px;
  }

  .pre-footer__tel-number {
    font-size: 28px;
  }

  .pre-footer__map {
    width: 100%;
    max-width: 420px;
    height: 300px;
  }

  .floating-btn-links {
    bottom: 4px;
    grid-template-columns: repeat(4, 92px);
    height: 76px;
    
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }

  
  .floating-btn-links__item:not(:first-child) {
    border-left: 1px solid #f25d0d;
  }

  .footer {
    padding: 60px 0 104px;
  }

  .footer__inner {
    flex-direction: column-reverse;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer__logo {
    width: 220px;
  }

  .footer__right {
    width: 100%;
  }

  .footer__nav {
    width: 100%;
  }

  .footer__nav-grid {
    height: auto;
  }

  .footer__nav-title,
  .footer__detail-title {
    font-size: 16px;
  }

  .footer__nav-link {
    font-size: 13px;
  }

  .footer__detail {
    width: 100%;
  }

  /* .footer__detail-label, */
  .footer__detail-value,
  .footer__detail-text {
    font-size: 13px;
  }

  .footer__detail-label {
    font-size: 14px;
  }

  .footer__detail-content {
    gap: 8px;
  }

  .footer__contact-tel {
    font-size: 18px;
  }

  .footer__banner {
    width: 100%;
    max-width: 242px;
  }

  .footer__nav-col {
    width: 100%;
  }

  .hero {
    margin-top: 80px;
    padding: 0 20px;
    height: 250px;
  }

  .hero__content {
    padding: 20px;
  }

  .hero__title {
    font-size: 28px;
  }
}

@media (any-hover: hover) {
  .footer__detail-value:hover {
    opacity: 0.7;
  }
}

/* Philosophy Section */
.philosophy {
  padding: 40px 0 96px;
  background: #fff;
}

.philosophy__inner {
  max-width: 1007px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.philosophy__header {
  text-align: center;
  margin-bottom: 10px;
}

.philosophy__label {
  font-family: 'Roboto Condensed', 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fa9a00;
  margin-bottom: 10px;
  line-height: 1;
}

.philosophy__title {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 0.64px;
  line-height: 1;
  word-break: auto-phrase;
}

.philosophy__subtitle-text {
  font-family: 'FOT-TsukuARdGothic_Std', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  position: relative;
  margin: 0;
  font-style: normal;
  line-height: 36px;
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: rgb(250, 154, 0, 0.2);
  text-underline-offset: -0.1em;
  text-decoration-skip-ink: none;
  word-break: auto-phrase;
}

.philosophy__content {
  margin-bottom: 50px;
}

.philosophy__text {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: #333;
  text-align: center;
  margin-bottom: 0;
}

.philosophy__text:not(:last-child) {
  margin-bottom: 1.75em;
}

.philosophy__note {
  width: 100%;
  padding: 15px;
  background: #fff5e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.philosophy__note-text {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #333;
  text-align: center;
  letter-spacing: 0.32px;
}

@media (max-width: 1024px) {
  .philosophy__text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .philosophy {
    padding: 40px 0;
  }

  .philosophy__title {
    font-size: 24px;
  }

  .philosophy__text {
    font-size: 16px;
  }

  .philosophy__subtitle-text {
    font-size: 20px;
  }

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

/* 404 Error Page */
.error-404 {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.error-404__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.error-404__content {
  text-align: center;
}

.error-404__title {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 20px;
}

.error-404__subtitle {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.error-404__text {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.error-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.error-404__link {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.error-404__link:hover {
  background: #333;
  color: #fff;
}

.error-404__link--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.error-404__link--primary:hover {
  background: #e88a00;
  border-color: #e88a00;
}

@media (max-width: 768px) {
  .error-404 {
    padding: 100px 0 60px;
  }

  .error-404__title {
    font-size: 80px;
    margin-bottom: 15px;
  }

  .error-404__subtitle {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .error-404__text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .error-404__links {
    flex-direction: column;
    gap: 12px;
  }

  .error-404__link {
    width: 100%;
    max-width: 300px;
    padding: 10px 20px;
    font-size: 14px;
  }
}