/* ------------------------------
  ヘッダー
------------------------------ */
.site-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 18px rgba(80, 120, 140, 0.08);
    font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
	    top: 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1600px;
    min-height: auto;
    margin: 0 auto;
    padding: 0 26px;
    height: 6.5rem;
}

.site-header__logo {
  flex: 0 0 auto;
  width: 340px;
}

.site-header__logo a {
  display: block;
  transition: opacity 0.3s ease;
}

.site-header__logo a:hover {
  opacity: 0.75;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* nav */
.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-size: 1rem;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-item > p {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 38px 0;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.site-header__nav-item > p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 0;
    height: 1px;
    background: #404040;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.site-header__nav-item > p:hover {
    color: #404040;
}

.site-header__nav-item > p:hover::after {
  width: 100%;
}

.site-header__nav-item--has-child > p::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1px solid #404040;
    border-bottom: 1px solid #404040;
    transform: rotate(45deg) translateY(-2px);
    order: 2;
}

/* dropdown */
.site-header__child-list {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 210px;
    margin: 0;
    padding: 12px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgb(155 155 155 / 28%);
    box-shadow: 0 18px 36px rgb(165 165 165 / 14%);
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.site-header__child-list--wide {
  min-width: 300px;
}

.site-header__nav-item:hover .site-header__child-list,
.site-header__nav-item:focus-within .site-header__child-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header__child-list li + li {
  border-top: 1px solid rgba(139, 188, 196, 0.16);
}

.site-header__child-list a {
  display: block;
  padding: 13px 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
}

.site-header__child-list a:hover {
    color: #404040;
    background: rgb(127 127 127 / 10%);
}

/* contact */
.site-header__contact {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 36%;
}

.mobile_head_btn{
	display:none;
}

.site-header__tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #404040;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__tel img, .site-header__reserve img {
    width: 17%;
    height: auto;
}

.site-header__tel-text {
    display: flex;
    flex-direction: column;
    width: auto;
}

.site-header__tel-text strong {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.site-header__tel-text small {
  margin-top: 4px;
  color: #777;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.site-header__reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    min-height: 54px;
    padding: 0 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    background: #404040;
    border-radius: 10px;
    box-shadow: 0 8px 18px #40404024;
    transition: 0.3s ease;
    width: 90%;
}

.site-header__reserve:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.site-header__reserve-arrow {
  font-size: 22px;
  line-height: 1;
}

/* hamburger */
.site-header__toggle,
.site-header__hamburger {
  display: none;
}

.header_l_box{
	
}

h1{
    font-size: 0.7rem;
    letter-spacing: normal;
    font-weight: 400;
}
/* ------------------------------
  tablet
------------------------------ */
@media screen and (max-width: 1280px) {
  .site-header__inner {
    gap: 20px;
    padding: 0 24px;
  }

  .site-header__logo {
    width: 280px;
  }

  .site-header__nav-list {
    gap: 22px;
	  font-size: 16px;
  }

.site-header__nav-list > li {
    margin: 0 0;
    padding: 1rem 0;
}

  .site-header__tel-text strong {
    font-size: 21px;
  }

  .site-header__reserve {
    min-width: 160px;
    padding: 0 18px;
  }


}

/* ------------------------------
  smartphone
------------------------------ */
@media screen and (max-width: 1024px) {

.site-header__inner {
    height: 5rem;
    padding: 0 18px;
    min-height: auto;
}

  .site-header__logo {
    width: 240px;
  }

  .site-header__contact {
    display: none;
  }

.mobile_head_btn {
    display: flex;
    position: fixed;
    bottom: 13px;
    width: 73%;
}

.mobile_head_btn .site-header__tel, .mobile_head_btn .site-header__reserve {
    padding: 0 6px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: auto;
    min-height: 51px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 8px 18px #40404024;
    transition: 0.3s ease;
}

.site-header__tel {
    color: #404040;
    background: #fff;
}




.site-header__hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border: 1px solid #9d9d9d;
}

  .site-header__hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 0 auto;
    background: #404040;
    transition: 0.3s ease;
  }

  .site-header__toggle:checked + .site-header__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__toggle:checked + .site-header__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .site-header__toggle:checked + .site-header__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header__nav {
    position: absolute;
    top: 76px;
    left: 0;
    display: block;
    width: 100%;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(139, 188, 196, 0.18);
    box-shadow: 0 18px 30px rgba(80, 120, 140, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.3s ease;
  }

  .site-header__toggle:checked ~ .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
	
.site-header__nav-list {
    display: block;
    width: 100%;
    padding: 5px 20px 5px;
}

  .site-header__nav-item {
    border-bottom: 1px solid rgba(139, 188, 196, 0.16);
  }

.site-header__nav-item > p {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 0;
    padding: 0 0;
}

  .site-header__nav-item > p::after {
    display: none;
  }

.site-header__nav-item--has-child > p {
  cursor: pointer;
  user-select: none;
}

.site-header__child-list,
.site-header__child-list--wide {
  position: static;
  min-width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

/* hover / focus で勝手に開かないようにする */
.site-header__nav-item:hover .site-header__child-list,
.site-header__nav-item:focus-within .site-header__child-list {
  max-height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: none;
}

/* クリック後に開く */
.site-header__nav-item--has-child.is-open > .site-header__child-list {
  max-height: 900px;
  padding: 0 0 10px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* 開いている時は hover / focus があっても開いた状態を維持 */
.site-header__nav-item--has-child.is-open:hover > .site-header__child-list, .site-header__nav-item--has-child.is-open:focus-within > .site-header__child-list {
    padding: 15px 0 0px;
    opacity: 1;
    visibility: visible;
    transform: none;
}

  .site-header__child-list li {
    border-top: none;
  }

  .site-header__child-list a {
    padding: 10px 16px;
    color: #404040;
    background: rgb(127 127 127 / 10%);
    border-radius: 8px;
  }

  .site-header__child-list li + li {
    margin-top: 6px;
  }
}

@media screen and (max-width: 480px) {
	h1{
		display:none;
	}

.site-header__inner {
    min-height: auto;
    padding: 0 14px;
    height: 5rem;
}

  .site-header__logo {
    width: 205px;
  }

  .site-header__hamburger {
    width: 44px;
    height: 44px;
  }

  .site-header__nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }
}


/* ------------------------------
  フッター
------------------------------ */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 96px 0 0;
    color: #333;
    font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    background: radial-gradient(circle at 15% 20%, rgba(64, 64, 64, 0.06) 0%, rgba(64, 64, 64, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 120%;
  height: 260px;
  background: rgba(64, 64, 64, 0.035);
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap: 1rem;
    align-items: start;
}

/* 医院情報 */

.site-footer__logo {
  width: 410px;
  max-width: 100%;
}

.site-footer__logo a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer__logo a:hover {
  opacity: 0.75;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__lead {
  margin: 38px 0 34px;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.site-footer__info {
  display: grid;
  gap: 22px;
}

.site-footer__info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.site-footer__info-icon {
  flex: 0 0 auto;
  width: 28px;
  color: #404040;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
}

.site-footer__info-item--tel {
  align-items: center;
}

.site-footer__info-item--tel a {
  display: inline-block;
  color: #404040;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-footer__info-item--tel small {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.site-footer__btns {
    display: flex;
    gap: 20px;
    margin-top: 34px;
    height: 4rem;
}

.site-footer__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 245px;
    min-height: 64px;
    padding: 9px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 10px;
    box-sizing: border-box;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-footer__btn--primary {
  color: #fff;
  background: #404040;
  box-shadow: 0 12px 28px rgba(64, 64, 64, 0.18);
}

.site-footer__btn--outline {
  color: #404040;
  background: #fff;
  border: 1px solid #404040;
}

.site-footer__btn--outline .icon, .site-footer__btn--primary .icon {
    overflow: hidden;
    width: auto;
    height: 50%;
}

.site-footer__btn--outline span img,
.site-footer__btn--primary  span img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-footer__btn:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.site-footer__btn-arrow {
  margin-left: auto;
  font-size: 26px;
  line-height: 1;
}

/* 診療時間 */
.site-footer__hours {
    padding: 36px 42px 38px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(64, 64, 64, 0.12);
    box-shadow: 0 20px 45px rgba(80, 120, 140, 0.1);
    box-sizing: border-box;
}

.site-footer__hours-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: #404040;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.site-footer__hours-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #404040;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  line-height: 1;
  background: rgba(64, 64, 64, 0.06);
  border-radius: 50%;
}

.site-footer__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.site-footer__table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.site-footer__table th,
.site-footer__table td {
  padding: 18px 12px;
  color: #333;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(64, 64, 64, 0.16);
}

.site-footer__table thead th {
  background: rgba(64, 64, 64, 0.06);
}

.site-footer__table th:first-child {
  text-align: left;
  white-space: nowrap;
}

.site-footer__notes {
    display: grid;
    gap: 5px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.site-footer__notes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

/* 特徴帯 */
.site-footer__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 68px auto 54px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(64, 64, 64, 0.12);
  box-shadow: 0 12px 32px rgba(80, 120, 140, 0.08);
}

.site-footer__feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 56px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    border-right: 1px solid rgba(64, 64, 64, 0.18);
}

.site-footer__feature:last-child {
  border-right: none;
}

.site-footer__feature strong {
  color: #404040;
  font-weight: 600;
}

.site-footer__feature-icon {
    overflow: hidden;
    width: 15%;
    height: auto;
}

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

/* コピーライト */
.site-footer__copyright {
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  color: #fff;
  text-align: center;
  background: #404040;
}

.site-footer__copyright small {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.f-time-sb {
    background: rgba(64, 64, 64, 0.06);
    padding: 4px 9px;
}
/* ------------------------------
  tablet
------------------------------ */
@media screen and (max-width: 1180px) {
  .site-footer {
    padding-top: 76px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .site-footer__clinic {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .site-footer__logo {
    margin: 0 auto;
  }

  .site-footer__info {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }

  .site-footer__btns {
    justify-content: center;
  }

.site-footer__features {
    grid-template-columns: repeat(2, 1fr);
    box-sizing: border-box;
    gap: 1rem;
}

  .site-footer__feature:nth-child(2) {
    border-right: none;
  }

  .site-footer__feature:nth-child(n + 3) {
    border-top: 1px solid rgba(64, 64, 64, 0.18);
  }
}

/* ------------------------------
  smartphone
------------------------------ */
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 56px 16px 0;
  }

.site-footer__main {
    gap: 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

  .site-footer__logo {
    width: 280px;
  }

  .site-footer__lead {
    margin: 28px 0;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .site-footer__info-item {
    gap: 12px;
    font-size: 14px;
  }

  .site-footer__info-icon {
    width: 24px;
    font-size: 22px;
  }

  .site-footer__info-item--tel a {
    font-size: 26px;
  }

  .site-footer__info-item--tel small {
    font-size: 12px;
  }

  .site-footer__btn {
    width: 100%;
    min-width: initial;
    min-height: 58px;
    font-size: 14px;
  }

  .site-footer__hours {
    padding: 26px 18px 28px;
  }

  .site-footer__hours-title {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .site-footer__hours-icon {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

.site-footer__table th, .site-footer__table td {
    padding: 14px 4px;
    font-size: 13px;
    text-align: center !important;
}
	
.site-footer__table thead th:last-of-type {
    writing-mode: vertical-rl;
}
	
  .site-footer__notes {
    gap: 10px;
    margin-top: 22px;
  }

  .site-footer__notes li {
    font-size: 14px;
  }
	
.site-footer__features {
    grid-template-columns: 1fr;
    margin: 10px auto 36px;
    padding: 0rem 1.5rem 1rem;
    overflow: hidden;
    gap: 1rem;
	        justify-content: center;
}

.site-footer__feature {
    justify-content: flex-start;
    min-height: 62px;
    padding: 0 22px;
    font-size: 15px;
    border-right: none;
    border-top: 1px solid rgba(64, 64, 64, 0.16);
    padding: 1rem 0 0;
}

  .site-footer__feature:first-child {
    border-top: none;
  }

.site-footer__feature:nth-child(n + 3) {
    border-top: 1px solid rgba(64, 64, 64, 0.16);
    padding: 1rem 0 0;
}


  .site-footer__copyright {
    margin-right: -16px;
    margin-left: -16px;
    padding: 22px 16px;
  }

  .site-footer__copyright small {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .site-footer__logo {
    width: 245px;
  }

.site-footer__info {
    max-width: 100%;
}

  .site-footer__info-item--tel a {
    font-size: 23px;
  }

.site-footer__table {
    min-width: 100%;
}

.site-footer__hours {
    box-sizing: border-box;
    width: 100%;
}

.site-footer__clinic {
    max-width: 100% !important;
    width: 100%;
margin: 0 0;
}

.site-footer__btns {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 1.5rem 0 0;
}

.site-footer__btn {
    min-height: auto;
    height: 100%;
    width: 100%;
    padding: 1rem 1rem;
}

.site-footer__btn--outline .icon, .site-footer__btn--primary .icon {
    overflow: hidden;
    width: 10%;
    height: auto;
}
	
.site-footer__table-wrap {
    width: 100%;
    overflow-x: unset;
    box-sizing: border-box;
}




}

/* ------------------------------
  上に戻るボタン
------------------------------ */
.to-top {
    height: 70px;
    width: 70px;
    position: fixed;
    right: 23px;
    bottom: 18px;
    background: #404040e0;
    border: solid 2px #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0px 6px rgb(0 0 0 / 27%);
    backdrop-filter: blur(5px);
}

.to-top__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

.to-top:hover, .to-top:hover .to-top__arrow {
    border-color: #fff;
}
}

@media screen and (max-width: 1024px) {
.to-top {
      height: 50px;
    width: 50px;
    right: 20px;
    bottom: 5px;
border: solid 1px #ffffff;
  background: #ffffffad;
}
}

@media screen and (max-width: 480px) {
.to-top {
    height: 50px;
    width: 50px;
    bottom: 13px;
}
	}