/* リキッドレイアウト対応 */

:root {
	--padding-pc: 25px;
	--padding-sp: 20px;
	--base-font-family: "Zen Maru Gothic", sans-serif;
	--second-font-family: "Noto Sans JP", sans-serif;
	--regular: 400;
	--normal: 500;
	--bold: 700;
	--honey-gold: #eeb347;
	--dark-brown: #8e4d21;
	--text-black: #3b3734;
	--yellow: #feda3e;
	--orange: #ff6200;
	--pink: #fcb1b1;
	--light-blue: #dbe6ff;
	--cream: #fff8e2;
	--light-cream: #fffdf4;
	--white: #fff;
	--black: #3b3734;
}

body {
	font-family: var(--base-font-family);
	color: var(--text-black);
	background-color: var(--cream);
	font-weight: var(--regular);
}

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
	pointer-events: none;
}

/* ホバー */

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

html {
	overflow-wrap: break-word;
}

strong {
	font-weight: 700;
}

.breadcrumb {
	width: 100%;
	height: 1.875rem;
}

.breadcrumb__inner {
	display: flex;
	align-items: center;
	max-width: 78.125rem;
	height: 100%;
	padding: 0.1875rem var(--padding-pc);
	margin-inline: auto;
}

.breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-family: var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--regular);
	line-height: 1.714;
	color: var(--text-black);
}

.breadcrumb__link {
	color: var(--text-black);
}

.breadcrumb__separator {
	font-size: 0.875rem;
	color: var(--text-black);
}

.contact-form span,
.contact-form input {
	width: 100%;
}

.contact-form input {
	border: 1px solid #cccccc;
	padding: 0.625rem;
}

.contact-form textarea {
	width: 100%;
	border: 1px solid #cccccc;
	padding: 0.625rem;
}

.contact-form .contact-form__label {
	display: block;
	margin-bottom: 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.contact-form .need {
	position: relative;
	padding-right: 4.0625rem;
}

.contact-form .need::after {
	content: "必須";
	display: block;
	font-size: 0.8125rem;
	position: absolute;
	top: 50%;
	right: 1.3125rem;
	transform: translateY(-50%);
	padding: 0 0.125rem 0 0.25rem;
	background: #de0000;
	color: #fff;
	font-weight: var(--normal);
}

.contact-form .optional {
	position: relative;
	padding-right: 4.0625rem;
}

.contact-form .optional::after {
	content: "任意";
	display: block;
	font-size: 0.8125rem;
	position: absolute;
	top: 50%;
	right: 1.3125rem;
	transform: translateY(-50%);
	padding: 0 0.125rem 0 0.25rem;
	background: #808080;
	color: #fff;
	font-weight: var(--normal);
}

.contact-form .wpcf7-submit {
	display: block;
	position: relative;
	font-size: 1rem;
	color: #fff;
	font-weight: var(--bold);
	line-height: 1.5;
	background: #000;
	padding: 0.9375rem 1.375rem;
	border-radius: 12.5rem;
	border: 1px solid #000;
	transition: 0.3s ease-in-out all;
}

.contact-form .wpcf7-submit:hover {
	color: #000;
	background: #fff;
	height: -moz-fit-content;
	height: fit-content;
}

.contact-form .contact-form__row {
	margin-bottom: 1.5rem;
}

.contact-form .contact-form__row--submit {
	width: 21.875rem;
	margin-inline: auto;
	position: relative;
}

.contact-form .contact-form__row--submit::after {
	content: "";
	display: block;
	position: absolute;
	filter: brightness(15);
	background-image: url("../images/common/arrow_r_black.svg");
	background-repeat: no-repeat;
	background-size: contain;
	aspect-ratio: 14/6;
	right: 1.375rem;
	width: 0.875rem;
	top: 1.3em;
	transition: 0.3s ease-in-out all;
}

.contact-form .contact-form__row--submit:hover::after {
	filter: brightness(0);
}

.contact-form .wpcf7-spinner {
	margin: 0;
	display: none;
}

.contact-form input[type=checkbox] + span {
	padding-left: 28px;
	display: inline-block;
	position: relative;
}

.contact-form input[type=checkbox] + span::after,
.contact-form input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

.contact-form input[type=checkbox] + span::before {
	border: 1px solid #aaaaaa;
	background-color: #ffffff;
	height: 20px;
	width: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.contact-form input[type=checkbox] + span::after {
	border: 2px solid;
	border-color: transparent transparent #000 #000;
	width: 18px;
	aspect-ratio: 2/1;
	left: 1px;
	top: 40%;
	transform: translateY(-50%) rotate(-45deg);
	display: none;
}

.contact-form input[type=checkbox]:checked + span::after {
	display: block;
}

.contact-form input[type=radio] + span {
	padding-left: 1.75rem;
	display: inline-block;
	position: relative;
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.02em;
	font-weight: var(--normal);
	font-family: var(--base-font);
	color: #000000;
	vertical-align: middle;
}

.contact-form input[type=radio] + span::after,
.contact-form input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

.contact-form input[type=radio] + span::before {
	border: 2px solid #808080;
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 50%;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
}

.contact-form input[type=radio] + span::after {
	background: radial-gradient(circle, #f14668 0 40%, transparent 40% 100%);
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 50%;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
	opacity: 0;
}

.contact-form input[type=radio]:checked + span::before {
	border-color: #f14668;
}

.contact-form input[type=radio]:checked + span::after {
	opacity: 1;
}

.contact-form .wpcf7-list-item {
	display: block;
	margin: 0.4375rem 0;
}

.drawer-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: rgba(142, 77, 33, 0.9);
	z-index: 200;
	overflow: auto;
	overscroll-behavior: none;
	scrollbar-width: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-menu.open {
	visibility: visible;
	opacity: 1;
}

.drawer-menu__inner {
	min-height: calc(100% + 3.125rem);
}

.drawer-menu__nav {
	padding: 6.3125rem 3.3125rem 0;
}

.drawer-menu__list {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.drawer-menu__link {
	display: block;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--white);
}

.drawer-menu__link.is-current,
.drawer-menu__sub-link.is-current {
	color: var(--honey-gold);
}

.drawer-menu__sub-link.is-current {
	font-weight: var(--bold);
}

.drawer-menu__sub-list {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	padding-left: 1.25rem;
	padding-top: 0.375rem;
}

.drawer-menu__sub-link {
	font-family: var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--regular);
	line-height: 1.714;
	color: var(--white);
}

.drawer-menu__bottom {
	padding: 3.4375rem 0 0;
}

.drawer-menu__instagram {
	position: relative;
	display: block;
	width: 20.9375rem;
	height: 6rem;
	border: 0.0625rem solid var(--white);
	border-radius: 0.625rem;
	margin-inline: auto;
	overflow: hidden;
}

.drawer-menu__instagram-text {
	position: absolute;
	top: 0.625rem;
	left: 1.0625rem;
	font-family: var(--second-font-family);
	font-size: 0.9375rem;
	font-weight: var(--regular);
	line-height: 1.6;
	color: var(--white);
}

.drawer-menu__instagram-icon {
	position: absolute;
	bottom: 0.875rem;
	left: 6.3125rem;
	width: 2.3125rem;
	height: 2.3125rem;
}

.drawer-menu__instagram-animals {
	position: absolute;
	top: 0.5625rem;
	right: 0.4375rem;
	width: 9.0625rem;
	height: 5.0625rem;
}

.drawer-menu__clinic {
	margin-top: 2.5rem;
	background-color: var(--honey-gold);
	padding: 2.5rem 1.25rem 7.5rem;
}

.drawer-menu__clinic-head {
	display: flex;
	align-items: center;
	gap: 0.125rem;
}

.drawer-menu__clinic-logo {
	width: 2.4375rem;
	aspect-ratio: 39/38;
}

.drawer-menu__clinic-name {
	font-family: var(--base-font-family);
	font-size: 1.5625rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	white-space: nowrap;
}

.drawer-menu__clinic-address {
	margin-top: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 0.9375rem;
	font-weight: var(--normal);
	line-height: 1.333;
	color: var(--text-black);
}

.drawer-menu__clinic-tel {
	margin-top: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1.75rem;
	font-weight: var(--normal);
	line-height: 1.2;
	color: var(--text-black);
}

.drawer-menu__clinic-tel a {
	color: inherit;
	pointer-events: all;
}

.drawer-menu__schedule {
	width: 100%;
	margin-top: 1.25rem;
	border-collapse: collapse;
	text-align: center;
	font-family: var(--second-font-family);
	font-size: 0.75rem;
	font-weight: var(--normal);
	line-height: 2;
	color: var(--text-black);
}

.drawer-menu__schedule thead th,
.drawer-menu__schedule tbody th,
.drawer-menu__schedule tbody td {
	padding: 0.25rem 0.125rem;
	border-bottom: 0.0625rem solid rgba(59, 55, 52, 0.3);
}

.drawer-menu__schedule thead th:first-child,
.drawer-menu__schedule tbody th {
	text-align: center;
	font-weight: var(--normal);
}

.drawer-menu__schedule-paw {
	display: inline-block;
	width: 0.75rem;
	height: 0.8125rem;
	vertical-align: middle;
	background-color: var(--text-black);
	-webkit-mask-image: url("../../assets/images/common/nikukyuu-2.svg");
	mask-image: url("../../assets/images/common/nikukyuu-2.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.drawer-menu__clinic-notes {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 1.75rem;
	font-family: var(--second-font-family);
	font-size: 0.9375rem;
	font-weight: var(--regular);
	line-height: 1.6;
	color: var(--text-black);
}

.drawer-menu__clinic-notes a {
	text-decoration: underline;
}

.footer {
	background-color: var(--dark-brown);
	color: var(--white);
	position: relative;
}

.footer__deco {
	width: 100%;
	overflow: hidden;
}

.footer__deco-img {
	width: 100%;
	object-fit: cover;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 90rem;
	padding: 2.5rem 7.5rem 3.125rem;
	margin-inline: auto;
}

.footer__top {
	display: flex;
	align-items: center;
	gap: 4.75rem;
	width: 100%;
	padding: 0 3.5rem;
}

.footer__clinic {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.0625rem;
}

.footer__clinic-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.125rem;
}

.footer__clinic-head {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.footer__clinic-logo {
	width: 3.1875rem;
	aspect-ratio: 51/50;
}

.footer__clinic-name {
	font-family: var(--base-font-family);
	font-size: 1.75rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--white);
}

.footer__clinic-contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

.footer__clinic-address {
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--regular);
	line-height: 1.333;
	text-align: center;
}

.footer__clinic-tel {
	font-family: var(--second-font-family);
	font-size: 2rem;
	font-weight: var(--regular);
	line-height: 1.2;
	text-align: center;
}

.footer__clinic-tel a {
	color: var(--white);
}

.footer__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.footer__buttons-row {
	display: flex;
	gap: 1.25rem;
}

.footer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 14rem;
	height: 3.1875rem;
	background-color: var(--yellow);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--normal);
	line-height: 1.5;
	color: var(--text-black);
	transition: opacity 0.3s;
}

.footer__btn-icon {
	width: 1.25rem;
	height: auto;
}

.footer__schedule-wrap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__schedule {
	width: 33.5rem;
	border-collapse: collapse;
	text-align: center;
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--regular);
	line-height: 1.333;
	color: var(--white);
}

.footer__schedule-th,
.footer__schedule-td {
	padding: 0.5rem 0.375rem;
	border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
	font-weight: var(--regular);
}

.footer__schedule-paw {
	display: inline-block;
	width: 1.25rem;
	height: 1rem;
	vertical-align: middle;
	background-color: var(--white);
	-webkit-mask-image: url("../../assets/images/common/icon-footstamp.svg");
	mask-image: url("../../assets/images/common/icon-footstamp.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.footer__schedule-th:first-child {
	text-align: center;
}

.footer__notes {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.footer__notes-text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--white);
}

.footer__notes-text a {
	text-decoration: underline;
	transition: 0.3s ease-in-out all;
}

.footer__detail {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	width: 100%;
	padding: 0 3.5rem;
}

.footer__detail-text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.625;
	color: var(--white);
}

.footer__detail-link {
	text-decoration: underline;
	color: var(--white);
}

.footer__map-area {
	display: flex;
	gap: 4.75rem;
	width: 100%;
	padding: 0 3.5rem;
}

.footer__map {
	flex: 1;
}

.footer__map iframe {
	width: 100%;
	aspect-ratio: 506/286;
	border: 0;
}

.footer__map-photo {
	flex: 1;
}

.footer__map-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.footer__nav-list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-family: var(--second-font-family);
	font-size: clamp(0.75rem, 1.1vw, 1rem);
	line-height: 1.5;
}

.footer__nav-link {
	color: var(--white);
	font-weight: var(--regular);
	font-family: var(--second-font-family);
	white-space: nowrap;
}

.footer__nav-sep {
	color: var(--white);
	margin: 0 clamp(0.375rem, 1vw, 1rem);
}

.footer__nav-sp {
	display: flex;
	justify-content: center;
	gap: 6.25rem;
}

.footer__nav-sp-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.footer__copyright {
	text-align: center;
	font-family: var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--regular);
	line-height: 1.714;
	color: var(--white);
}

.header {
	background-color: var(--honey-gold);
	width: 100%;
	z-index: 100;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 10rem;
	padding: 0 7.5rem;
	margin-inline: auto;
}

.header__logo {
	display: flex;
	align-items: center;
	gap: 1.4375rem;
}

.header__logo-img {
	width: 6.25rem;
	aspect-ratio: 100/98;
}

.header__logo-text {
	display: flex;
	flex-direction: column;
}

.header__logo-sub {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.header__logo-main {
	font-family: var(--base-font-family);
	font-size: 2.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
}

.header__illust-img {
	width: 13.0625rem;
	aspect-ratio: 209/116;
}

.header__info {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	width: 19.5rem;
}

.header__info-row {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.header__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.75rem;
	height: 1.375rem;
	padding: 0 0.75rem;
	background-color: var(--text-black);
	color: var(--white);
	font-family: var(--second-font-family);
	font-size: 0.8125rem;
	font-weight: var(--regular);
	line-height: 1.2;
	border-radius: 0.375rem;
	flex-shrink: 0;
}

.header__badge--tall {
	height: 2rem;
}

.header__info-text {
	font-family: var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--regular);
	line-height: 1.2;
	color: var(--text-black);
}

.header__tel {
	margin-top: 0.25rem;
}

.header__tel-link {
	font-family: var(--second-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.header__menu-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 2.5rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}

.header__menu-icon {
	width: 2.5rem;
	height: 1.9375rem;
	object-fit: contain;
}

.header__menu-label {
	font-family: var(--base-font-family);
	font-size: 0.625rem;
	font-weight: 900;
	line-height: 1.448;
	color: var(--dark-brown);
}

.inner {
	max-width: 78.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.instagram-link {
	position: relative;
	text-decoration: none;
}

.instagram-link__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 14.375rem;
	aspect-ratio: 230/66;
	background-color: var(--honey-gold);
	border-radius: 0.625rem;
	position: relative;
}

.instagram-link__btn::before {
	content: "";
	position: absolute;
	inset: 0.3125rem;
	border: 0.0625rem solid var(--white);
	border-radius: 0.5rem;
	pointer-events: none;
}

.instagram-link__icon {
	width: 1.875rem;
	aspect-ratio: 1/1;
}

.instagram-link__text {
	font-family: var(--base-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	line-height: 1.286;
	color: var(--text-black);
}

.instagram-link__cat {
	position: absolute;
	top: 0.8125rem;
	left: 12.625rem;
	width: 4.3125rem;
	aspect-ratio: 69/110;
}

.insurance {
	overflow: hidden;
	position: relative;
	background-color: var(--yellow);
}

.insurance__wrapper {
	max-width: 90rem;
	margin-inline: auto;
	position: relative;
}

.insurance__circles {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 37.375rem;
	max-width: unset;
	height: auto;
	pointer-events: none;
}

.insurance__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 31.25rem;
	padding: 3.75rem 0;
	margin-inline: auto;
}

.insurance__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

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

.insurance__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
	margin-bottom: 0.625rem;
}

.insurance__logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	margin-top: 1.875rem;
}

.insurance__logos-img {
	height: 5.625rem;
	width: auto;
}

.insurance__animal {
	position: absolute;
	z-index: 1;
}

.insurance__animal--dog {
	left: 7.5rem;
	bottom: -1.25rem;
}

.insurance__animal--dog .insurance__balloon {
	transform: rotate(-15deg) translate(-80%, 0rem);
}

.insurance__animal--cat {
	right: 7.5rem;
	bottom: -0.9375rem;
}

.insurance__animal--cat .insurance__balloon {
	transform: rotate(14deg) translate(-4.375rem, 0.625rem);
}

.insurance__balloon {
	position: absolute;
	top: -0.625rem;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 0.375rem 1rem;
	border-radius: 1.25rem;
	font-family: "Zen Kurenaido", sans-serif;
	font-size: 0.875rem;
	font-weight: var(--regular);
	line-height: 1.714;
	color: var(--text-black);
}

.insurance__dog {
	width: 18.75rem;
	aspect-ratio: 1/1;
}

.insurance__cat {
	width: 18.75rem;
	aspect-ratio: 1/1;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	background-color: var(--white);
	transition: opacity 0.6s ease;
}

.loading.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.loading__paws {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.loading__paw {
	display: inline-block;
	width: 1.75rem;
	height: 1.375rem;
	background-color: var(--honey-gold);
	-webkit-mask-image: url("../../assets/images/common/icon-footstamp.svg");
	mask-image: url("../../assets/images/common/icon-footstamp.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	opacity: 0.3;
	transition: opacity 0.4s ease;
	transform: rotate(90deg);
}

.loading__paw:nth-child(odd) {
	margin-top: -0.625rem;
}

.loading__paw:nth-child(even) {
	margin-top: 0.625rem;
}

.loading__paw.is-active {
	opacity: 1;
}

.loading__text {
	font-family: var(--base-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	color: var(--text-black);
	letter-spacing: 0.1em;
}

.js-maskImg {
	-webkit-mask-image: linear-gradient(90deg, black 0% 50%, transparent 100%);
	mask-image: linear-gradient(90deg, black 0% 50%, transparent 100%);
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: 200% 0%;
	mask-position: 200% 0%;
}

.js-maskImg.is-open {
	animation: maskImg 1s linear forwards;
}

.medical-sub-intro {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
	background-color: var(--light-cream);
}

.medical-sub-intro__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.medical-sub-intro__text {
	width: 65.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-sub-intro__image-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

.medical-sub-intro__image {
	width: 50rem;
}

.medical-sub-intro__image img {
	width: 100%;
	height: auto;
}

.medical-sub-tabs {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 2.5rem 5rem;
	flex-wrap: wrap;
	padding-top: 1.875rem;
}

.medical-sub-tabs--narrow {
	gap: 1.875rem;
}

.medical-sub-tabs--end {
	align-items: flex-end;
}

.medical-sub-tabs--wide {
	gap: 4.6875rem;
}

.medical-sub-tab {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.375rem;
	width: 19%;
}

.medical-sub-tab--wide {
	width: 21.875rem;
}

.medical-sub-tab--narrow {
	width: 13.5rem;
}

.medical-sub-tab__link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-sub-tab__icon {
	width: 1.4375rem;
	aspect-ratio: 23/18;
}

.medical-sub-tab__line {
	width: 100%;
	height: 0.125rem;
	background-color: var(--honey-gold);
}

.medical-sub-panel {
	padding: 3.75rem 0;
	background-color: var(--cream);
}

.medical-sub-panel__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.medical-sub-panel--cream {
	background-color: var(--cream);
}

.medical-sub-panel--light-cream {
	background-color: var(--light-cream);
}

.medical-sub-panel--last {
	padding-bottom: 7.5rem;
}

.medical-sub-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	width: 75rem;
	padding: 3.75rem 0;
	background-color: var(--white);
}

.medical-sub-card__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
}

.medical-sub-card__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.medical-sub-card__underline {
	width: 26rem;
	aspect-ratio: 416/12;
}

.medical-sub-card__content {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	gap: 2.5rem;
	padding: 0 2.5rem;
}

.medical-sub-row {
	display: flex;
	align-items: flex-start;
	gap: 2.5rem;
}

.medical-sub-row--wide {
	display: flex;
	align-items: flex-start;
	gap: 5.625rem;
	padding: 0 4.6875rem;
	align-self: stretch;
}

.medical-sub-text {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	width: 39.375rem;
}

.medical-sub-text--wide {
	width: 70rem;
}

.medical-sub-image {
	width: 28.125rem;
}

.medical-sub-image--small {
	width: 20.625rem;
}

.medical-sub-image img {
	width: 100%;
	height: auto;
}

.medical-sub-subtitle {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.medical-sub-subtitle__bar {
	width: 0.375rem;
	height: 1.5rem;
	background-color: #ffa500;
	flex-shrink: 0;
}

.medical-sub-subtitle__text {
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	line-height: 1.333;
	color: var(--text-black);
}

.medical-sub-body {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.medical-sub-items {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	gap: 1.875rem;
}

.medical-sub-item {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 0 4.6875rem;
}

.medical-sub-item__title {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
}

.medical-sub-item__title--orange {
	color: #ffa500;
}

.medical-sub-item__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.medical-sub-section {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.medical-sub-banner {
	margin-top: 0.9375rem;
}

.medical-sub-card__content > .medical-sub-section > .medical-sub-banner {
	display: flex;
	justify-content: center;
}

.medical-sub-banner img {
	width: 14.625rem;
	height: auto;
}

.medical-sub-flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.875rem;
	width: 65.625rem;
	padding: 0 4.6875rem;
}

.medical-sub-flow__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.875rem;
	width: 100%;
}

.medical-sub-flow__header {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.medical-sub-flow__number {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-top: 0.125rem solid #ff6746;
	border-bottom: 0.125rem solid #ff6746;
	padding: 0.625rem 0.25rem;
}

.medical-sub-flow__number-label {
	font-family: "DIN 2014", var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	line-height: 1;
	color: #ff6746;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 0.3125rem;
}

.medical-sub-flow__number-value {
	font-family: "DIN 2014", var(--second-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	line-height: 1;
	color: #ff6746;
	text-align: center;
	letter-spacing: 0.02em;
}

.medical-sub-flow__title {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.medical-sub-flow__desc {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-sub-flow__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 39.375rem;
	height: 1.875rem;
}

.medical-sub-flow__arrow img {
	width: auto;
	height: 100%;
}

.medical-sub-treatment {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 1.25rem 0;
}

.medical-sub-treatment__row {
	display: flex;
	gap: 3.125rem;
}

.medical-sub-treatment__label {
	width: 6.25rem;
	flex-shrink: 0;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: #ffa500;
}

.medical-sub-treatment__desc {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	flex: 1;
}

.medical-sub-images {
	display: flex;
	justify-content: center;
	gap: 6.25rem;
}

.medical-sub-images__item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.medical-sub-images__img {
	width: 34.375rem;
}

.medical-sub-images__img img {
	width: 100%;
	height: auto;
}

.medical-sub-images__caption {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.medical-sub-before-after {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6.875rem;
}

.medical-sub-before-after__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

.medical-sub-before-after__label {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-sub-before-after__img {
	width: 100%;
}

.medical-sub-before-after__img img {
	width: 100%;
	height: auto;
}

.medical-sub-divider {
	border: none;
	border-top: 0.0625rem solid #000;
	margin: 1.875rem 0;
}

.medical-sub-accent {
	color: #ffa400;
	font-weight: var(--bold);
}

.medical-sub-accent--bold {
	color: #ffa400;
	font-weight: var(--bold);
}

.medical-sub-link {
	color: #ffa400;
	text-decoration: underline;
}

.medical-sub-link--bold {
	color: #ffa400;
	font-weight: var(--bold);
	text-decoration: underline;
}

.medical-sub-disease {
	font-weight: var(--bold);
	text-decoration: underline;
}

.medical-sub-text--light {
	font-weight: 400;
}

.medical-sub-item--flush {
	padding: 0;
}

.medical-sub-item__text--mt {
	margin-top: 0.625rem;
}

.medical-sub-body--center {
	text-align: center;
	margin-bottom: 0.625rem;
}

.medical-sub-image--full {
	margin-top: 1.25rem;
	width: 100%;
}

.medical-sub-text--narrow {
	gap: 0.625rem;
}

.medical-sub-image--sm {
	width: 25rem;
}

.medical-sub-before-after__last-label {
	font-weight: var(--regular);
	font-size: 1rem;
	font-family: var(--second-font-family);
	text-align: center;
}

.medical-fv {
	position: relative;
	width: 100%;
	height: 11.25rem;
	background-color: var(--white);
	overflow: hidden;
}

.medical-fv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.medical-fv__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	height: 100%;
}

.medical-fv__title {
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	line-height: 0.5625;
	color: var(--text-black);
}

.medical-fv__line {
	width: 30rem;
	height: auto;
}

.medical-fv__subtitle {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 0.9;
	color: var(--text-black);
}

.medical-fv__illust {
	position: absolute;
	right: 7.5rem;
	bottom: 0;
	width: 4.3125rem;
	height: auto;
}

.nav {
	background-color: var(--dark-brown);
	width: 100%;
	position: relative;
	z-index: 100;
}

.nav__list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.875rem;
	max-width: 75rem;
	height: 4.375rem;
	padding: 0.75rem 0 0.375rem;
	margin-inline: auto;
}

.nav__item--has-child {
	position: relative;
}

.nav__link {
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--white);
	transition: color 0.3s;
	padding: 0.625rem 1.1875rem;
}

.nav__dropdown {
	position: absolute;
	top: calc(100% + 0.375rem);
	left: 0%;
	width: 16.9375rem;
	padding: 2rem 1.5rem 2rem;
	background-color: rgba(142, 77, 33, 0.9);
	flex-direction: column;
	gap: 0.625rem;
	display: flex;
	opacity: 0;
	gap: 0.1875rem;
	visibility: hidden;
	transition: 0.3s ease-in-out all;
}

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

.nav__dropdown-item {
	padding-left: 1.75rem;
	position: relative;
}

.nav__dropdown-item::before {
	content: "●";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.75rem;
	line-height: 1;
	color: var(--white);
}

.nav__dropdown-link {
	font-family: var(--second-font-family);
	display: block;
	font-size: 1.125rem;
	font-weight: var(--regular);
	line-height: 1.333;
	color: var(--white);
	transition: color 0.3s;
	padding: 0.3125rem 0;
}

.page-fv {
	margin-inline: auto;
	position: relative;
	width: 100%;
	background-color: var(--white);
	overflow: hidden;
}

.page-fv__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 56.25rem;
	margin-inline: auto;
	width: 100%;
	height: 100%;
}

.page-fv__img {
	height: 100%;
}

.page-fv__img img {
	object-fit: contain;
}

.page-fv__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-fv__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	height: 100%;
	margin-left: -1.875rem;
	width: calc(100% + 3.75rem);
	z-index: 1;
}

.page-fv__title {
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	line-height: 1.4;
	color: var(--text-black);
}

.page-fv__line {
	width: 100%;
	height: 0.3125rem;
	background-image: radial-gradient(circle, var(--honey-gold) 0.175rem, transparent 0.175rem);
	background-size: 0.65625rem 0.3125rem;
	background-repeat: repeat-x;
}

.pagetop {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 90;
}

.pagetop__link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 7.5rem;
	height: 7.5rem;
	background-color: var(--honey-gold);
	border: 0.125rem solid var(--white);
	border-radius: 50%;
	box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.pagetop__paw {
	width: 4.625rem;
	height: 3.625rem;
	object-fit: contain;
	margin-top: -0.5rem;
}

.pagetop__text {
	font-family: var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	line-height: 1.2;
	letter-spacing: 0.09em;
	color: var(--white);
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2.5rem 0;
}

.pagination__item {
	display: flex;
	padding-top: 0.25rem;
	align-items: center;
	justify-content: center;
	width: 3.75rem;
	height: 3.625rem;
	background: url("../images/common/pagination-paw.png") no-repeat center/contain;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
}

.pagination__item--active {
	opacity: 0.7;
}

.pagination__item--dots {
	background: none;
	width: auto;
}

.post-archive {
	background-color: var(--light-cream);
	padding: 2.5rem 0 4.375rem;
}

.post-archive__inner {
	display: flex;
	gap: 4.375rem;
}

.post-archive__main {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	flex: 1;
}

.post-archive__list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.post-archive__divider {
	display: flex;
	justify-content: center;
	align-items: center;
}

.post-archive__divider-img {
	width: 100%;
	height: auto;
}

.post-archive__empty {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
	padding: 3.75rem 0;
}

.post-card {
	display: flex;
	gap: 1.875rem;
}

.post-card__thumbnail {
	flex-shrink: 0;
	width: 17.5rem;
	aspect-ratio: 280/200;
	border-radius: 0.625rem;
	overflow: hidden;
}

.post-card__thumbnail-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	flex: 1;
}

.post-card__meta {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.post-card__date {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
}

.post-card__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 12.5rem;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.1875rem 1.1875rem;
	background-color: var(--honey-gold);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--white);
}

.post-card__title {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1.25;
	color: var(--honey-gold);
}

.post-card__excerpt {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	word-break: break-all;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.post-card__link {
	display: flex;
	gap: 1.875rem;
	color: var(--text-black);
}

.post-content {
	width: 100%;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.post-content h2 {
	font-family: var(--second-font-family);
	font-size: 1.375rem;
	font-weight: var(--bold);
	line-height: 1.09;
	color: var(--text-black);
	margin-top: 2.5rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.625rem;
	border-bottom: 0.125rem solid var(--honey-gold);
}

.post-content h3 {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
	margin-top: 1.875rem;
	margin-bottom: 0.9375rem;
	padding-left: 0.9375rem;
	border-left: 0.25rem solid var(--honey-gold);
}

.post-content h4 {
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	line-height: 1.33;
	color: var(--text-black);
	margin-top: 1.5625rem;
	margin-bottom: 0.625rem;
}

.post-content p {
	margin-bottom: 1.25rem;
}

.post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.625rem;
	margin: 1.25rem 0;
}

.post-content ul {
	margin-bottom: 1.25rem;
}

.post-content ul li {
	position: relative;
	padding-left: 0.9375rem;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.post-content ul li::before {
	content: "●";
	position: absolute;
	left: 0;
	top: 0.8lh;
	transform: translateY(-50%);
	color: var(--honey-gold);
	font-size: 0.625rem;
}

.post-content ol {
	margin-bottom: 1.25rem;
	counter-reset: ol-counter;
}

.post-content ol li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
	line-height: 1.5;
	counter-increment: ol-counter;
	list-style: none;
}

.post-content ol li::before {
	content: counter(ol-counter) ".";
	position: absolute;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
	color: var(--honey-gold);
	font-weight: var(--bold);
}

.post-content a {
	color: var(--honey-gold);
	text-decoration: underline;
}

.post-content blockquote {
	position: relative;
	padding: 1.25rem 1.25rem 1.25rem 1.875rem;
	margin-bottom: 1.25rem;
	background-color: var(--light-cream);
	border-left: 0.375rem solid var(--honey-gold);
	border-radius: 0.25rem;
}

.post-content hr {
	border: none;
	border-top: 0.0625rem solid #ddd;
	margin: 1.875rem 0;
}

.post-content strong {
	font-weight: var(--bold);
}

.post-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.25rem;
}

.post-content table th,
.post-content table td {
	padding: 0.625rem 0.9375rem;
	border: 0.0625rem solid #ddd;
	text-align: left;
}

.post-content table th {
	background-color: var(--light-cream);
	font-weight: var(--bold);
}

.post-navigation__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	padding: 5rem 0 2.5rem;
}

.post-navigation__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15.625rem;
	height: 3.125rem;
	background-color: var(--yellow);
	border-radius: 0.625rem;
	text-decoration: none;
}

.post-navigation__link--disabled {
	opacity: 0.4;
	pointer-events: none;
}

.post-navigation__link-content {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.post-navigation__label {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--normal);
	line-height: 1.5;
	color: var(--text-black);
}

.post-navigation__paw {
	width: 1.4375rem;
	height: 1.125rem;
}

.post-single {
	background-color: var(--light-cream);
	padding: 2.5rem 0;
}

.post-single__inner {
	display: flex;
	gap: 4.375rem;
}

.post-single__main {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	flex: 1;
}

.post-single__article {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.post-single__header {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.post-single__meta {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.post-single__date {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
}

.post-single__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1875rem 0.9375rem;
	background-color: var(--honey-gold);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--white);
}

.post-single__title {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1.25;
	color: var(--honey-gold);
}

.post-single__thumbnail {
	width: 100%;
	border-radius: 0.625rem;
	overflow: hidden;
}

.post-single__thumbnail-img {
	width: 100%;
	height: auto;
}

.post-single__paw-divider {
	height: 0.5625rem;
	margin-bottom: 1.25rem;
	background: url("../../assets/images/common/icon-footstamp.svg") repeat-x left center;
	background-size: 1.125rem 0.5625rem;
	filter: brightness(0);
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 43.75rem;
	width: -moz-fit-content;
	width: fit-content;
	background-color: #ffa500;
	padding: 0.4375rem 0.9375rem;
	border-radius: 1.25rem;
}

.section-title__text {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--white);
	text-align: center;
}

.sidebar {
	width: 18.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.sidebar__section {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--white);
	border: 0.375rem dashed var(--honey-gold);
	border-radius: 1.25rem;
	overflow: hidden;
}

.sidebar__section-header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1.25rem 4.375rem 0;
}

.sidebar__section-title {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1;
	color: var(--text-black);
	text-align: center;
	padding-bottom: 0;
}

.sidebar__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9375rem;
	width: 100%;
	padding: 0.75rem 1.875rem 1.25rem;
}

.sidebar__list-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	width: 100%;
}

.sidebar__list-item {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: #000000;
	text-align: center;
}

.sidebar__list-link {
	color: #000000;
}

.yellow-btn {
	border: 1px solid var(--text-black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 14rem;
	width: -moz-fit-content;
	width: fit-content;
	background-color: var(--yellow);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	padding: 0.5rem 1rem;
	font-weight: var(--normal);
	line-height: 1.5;
	color: var(--text-black);
	transition: opacity 0.3s;
}

.yellow-btn__icon {
	width: 1.25rem;
	aspect-ratio: 1/1;
}

.access-map {
	background-color: var(--light-cream);
	padding: 3.75rem 0;
}

.access-map__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.75rem;
}

.access-map__clinic {
	display: flex;
	align-items: center;
	gap: 1.125rem;
}

.access-map__clinic-header {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.access-map__clinic-logo {
	width: 3.1875rem;
	height: 3.125rem;
}

.access-map__clinic-name {
	font-family: var(--base-font-family);
	font-size: 1.75rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
}

.access-map__clinic-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	width: 24.0625rem;
}

.access-map__clinic-address {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.access-map__clinic-tel {
	font-family: var(--second-font-family);
	font-size: 1.875rem;
	font-weight: var(--regular);
	line-height: 1.2;
	color: var(--text-black);
	text-align: center;
}

.access-map__image {
	width: 50rem;
}

.access-map__image iframe {
	width: 100%;
	aspect-ratio: 800/450;
	border-radius: 1.5rem;
}

.access-map__button {
	display: flex;
	justify-content: center;
	width: 100%;
}

.access-exterior {
	background-color: var(--cream);
	padding: 3.75rem 0;
}

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

.access-exterior__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4.6875rem;
}

.access-exterior__item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 21.875rem;
}

.access-exterior__img {
	width: 100%;
	aspect-ratio: 350/250;
	border-radius: 0.625rem;
	overflow: hidden;
}

.access-exterior__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.access-exterior__caption {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.access-directions {
	background-color: var(--cream);
	padding: 0 0 3.75rem;
}

.access-directions__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.75rem;
}

.access-directions__heading {
	width: 75rem;
	height: 2.625rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffa500;
	border-radius: 1.25rem;
}

.access-directions__heading-text {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--white);
	text-align: center;
}

.access-route {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6.25rem;
	width: 100%;
}

.access-route__text {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 18.6875rem;
}

.access-route__direction {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.access-route__map {
	width: 29.5625rem;
	flex-shrink: 0;
}

.access-route__map img {
	width: 100%;
	border-radius: 0.625rem;
}

.error-404 {
	background-color: var(--light-cream);
	padding: 3.75rem 7.5rem 7.5rem;
}

.error-404__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 75rem;
	margin-inline: auto;
	padding: 0 2.5rem;
}

.error-404__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

.error-404__underline {
	width: 26rem;
	aspect-ratio: 416/12;
}

.error-404__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.error-404__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	margin-bottom: 3.75rem;
}

.error-404__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.error-404__illust {
	width: 31.25rem;
}

.error-404__illust img {
	width: 100%;
}

.error-404__btn {
	border: unset;
	padding-block: 0.75rem;
}

.facility-section {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
	background-color: var(--light-cream);
}

.facility-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.facility-row {
	display: flex;
	gap: 2.5rem;
	width: 100%;
}

.facility-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: calc(50% - 1.25rem);
}

.facility-item--offset {
	padding-top: 6.25rem;
}

.facility-item__image {
	width: 100%;
	aspect-ratio: 580/340;
	border-radius: 0.625rem;
	overflow: hidden;
	margin-bottom: 0.4375rem;
}

.facility-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.facility-item__title {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.facility-item__desc {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.facility-item__deco {
	display: flex;
	justify-content: flex-end;
	margin-top: -1.5rem;
}

.facility-item__deco img {
	width: 11.875rem;
	height: auto;
}

.facility-item--cat {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 6.25rem;
	margin-top: rem -80;
}

.facility-item__cat-img {
	width: 100%;
	max-width: 36.25rem;
	height: auto;
}

.facility-equipment {
	background-color: var(--cream);
	padding: 3.75rem 0;
}

.facility-equipment__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 75rem;
	margin-inline: auto;
	padding: 0 var(--padding-pc);
}

.facility-equipment__slider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.875rem;
	width: 100%;
}

.facility-equipment__swiper {
	overflow: hidden;
	max-width: 56.25rem;
	width: 100%;
}

.facility-equipment__swiper .swiper-slide {
	height: auto;
}

.facility-equipment__swiper .swiper-slide--first img {
	object-fit: contain;
}

.facility-equipment__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.4375rem;
	height: 3.4375rem;
	border: none;
	background-color: transparent;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
	transition: opacity 0.3s;
	filter: drop-shadow(0 1rem 3.125rem rgba(0, 0, 0, 0.1));
}

.facility-equipment__arrow img {
	object-fit: contain;
}

.facility-equipment__card {
	display: flex;
	background-color: var(--white);
	border-radius: 1.25rem;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
	overflow: hidden;
	max-width: 56.25rem;
	width: 100%;
}

.facility-equipment__card-image {
	width: 26.875rem;
	aspect-ratio: 430/370;
	flex-shrink: 0;
}

.facility-equipment__card-image img {
	height: 100%;
	object-position: center;
}

.facility-equipment__card-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.9375rem;
	padding: 1.875rem 2.5rem;
}

.facility-equipment__card-title {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.facility-equipment__card-desc {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.2;
	color: var(--text-black);
}

.first-visit-section {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
}

.first-visit-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.first-visit-section__inner .section-title {
	margin-bottom: 1.25rem;
}

.first-visit-section--light-cream {
	background-color: var(--light-cream);
}

.first-visit-section--cream {
	background-color: var(--cream);
}

.first-visit-items {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 46.875rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.first-visit-items__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	padding-left: 1em;
	text-indent: -1em;
}

.first-visit-items__text::before {
	content: "●";
	color: #eeb347;
}

.first-visit-step {
	width: 100%;
}

.first-visit-step__main {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.first-visit-step__text {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	flex: 1;
}

.first-visit-step__header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.first-visit-step__number {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-top: 0.125rem solid #ff6746;
	border-bottom: 0.125rem solid #ff6746;
	padding: 0.625rem 0.25rem;
}

.first-visit-step__label {
	font-family: "DIN 2014", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #ff6746;
	text-transform: none;
	margin-bottom: 0.3125rem;
}

.first-visit-step__value {
	font-family: "DIN 2014", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #ff6746;
}

.first-visit-step__title {
	font-family: var(--second-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.first-visit-step__desc {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.first-visit-step__image {
	width: 36.25rem;
	aspect-ratio: 580/250;
	height: 15.625rem;
}

.first-visit-step__image img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.first-visit-step__image--small {
	width: 18.75rem;
}

.first-visit-step__image--small img {
	aspect-ratio: 580/200;
}

.first-visit-arrow {
	display: flex;
	justify-content: center;
	padding: 1.25rem 0;
}

.first-visit-arrow img {
	width: 3.3125rem;
}

.first-visit-vaccine {
	display: flex;
	align-items: flex-end;
	gap: 2.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.first-visit-vaccine__note {
	position: relative;
	padding: 5.625rem 0 3.75rem;
	flex: 1;
}

.first-visit-vaccine__note-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.first-visit-vaccine__note-bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.first-visit-vaccine__note-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	max-width: 30rem;
	padding: 2.5rem;
	box-sizing: border-box;
}

.first-visit-vaccine__note-title {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--orange);
	text-align: center;
}

.first-visit-vaccine__note-text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.first-visit-vaccine__illust {
	flex-shrink: 0;
	width: 16.25rem;
}

.first-visit-vaccine__illust img {
	width: 100%;
}

.gallery-archive {
	background-color: var(--light-cream);
	padding: 3.75rem 0 5rem;
}

.gallery-archive__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.gallery-archive__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	width: 100%;
}

.gallery-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.gallery-card__photo {
	width: 100%;
	aspect-ratio: 580/340;
	overflow: hidden;
	border-radius: 1.875rem;
}

.gallery-card__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding: 1.25rem;
}

.gallery-card__name {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
	text-align: center;
}

.gallery-card__info {
	font-family: var(--second-font-family);
	font-size: 0.875rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: #888;
	text-align: center;
}

.gallery-card__desc {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.gallery-archive__empty {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
	padding: 3.75rem 0;
}

.medical-animals {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
	background-color: var(--light-cream);
}

.medical-animals__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.medical-animals__list {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.medical-animals__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
}

.medical-animals__icon {
	width: 7.4375rem;
	aspect-ratio: 1/1;
}

.medical-animals__name {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-animals__note {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-menu {
	display: flex;
	flex-direction: column;
}

.medical-menu__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.125rem;
	padding: 3.75rem 0;
	background-color: var(--cream);
}

.medical-menu__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 3.125rem 5rem;
	place-content: center;
}

.medical-menu__link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	width: 15rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	border-bottom: 0.125rem solid var(--honey-gold);
	padding-bottom: 0.25rem;
}

.medical-menu__link-icon {
	width: 1.4375rem;
	display: block;
	aspect-ratio: 23/18;
	background-color: var(--text-black);
	-webkit-mask-image: url("../images/common/footstamp-btn.png");
	mask-image: url("../images/common/footstamp-btn.png");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.3s ease-in-out all;
}

.medical-card {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3.75rem 0;
	background-color: var(--cream);
}

.medical-card--alt {
	background-color: var(--light-cream);
}

.medical-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	width: 75rem;
	padding: 3.75rem 3.75rem 3.75rem 5rem;
	background-color: var(--white);
}

.medical-card__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
}

.medical-card__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.medical-card__underline {
	width: 26rem;
	aspect-ratio: 416/12;
}

.medical-card__content {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.medical-card__text {
	width: 31.875rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.medical-card__dot {
	color: var(--honey-gold);
}

.medical-card__text p + p {
	margin-top: 1lh;
}

.medical-card__illust {
	width: 31.875rem;
	height: 11rem;
}

.medical-card__illust-img {
	width: 100%;
	height: 100%;
}

.medical-card__btn-wrap {
	display: flex;
	justify-content: center;
}

.medical-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 12.5rem;
	height: 2.5rem;
	background-color: var(--yellow);
	border: 0.0625rem solid var(--text-black);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--normal);
	line-height: 1.5;
	color: #000000;
}

.medical-card__btn-icon {
	width: 1.4375rem;
	aspect-ratio: 23/18;
}

.medical-schedule {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
	background-color: var(--light-cream);
}

.medical-schedule__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.75rem;
}

.medical-schedule__content {
	display: flex;
	gap: 2.5rem;
	width: 75rem;
}

.medical-schedule__table-wrap {
	width: 36.25rem;
}

.medical-schedule__table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--regular);
	line-height: 1.333;
	color: var(--text-black);
}

.medical-schedule__th,
.medical-schedule__td {
	padding: 0.5rem 0.375rem;
	border-bottom: 0.0625rem solid var(--text-black);
	vertical-align: middle;
}

.medical-schedule__th:first-child,
.medical-schedule__td:first-child {
	text-align: center;
	white-space: nowrap;
	font-weight: var(--regular);
}

.medical-schedule__paw {
	display: block;
	margin-inline: auto;
	width: 1.125rem;
	aspect-ratio: 18/20;
	vertical-align: middle;
}

.medical-schedule__td--closed {
	color: var(--text-black);
}

.medical-schedule__notes {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	width: 36.25rem;
}

.medical-schedule__note {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.medical-schedule__note a {
	text-decoration: underline;
	transition: 0.3s ease-in-out all;
}

.medical-payment {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
	background-color: var(--cream);
}

.medical-payment__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.medical-payment__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: center;
}

.medical-payment__cards-img {
	width: 19.125rem;
	aspect-ratio: 306/170;
}

.news-single {
	background-color: var(--light-cream);
}

.news-single__inner {
	display: flex;
	gap: 4.375rem;
	padding: 2.5rem 7.5rem;
}

.news-single__main {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	flex: 1;
}

.news-single__article {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.news-single__header {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.news-single__meta {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.news-single__date {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
}

.news-single__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1875rem 0.9375rem;
	background-color: var(--honey-gold);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--white);
}

.news-single__title {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1.25;
	color: var(--text-black);
}

.news-single__thumbnail {
	width: 100%;
	border-radius: 0.625rem;
	overflow: hidden;
}

.news-single__thumbnail-img {
	width: 100%;
	height: auto;
}

.privacy-policy {
	background-color: var(--light-cream);
	padding: 3.75rem 7.5rem 7.5rem;
}

.privacy-policy__inner {
	display: flex;
	max-width: 68.75rem;
	flex-direction: column;
	gap: 1.875rem;
	margin-inline: auto;
}

.privacy-policy__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

.privacy-policy__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.privacy-policy__underline {
	width: 26rem;
	aspect-ratio: 416/12;
}

.privacy-policy__content {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 65.625rem;
}

.privacy-policy__intro {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.2;
	color: var(--text-black);
}

.privacy-policy__section {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.privacy-policy__section-title {
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.privacy-policy__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.2;
	color: var(--text-black);
}

.recruit-section {
	padding: 3.75rem 7.5rem 7.5rem;
}

.recruit-section--light-cream {
	background-color: var(--light-cream);
}

.recruit-section--cream {
	background-color: var(--cream);
}

.recruit-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.875rem;
	max-width: 62.5rem;
	margin-inline: auto;
}

.recruit-section__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
}

.recruit-section__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.recruit-table {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	width: 100%;
}

.recruit-table__row {
	display: flex;
	gap: 1.875rem;
}

.recruit-table__label {
	flex-shrink: 0;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.875;
	color: var(--text-black);
}

.recruit-table__value {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.875;
	color: var(--text-black);
}

.recruit-empty {
	background-color: var(--light-cream);
	padding: 3.75rem 7.5rem 7.5rem;
}

.recruit-empty__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18.75rem;
	max-width: 62.5rem;
	margin-inline: auto;
}

.recruit-empty__message {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.page-template-page-spay-neuter .medical-sub-subtitle {
	gap: 0.125rem;
}

.page-template-page-spay-neuter .medical-sub-row--wide {
	gap: 2.5rem;
	padding: 0 2.5rem;
}

.page-template-page-spay-neuter .medical-sub-subtitle__bar {
	width: 1em;
	height: 1em;
	border-radius: 50%;
	transform: translateY(1px);
}

.spay-neuter-list {
	display: flex;
	flex-direction: column;
}

.spay-neuter-list__item {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
}

.spay-neuter-list__sub {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	padding-left: 1.25rem;
}

.spay-neuter-list__indent {
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.spay-neuter-list__sub-label {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--text-black);
	padding-left: 0.625rem;
}

.section-title--wide {
	width: 100%;
}

.staff-director {
	background-color: var(--light-cream);
	padding: 3.75rem 0;
}

.staff-director__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0rem;
}

.staff-director__illust {
	position: absolute;
	top: -3.125rem;
	right: 18.75rem;
	width: 7.1875rem;
	z-index: 1;
}

.staff-director__illust img {
	width: 100%;
}

.staff-credentials {
	display: flex;
	justify-content: center;
	gap: 9.375rem;
	padding: 3.75rem 0;
	width: 100%;
}

.staff-credentials__career {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 25.25rem;
}

.staff-credentials__qualifications {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 18.75rem;
}

.staff-credentials__heading {
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 17.5rem;
	height: 2.625rem;
	background-color: #ffa500;
	border-radius: 1.25rem;
}

.staff-credentials__heading-text {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--white);
}

.staff-credentials__timeline {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.staff-credentials__entry {
	display: flex;
	gap: 2.5rem;
}

.staff-credentials__year {
	width: 7.5rem;
	flex-shrink: 0;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.staff-credentials__detail {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.staff-credentials__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	list-style: none;
}

.staff-credentials__list-item {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.staff-credentials__badge {
	width: 18.75rem;
}

.staff-credentials__badge img {
	width: 100%;
}

.staff-director__wave {
	width: 100%;
}

.staff-director__wave img {
	width: 100%;
}

.staff-director__greeting {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	padding: 3.75rem 0;
	width: 100%;
}

.staff-director__greeting-illust {
	flex-shrink: 0;
	width: 20.75rem;
}

.staff-director__greeting-illust img {
	width: 100%;
}

.staff-director__greeting-text {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 33.875rem;
}

.staff-director__greeting-text p {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.staff-director__signature {
	text-align: right;
}

.staff-director__photo {
	flex-shrink: 0;
	width: 15.375rem;
}

.staff-director__photo img {
	width: 100%;
	border-radius: 0.625rem;
}

.staff-member {
	background-color: var(--cream);
	padding: 6.25rem 0 3.75rem;
}

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

.staff-member__illust {
	position: absolute;
	top: -3.5rem;
	right: 18.75rem;
	width: 5.875rem;
	z-index: 1;
}

.staff-member__illust img {
	width: 100%;
	transform: scaleX(-1);
}

.staff-member__content {
	display: flex;
	align-items: center;
	gap: 5rem;
	padding: 3.75rem 0.375rem 3.75rem 0;
	width: 100%;
}

.staff-member__content-illust {
	flex-shrink: 0;
	width: 24.125rem;
}

.staff-member__content-illust img {
	width: 100%;
}

.staff-member__content-body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	flex: 1;
	max-width: 34.375rem;
}

.staff-member__text p {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: left;
}

.staff-member__text p.staff-member__name {
	text-align: right;
	margin-top: 0.625rem;
}

.staff-member__wave {
	width: 100%;
}

.staff-member__wave img {
	width: 100%;
}

.staff-member__career {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.staff-member__career-title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.staff-member__career-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.staff-member__career-entry {
	display: flex;
	gap: 2.5rem;
}

.staff-member__career-year {
	width: 10rem;
	flex-shrink: 0;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.staff-member__career-detail {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	text-align: left;
}

.staff-member__career-year + .staff-member__career-detail {
	margin-left: 0;
}

.staff-pets {
	padding: 3.75rem 7.5rem;
}

.staff-pets--light-cream {
	background-color: var(--light-cream);
}

.staff-pets--cream {
	background-color: var(--cream);
}

.staff-pets__inner {
	max-width: 75rem;
	margin-inline: auto;
}

.staff-pets__row {
	display: flex;
	gap: 0rem;
}

.staff-pets__row--single {
	justify-content: flex-start;
}

.staff-pets__card {
	width: 37.5rem;
	display: flex;
	flex-direction: column;
	gap: 0rem;
}

.staff-pets__card-body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	flex: 1;
	max-width: 19.625rem;
}

.staff-pets__card-title {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36.25rem;
	height: 2.625rem;
	background-color: #ffa500;
	border-radius: 1.25rem;
}

.staff-pets__card-title-text {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--white);
}

.staff-pets__card-content {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 3.75rem 0.625rem;
}

.staff-pets__card-photo {
	width: 15.375rem;
	aspect-ratio: 246/328;
	flex-shrink: 0;
}

.staff-pets__card-photo img {
	width: 100%;
	border-radius: 0.625rem;
	height: 100%;
	object-fit: cover;
}

.staff-pets__card-name {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.2;
	color: var(--text-black);
}

.staff-pets__card-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.staff-pets__card-info p {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.top-fv {
	position: relative;
	overflow: hidden;
}

.top-fv__slider {
	width: 100%;
}

.top-fv__img {
	width: 100%;
	aspect-ratio: 1440/600;
	object-fit: cover;
}

.top-fv__dots.swiper-pagination {
	bottom: 2.125rem !important;
}

.top-fv__dots .swiper-pagination-bullet {
	width: 0.75rem;
	height: 0.75rem;
	border: 0.0625rem solid var(--yellow);
	background-color: var(--white);
	opacity: 1;
	margin: 0 0.375rem !important;
	box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.top-fv__dots .swiper-pagination-bullet-active {
	width: 0.9375rem;
	height: 0.8125rem;
	border: none;
	border-radius: 0;
	background-color: var(--yellow);
	-webkit-mask-image: url("../../assets/images/common/icon-footstamp.svg");
	mask-image: url("../../assets/images/common/icon-footstamp.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.top-fv__catch {
	position: absolute;
	top: 2.75rem;
	right: 8.8125rem;
	z-index: 2;
}

.top-fv__catch-img {
	width: 38.75rem;
	height: auto;
}

.top-fv__instagram {
	position: absolute;
	right: 10.0625rem;
	bottom: 7.4375rem;
	z-index: 2;
}

.top-notice {
	background-color: var(--white);
}

.top-notice__inner {
	max-width: 90rem;
	padding: 1.25rem 7.5rem;
	margin-inline: auto;
}

.top-notice__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.875rem;
	padding: 1.25rem 0;
	border: 0.1875rem solid var(--honey-gold);
	border-radius: 1.25rem;
}

.top-notice__title {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18.3125rem;
	aspect-ratio: 293/43;
	background-color: var(--orange);
}

.top-notice__title-text {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--white);
}

.top-notice__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.625rem;
	max-width: 48.125rem;
	margin-inline: auto;
	text-align: left;
}

.top-notice__item {
	font-family: var(--second-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.5;
	color: var(--orange);
}

.top-notice__note {
	color: var(--text-black);
	font-size: 1rem;
	margin-left: 1rem;
}

.top-first-visit {
	max-width: 90rem;
	padding: 1.25rem 7.5rem;
	margin-inline: auto;
}

.top-first-visit__inner {
	display: flex;
	align-items: center;
	gap: 3.75rem;
	padding: 1.25rem 0;
}

.top-first-visit__heading {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 23.125rem;
	aspect-ratio: 370/94;
}

.top-first-visit__ribbon {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top-first-visit__title {
	position: relative;
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.top-first-visit__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.top-first-visit__text strong {
	font-size: var(--bold);
}

.top-first-visit__text-emphasis {
	font-size: 1.25rem;
	font-weight: var(--bold);
}

.top-schedule {
	position: relative;
	background-color: var(--light-cream);
	overflow: hidden;
}

.top-schedule__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.top-schedule__container {
	position: relative;
	max-width: 90rem;
	padding: 3.125rem 7.5rem;
	margin-inline: auto;
}

.top-schedule__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	padding: 10rem 0 14.375rem;
	background-color: var(--white);
	position: relative;
	overflow: hidden;
}

.top-schedule__title {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.top-schedule__content {
	display: flex;
	justify-content: space-between;
	gap: 2.25rem;
	width: 67.875rem;
}

.top-schedule__calendar {
	flex-shrink: 0;
}

.top-schedule__calendar-img {
	width: 34.375rem;
	aspect-ratio: 550/380;
	object-fit: cover;
}

.top-schedule__info {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	width: 31.25rem;
}

.top-schedule__info-block {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.top-schedule__info-heading {
	font-family: var(--second-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	line-height: 1.333;
	color: var(--orange);
}

.top-schedule__info-text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
}

.top-schedule__info-note {
	padding-left: 1em;
	font-weight: var(--regular);
}

.top-schedule__buttons {
	display: flex;
	gap: 2.0625rem;
	position: relative;
	z-index: 3;
}

.top-schedule__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 14rem;
	aspect-ratio: 224/51;
	background-color: var(--yellow);
	border-radius: 0.625rem;
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--normal);
	line-height: 1.5;
	color: var(--text-black);
}

.top-schedule__btn-icon {
	width: 1.25rem;
	height: auto;
}

.top-schedule__deco-top {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.top-schedule__deco-leaf {
	position: absolute;
	top: 0;
	left: 0;
	width: 43.6875rem;
	aspect-ratio: 699/138;
}

.top-schedule__deco-beehive {
	position: absolute;
	top: 0;
	right: 0;
	width: 24.3125rem;
	aspect-ratio: 389/199;
}

.top-schedule__deco-bee {
	position: absolute;
	top: 8.3125rem;
	right: 25%;
	width: 2.75rem;
	aspect-ratio: 44/45;
}

.top-schedule__deco-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
}

.top-schedule__deco-animals {
	position: absolute;
	bottom: -0.625rem;
	left: 6.9375rem;
	width: 61.125rem;
	aspect-ratio: 978/213;
}

.top-schedule__deco-flower {
	position: absolute;
	bottom: 3.125rem;
	right: 1.25rem;
	width: 8.625rem;
	aspect-ratio: 138/151;
}

.top-schedule__deco-beehive-small {
	position: absolute;
	bottom: 2.5rem;
	left: 2.5rem;
	width: 5.625rem;
	aspect-ratio: 90/115;
}

.top-schedule__deco-heart1 {
	position: absolute;
	bottom: 6.25rem;
	left: 9.5rem;
	width: 1.3125rem;
	aspect-ratio: 21/19;
}

.top-schedule__deco-heart2 {
	position: absolute;
	bottom: 5rem;
	left: 33.3125rem;
	width: 1.625rem;
	aspect-ratio: 26/23;
}

.top-schedule__deco-heart3 {
	position: absolute;
	bottom: 6.25rem;
	right: 12.5rem;
	width: 2.0625rem;
	aspect-ratio: 33/29;
}

.top-emergency {
	position: relative;
	background-color: var(--light-blue);
	overflow: hidden;
}

.top-emergency__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 68.125rem;
	padding: 3.75rem 0;
	margin-inline: auto;
}

.top-emergency__title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	line-height: 1.448;
	color: var(--text-black);
	text-align: center;
}

.top-emergency__content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	width: 100%;
}

.top-emergency__text {
	font-family: var(--second-font-family);
	font-size: 1rem;
	font-weight: var(--regular);
	line-height: 1.5;
	color: var(--text-black);
	width: 34.375rem;
}

.top-emergency__text a {
	text-decoration: underline;
	transition: 0.3s ease-in-out all;
}

.top-emergency__banner {
	flex-shrink: 0;
}

.top-emergency__banner-img {
	width: 31.25rem;
	aspect-ratio: 500/125;
	object-fit: contain;
}

.top-emergency__night {
	width: 100%;
	aspect-ratio: 1440/142;
	object-fit: cover;
	display: block;
}

@media (any-hover: hover) {

a:hover {
	opacity: 0.8;
}

.breadcrumb__link:hover {
	opacity: 0.7;
}

.footer__btn:hover {
	opacity: 0.8;
}

.footer__notes-text a:hover {
	text-decoration-color: transparent;
}

.medical-sub-tab__link:hover {
	opacity: 0.7;
}

.nav__link:hover {
	color: var(--honey-gold);
}

.nav__dropdown-link:hover {
	color: var(--honey-gold);
}

.pagetop__link:hover {
	opacity: 0.8;
}

.pagination__item:hover {
	opacity: 0.7;
}

.post-card__link:hover {
	opacity: 0.8;
}

.post-content a:hover {
	opacity: 0.7;
}

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

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

.facility-equipment__arrow:hover {
	opacity: 0.8;
}

.medical-menu__link:hover {
	opacity: 0.7;
}

.medical-menu__link:hover .medical-menu__link-icon {
	background-color: var(--honey-gold);
}

.medical-card__btn:hover {
	opacity: 0.8;
}

.medical-schedule__note a:hover {
	text-decoration-color: transparent;
}

.top-schedule__btn:hover {
	opacity: 0.8;
}

.top-emergency__text a:hover {
	text-decoration-color: transparent;
}

}

@media only screen and (min-width: 768px) {

.sp {
	display: none !important;
}

}

@media (min-width: 768px) {

html {
	font-size: 1.1428571429vw;
}

}

@media (min-width: 1400px) {

html {
	font-size: 16px;
}

}

@media only screen and (max-width: 767px) {

.pc {
	display: none !important;
}

}

@media screen and (max-width: 767px) {

a[href^="tel:"] {
	pointer-events: all;
}

.breadcrumb {
	height: auto;
	padding: 0.5rem 0;
}

.breadcrumb__inner {
	padding: 0 var(--padding-sp);
	max-width: 37.5rem;
}

.breadcrumb__item {
	font-size: 0.75rem;
}

.breadcrumb__separator {
	font-size: 0.75rem;
}

.contact-form .need {
	padding-right: 5rem;
}

.contact-form .optional {
	padding-right: 5rem;
}

.contact-form .wpcf7-submit {
	max-width: unset;
	font-size: 0.9375rem;
}

.contact-form .contact-form__row--submit {
	width: unset;
}

.contact-form input[type=checkbox] + span::after {
	left: 2px;
}

.footer__deco-img {
	width: auto;
	object-position: left;
	height: 8.9375rem;
}

.footer__inner {
	padding: 2.5rem 1.25rem 1.875rem;
}

.footer__top {
	flex-direction: column;
	gap: 2.5rem;
	padding: 0;
}

.footer__clinic {
	display: contents;
}

.footer__clinic-info {
	align-items: flex-start;
	gap: 0.625rem;
	order: 1;
}

.footer__clinic-head {
	gap: 0.125rem;
}

.footer__clinic-logo {
	width: 2.4375rem;
	aspect-ratio: 39/38;
}

.footer__clinic-name {
	white-space: nowrap;
	font-size: 1.5625rem;
}

.footer__clinic-contact {
	align-items: flex-start;
}

.footer__clinic-address {
	font-size: 0.9375rem;
	text-align: left;
}

.footer__clinic-tel {
	font-size: 1.75rem;
	text-align: left;
}

.footer__buttons {
	display: contents;
}

.footer__buttons-row {
	flex-direction: column;
	align-items: center;
	order: 4;
}

.footer__btn {
	width: 12.625rem;
	height: 2.875rem;
	font-size: 0.9375rem;
}

.footer__buttons > .footer__btn {
	width: 11rem;
	height: 2.5rem;
	order: 2;
	align-self: center;
}

.footer__schedule-wrap {
	gap: 0.25rem;
	width: 100%;
	order: 3;
}

.footer__schedule {
	width: 100%;
	font-size: 0.75rem;
	line-height: 2;
}

.footer__schedule-th,
.footer__schedule-td {
	padding: 0.25rem 0.125rem;
}

.footer__schedule-paw {
	width: 0.75rem;
	height: 0.8125rem;
}

.footer__notes {
	margin-top: 1.25rem;
}

.footer__notes-text {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.footer__detail {
	padding: 0;
}

.footer__detail-text {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.footer__map-area {
	flex-direction: column;
	gap: 2rem;
	padding: 0;
}

.footer__map iframe {
	aspect-ratio: 335/245;
}

.footer__map-photo {
	width: 100%;
}

.footer__nav-list {
	display: none;
}

.footer__nav-link {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.footer__nav-sep {
	margin: 0 0.25rem;
}

.footer__nav-sp-col {
	text-align: left;
}

.footer__copyright {
	font-size: 0.75rem;
	line-height: 2;
}

.footer__copyright small {
	font-size: 0.75rem;
}

body {
	padding-top: 4rem;
}

.header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
}

.header__inner {
	height: 4rem;
	padding: 0.625rem 1.25rem;
}

.header__logo {
	gap: 0.375rem;
}

.header__logo-img {
	width: 2.8125rem;
	aspect-ratio: 45/44;
}

.header__logo-sub {
	font-size: 0.625rem;
}

.header__logo-main {
	font-size: 1.125rem;
}

.inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.instagram-link__btn {
	width: 9.125rem;
	aspect-ratio: 146/84;
}

.instagram-link__cat {
	top: 1.4375rem;
	left: 7.375rem;
}

.insurance__circles {
	width: unset;
	height: 101%;
}

.insurance__inner {
	padding: 2.5rem 2rem 13.5rem;
	gap: unset;
}

.insurance__title {
	margin-bottom: 1.5rem;
}

.insurance__text {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.insurance__text--large {
	font-size: 1rem;
	line-height: 1.5;
}

.insurance__logos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-inline: auto;
	max-width: 16.25rem;
}

.insurance__logos-img {
	height: 100%;
}

.insurance__animal--dog {
	left: 0.125rem;
	bottom: 0;
}

.insurance__animal--dog .insurance__balloon {
	transform: rotate(-15deg) translate(-95%, -0.25rem);
}

.insurance__animal--cat {
	right: 0.1875rem;
	bottom: 0;
}

.insurance__animal--cat .insurance__balloon {
	transform: rotate(8deg) translate(-5.375rem, 1.25rem);
	font-size: 0.875rem;
}

.insurance__balloon {
	font-size: 0.75rem;
	padding: 0.25rem 0.625rem;
}

.insurance__dog {
	width: 12rem;
}

.insurance__cat {
	width: 11.6875rem;
}

.medical-sub-intro {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.medical-sub-intro__inner {
	gap: 1.5625rem;
}

.medical-sub-intro__text {
	width: 100%;
	font-size: 0.875rem;
}

.medical-sub-intro__image-group {
	gap: 0.5rem;
}

.medical-sub-intro__image {
	width: 100%;
}

.medical-sub-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9375rem;
	padding-top: 1.25rem;
}

.medical-sub-tab {
	width: auto;
	min-width: 6.25rem;
}

.medical-sub-tab--wide {
	width: auto;
}

.medical-sub-tab--narrow {
	width: auto;
}

.medical-sub-tab__link {
	font-size: 0.875rem;
	gap: 1px;
}

.medical-sub-tab__icon {
	width: 1.1875rem;
}

.medical-sub-panel {
	padding: 1.875rem 0;
}

.medical-sub-panel--last {
	padding-bottom: 3.75rem;
}

.medical-sub-card {
	width: 100%;
	padding: 1.875rem 1rem;
	gap: 1.5625rem;
}

.medical-sub-card__title {
	font-size: 1.125rem;
}

.medical-sub-card__underline {
	width: 100%;
}

.medical-sub-card__content {
	padding: 0;
	gap: 1.5625rem;
}

.medical-sub-row {
	flex-direction: column;
	gap: 1.25rem;
}

.medical-sub-row--wide {
	flex-direction: column;
	padding: 0;
	gap: 1.25rem;
}

.medical-sub-text {
	width: 100%;
	gap: 1.25rem;
}

.medical-sub-text--wide {
	width: 100%;
}

.medical-sub-image {
	width: 100%;
}

.medical-sub-image--small {
	width: 100%;
}

.medical-sub-subtitle__bar {
	align-self: flex-start;
}

.medical-sub-subtitle__text {
	font-size: 1rem;
}

.medical-sub-body {
	font-size: 0.875rem;
}

.medical-sub-items {
	gap: 1.25rem;
}

.medical-sub-item {
	padding: 0;
}

.medical-sub-item__title {
	font-size: 0.875rem;
}

.medical-sub-item__text {
	font-size: 0.875rem;
}

.medical-sub-section {
	gap: 0.9375rem;
}

.medical-sub-flow {
	width: 100%;
	gap: 1.25rem;
	padding: 0;
}

.medical-sub-flow__step {
	gap: 0.9375rem;
}

.medical-sub-flow__header {
	gap: 1.25rem;
}

.medical-sub-flow__number-label {
	font-size: 0.75rem;
}

.medical-sub-flow__number-value {
	font-size: 1.75rem;
}

.medical-sub-flow__title {
	font-size: 1rem;
}

.medical-sub-flow__desc {
	font-size: 0.875rem;
}

.medical-sub-flow__arrow {
	width: 100%;
}

.medical-sub-treatment__row {
	flex-direction: column;
	gap: 0.3125rem;
}

.medical-sub-treatment__label {
	width: auto;
	font-size: 0.875rem;
}

.medical-sub-treatment__desc {
	font-size: 0.875rem;
}

.medical-sub-images {
	flex-direction: column;
	gap: 1.25rem;
}

.medical-sub-images__img {
	width: 100%;
}

.medical-sub-images__caption {
	font-size: 0.875rem;
}

.medical-sub-before-after {
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.medical-sub-before-after__last-label {
	font-size: 0.875rem;
}

.medical-fv {
	height: 7.5rem;
}

.medical-fv__content {
	gap: 0.75rem;
}

.medical-fv__title {
	font-size: 1.5rem;
}

.medical-fv__line {
	width: 17.5rem;
}

.medical-fv__subtitle {
	font-size: 1rem;
}

.medical-fv__illust {
	right: 1.25rem;
	width: 2.8125rem;
}

.page-fv__img {
	width: 25%;
}

.page-fv__content {
	width: 50%;
	flex-grow: 1;
	gap: 0.75rem;
	margin-left: unset;
}

.page-fv__title {
	font-size: 1.375rem;
}

.page-fv__line {
	height: 0.25rem;
	background-size: 0.5rem 0.25rem;
	background-image: radial-gradient(circle, var(--honey-gold) 0.125rem, transparent 0.125rem);
}

.pagetop__link {
	width: 5rem;
	height: 5rem;
}

.pagetop__paw {
	width: 3.125rem;
	height: 2.4375rem;
	margin-top: -0.3125rem;
}

.pagetop__text {
	font-size: 0.625rem;
}

.pagination {
	gap: 0.5rem;
	padding: 1.5625rem 0;
}

.pagination__item {
	width: 2.75rem;
	height: 2.625rem;
	font-size: 0.875rem;
}

.post-archive {
	padding: 1.875rem 0 2.5rem;
}

.post-archive__inner {
	flex-direction: column;
	gap: 2.5rem;
}

.post-archive__main {
	gap: 1.875rem;
}

.post-archive__list {
	gap: 1.875rem;
}

.post-card {
	flex-direction: column;
	gap: 0.9375rem;
}

.post-card__thumbnail {
	width: 100%;
	aspect-ratio: 335/200;
}

.post-card__date {
	font-size: 0.875rem;
}

.post-card__category {
	min-width: unset;
	padding: 0.1875rem 0.9375rem;
	font-size: 0.8125rem;
}

.post-card__title {
	font-size: 1.125rem;
}

.post-card__excerpt {
	font-size: 0.875rem;
}

.post-card__link {
	flex-direction: column;
	gap: 0.9375rem;
}

.post-content h2 {
	font-size: 1.125rem;
	margin-top: 1.875rem;
	margin-bottom: 0.9375rem;
}

.post-content h3 {
	font-size: 1rem;
	margin-top: 1.5625rem;
	margin-bottom: 0.625rem;
}

.post-content h4 {
	font-size: 1rem;
	margin-top: 1.25rem;
}

.post-content p {
	margin-bottom: 0.9375rem;
}

.post-content img {
	margin: 0.9375rem 0;
}

.post-content ul {
	margin-bottom: 0.9375rem;
}

.post-content ol {
	margin-bottom: 0.9375rem;
}

.post-content blockquote {
	margin-bottom: 0.9375rem;
	padding: 0.9375rem 0.9375rem 0.9375rem 1.5625rem;
}

.post-content hr {
	margin: 1.25rem 0;
}

.post-navigation__inner {
	flex-direction: column;
	gap: 0.9375rem;
	padding: 2.5rem 0 1.25rem;
}

.post-navigation__link {
	width: 100%;
	height: 2.8125rem;
}

.post-navigation__label {
	font-size: 0.875rem;
}

.post-single {
	padding: 1.875rem 0;
}

.post-single__inner {
	flex-direction: column;
	gap: 2.5rem;
}

.post-single__main {
	gap: 1.875rem;
}

.post-single__article {
	gap: 1.25rem;
}

.post-single__date {
	font-size: 0.875rem;
}

.post-single__category {
	font-size: 0.8125rem;
}

.post-single__title {
	font-size: 1.375rem;
}

.section-title {
	width: 100%;
	min-width: unset;
	border-radius: 1.125rem;
}

.section-title__text {
	font-size: 1rem;
}

.sidebar {
	width: 100%;
}

.sidebar__section-header {
	padding: 0.9375rem 1.875rem 0;
}

.sidebar__section-title {
	font-size: 1.25rem;
}

.sidebar__list-item {
	font-size: 0.875rem;
}

.yellow-btn {
	width: 12.625rem;
	height: 2.875rem;
	font-size: 0.9375rem;
}

.yellow-btn__icon {
	width: 1.125rem;
}

.access-map {
	padding: 2.5rem 0;
}

.access-map__inner {
	gap: 1.875rem;
}

.access-map__clinic {
	flex-direction: column;
	gap: 0.75rem;
}

.access-map__clinic-logo {
	width: 2.5rem;
	height: 2.4375rem;
}

.access-map__clinic-name {
	font-size: 1.375rem;
}

.access-map__clinic-info {
	width: 100%;
	gap: 0.5rem;
}

.access-map__clinic-address {
	font-size: 0.875rem;
}

.access-map__clinic-tel {
	font-size: 1.5rem;
}

.access-map__image {
	width: 100%;
}

.access-map__image iframe {
	border-radius: 1rem;
}

.access-exterior {
	padding: 2.5rem 0;
}

.access-exterior__gallery {
	grid-template-columns: 1fr;
	gap: 1.5625rem;
}

.access-exterior__item {
	width: 100%;
	gap: 0.9375rem;
}

.access-exterior__caption {
	font-size: 0.875rem;
}

.access-directions {
	padding: 0 0 2.5rem;
}

.access-directions__inner {
	gap: 1.875rem;
}

.access-directions__heading {
	width: 100%;
	height: 2.25rem;
}

.access-directions__heading-text {
	font-size: 1.125rem;
}

.access-route {
	flex-direction: column;
	gap: 1.5625rem;
}

.access-route__text {
	width: 100%;
	gap: 0.9375rem;
}

.access-route__direction {
	font-size: 0.875rem;
}

.access-route__map {
	width: 100%;
}

.error-404 {
	padding: 2.5rem var(--padding-sp) 3.75rem;
}

.error-404__inner {
	padding: 0;
	gap: 1.875rem;
}

.error-404__underline {
	width: 100%;
}

.error-404__title {
	font-size: 1.125rem;
}

.error-404__content {
	gap: 1.875rem;
	margin-bottom: 1.875rem;
}

.error-404__text {
	font-size: 0.875rem;
}

.error-404__illust {
	width: 100%;
	max-width: 18.75rem;
}

.facility-section {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.facility-section__inner {
	gap: 1.875rem;
}

.facility-row {
	flex-direction: column;
	gap: 1.875rem;
}

.facility-item {
	max-width: 100%;
	gap: 1rem;
}

.facility-item--offset {
	padding-top: 0;
}

.facility-item__title {
	font-size: 1.125rem;
}

.facility-item__desc {
	font-size: 0.875rem;
	line-height: 1.7;
}

.facility-item__deco {
	padding-right: 1.25rem;
}

.facility-item__deco img {
	width: 7.5rem;
}

.facility-item--cat {
	padding-top: 0;
	margin-top: -6.25rem;
	width: 70%;
	margin-left: auto;
}

.facility-equipment {
	padding: 2.5rem 0;
}

.facility-equipment__inner {
	padding: 0 var(--padding-sp);
	gap: 1.875rem;
}

.facility-equipment__slider {
	gap: 0.9375rem;
}

.facility-equipment__arrow {
	width: 2.5rem;
	height: 2.5rem;
}

.facility-equipment__card {
	height: 100%;
	flex-direction: column;
	border-radius: 0.9375rem;
}

.facility-equipment__card-image {
	width: 100%;
}

.facility-equipment__card-text {
	padding: 1.25rem;
	gap: 0.625rem;
}

.facility-equipment__card-title {
	font-size: 1.125rem;
}

.facility-equipment__card-desc {
	font-size: 0.875rem;
	line-height: 1.7;
}

.first-visit-section {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.first-visit-section__inner {
	gap: 1rem;
}

.first-visit-section__inner .section-title {
	margin-bottom: 0.5rem;
}

.first-visit-items {
	gap: 0.9375rem;
}

.first-visit-items__text {
	font-size: 0.875rem;
	line-height: 1.7;
}

.first-visit-step__main {
	flex-direction: column;
	gap: 1.25rem;
}

.first-visit-step__text {
	gap: 0.9375rem;
}

.first-visit-step__header {
	gap: 0.9375rem;
}

.first-visit-step__label {
	font-size: 0.75rem;
}

.first-visit-step__value {
	font-size: 1.75rem;
}

.first-visit-step__title {
	font-size: 1.25rem;
}

.first-visit-step__desc {
	font-size: 0.875rem;
	line-height: 1.7;
}

.first-visit-step__image {
	width: 100%;
	height: auto;
}

.first-visit-step__image--small {
	width: 12.5rem;
	margin-inline: auto;
}

.first-visit-arrow {
	padding: 0.9375rem 0;
}

.first-visit-arrow img {
	width: 2.5rem;
}

.first-visit-vaccine {
	flex-direction: column;
	gap: 1.25rem;
}

.first-visit-vaccine__note {
	width: 100%;
	padding: 2.5rem 0 2rem;
}

.first-visit-vaccine__note-bg {
	inset: -0.625rem;
}

.first-visit-vaccine__note-content {
	max-width: 100%;
	padding: 2rem 1rem;
	max-width: 21.875rem;
	gap: 0.9375rem;
}

.first-visit-vaccine__note-title {
	font-size: 1.125rem;
}

.first-visit-vaccine__note-text {
	font-size: 0.875rem;
	line-height: 1.5;
}

.first-visit-vaccine__note-text br {
	display: none;
}

.first-visit-vaccine__illust {
	width: 9.375rem;
	margin-left: auto;
	margin-top: -2.5rem;
	margin-right: -0.9375rem;
}

.gallery-archive {
	padding: 1.875rem 0 2.5rem;
}

.gallery-archive__inner {
	gap: 1.875rem;
}

.gallery-archive__grid {
	grid-template-columns: 1fr;
	gap: 1.875rem;
}

.gallery-card__photo {
	border-radius: 1rem;
}

.gallery-card__body {
	gap: 0.9375rem;
	padding: 0.9375rem;
}

.gallery-card__name {
	font-size: 1.125rem;
}

.gallery-card__info {
	font-size: 0.8125rem;
}

.gallery-card__desc {
	font-size: 0.875rem;
}

.medical-animals {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.medical-animals__inner {
	gap: 1.875rem;
}

.medical-animals__list {
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9375rem;
}

.medical-animals__icon {
	width: 5rem;
}

.medical-animals__name {
	font-size: 0.8125rem;
}

.medical-animals__note {
	font-size: 0.875rem;
}

.medical-menu__header {
	padding: 2.5rem 0;
	gap: 1.875rem;
}

.medical-menu__grid {
	grid-template-columns: 1fr 1fr;
	gap: 0.9375rem;
}

.medical-menu__link {
	width: auto;
	font-size: 0.875rem;
	gap: 0.125rem;
}

.medical-menu__link-icon {
	width: 1.125rem;
}

.medical-card {
	padding: 1.875rem 0;
}

.medical-card__inner {
	width: 100%;
	padding: 1.875rem var(--padding-sp);
	gap: 1.5625rem;
}

.medical-card__title {
	font-size: 1.125rem;
}

.medical-card__underline {
	width: 100%;
}

.medical-card__content {
	flex-direction: column;
	gap: 1.25rem;
}

.medical-card__text {
	width: 100%;
	font-size: 0.875rem;
}

.medical-card__illust {
	width: 100%;
	height: -moz-fit-content;
	height: fit-content;
}

.medical-card__illust-img {
	height: auto;
	max-width: 15.625rem;
	margin-inline: auto;
}

.medical-card__btn {
	width: 11.25rem;
	height: 2.375rem;
	font-size: 0.875rem;
}

.medical-schedule {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.medical-schedule__inner {
	gap: 1.875rem;
}

.medical-schedule__content {
	flex-direction: column;
	width: 100%;
	gap: 1.5625rem;
}

.medical-schedule__table-wrap {
	width: 100%;
	overflow-x: auto;
}

.medical-schedule__table {
	font-size: 0.875rem;
}

.medical-schedule__th,
.medical-schedule__td {
	padding: 0.375rem 0.25rem;
}

.medical-schedule__notes {
	width: 100%;
}

.medical-schedule__note {
	font-size: 0.875rem;
}

.medical-payment {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.medical-payment__inner {
	gap: 1.5625rem;
}

.medical-payment__text {
	font-size: 0.875rem;
}

.medical-payment__cards-img {
	width: 100%;
}

.news-single__inner {
	flex-direction: column;
	padding: 1.875rem var(--padding-sp);
	gap: 2.5rem;
}

.news-single__main {
	gap: 1.875rem;
}

.news-single__article {
	gap: 1.25rem;
}

.news-single__date {
	font-size: 0.875rem;
}

.news-single__category {
	font-size: 0.8125rem;
}

.news-single__title {
	font-size: 1.375rem;
}

.privacy-policy {
	padding: 2.5rem var(--padding-sp) 3.75rem;
}

.privacy-policy__inner {
	padding: 0;
	gap: 1.5625rem;
}

.privacy-policy__title {
	font-size: 1.125rem;
}

.privacy-policy__underline {
	width: 100%;
}

.privacy-policy__content {
	gap: 1.875rem;
}

.privacy-policy__intro {
	font-size: 0.875rem;
	line-height: 1.6;
}

.privacy-policy__section {
	gap: 0.9375rem;
}

.privacy-policy__section-title {
	font-size: 1rem;
}

.privacy-policy__text {
	font-size: 0.875rem;
	line-height: 1.6;
}

.recruit-section {
	padding: 2.5rem var(--padding-sp) 3.75rem;
}

.recruit-section__inner {
	max-width: 100%;
}

.recruit-section__title {
	font-size: 1.125rem;
}

.recruit-table {
	gap: 1.25rem;
}

.recruit-table__row {
	flex-direction: column;
	gap: 0.3125rem;
}

.recruit-table__label {
	font-size: 0.875rem;
	font-weight: var(--bold);
}

.recruit-table__value {
	font-size: 0.875rem;
}

.recruit-empty {
	padding: 2.5rem var(--padding-sp) 3.75rem;
}

.recruit-empty__inner {
	gap: 3.75rem;
}

.recruit-empty__message {
	font-size: 1.125rem;
}

.page-template-page-spay-neuter .medical-sub-row--wide {
	padding: 0;
	gap: 1.25rem;
}

.spay-neuter-list__item {
	font-size: 0.875rem;
}

.spay-neuter-list__sub {
	font-size: 0.875rem;
}

.spay-neuter-list__sub-label {
	font-size: 0.875rem;
}

.staff-director {
	padding: 2.5rem 0;
}

.staff-director__illust {
	width: 5rem;
	top: -2.1875rem;
	right: 2.5rem;
}

.staff-credentials {
	flex-direction: column;
	gap: 2.5rem;
	padding: 2.5rem 0;
}

.staff-credentials__career {
	width: 100%;
	gap: 1.5625rem;
}

.staff-credentials__qualifications {
	width: 100%;
	gap: 1.5625rem;
}

.staff-credentials__heading {
	width: 100%;
	height: 2.25rem;
	border-radius: 1.125rem;
}

.staff-credentials__heading-text {
	font-size: 1rem;
}

.staff-credentials__entry {
	gap: 0.9375rem;
}

.staff-credentials__year {
	width: 6.25rem;
	font-size: 0.875rem;
}

.staff-credentials__detail {
	font-size: 0.875rem;
}

.staff-credentials__list-item {
	font-size: 0.875rem;
}

.staff-credentials__badge {
	width: 15.625rem;
}

.staff-director__greeting {
	flex-direction: column;
	padding: 2.5rem 0;
	gap: 1.5625rem;
}

.staff-director__greeting-illust {
	width: 11.25rem;
}

.staff-director__greeting-text {
	width: 100%;
	gap: 1.5625rem;
}

.staff-director__greeting-text p {
	font-size: 0.875rem;
}

.staff-director__photo {
	width: 15rem;
	margin-inline: auto;
}

.staff-member {
	padding: 2.5rem 0;
}

.staff-member__illust {
	width: 4.375rem;
	top: -2.1875rem;
	right: 2.5rem;
}

.staff-member__content {
	flex-direction: column;
	gap: 1.5625rem;
	padding: 2.5rem 0;
}

.staff-member__content-illust {
	width: 16.25rem;
}

.staff-member__text p {
	font-size: 0.875rem;
}

.staff-member__career-title {
	font-size: 1.125rem;
}

.staff-member__career-entry {
	flex-direction: column;
	gap: 0.3125rem;
}

.staff-member__career-year {
	width: auto;
	font-size: 0.875rem;
}

.staff-member__career-detail {
	font-size: 0.875rem;
}

.staff-pets {
	padding: 2.5rem var(--padding-sp);
}

.staff-pets__row {
	flex-direction: column;
	gap: 2.5rem;
}

.staff-pets__card {
	width: 100%;
}

.staff-pets__card-body {
	max-width: 100%;
}

.staff-pets__card-title {
	width: 100%;
	height: 2.25rem;
	border-radius: 1.125rem;
}

.staff-pets__card-title-text {
	font-size: 1rem;
}

.staff-pets__card-content {
	flex-direction: column;
	padding: 1.875rem 0;
}

.staff-pets__card-photo {
	width: 12.5rem;
	margin-inline: auto;
}

.staff-pets__card-name {
	font-size: 1.125rem;
}

.staff-pets__card-info p {
	font-size: 0.875rem;
}

.top-fv__img {
	aspect-ratio: 375/540;
}

.top-fv__dots.swiper-pagination {
	bottom: 1.5rem !important;
}

.top-fv__catch {
	top: 1.4375rem;
	left: 1.6875rem;
	right: auto;
}

.top-fv__catch-img {
	width: 20.0625rem;
}

.top-fv__instagram {
	right: 2.625rem;
	bottom: 5.3125rem;
}

.top-notice__inner {
	padding: 1.25rem 1.25rem 1.875rem;
}

.top-notice__title-text {
	font-size: 1.25rem;
}

.top-notice__body {
	gap: 1rem;
	padding: 0 1rem;
	text-align: center;
}

.top-notice__item {
	font-size: 1.125rem;
	line-height: 1.5;
}

.top-notice__note {
	font-size: 0.9375rem;
}

.top-first-visit {
	padding: 1.25rem 1.25rem 1.875rem;
}

.top-first-visit__inner {
	flex-direction: column;
	gap: 1.25rem;
}

.top-first-visit__heading {
	width: 100%;
}

.top-first-visit__text {
	line-height: 1.875;
	text-align: center;
}

.top-schedule__container {
	padding: 2.5rem 1.25rem;
}

.top-schedule__card {
	gap: 1.625rem;
	padding: 0;
}

.top-schedule__title {
	margin-top: 6.25rem;
}

.top-schedule__content {
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 19.6875rem;
	gap: 1.625rem;
}

.top-schedule__calendar-img {
	width: 19.6875rem;
	aspect-ratio: 315/218;
}

.top-schedule__info {
	width: 100%;
	max-width: 19.6875rem;
}

.top-schedule__info-heading {
	text-align: center;
	font-size: 1.0625rem;
	line-height: 1.412;
}

.top-schedule__info-text {
	font-size: 0.9375rem;
	font-weight: var(--bold);
	line-height: 1.6;
	text-align: center;
}

.top-schedule__info-text--regular {
	font-weight: var(--regular);
}

.top-schedule__buttons {
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.25rem 0 0.625rem;
	margin-bottom: 7.5rem;
}

.top-schedule__deco-leaf {
	width: 60%;
}

.top-schedule__deco-beehive {
	width: 40%;
}

.top-schedule__deco-bee {
	top: 3.75rem;
	width: 1.875rem;
}

.top-schedule__deco-bottom {
	position: static;
}

.top-schedule__deco-animals {
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	bottom: -0.3125rem;
}

.top-schedule__deco-flower {
	width: 3.9375rem;
	bottom: 3.75rem;
	right: 1.875rem;
}

.top-schedule__deco-beehive-small {
	width: 2.8125rem;
	bottom: 4.375rem;
	left: 0.625rem;
}

.top-schedule__deco-heart1 {
	bottom: 2.875rem;
	left: 0.375rem;
	width: 1rem;
}

.top-schedule__deco-heart2 {
	bottom: 3.75rem;
	left: 38%;
	width: 1.625rem;
}

.top-schedule__deco-heart3 {
	bottom: 2.5rem;
	right: 1.625rem;
	width: 1.125rem;
}

.top-emergency__inner {
	padding: 2.5rem 1.25rem;
	gap: 1.875rem;
}

.top-emergency__content {
	flex-direction: column;
	gap: 1.875rem;
}

.top-emergency__text {
	width: 19.6875rem;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.top-emergency__banner-img {
	width: 100%;
}

.top-emergency__night {
	aspect-ratio: 375/98;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes maskImg {

0% {
	-webkit-mask-position: 200% 0%;
	mask-position: 200% 0%;
}

100% {
	-webkit-mask-position: 0% 0%;
	mask-position: 0% 0%;
}

}

