@charset "UTF-8";
*, ::after, ::before {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
:root {
	--color-green: #73C11A;
	--color-green-deep: #5BA10D;
	--color-green-soft: #EDF7DD;
	--color-pink: #F5A6B8;
	--color-pink-deep: #E08FA1;
	--color-pink-soft: #FDEFF2;
	--color-blue: #7ECBE8;
	--color-blue-deep: #5FB3D4;
	--color-blue-soft: #EBF7FC;
	--color-brown: #6B4A3A;
	--color-bg-base: #FFFDF7;
	--color-bg-soft: #F2FAEF;
	--color-line: #DDEDD5;
	--color-text: #333333;
	--color-text-mute: #6D6D6D;
	--color-orange: #F4511E;
	--color-main: var(--color-green);
	--color-main-deep: var(--color-green-deep);
	--color-sub: var(--color-blue);
	--color-accent: var(--color-pink);
	--color-heading: var(--color-brown);
	--color-text-light: var(--color-text-mute);
	--color-bg-sky: var(--color-blue-soft);
	--color-bg-blue: var(--color-blue-soft);
	--shadow-card: 0 4px 14px rgba(110, 130, 90, .08);
	--radius-card: 14px;
	--radius-btn: 9999px
}
body {
	margin: 0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text);
	background: var(--color-bg-base);
	-webkit-text-size-adjust: 100%
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle
}
a {
	color: var(--color-pink-deep);
	text-decoration: none;
	transition: opacity .2s
}
a:hover {
	opacity: .75
}
h1, h2, h3 {
	line-height: 1.4;
	margin: 0;
	color: var(--color-brown);
	font-weight: 700
}
p {
	margin: 0 0 16px
}
ol, ul {
	padding: 0;
	margin: 0
}
.section {
	padding: 40px 0
}
.section-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px
}
.section-head {
	text-align: center;
	margin-bottom: 32px
}
.section-head .en {
	display: block;
	font-size: 13px;
	letter-spacing: .15em;
	color: var(--color-main-deep);
	font-weight: 700;
	margin-bottom: 4px
}
.section-head h2 {
	font-size: 20px;
	margin: 0;
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
	color: var(--color-brown)
}
.section-head h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 48px;
	height: 4px;
	background: var(--color-pink);
	border-radius: 9999px
}
@media (min-width:768px) {
	.section {
		padding: 50px 0
	}
	.section-inner {
		padding: 0 20px
	}
	.section-head h2 {
		font-size: 24px
	}
}
@media (min-width:1024px) {
	.section {
		padding: 60px 0
	}
	.section-head {
		margin-bottom: 40px
	}
}
.bg-soft {
	background: var(--color-bg-soft)
}
.header-v2 {
	background: #fff;
	border-bottom: 1px solid var(--color-line);
	position: sticky;
	top: 0;
	z-index: 100
}
.header-v2-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px
}
.header-v2-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none
}
.header-v2-logo .logo-tree {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	object-fit: contain;
	display: block
}
.header-v2-logo .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	min-width: 0
}
.header-v2-logo .logo-text small {
	font-size: 12px;
	color: var(--color-pink-deep);
	font-weight: 500;
	letter-spacing: .02em;
	margin-bottom: 4px;
	white-space: nowrap
}
.header-v2-logo .logo-text strong {
	font-size: 18px;
	color: var(--color-brown);
	font-weight: 700;
	letter-spacing: .04em;
	white-space: nowrap
}
.header-v2-nav {
	display: none
}
.header-v2-nav ul {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0
}
.header-v2-nav a {
	position: relative;
	display: inline-block;
	padding: 6px 0;
	color: var(--color-text);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .06em;
	text-decoration: none;
	transition: color .2s
}
.header-v2-nav a:hover {
	color: var(--color-pink-deep);
	opacity: 1
}
.header-v2-nav a.is-active {
	color: var(--color-pink-deep)
}
.header-v2-nav a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--color-pink);
	border-radius: 2px
}
.header-v2-cta {
	display: none
}
.header-v2-cta-box {
	background: var(--color-pink-deep);
	color: #fff;
	border-radius: 12px;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	line-height: 1.3;
	box-shadow: 0 4px 12px rgba(224, 143, 161, .3);
	transition: background .2s, transform .2s;
	display: none;
	align-items: center;
	gap: 10px;
	white-space: nowrap
}
.header-v2-cta-box:hover {
	background: #c97388;
	transform: translateY(-1px);
	opacity: 1
}
.header-v2-cta-box .ic {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-pink-deep);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px
}
.header-v2-cta-box .ic svg {
	width: 14px;
	height: 14px
}
.header-v2-cta-box .cta-text {
	display: flex;
	flex-direction: column;
	text-align: left
}
.header-v2-cta-box .cta-text small {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .06em;
	opacity: .95
}
.header-v2-cta-box .cta-text strong {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .03em
}
.header-v2-hamburger {
	width: 44px;
	height: 44px;
	border: none;
	background: 0 0;
	position: relative;
	cursor: pointer;
	padding: 0
}
.header-v2-hamburger span {
	display: block;
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background: var(--color-brown);
	border-radius: 2px;
	transition: transform .3s, top .3s, opacity .3s
}
.header-v2-hamburger span:first-child {
	top: 14px
}
.header-v2-hamburger span:nth-child(2) {
	top: 21px
}
.header-v2-hamburger span:nth-child(3) {
	top: 28px
}
.header-v2-hamburger.is-open span:first-child {
	top: 21px;
	transform: rotate(45deg)
}
.header-v2-hamburger.is-open span:nth-child(2) {
	opacity: 0
}
.header-v2-hamburger.is-open span:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg)
}
@media (min-width:1024px) {
	.header-v2-inner {
		/* padding: 14px 24px; */
		padding: 14px 10px;
		gap: 24px
	}
	.header-v2-hamburger {
		display: none
	}
	.header-v2-nav {
		display: block;
		flex: 1
	}
	.header-v2-nav ul {
		justify-content: flex-end;
		/* gap: 32px */
	}
	.header-v2-cta-box {
		display: inline-flex
	}
	.header-v2-logo .logo-text small {
		font-size: 12px;
		letter-spacing: .04em
	}
	.header-v2-logo .logo-text strong {
		font-size: 26px;
		letter-spacing: .08em
	}
	.header-v2-logo .logo-tree {
		width: 64px;
		height: 64px;
		flex: 0 0 64px
	}
}
.header-v2+.sp-menu {
	top: 80px
}
.header {
	background: #fff;
	border-bottom: 1px solid var(--color-line);
	position: sticky;
	top: 0;
	z-index: 100
}
.header-hamburger {
	width: 44px;
	height: 44px;
	border: none;
	background: 0 0;
	position: relative;
	cursor: pointer;
	padding: 0
}
.header-hamburger span {
	display: block;
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform .3s, top .3s, opacity .3s
}
.header-hamburger span:first-child {
	top: 14px
}
.header-hamburger span:nth-child(2) {
	top: 21px
}
.header-hamburger span:nth-child(3) {
	top: 28px
}
.header-hamburger.is-open span:first-child {
	top: 21px;
	transform: rotate(45deg)
}
.header-hamburger.is-open span:nth-child(2) {
	opacity: 0
}
.header-hamburger.is-open span:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg)
}
.sp-menu {
	position: fixed;
	top: 60px;
	right: 0;
	bottom: 0;
	left: auto;
	width: min(72%, 320px);
	background: #fff;
	padding: 24px 20px 80px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .3s ease;
	z-index: 90;
	box-shadow: -4px 0 24px rgba(0, 0, 0, .14);
	border-left: 1px solid var(--color-line)
}
.sp-menu.is-open {
	transform: translateX(0)
}
body.sp-menu-open::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(60, 50, 35, .42);
	z-index: 80;
	animation: spMenuBackdrop .3s ease forwards
}
@keyframes spMenuBackdrop {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
.sp-menu ul {
	list-style: none;
	margin: 0 0 24px
}
.sp-menu li {
	border-bottom: 1px solid var(--color-line)
}
.sp-menu li a {
	display: block;
	padding: 16px 8px;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 600
}
.sp-menu .sp-tel {
	display: block;
	text-align: center;
	background: var(--color-pink-deep);
	color: #fff;
	border-radius: var(--radius-btn);
	padding: 14px 24px;
	font-size: 18px;
	font-weight: 700
}
@media (min-width:1024px) {
	.header-hamburger {
		display: none
	}
}
.breadcrumb {
	background: var(--color-bg-soft);
	font-size: 13px;
	padding: 10px 15px
}
.breadcrumb ol {
	max-width: 1100px;
	margin: 0 auto;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}
.breadcrumb li::after {
	content: "›";
	margin-left: 6px;
	color: var(--color-text-light)
}
.breadcrumb li:last-child::after {
	content: ""
}
.breadcrumb li a {
	color: var(--color-text-light)
}
.breadcrumb li:last-child {
	color: var(--color-text);
	font-weight: 600
}
.page-hero {
	background: linear-gradient(135deg, var(--color-bg-sky) 0, var(--color-bg-soft) 100%);
	padding: 40px 15px;
	text-align: center;
	position: relative;
	overflow: hidden
}
.page-hero h1 {
	font-size: 28px;
	color: var(--color-brown);
	margin: 0 0 6px;
	position: relative;
	z-index: 1;
	letter-spacing: .04em
}
.page-hero .en {
	display: block;
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--color-pink-deep);
	font-weight: 700;
	position: relative;
	z-index: 1
}
.page-hero::after, .page-hero::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	opacity: .35
}
.page-hero::before {
	width: 160px;
	height: 160px;
	background: var(--color-pink-soft);
	top: -60px;
	left: -60px;
	opacity: .9
}
.page-hero::after {
	width: 200px;
	height: 200px;
	background: var(--color-green-soft);
	bottom: -80px;
	right: -80px;
	opacity: .9
}
@media (min-width:768px) {
	.page-hero {
		padding: 60px 20px
	}
	.page-hero h1 {
		font-size: 32px
	}
}
@media (min-width:1024px) {
	.page-hero {
		padding: 80px 20px
	}
	.page-hero h1 {
		font-size: 36px
	}
}
.footer {
	background: #fff
}
.footer-nav {
	background: #fffcf1;
	padding: 48px 20px 40px;
	margin-top: 0;
	border-top: 1px solid var(--color-line)
}
.footer-nav-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px
}
.footer-nav-block h3 {
	font-size: 14px;
	color: var(--color-brown);
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px dotted var(--color-line)
}
.footer-nav-block ul {
	list-style: none;
	padding: 0;
	margin: 0
}
.footer-nav-block li {
	margin-bottom: 8px
}
.footer-nav-block li a {
	color: var(--color-text);
	font-size: 13px;
	display: inline-block;
	text-decoration: none;
	transition: color .2s;
	padding: 4px 0
}
.footer-nav-block li a:hover {
	color: var(--color-green-deep)
}
.footer-nav-block li a::before {
	content: "›";
	margin-right: 6px;
	color: var(--color-green);
	font-weight: 700
}
@media (min-width:768px) {
	.footer-nav {
		padding: 50px 20px
	}
	.footer-nav-inner {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px
	}
}
@media (min-width:1024px) {
	.footer-nav-inner {
		grid-template-columns: repeat(4, 1fr)
	}
}
.footer-copy {
	background: var(--color-green);
	color: #fff;
	text-align: center;
	font-size: 12px;
	padding: 18px 15px;
	margin: 0;
	letter-spacing: .04em
}
.pagetop {
	position: fixed;
	right: 12px;
	bottom: 80px;
	width: 44px;
	height: 44px;
	background: var(--color-main);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	box-shadow: var(--shadow-card);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
	z-index: 50
}
.pagetop.is-show {
	opacity: 1;
	pointer-events: auto
}
@media (min-width:1024px) {
	.pagetop {
		right: 24px;
		bottom: 24px;
		width: 50px;
		height: 50px
	}
}
.fixed-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	z-index: 60;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, .08)
}
.fixed-cta a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none
}
.fixed-cta .cta-tel {
	background: var(--color-pink-deep)
}
.fixed-cta .cta-map {
	background: var(--color-green)
}
.fixed-cta svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px
}
@media (min-width:1024px) {
	.fixed-cta {
		display: none
	}
}
@media (max-width:1023px) {
	body {
		padding-bottom: 56px
	}
}
.access-info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px
}
@media (min-width:768px) {
	.access-info {
		grid-template-columns: 1fr 1fr;
		gap: 32px
	}
}
.access-info iframe {
	width: 100%;
	min-height: 320px;
	border: 0;
	border-radius: var(--radius-card)
}
.info-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px
}
.info-table td, .info-table th {
	border-bottom: 1px solid var(--color-line);
	padding: 12px 8px;
	text-align: left;
	vertical-align: top
}
.info-table th {
	width: 110px;
	background: var(--color-bg-soft);
	font-weight: 700;
	color: var(--color-main-deep)
}
.legal-body h2 {
	font-size: 20px;
	margin: 32px 0 12px;
	color: var(--color-main-deep);
	border-left: 4px solid var(--color-accent);
	padding-left: 12px
}
.legal-body p {
	font-size: 15px
}
.legal-body ul {
	padding-left: 1.4em;
	margin: 0 0 16px
}
.legal-body li {
	margin-bottom: 6px;
	font-size: 15px
}
.topDoctor-section {
	background: #fff;
	padding-top: 60px
}
.topDoctor-wrap {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 60px 10px;
	margin: 0 auto
}
.topDoctor {
	flex: 1;
	min-width: 0;
	background: #fff;
	border-radius: 8px;
	overflow: hidden
}
.topDoctor-inner {
	display: flex;
	flex-direction: column;
	align-items: center
}
.topDoctor-img {
	flex-shrink: 0;
	width: 90%;
	max-width: 400px;
	margin: 0 auto
}
.topDoctor-img img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	object-fit: cover
}
.topDoctor-img .dr-photos {
	position: relative;
	width: 100%;
	max-width: 460px;
	aspect-ratio: 1/1.05;
	margin: 0 auto
}
.topDoctor-img .dr-photo {
	position: absolute;
	display: block;
	border-radius: 8px;
	object-fit: cover
}
.topDoctor-img .dr-photo-main {
	top: 0;
	right: 0;
	width: 65%;
	aspect-ratio: 3/4;
	height: auto;
	z-index: 1
}
.topDoctor-img .dr-photo-sub {
	left: 0;
	bottom: 0;
	width: 62%;
	aspect-ratio: 4/3;
	height: auto;
	z-index: 2;
	border: 5px solid #fff;
	box-shadow: 0 10px 30px rgba(60, 80, 40, .15);
	background: #fff
}
.topDoctor-text {
	flex: 1;
	padding: 15px 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center
}
.topDoctor-text h3 {
	font-size: 18px;
	color: var(--color-brown);
	font-weight: 700;
	margin-bottom: 5px;
	line-height: 1.3
}
.topDoctor-text h3 span {
	display: block;
	font-size: 14px;
	font-family: Lato, "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: var(--color-green-deep);
	letter-spacing: 2px;
	margin-top: 2px
}
.topDoctor-name {
	margin: 15px 0;
	font-size: 14px;
	color: var(--color-brown);
	text-align: center
}
.topDoctor-name .clinic-label {
	display: block;
	font-size: 13px;
	color: var(--color-text-mute);
	margin-bottom: 4px
}
.topDoctor-name .name {
	font-size: 20px;
	font-weight: 700;
	display: block;
	margin-top: 2px;
	letter-spacing: 3px;
	color: var(--color-brown)
}
.topDoctor-text p {
	font-size: 16px;
	line-height: 1.9;
	color: var(--color-text);
	text-align: left
}
.topDoctor-btn {
	margin-top: 20px;
	text-align: center
}
.topDoctor-btn a {
	display: inline-block;
	background: #fff;
	color: var(--color-brown);
	border: 2px solid var(--color-brown);
	padding: 10px 25px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all .3s
}
.topDoctor-btn a:hover {
	background: var(--color-brown);
	color: #fff;
	opacity: 1
}
@media (min-width:768px) {
	.topDoctor-wrap {
		padding: 60px 15px
	}
	.topDoctor-img {
		width: 60%;
		max-width: 280px;
		margin: 20px auto 0
	}
	.topDoctor-text {
		padding: 20px 15px
	}
	.topDoctor-text h3 {
		font-size: 22px
	}
	.topDoctor-name .name {
		font-size: 22px
	}
}
@media (min-width:1024px) {
	.topDoctor-wrap {
		max-width: 1280px;
		padding: 60px 0 80px
	}
	.topDoctor-inner {
		flex-direction: row-reverse;
		align-items: stretch
	}
	.topDoctor-img {
		width: 38%;
		max-width: none;
		margin: 0;
		padding-right: 30px;
		padding-left: 0;
		display: flex;
		align-items: center;
		justify-content: center
	}
	.topDoctor-text {
		padding: 50px 50px 50px 60px;
		text-align: left;
		flex: 1
	}
	.topDoctor-text h3 {
		font-size: 28px
	}
	.topDoctor-name {
		text-align: left
	}
	.topDoctor-name .name {
		font-size: 26px
	}
	.topDoctor-btn {
		text-align: left
	}
	.topDoctor-btn a {
		padding: 12px 40px;
		font-size: 14px
	}
}
.topInfoSchedule-wrap {
	background: #fff;
	padding: 25px 0 30px;
	border-bottom: 1px solid var(--color-line)
}
.topInfoSchedule {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 0 auto;
	max-width: 1080px;
	text-align: left;
	padding: 0 10px
}
.topInfo {
	width: 100%
}
.topInfo-heading {
	text-align: center;
	margin-bottom: 25px
}
.topInfo-heading h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-brown);
	letter-spacing: 2px;
	margin-bottom: 3px
}
.topInfo-heading span {
	display: block;
	font-size: 12px;
	font-family: Lato, "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: var(--color-green-deep);
	letter-spacing: 2px
}
.topInfo-list {
	list-style: none;
	padding: 0;
	margin: 0;
	min-height: 164px;
	border-bottom: 1px solid #ddd
}
.topInfo-list li {
	padding: 14px 0 14px 12px;
	border-bottom: 1px solid #ddd;
	display: flex;
	align-items: baseline;
	gap: 15px;
	font-size: 14px
}
.topInfo-list li:last-child {
	border-bottom: none
}
.topInfo-list li:first-child {
	border-top: 1px solid #ddd
}
.topInfo-list .info-date {
	flex-shrink: 0;
	color: var(--color-text-mute);
	font-size: 13px;
	white-space: nowrap
}
.topInfo-list .info-title a {
	color: var(--color-brown);
	text-decoration: underline
}
.topInfo-list .info-title a:hover {
	color: var(--color-pink-deep);
	opacity: 1
}
.topInfo-empty {
	min-height: 164px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 12px;
	text-align: center;
	color: var(--color-text-mute);
	font-size: 14px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background: #fafafa
}
.topInfo-more {
	text-align: center;
	margin-top: 20px
}
.topInfo-more a {
	display: inline-block;
	border: 2px solid var(--color-brown);
	color: var(--color-brown);
	padding: 10px 40px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: all .3s;
	text-decoration: none
}
.topInfo-more a:hover {
	background: var(--color-brown);
	color: #fff;
	opacity: 1
}
.topSchedule {
	width: 100%
}
.topSchedule-heading {
	text-align: center;
	margin-bottom: 25px
}
.topSchedule-heading h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-brown);
	letter-spacing: 2px;
	margin-bottom: 3px
}
.topSchedule-heading span {
	display: block;
	font-size: 12px;
	font-family: Lato, "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: var(--color-green-deep);
	letter-spacing: 2px
}
.topSchedule-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
	display: table;
	overflow-x: visible
}
.topSchedule-table td, .topSchedule-table th {
	border: 1px solid #dfdfdf;
	padding: 8px 6px;
	text-align: center;
	font-size: 13px
}
.topSchedule-table thead th {
	background: var(--color-green);
	color: #fff;
	font-weight: 700
}
.topSchedule-table tbody td.time-col {
	background: var(--color-green-soft);
	font-weight: 700;
	white-space: nowrap;
	text-align: left;
	padding-left: 12px
}
.topSchedule-bottom {
	display: flex;
	flex-direction: column;
	margin-top: 12px;
	gap: 8px
}
.topSchedule-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	flex-wrap: wrap
}
.topSchedule-meta .closed-label {
	color: var(--color-pink-deep);
	font-weight: 700;
	margin-right: 2px
}
.topSchedule-meta .closed-days {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-pink);
	color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap
}
.topSchedule-sub {
	display: flex;
	flex-direction: column;
	gap: 4px
}
.topSchedule-sub .time-info {
	font-size: 16px;
	color: var(--color-brown)
}
.topSchedule-sub .time-info strong {
	font-size: 17px
}
.topSchedule-note {
	font-size: 14px;
	color: var(--color-brown);
	line-height: 1.7
}
@media (min-width:768px) {
	.topInfoSchedule {
		padding: 0 20px
	}
	.topInfo-heading h2, .topSchedule-heading h2 {
		font-size: 22px;
		letter-spacing: 2px
	}
	.topSchedule-table td, .topSchedule-table th {
		padding: 10px 12px;
		font-size: 14px
	}
}
@media (min-width:1024px) {
	.topInfoSchedule-wrap {
		padding: 50px 0 60px
	}
	.topInfoSchedule {
		flex-direction: row;
		gap: 40px;
		padding: 0
	}
	.topInfo {
		width: 50%
	}
	.topSchedule {
		width: 50%
	}
	.topInfo-heading h2, .topSchedule-heading h2 {
		font-size: 26px;
		letter-spacing: 3px
	}
	.topInfo-list li {
		padding-left: 0
	}
	.topSchedule-table td, .topSchedule-table th {
		padding: 12px 8px;
		font-size: 14px
	}
	.topSchedule-bottom {
		flex-direction: column;
		gap: 8px
	}
	.topSchedule-sub {
		flex-direction: column;
		gap: 4px
	}
}
.txt-center {
	text-align: center
}
.mt-32 {
	margin-top: 32px!important
}
/* recruit */

.rc-vh {
	max-width: 980px;
	margin: 0 auto 28px;
	text-align: left
}
.rc-vh-en {
	display: block;
	font-size: 12px;
	letter-spacing: .18em;
	color: var(--color-green-deep);
	font-weight: 700;
	margin-bottom: 6px
}
.rc-vh h2 {
	font-size: 22px;
	color: var(--color-brown);
	margin: 0;
	padding-bottom: 12px;
	position: relative;
	display: inline-block
}
.rc-vh h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	background: var(--color-pink);
	border-radius: 2px
}
@media (min-width:768px) {
	.rc-vh h2 {
		font-size: 28px
	}
}
.rc-section-relative {
	position: relative
}
.rc-leaf--tl {
	position: absolute;
	top: -10px;
	left: -12px;
	width: 160px;
	height: auto;
	pointer-events: none;
	opacity: .55
}
.rc-banner-section {
	padding-top: 32px;
	padding-bottom: 32px
}
@media (min-width:768px) {
	.rc-banner-section {
		padding-top: 40px;
		padding-bottom: 40px
	}
}
@media (min-width:1024px) {
	.rc-banner-section {
		padding-top: 48px;
		padding-bottom: 48px
	}
}
.rc-lead {
	max-width: 800px;
	margin: 0 auto;
	text-align: center
}
.rc-lead__text {
	font-size: 16px;
	line-height: 2;
	color: var(--color-text);
	margin: 0 0 28px
}
@media (min-width:768px) {
	.rc-lead__text {
		font-size: 17px
	}
}
.rc-positions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0
}
.rc-positions li {
	display: flex;
	align-items: center;
	background: #fff;
	border: 2px solid var(--color-green);
	color: var(--color-brown);
	border-radius: var(--radius-btn);
	box-shadow: 0 2px 8px rgba(110, 160, 60, .08);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .5s, transform .5s, border-color .2s, box-shadow .2s
}
.rc-positions.is-visible li:nth-child(1) {
	opacity: 1;
	transform: none;
	transition-delay: .1s
}
.rc-positions.is-visible li:nth-child(2) {
	opacity: 1;
	transform: none;
	transition-delay: .25s
}
.rc-positions__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 32px;
	color: var(--color-brown);
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	transition: inherit
}
.rc-positions__link:hover, .rc-positions__link:visited {
	color: var(--color-brown);
	opacity: 1
}
.rc-positions li:has(.rc-positions__link):hover, .rc-positions li:has(.rc-positions__link):focus-within {
	border-color: var(--color-green-deep);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(90, 160, 13, .15)
}
.rc-positions__link:focus-visible {
	outline: 2px solid var(--color-green-deep);
	outline-offset: 3px;
	border-radius: var(--radius-btn)
}
.rc-positions__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-green);
	flex-shrink: 0
}
@media (min-width:768px) {
	.rc-positions__link {
		font-size: 17px;
		padding: 12px 40px
	}
}
.rc-banner {
	max-width: 980px;
	margin: 0 auto;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	background: var(--color-bg-soft);
	opacity: 0;
	transform: scale(.98) translateY(16px);
	transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1)
}
.rc-banner.is-visible {
	opacity: 1;
	transform: scale(1) translateY(0)
}
.rc-banner picture {
	display: block
}
.rc-banner img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle
}
.rc-cta-section {
	background: linear-gradient( 135deg, var(--color-green-soft) 0%, var(--color-bg-soft) 60%, var(--color-pink-soft) 100%);
	overflow: hidden
}
.rc-deco-circle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none
}
.rc-deco-circle--lt {
	width: 220px;
	height: 220px;
	background: var(--color-pink-soft);
	opacity: .65;
	top: -80px;
	left: -80px
}
.rc-deco-circle--rb {
	width: 280px;
	height: 280px;
	background: var(--color-green-soft);
	opacity: .65;
	bottom: -100px;
	right: -100px
}
.rc-cta-section .section-inner {
	position: relative;
	z-index: 1
}
.rc-cta {
	max-width: 640px;
	margin: 0 auto;
	text-align: center
}
.rc-cta__lead {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-brown);
	margin: 0 0 28px;
	letter-spacing: .04em
}
@media (min-width:768px) {
	.rc-cta__lead {
		font-size: 24px
	}
}
.rc-tel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: var(--color-pink-deep);
	color: #fff;
	border-radius: var(--radius-btn);
	padding: 16px 36px;
	text-decoration: none;
	min-width: 260px;
	box-shadow: 0 6px 20px rgba(224, 143, 161, .35);
	transition: background .2s, transform .25s, box-shadow .25s
}
.rc-tel-btn:hover, .rc-tel-btn:focus-visible {
	background: #c97388;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(201, 115, 136, .38);
	opacity: 1
}
.rc-tel-btn:active {
	transform: translateY(-1px);
	transition-duration: .08s
}
.rc-tel-btn__icon {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .22);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .3s
}
.rc-tel-btn:hover .rc-tel-btn__icon {
	transform: rotate(8deg) scale(1.08)
}
.rc-tel-btn__icon svg {
	width: 22px;
	height: 22px;
	fill: #fff
}
.rc-tel-btn__text {
	display: flex;
	flex-direction: column;
	text-align: left
}
.rc-tel-btn__text small {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .06em;
	opacity: .9;
	margin-bottom: 2px
}
.rc-tel-btn__text strong {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1
}
@media (min-width:768px) {
	.rc-tel-btn__text strong {
		font-size: 30px
	}
}
.rc-cta__hours {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--color-text-mute);
	line-height: 1.9
}
.rc-visit__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 28px auto 0;
	max-width: 320px;
	opacity: .55
}
.rc-visit__divider::before, .rc-visit__divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--color-line)
}
.rc-visit__divider svg {
	width: 20px;
	height: 14px;
	flex: 0 0 20px
}
.rc-visit {
	margin: 12px auto 0;
	max-width: 400px;
	text-align: center
}
.rc-visit__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
	color: var(--color-green-deep);
	letter-spacing: .1em;
	margin-bottom: 8px
}
.rc-visit__label::before, .rc-visit__label::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-green);
	opacity: .7
}
.rc-visit__text {
	margin: 0;
	font-size: 14px;
	color: var(--color-text-mute);
	line-height: 1.9
}
.rc-requirements {
	margin-top: 56px
}
.rc-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 980px;
	margin: 0 auto
}
@media (min-width:768px) {
	.rc-cards {
		grid-template-columns: 1fr 1fr;
		gap: 24px
	}
}
.rc-card {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	padding: 24px;
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden
}
.rc-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-green) 0%, var(--color-pink) 100%)
}
.rc-card__title {
	font-size: 19px;
	color: var(--color-brown);
	font-weight: 700;
	margin: 0 0 16px
}
.rc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px
}
.rc-table tr {
	border-bottom: 1px solid var(--color-line)
}
.rc-table tr:last-child {
	border-bottom: none
}
.rc-table th {
	width: 90px;
	padding: 10px 8px 10px 0;
	color: var(--color-green-deep);
	font-weight: 700;
	font-size: 13px;
	vertical-align: top;
	white-space: nowrap
}
.rc-table td {
	padding: 10px 0;
	color: var(--color-text);
	vertical-align: top;
	line-height: 1.75
}
@media (prefers-reduced-motion:reduce) {
	.rc-banner, .rc-positions li, .rc-tel-btn, .rc-tel-btn__icon {
		transition: none !important;
		animation: none !important
	}
	.rc-banner {
		opacity: 1;
		transform: none
	}
	.rc-positions li {
		opacity: 1;
		transform: none
	}
}