/* Reset
----------------------------------------------------------------- */
*, ::before, ::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
body {
	margin: 0;
}
main {
	display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dt {
	font-weight: bold;
}
dd {
	margin-left: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-top-width: 1px;
	margin: 0;
	clear: both;
	color: inherit;
}
pre {
	font-family: monospace, monospace;
	font-size: inherit;
}
address {
	font-style: inherit;
}
a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}
abbr[title] {
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-family: monospace, monospace;
	font-size: inherit;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg, img, embed, object, iframe {
	vertical-align: bottom;
}
button, input, optgroup, select, textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit;
}
[type="checkbox"] {
	-webkit-appearance: checkbox;
	appearance: checkbox;
}
[type="radio"] {
	-webkit-appearance: radio;
	appearance: radio;
}
button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default;
	background-color: #EDF1F2;
}
:-moz-focusring {
	outline: auto;
}
select:disabled {
	opacity: inherit;
}
option {
	padding: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}
legend {
	padding: 0;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="search"] {
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
label[for] {
	cursor: pointer;
}
details {
	display: block;
}
summary {
	display: list-item;
}
[contenteditable]:focus {
	outline: auto;
}
table {
	border-color: inherit;
	border-collapse: collapse;
}
caption {
	text-align: left;
}
td, th {
	vertical-align: top;
	padding: 0;
}
th {
	text-align: left;
	font-weight: 700;
}

/* Common Variables
----------------------------------------------------------------- */
:root {
	--font-family: "Roboto", "BIZ UDGothic", sans-serif;
	--color-text: #444B52;
	--color-main: #2E86B0;
	--color-sub: #4FA98A;
	--color-accent: #F8CFDA;
	--background-color: #E3F1F9;
	--font-size: 1rem;
	--header-offset: 96px;
}

/* Base
----------------------------------------------------------------- */
html {
	height: 100%;
	scroll-padding-top: var(--header-offset);
	scroll-behavior: smooth;
}
body {
	position: relative;
	overflow-x: hidden;
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	color: var(--color-text);
	font-weight: 400;
	font-family: var(--font-family);
	line-height: 1.8;
	letter-spacing: 0.02em;
}
body.is-menu-open {
	overflow: hidden;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.3s ease;
}
#access iframe {
	width: 100%;
	height: 100%;
}
@media (min-width: 768px) {
	a[href^='tel'] {
		pointer-events: none;
		cursor: text;
	}
}
@media (hover: any-hover) {
	a img {
		transition: opacity 0.3s ease;
	}

	a:hover img {
		opacity: 0.8;
	}
}

/* =========================
	 Mobile 
========================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 1000;
	padding: 18px 5vw 9px;
	border-radius: 0 0 28px 28px;
	background: #FFFFFF;
	overflow: visible;
}
.is-menu-open .site-header {
	border-radius: 0;
}
.header-content {
	display: flex;
	flex-wrap: wrap;
	gap: 0 4px;
	align-items: center;
}
.header-content::after {
	content: "";
	order: 3;
	flex-basis: 100%;
	width: 100%;
}
.site-title {
	order: 1;
	min-width: 0;
	margin-right: auto;
	margin-left: 5px;
}
.site-title img {
	display: block;
	width: 100%;
	max-width: 97px;
	height: auto;
	transition: opacity 0.3s ease;
}
.site-title a:hover img {
	opacity: 0.8;
}
.header-nav,
.nav-button {
	display: contents;
	order: 2;
}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 4px 10px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 700;
	color: #1F3B4D;
	transition: opacity 0.3s ease;
}
.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	width: 22px;
	height: 22px;
	margin-right: 8px;
}
.btn-icon img {
	width: 100%;
	height: 100%;
}
.btn-fever {
	flex: 1.2 1 0;
	min-width: 0;
	background-color: #F8CFDA;
}
.btn-first-time-visitors {
	flex: 0.8 1 0;
	min-width: 0;
	background-color: #E3F1F9;
	letter-spacing: 0;
}
.btn-fever,
.btn-first-time-visitors {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 4px 8px;
	border-radius: 8px;
	text-decoration: none;
	font-size: min(0.875rem, 3.5vw);
	font-weight: 700;
	white-space: nowrap;
}
.btn-clinic-hour,
.btn-location,
.btn-recruitment,
.nav-desktop {
	display: none;
}
.btn-fever:focus,
.btn-first-time-visitors:focus,
.btn-clinic-hour:focus,
.btn-location:focus {
	box-shadow: none;
}
.btn-fever:hover,
.btn-first-time-visitors:hover,
.btn-clinic-hour:hover,
.btn-location:hover,
.btn-instagram:hover {
	opacity: 0.8;
}
.btn-instagram {
	flex: 0 0 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
}
.btn-instagram img {
	display: block;
}
@media (max-width: 767px) {
	.nav-button > a:not(.btn-instagram) {
		display: none;
	}
	.btn-instagram {
		order: 2;
	}
}
.hamburger {
	order: 3;
	flex: 0 0 108px;
	display: flex;
	background: #FFFFFF;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
	width: 108px;
	height:44px;
	padding: 8px 10px;
	border: 1px solid var(--color-main);
	background-color: var(--color-main);
	border-radius: 8px;
	cursor: pointer;
	z-index: 100;
}
.hamburger-line {
	display: block;
	width: 32px;
	height: 3px;
	border-radius: 999px;
	background: #FFFFFF;
	transform-origin: center;
	transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.active .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(30deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
	opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-30deg);
}
.nav-mobile-wrapper {
	display: none;
	opacity: 0;
	position: fixed;
	top: 80px;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 0 5vw 80px;
	height: calc(100svh - 90px);
	background: #FFFFFF;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		display 0.3s ease allow-discrete;
}
.nav-mobile-wrapper.active {
	display: block;
	opacity: 1;
}
@starting-style {
	.nav-mobile-wrapper.active {
		opacity: 0;
	}
}
.nav-mobile-buttons {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}
@media (max-width: 359px) {
	.nav-mobile-buttons {
		gap: 2vw;
	}
}
.nav-mobile {
	overflow-y: auto;
	height: calc(100% - 52px);
	padding: 24px 20px 40px;
}
.nav-mobile > * {
	max-width: 250px;
	margin-inline: auto;
}
.nav-mobile-list li {
	margin-bottom: 20px;
}
.nav-mobile-list li a {
	color: var(--main-text);
	font-weight: 700;
	font-size: var(--font-size);
	text-decoration: none;
}
.icon-circle-mobile {
	display: flex;
	align-items: center;
	gap: 8px;
}
.icon-circle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #FFFFFF;
}
.icon-circle-icon img {
	width: 20px;
	filter: brightness(0) saturate(100%) invert(48%) sepia(32%) saturate(917%) hue-rotate(155deg) brightness(89%) contrast(94%);
}
.btn-recruitment-mobile {
	text-align: center;
	margin-block: 15px;
	padding: 8px 24px;
	width: 250px;
	border-radius: 8px;
	background: var(--color-sub);
}
.btn-recruitment-mobile a {
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
}
.contact-info-mobile {
	display: flex;
	flex-direction: column;
}
.phone-mobile {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}
.phone-icon-mobile {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.phone-icon-mobile img {
	width: 26px;
	filter: brightness(0) saturate(100%) invert(46%) sepia(20%) saturate(1501%) hue-rotate(155deg) brightness(96%) contrast(88%);
}
.phone-mobile a {
	font-weight: 500;
	font-size: 2rem;
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.02em;
	white-space: nowrap;
	text-decoration: none;
}
.address-mobile {
	font-size: 0.75rem;
	white-space: nowrap;
	text-align: center;
}

.footer-info {
	background: #F4FAFC;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
}
.footer-info-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 5vw;
}
.footer-image {
	margin: 0 auto;
	border-radius: 40px;
	overflow: hidden;
	aspect-ratio: 35 / 27;
}
.footer-image img {
	width: 100%;
	height: 100%;
	object-position: 60% 50%;
	object-fit: cover;
	display: block;
}
@media (min-width: 600px) {
	.footer-image {
		aspect-ratio: 3 / 1;
	}
	.footer-image img {
		object-position: 60% bottom;
	}
}
.footer-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer-card_inner {
	padding: 0 14px;
}
.footer-card_title {
	display: flex;
	justify-content: space-between;
	margin-top: 24px;
	margin-bottom: 24px;
}
.footer-header {
	width: 140px;
	display: block;
}
.social {
	display: flex;
	gap:10px;
	align-items: center;
}
.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.social img {
	display: block;
}
.footer-card_address {
	margin-bottom: 20px;
}
.footer-card_address p {
	font-size: var(--font-size);
}
.contact-card {
	margin-top: 4px;
}
.contact-card_info {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.contact-card_info img {
	width: 24px;
	margin-right: 8px;
	filter: brightness(0) saturate(100%) invert(45%) sepia(95%) saturate(351%) hue-rotate(154deg) brightness(84%) contrast(91%);
}
.contact-card_info a {
	color: var(--color-text);
	font-size: 2rem;
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.02em;
	line-height: 1;
}
.contact-card span {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.footer-timecard_inner {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 10px 12px 14px;
	margin: 0 -14px 26px;
	overflow-x: auto;
}
.footer-time_table {
	width: 100%;
	min-width: 0;
	border-collapse: collapse;
	text-align: center;
}
.footer-time_table thead th {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--main-text);
	padding: 10px 6px;
	border-bottom: 1px solid #D8D8D8;
	text-align: center;
}
.footer-time_table tbody th,
.footer-time_table tbody td {
	padding: 10px 6px;
	border-bottom: 1px solid #D8D8D8;
}
.footer-time_table tbody th {
	text-align: center;
	white-space: nowrap;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--main-text);
}
.footer-time_table tbody .is-open {
	color: var(--color-main);
	font-size: 0.75rem;
	font-weight: 600;
}
.footer-time_table tbody .is-closed {
	color: var(--main-text);
	font-size: 0.75rem;
	font-weight: 600;
}
.footer-clinic-holiday_title .circle {
	width: 28px;
	height: 28px;
	overflow: hidden;
	border-radius: 50%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.footer-clinic-holiday_title .circle img {
	width: 13px;
	height: auto;
	filter: brightness(0) saturate(100%) invert(40%) sepia(98%) saturate(386%) hue-rotate(154deg) brightness(94%) contrast(81%);
}
.footer-clinic-holiday_title .label {
	font-size: 0.875rem;
	font-weight: 700;
	white-space: nowrap;
}
.footer-clinic_holiday {
	display: flex;
	align-items: flex-start;
	margin-top: 10px;
	gap: 25px;
}
.footer-clinic-holiday_title {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	gap: 10px;
}
.footer-clinic-holiday_text {
	margin-top: 2px;
}
.footer-clinic-holiday_text p {
	margin: 3px 0 0;
	font-size: 0.875rem;
	line-height: 1.4;
}
.footer-clinic_holiday_text p:last-child {
	margin-bottom: 0;
}
.maps-inner {
	width: 100%;
	border: 2px solid #9CCFE3;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}
.maps-inner iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.footer-nav {
	display: flex;
	justify-content: center;
	max-width: 710px;
	margin: 0 auto;
	padding: 40px 0;
}
.footer-nav_inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr; 
	gap: 0 10px;
}
.footer-nav_col h4 {
	display: block;
	position: relative;
	margin: 0 0 10px;
	padding-left: 16px;
	font-size: 0.9375rem;
	font-weight: 700;
}
.footer-nav_col h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 3px);
	width: 6px;
	height: 6px;
	background: #6CC4DE;
	border-radius: 50%;
}
.footer-nav_col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-nav_col li {
	position: relative;
	margin-bottom: 16px;
	margin-left: 18px;
	padding-left: 16px;
	font-size: 0.9375rem;
	line-height: 1.4;
	font-weight: 700;
}
.footer-nav_col li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 6px;
	height: 6px;
	border: 1px solid #6CC4DE;
	border-radius: 50%;
}
.footer-nav_col .sub {
	display: inline-block; 
	margin-bottom: 16px;
}
.child-list {
	margin-top: 16px;
}
.child-list li {
	margin-left: 0;
}
.footer-nav_col a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--main-text);
	white-space: nowrap;
}
.footer-nav_col:nth-child(2) { order: 3; }
.footer-nav_col:nth-child(3) { order: 2; }
@media (max-width: 343px) {
	.footer-nav {
		justify-content: flex-start;
	}
	.footer-nav_inner {
		grid-template-columns: 1fr;
		padding: 0 12vw;
	}
	.footer-nav_col:nth-child(2) { order: 2; }
	.footer-nav_col:nth-child(3) { order: 3; }
}
@media (min-width: 600px) {
	.footer-nav_inner {
		grid-template-columns: 1fr 1.5fr 1fr;
		gap: 5vw;
	}
	.footer-nav_col:nth-child(2) { order: 0; }
	.footer-nav_col:nth-child(3) { order: 0; }
}

.related-facilities {
	background: #7CBBD9;
	padding: 40px 5vw 100px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}
.facilities-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 1280px;
	margin: 0 auto 10px;
}
.facility-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFFFFF;
	border-radius: 9999px;
	overflow: hidden;
	max-width: 370px;
	min-height: 94px;
	margin-inline: auto;
	text-decoration: none;
	box-shadow: 0 4px 0 rgba(0,0,0,0.04);
}
@media (min-width: 320px) {
	.facility-card {
		min-width: 300px;
	}
}
.facility-card_text {
	flex: 1;
	padding: 16px 14px 16px 24px;
}
.facility-card_label {
	margin: 0 0 4px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--main-text);
}
.facility-card_name {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.52;
	color: var(--main-text);
}
.facility-card_img {
	flex-shrink: 0;
	width: 40.66666%;
	height: 100%;
}
.facility-card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 65% 50%;
	display: block;
}
.copyright {
	text-align: center;
	padding: 20px 16px 10px;
}
.copyright p {
	margin: 0;
	font-size: 0.75rem;
	color: #FFFFFF;
}

.fixed-nav {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 3px;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 101;
	width: 100%;
	height: 52px;
	background: #DAEEF5;
	border-radius: 24px 24px 0 0;
	padding: 0 2vw 8px;
}
.fixed-nav::before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 86px;
	border-radius: 18px 18px 0 0;
	background: rgba(255, 255, 255, 0.7);
	content: "";
}
.fixed-nav::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 52px;
	border-radius: 18px 18px 0 0;
	background: #DAEEF5;
	content: "";
}
.fixed-nav_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -24px;
	color: var(--main-text);
	font-weight: 700;
}
.fixed-nav_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 6px;
	border-radius: 50%;
	background: var(--color-main);
}
.fixed-nav_text {
	font-size: 0.8125rem;
	line-height: 1.2;
	font-weight: 700;
	white-space: nowrap;
}
.fixed-nav_item.-line .fixed-nav_icon {
	background: #FFFFFF;
}
@media (max-width: 359px) {
	.fixed-nav_text {
		font-size: 0.75rem;
	}
}


/* =========================
	 Tablet
========================= */
@media (min-width: 768px) {
	:root {
		--header-offset: 104px;
	}
	.site-header {
		height: 88px;
		padding: 0 3.64583vw;
		border-radius: 0;
	}
	.site-header::before {
		position: absolute;
		bottom: -72px;
		left: 3.125vw;
		width: 20px;
		height: 20px;
		border-top-left-radius: 20px;
		box-shadow: -10px -10px 0 10px #FFFFFF;
		background-image: unset;
	}
	.header-content {
		gap: 0 16px;
	}
	.header-content::after {
		display: none;
	}
	.site-title {
		display: block;
		position: relative;
		z-index: 1;
		width: 118px;
		height: 63px;
		margin-block: 16px 9px;
	}
	.site-title img {
		max-width: 108px;
	}
	.nav-button {
		display: flex;
		align-items: center;
		gap: 12px;
		justify-content: flex-end;
		flex-wrap: wrap;
	}
	.btn-fever {
		padding: 4px 12px;
	}
	.btn-first-time-visitors {
		padding: 4px 16px;
	}
	.btn-instagram {
		margin-left: 4px;
	}
	.btn-icon {
		width: 18px;
		height: 18px;
		margin-right: 6px;
	}
	.nav-mobile-wrapper {
		top: 88px;
		height: calc(100svh - 88px);
		padding-bottom: 20px;
	}
	.nav-mobile-buttons {
		display: none;
	}
	.nav-mobile {
		height: 100%;
	}

	.footer-timecard_inner {
		padding: 24px 14px 34px;
	}
	.footer-time_table {
		min-width: 0;
	}
	.footer-time_table thead th {
		font-size: var(--font-size)
	}
	.footer-time_table tbody th {
		font-size: var(--font-size);
	}
	.footer-time_table tbody .is-open,.footer-time_table tbody .is-closed {
		font-size: var(--font-size);
	}
	.footer-clinic-holiday_title .circle {
		width: 40px;
		height: 40px;
	}
	.footer-clinic-holiday_title .circle img {
		width: 18px;
	}
	.footer-clinic-holiday_title .label {
		font-size: 1.25rem;
	}
	.footer-clinic_holiday {
		flex-direction: row;
		align-items: flex-start;
		gap: 46px;
	}
	.footer-clinic_holiday_title {
		min-width: 92px;
		font-size: 1.25rem;
	}
	.footer-clinic-holiday_text {
		margin-top: 8px;
	}
	.footer-clinic_holiday_text p {
		margin: 5px 0 0;
		font-size: 1.125rem;
		line-height: 1.6;
	}
	.maps {
		margin-top: 25px;
	}
	.maps-inner {
		height: 350px;
		border-width: 4px;
	}

	.footer-nav_inner {
		grid-template-columns: 1fr 1.5fr 1fr;
		gap: 5vw;
	}

	.related-facilities {
		padding: 40px 0 20px;
	}
	.facilities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
		max-width: 764px;
	}
	.facility-card {
		min-width: 370px;
		min-height: 104px;
	}
	.facility-card_label {
		font-size: 0.8125rem;
	}
	.facility-card_name {
		font-size: 1rem;
	}
	.copyright {
		padding: 40px 16px 10px;
	}
	.copyright p {
		font-size: 0.8125rem;
	}

	.fixed-nav {
		display: flex;
		flex-direction: column;
		gap: 16px;
		top: calc(50% - 158px);
		right: min(2.61904vw, 40px);
		left: inherit;
		width: 96px;
		height: 320px;
		padding: 0;
		background: transparent;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(calc(100% + min(2.61904vw, 40px) + 24px));
		transition:
			opacity 0.45s ease,
			transform 0.45s ease,
			visibility 0.45s ease;
	}
	.fixed-nav.is-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(0);
	}
	.fixed-nav::before,
	.fixed-nav::after {
		display: none;
	}
	.fixed-nav_item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 96px;
		height: 96px;
		margin-top: 0;
		border-radius: 50%;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
		background: var(--color-main);
	}
	.fixed-nav_item.-phone,
	.fixed-nav_item.-map {
		display: none;
	}
	.fixed-nav_item.-line {
		background: #FFFFFF;
	}
	.fixed-nav_icon {
		width: 34px;
		height: 34px;
		margin-bottom: 2px;
	}
	.fixed-nav_icon img {
		min-width: 26px;
	}
	.-line .fixed-nav_icon img {
		width: 34px;
	}
	.fixed-nav_text {
		width: 2em;
		color: #FFFFFF;
		font-weight: 700;
		font-size: 0.9375rem;
		line-height: 1.067;
		letter-spacing: 0;
		text-align: center;
		white-space: normal;
	}
	.-line .fixed-nav_text {
		color: #1F3B4D;
	}
}

@media (min-width: 1200px) {
	:root {
		--header-offset: 164px;
	}
	.site-header {
		height: 148px;
		padding: 24px 2.34375vw 0;
	}
	.site-header::after {
		bottom: -59px;
		width: 233px;
		height: 60px;
	}
	.header-content {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 0;
		width: 100%;
		margin: 0 auto;
	}
	.site-title {
		width: 157px;
		height: 85px;
		margin-top: 16px;
		margin-left: 20px;
	}
	.site-title img {
		max-width: 157px;
	}
	.btn-instagram {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
		margin-left: 0;
	}
	.btn-instagram img {
		width: 28px;
		height: 28px;
	}
	.hamburger {
		display: none;
	}
	.header-nav {
		display: flex;
		flex-direction: column;
		flex-grow: 1;					
		align-items: flex-end;
		position: relative;
		z-index: 10;
	}
	.nav-button {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		gap: 8px;
		order: 1;
		margin-bottom: 5px;
	}
	.btn {
		padding: 4px 12px;
		font-size: var(--font-size);
	}
	.btn-fever,
	.btn-first-time-visitors {
		padding: 4px 12px;
	}
	.btn-first-time-visitors {
		position: relative;
		z-index: 1;
		margin-right: 260px;
	}
	.btn-clinic-hour, .btn-location {
		display: flex;
		background-color: var(--color-main);
		color: #FFFFFF;
	}
	.btn-clinic-hour img {
		filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(150deg) brightness(100%) contrast(103%);
	}
	.btn-recruitment {
		display: flex;
		align-items: center;
		padding: 4px 24px;
		border-radius: 8px;
		font-size: var(--font-size);
		font-weight: 700;
		background-color: #9D9D9D;
		color: #FFFFFF;
	}
	.nav-desktop {
		display: flex;
		order: 2;
		width: 100%;
		overflow: visible;
	}
	.nav-list {
		display: flex;
		align-items: flex-start;
		gap: clamp(20px, 3vw, 60px);
		position: relative;
		z-index: 1;
		padding: 0;
		margin: 0;
		margin-left: clamp(20px, 3vw, 70px);
		overflow: visible;
	}
	.nav-list li a {
		display: inline-block;
		padding-block: 4px;
		text-decoration: none;
		color: var(--main-text);
		font-size: 1.125rem;
		white-space: nowrap;
	}
	.nav-list li a:hover {
		font-weight: 700;
	}
	.nav-list li.current-menu-item > a,
	.nav-list li.current_page_item > a {
		font-weight: 700;
	}
	.dropdown-toggle {
		position: relative;
		cursor: pointer;
	}
	.active .dropdown-toggle::after {
		content: "";
		position: absolute;
		bottom: -24px;
		left: 50%;
		z-index: 1200;
		width: 24px;
		height: 24px;
		border: 5px solid #FFFFFF;
		border-radius: 50%;
		background: var(--color-main);
		transform: translateX(-50%);
		box-sizing: border-box;
	}
	.has-dropdown {
		position: relative;
		z-index: 1;
	}
	.has-dropdown.active {
		z-index: 1100;
	}
	.has-dropdown.active .dropdown-toggle {
		font-weight: 700;
	}
	.nav-dropdown {
		display: flex;
		align-items: center;
		position: absolute;
		z-index: 1100;
		top: calc(100% + 12px);
		left: 50%;
		width: max-content;
		height: 88px;
		padding: 14px 28px;
		border-radius: 20px;
		background: rgba(46, 134, 176, 0.95);
		opacity: 0;
		visibility: hidden;
		transform: translateX(-50%) translateY(-8px);
		transition:
			opacity 0.25s ease,
			transform 0.25s ease,
			visibility 0.25s ease;
	}
	.has-dropdown.active .nav-dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
	@media (hover: hover) and (pointer: fine) {
		.has-dropdown:hover {
			z-index: 1100;
		}
		.has-dropdown:hover .dropdown-toggle {
			font-weight: 700;
		}
		.has-dropdown:hover .dropdown-toggle::after {
			content: "";
			position: absolute;
			bottom: -24px;
			left: 50%;
			z-index: 1200;
			width: 24px;
			height: 24px;
			border: 5px solid #FFFFFF;
			border-radius: 50%;
			background: var(--color-main);
			transform: translateX(-50%);
			box-sizing: border-box;
		}
		.has-dropdown:hover .nav-dropdown {
			opacity: 1;
			visibility: visible;
			transform: translateX(-50%) translateY(0);
		}
		.btn-clinic-hour:hover,
		.btn-location:hover {
			color: #FFFFFF;
		}
		.fixed-nav_item:hover {
			opacity: 0.8;
		}
	}
	.nav-dropdown_content {
		display: flex;
		gap: clamp(20px, 2.5vw, 40px);
		align-items: center;
		justify-content: center;
	}
	.nav-list .nav-dropdown .dropdown-item {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 10px;
		padding: 4px 0;
		border-radius: 8px;
		color: #FFFFFF;
		text-decoration: none;
		transition: opacity 0.2s ease;
	}
	.nav-list .nav-dropdown .dropdown-item:hover {
		color: #FFFFFF;
		opacity: 0.8;
		transform: none;
		background: transparent;
	}
	/* 診療案内など：アンカー名に応じて CSS でアイコン付与 */
	.nav-dropdown .dropdown-item--internal::before,
	.nav-dropdown .dropdown-item--examination::before,
	.nav-dropdown .dropdown-item--health-checkup::before,
	.nav-dropdown .dropdown-item--vaccination::before {
		content: "";
		flex-shrink: 0;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background-color: #FFFFFF;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 24px auto;
	}
	.nav-dropdown .dropdown-item--internal::before {
		background-image: url("../img/icon-stethoscope.svg");
	}
	.nav-dropdown .dropdown-item--examination::before {
		background-image: url("../img/icon-inspection.svg");
	}
	.nav-dropdown .dropdown-item--health-checkup::before {
		background-image: url("../img/icon-checkup.svg");
	}
	.nav-dropdown .dropdown-item--vaccination::before {
		background-image: url("../img/icon-injection.svg");
	}
	.icon-title {
		color: var(--main-text);
		font-size: 1.125rem;
		text-align: center;
		white-space: nowrap;
	}
	.nav-dropdown .icon-title {
		color: #FFFFFF;
		font-size: 1rem;
		font-weight: 600;
		text-align: left;
	}
	.contact-info {
		display: flex;
		align-items: flex-end;
		flex-direction: column;
		margin: -42px 42px 0 auto;
	}
	.contact-info .phone {
		display:flex;
		gap: 4px;
		align-items: center;
		line-height: 1;
	}
	.contact-info .phone-icon {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.contact-info .phone-icon img {
		filter: brightness(0) saturate(100%) invert(39%) sepia(80%) saturate(344%) hue-rotate(161deg) brightness(96%) contrast(92%);
	}
	.contact-info	.phone-number {
		color: #1F3B4D;
		font-size: 2rem;
		font-weight: 500;
		font-family: "Roboto", sans-serif;
		letter-spacing: 0.02em;
	}
	.contact-info .address {
		margin-top: 3px;
		font-size: 0.875rem;
		letter-spacing: 0.02em;
		white-space: nowrap;
	}
	.contact-info .btn-wrap {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 4px;
		margin-top: 4px;
	}
	.nav-mobile {
			display: none !important;
	}
	.hero {
			display: block !important;
	}

	.footer-info {
		background: #F4F8FA;
	}
	.footer-info-inner {
		padding: 80px 5vw;
	}
	.footer-image {
		max-width: 1280px;
	}
	.footer-card {
		gap: 0;
		justify-content: space-between;
		padding: 0 15px;
		margin-top: 10px;
	}
	.footer-image img {
		object-position: bottom;
	}
	.footer-card {
		flex-direction: row;
		gap: 20px;
		max-width: 1178px;
		margin: 5px auto 0;
	}
	.footer-card_info {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 10px;
	}
	.footer-card_title {
		flex-direction: column;
		flex-shrink: 0;
	}
	.social {
		margin-top: 24px;
	}
	.footer-card_address {
		margin-bottom: 0;
		margin-top: 20px;
		color: #2C3E50;
	}
	.footer-card_address p {
		margin-bottom: 12px;
	}
	.contact-card span {
		margin-top: 12px;
		color: #2C3E50;
	}
	.footer-card_info {
		gap: 25px;
		margin-bottom: 20px;
	}
	.social-icon {
		width: 56px;
		height: 56px;
	}
	.social img{
		width: 36px;
	}
	.footer-card_address p {
		font-size: 1.188rem;
	}
	.contact-card_info img {
		width: 30px;
		margin-right: 8px;
	}
	.contact-card_info a {
		font-size: 2rem;
	}
	.contact-card span {
		font-size: var(--font-size);
	}
	.maps {
		margin-top: 35px;
	}
	.maps-inner {
		width: 400px;
		height: 450px;
	}
	
	.facility-card_label {
		font-size: 0.813rem;
	}
	.facility-card_name {
		font-size: 1.063rem;
	}
	.facility-card_text {
		padding: 14px 0 14px 20px;
	}
}

/* =========================
	 Desktop
========================= */
@media (min-width: 1280px) {
	.site-header {
		padding: 18px 2.5vw 0;
	}
	.site-title {
		width: 152px;
		height: 80px;
		margin-top: auto;
	}
	.site-title img {
		max-width: 152px;
	}
	.header-nav {
		width: calc(100% - 222px);
	}
	.footer-info-inner {
		padding: 80px 0;
	}
	.maps-inner {
		width: 450px;
	}
	.facilities-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 35px 30px;
		max-width: 1158px;
	}
	.facility-card_text {
		padding: 16px 14px 16px 28px;
	}
}

