:root {
	--color-bg: #f6f1eb;
	--color-surface: #fffdfa;
	--color-text: #221f1c;
	--color-muted: #72685f;
	--color-accent: #c18c71;
	--color-accent-deep: #8d5d45;
	--color-line: rgba(34, 31, 28, 0.08);
	--font-en: "Inter", Arial, sans-serif;
	--font-heading: "Inter", "pretendard", "Pretendard", sans-serif;
	--font-body: "pretendard", "Pretendard", "Noto Sans KR", sans-serif;
	--font-en-18: 18pt;
	--font-en-24: 24pt;
	--font-en-28: 28pt;
	--radius-lg: 28px;
	--radius-md: 18px;
	--shadow-card: 0 20px 45px rgba(39, 27, 19, 0.08);
	--container: min(1400px, calc(100vw - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: linear-gradient(180deg, #fbf7f2 0%, #f4ede5 100%);
	color: var(--color-text);
	font-family: var(--font-body);
	line-height: 1.6;
}

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

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.stack-xs > * + * {
	margin-top: 0.5rem;
}

.stack-sm > * + * {
	margin-top: 0.875rem;
}

.stack-md > * + * {
	margin-top: 1.25rem;
}

.stack-lg > * + * {
	margin-top: 2rem;
}

.site-shell {
	min-height: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 80px;
}

.site-brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 12px;
	color: #111;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.site-brand__logo {
	display: block;
	width: 250px;
	max-width: 100%;
	height: auto;
	max-height: 40px;
	object-fit: contain;
}

.site-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 3px solid currentColor;
	border-radius: 999px;
	font-size: 1.35rem;
}

.site-brand__name {
	font-family: var(--font-body);
	font-size: 1.35rem;
	letter-spacing: 0;
}

.site-nav-panel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-surface);
	cursor: pointer;
}

.nav-toggle__line {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--color-text);
}

.submenu-toggle {
	display: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.menu {
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu li {
	position: relative;
	margin: 0;
}

.menu a {
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 0 13px;
	color: #111;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.menu > .is-current > a,
.menu > .is-current-parent > a {
	color: #6a3c99;
}

.menu > .is-current > a::after,
.menu > .is-current-parent > a::after {
	opacity: 1;
}

.menu > li > a::after {
	position: absolute;
	right: 13px;
	bottom: 0;
	left: 13px;
	height: 2px;
	background: #6a3c99;
	content: "";
	opacity: 0;
	transition: opacity 0.18s ease;
}

.menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 40;
	display: block;
	min-width: 150px;
	padding: 0;
	margin: 0;
	list-style: none;
	background: #fff;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.menu .sub-menu a {
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	color: #222;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: center;
}

.menu .sub-menu a:hover,
.menu .sub-menu a:focus,
.menu .sub-menu .is-current > a {
	color: #6a3c99;
	font-weight: 800;
}

.hero,
.page-shell {
	padding: 72px 0;
}

.home-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 82px);
	background: #111;
}

.home-hero__slides {
	position: absolute;
	inset: 0;
}

.home-hero__slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.8s ease, transform 1.2s ease;
	pointer-events: none;
}

.home-hero__slide::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.06) 100%);
	content: "";
}

.home-hero__slide--clear::before {
	display: none;
}

.home-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	width: var(--container);
	margin: 0 auto;
}

.home-hero__copy {
	width: min(100%, 720px);
	color: #fff;
}

.home-hero__eyebrow {
	margin: 0 0 20px;
	color: #cdb5e7;
	font-family: var(--font-en);
	font-size: var(--font-en-18);
	font-weight: 900;
	letter-spacing: 0.08em;
}

.home-hero__copy h1 {
	margin: 0;
	font-size: clamp(2.5rem, 4.4vw, 4.2rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.home-hero__copy p:not(.home-hero__eyebrow) {
	margin: 28px 0 0;
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 500;
	line-height: 1.75;
}

.home-hero__controls {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 42px;
	display: flex;
	gap: 12px;
	transform: translateX(-50%);
}

.home-hero__dot {
	width: 42px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: width 0.2s ease, background 0.2s ease;
}

.home-hero__dot.is-active {
	width: 74px;
	background: #6a3c99;
}

.home-section-header {
	display: grid;
	gap: 12px;
}

.home-section-header--center {
	justify-items: center;
	text-align: center;
}

.home-section-eyebrow {
	margin: 0;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: var(--font-en-18);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-section-header h2,
.home-promotion-copy h2 {
	margin: 0;
	color: #111;
	font-family: var(--font-heading);
	font-size: clamp(2.15rem, 3.6vw, 3.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
}

.home-signature-section {
	overflow: hidden;
	padding: 110px 0 118px;
	background: #fff;
}

.home-signature-slider {
	margin-top: 58px;
	overflow: hidden;
}

.home-signature-track {
	display: flex;
	gap: 28px;
	width: max-content;
	animation: home-signature-slide 42s linear infinite;
	will-change: transform;
}

.home-signature-slider:hover .home-signature-track,
.home-promotion-slider:hover .home-promotion-track {
	animation-play-state: paused;
}

.home-signature-card {
	position: relative;
	display: block;
	flex: 0 0 clamp(280px, 25vw, 420px);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #eee;
	color: inherit;
	text-decoration: none;
}

.home-signature-card img,
.home-promotion-card img,
.home-specialty-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-signature-card::after,
.home-specialty-card::after {
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
	content: "";
}

.home-signature-card strong,
.home-specialty-card strong {
	position: absolute;
	z-index: 1;
	left: 28px;
	bottom: 24px;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 800;
}

.home-promotion-section {
	overflow: hidden;
	padding: 128px 0;
	background: #efefef;
}

.home-promotion-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
	gap: 64px;
	align-items: center;
}

.home-promotion-copy {
	display: grid;
	gap: 22px;
}

.home-promotion-copy p:not(.home-section-eyebrow) {
	margin: 0;
	color: #555;
	font-size: 1.15rem;
	font-weight: 600;
}

.home-text-link {
	justify-self: start;
	margin-top: 10px;
	color: #6a3c99;
	font-weight: 900;
}

.home-promotion-slider {
	overflow: hidden;
}

.home-promotion-track {
	display: flex;
	justify-content: center;
	gap: 24px;
	width: 100%;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.home-promotion-card {
	position: relative;
	flex: 0 0 min(100%, 760px);
	max-width: 760px;
	overflow: hidden;
	background: transparent;
}

.home-promotion-card::after {
	display: none;
	content: none;
}

.home-promotion-card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1000 / 1131;
	object-fit: contain;
}

.home-promotion-empty {
	display: grid;
	place-items: center;
	min-height: 340px;
	background: #fff;
	color: #777;
	font-weight: 700;
}

.home-philosophy-section {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	padding: 210px 0;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.home-philosophy-section::before {
	position: absolute;
	inset: 0;
	background: rgba(18, 15, 21, 0.58);
	content: "";
}

.home-philosophy-container {
	position: relative;
	z-index: 1;
}

.home-philosophy {
	gap: 44px;
}

.artline-ready .home-philosophy[data-reveal] {
	transition-delay: 0.38s;
}

.home-philosophy .doctors-intro__header h2,
.home-philosophy .doctors-intro__copy p {
	color: #fff;
}

.home-philosophy .doctors-intro__eyebrow {
	color: #c5a3e8;
}

.home-specialty-section {
	padding: 118px 0 128px;
	background: #f7f7f7;
}

.home-specialty-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 56px;
}

.home-specialty-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #ddd;
}

@keyframes home-signature-slide {
	to {
		transform: translateX(calc(-50% - 14px));
	}
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.eyebrow {
	margin: 0;
	color: var(--color-accent-deep);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.8rem);
}

h3 {
	font-size: 1.4rem;
}

.lead {
	max-width: 62ch;
	color: var(--color-muted);
	font-size: 1.06rem;
}

.hero-card,
.info-card,
.content-block,
.cta-panel,
.entry-card {
	padding: 28px;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.entry-content {
	max-width: 860px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content img,
.entry-content figure {
	max-width: 100%;
	height: auto;
}

.entry-content figure {
	margin: 2rem 0;
}

.entry-content figcaption {
	margin-top: 0.6rem;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.entry-content a {
	color: var(--color-accent-deep);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.hero-card__label {
	margin: 0;
	color: var(--color-accent-deep);
	font-weight: 700;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 600;
}

.button--primary {
	background: var(--color-text);
	color: #fff;
}

.button--ghost {
	border: 1px solid var(--color-line);
	background: rgba(255, 255, 255, 0.5);
}

.grid {
	display: grid;
	gap: 22px;
}

.grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-block__body > :first-child {
	margin-top: 0;
}

.site-footer {
	position: relative;
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.pre-footer-banner {
	min-height: 520px;
	padding: 78px 0;
	background-color: #d8e8f5;
	background-image: url("../../img/common/banner01_bg.jpg");
	background-position: center;
	background-size: cover;
}

.pre-footer-banner__inner {
	display: flex;
	align-items: center;
	min-height: 364px;
}

.pre-footer-banner__card {
	width: min(100%, 420px);
	padding: 46px 46px 44px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(8px);
	box-shadow: 0 26px 55px rgba(0, 0, 0, 0.12);
}

.pre-footer-banner__logo {
	width: 180px;
	height: auto;
}

.pre-footer-banner__line {
	height: 1px;
	margin: 26px 0 28px;
	background: rgba(0, 0, 0, 0.14);
}

.pre-footer-banner__info {
	display: grid;
	gap: 22px;
	margin: 0;
	color: #202020;
}

.pre-footer-banner__info dt {
	margin: 0 0 8px;
	font-weight: 900;
}

.pre-footer-banner__info dd {
	margin: 0;
	color: #4a4a4a;
	font-size: 1rem;
	line-height: 1.65;
}

.pre-footer-banner__info a {
	color: #111;
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.1;
}

.pre-footer-banner__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 38px;
}

.pre-footer-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 900;
	text-align: center;
}

.pre-footer-banner__button--primary {
	background: #6a3c99;
	color: #fff;
}

.pre-footer-banner__button--secondary {
	background: #7d7d7d;
	color: #fff;
}

.site-footer__contact-area {
	padding: 76px 0 120px;
	background: #e7e7e7;
}

.footer-location {
	display: grid;
	grid-template-columns: minmax(360px, 0.72fr) minmax(720px, 1.28fr);
	gap: 74px;
	align-items: start;
}

.footer-location__title {
	margin: 0 0 10px;
	color: #111;
	font-family: var(--font-body);
	font-size: 2.75rem;
	font-weight: 800;
	letter-spacing: 0;
}

.footer-location__address {
	margin: 0;
	color: #444;
	font-size: 1.1rem;
	line-height: 1.65;
}

.footer-location__details {
	display: grid;
	gap: 20px;
	margin-top: 64px;
	color: #111;
	font-size: 1rem;
}

.footer-detail {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 20px;
	margin: 0;
	align-items: baseline;
}

.footer-detail__label {
	font-weight: 800;
	white-space: nowrap;
}

.footer-detail a {
	color: #723a9b;
	font-size: 1.85rem;
	font-weight: 700;
}

.footer-hours {
	display: grid;
	gap: 14px;
	margin: 0;
}

.footer-hours div {
	display: grid;
	grid-template-columns: 64px max-content;
	gap: 16px;
	align-items: baseline;
}

.footer-hours dt {
	font-weight: 800;
}

.footer-hours dd {
	margin: 0;
	white-space: nowrap;
}

.footer-note {
	margin: 22px 0 0;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
}

.footer-map {
	min-height: 380px;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #eee;
}

.footer-google-map,
.footer-kakao-map,
.footer-map-fallback {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
}

.footer-map-fallback {
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	color: #555;
	font-size: 16px;
	text-align: center;
}

.footer-map.is-fallback .footer-kakao-map {
	display: none;
}

.footer-map.is-fallback .footer-map-fallback {
	display: flex;
}

.footer-map-fallback p {
	margin: 0;
}

.footer-map-fallback a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	border: 1px solid #6a3c99;
	border-radius: 999px;
	color: #6a3c99;
	font-weight: 700;
	text-decoration: none;
}

.site-footer__bottom {
	padding: 64px 0 72px;
	background: #474747;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	color: #111;
}

.site-footer__bottom-inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
	gap: 70px;
	align-items: start;
}

.site-footer__brand-area {
	display: grid;
	gap: 46px;
}

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

.footer-social {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
}

.footer-social img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.site-footer__legal {
	display: grid;
	justify-items: end;
	gap: 34px;
	min-width: 0;
	text-align: right;
}

.site-footer__company {
	display: grid;
	gap: 12px;
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.55;
}

.site-footer__company p {
	margin: 0;
}

.site-footer__company span {
	color: #a9a9a9;
	margin: 0 10px;
}

.site-footer__admin-link {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__admin-link:hover,
.site-footer__admin-link:focus-visible {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.13);
	color: #fff;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu a {
	color: #ad91b3;
	font-size: 1rem;
	font-weight: 800;
}

.quick-actions {
	position: fixed;
	right: 22px;
	top: 50%;
	bottom: auto;
	z-index: 50;
	display: grid;
	gap: 10px;
	transform: translateY(-50%);
}

.quick-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	gap: 4px;
	border-radius: 999px;
	color: #111;
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.quick-action__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.quick-action__text {
	display: block;
}

.quick-action--cost {
	background: #cda5e1;
}

.quick-action--cost .quick-action__icon {
	background-image: url("../../img/icon/icon-calculator.svg");
}

.quick-action--call {
	background: #64c3c7;
	display: none;
}

.quick-action--call .quick-action__icon {
	background-image: url("../../img/icon/icon-phone2.svg");
}

.quick-action--kakao {
	background: #f1cf1b;
}

.quick-action--kakao .quick-action__icon {
	background-image: url("../../img/icon/icon-kakao.svg");
}

.quick-action--location {
	background: #f7c6d4;
}

.quick-action--location .quick-action__icon {
	background-image: url("../../img/icon/icon-location.svg");
}

.quick-action--top {
	background: #050505;
	color: #fff;
}

.quick-action--top .quick-action__icon {
	background-image: url("../../img/icon/icon-top.svg");
	filter: invert(1);
}

.site-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	overflow: auto;
	padding: 40px 20px;
	background: rgba(0, 0, 0, 0.71);
	box-sizing: border-box;
}

.site-popup-overlay.is-open {
	display: block;
}

.site-popup {
	width: min(100%, 660px);
	margin: 0 auto;
	background: transparent;
	box-shadow: none;
}

.site-popup__inner {
	padding: 20px 0;
}

.site-popup__image {
	margin: 0;
}

.site-popup__image a,
.site-popup__image img {
	display: block;
}

.site-popup__image img {
	width: 100%;
	height: auto;
}

.site-popup__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: -6px;
	background: rgba(0, 0, 0, 0.72);
}

.site-popup__hide {
	display: inline-flex;
	flex: 1 1 auto;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding-left: 20px;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
}

.site-popup__hide input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #6a3c99;
}

.site-popup__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.site-popup-lock {
	overflow: hidden;
}

[data-reveal] {
	transition:
		opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
		transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.artline-ready [data-reveal] {
	opacity: 0;
	transform: translateY(54px);
}

.artline-ready [data-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.artline-ready .doctors-intro__stat[data-reveal]:nth-child(2),
.artline-ready .doctor-slot:nth-child(2) .doctor-card[data-reveal] {
	transition-delay: 0.12s;
}

.artline-ready .doctors-intro__stat[data-reveal]:nth-child(3) {
	transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		transition: none;
	}

	.artline-ready [data-reveal] {
		opacity: 1;
		transform: none;
	}
}

.doctors-hero {
	display: grid;
	place-items: center;
	min-height: 520px;
	background:
		linear-gradient(rgba(38, 31, 27, 0.42), rgba(38, 31, 27, 0.42)),
		linear-gradient(135deg, #d4c8bd 0%, #efe7de 48%, #b6aaa0 100%);
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.doctors-hero--image {
	background-blend-mode: multiply, normal;
}

.doctors-hero__overlay {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: var(--container);
	margin: 0 auto;
}

.doctors-hero__titlebar {
	display: grid;
	justify-items: start;
	gap: 14px;
	color: #6a3c99;
	text-align: left;
}

.doctors-hero__main-title {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 20px;
	margin: 0;
	font-family: var(--font-en);
	font-size: clamp(2.5rem, 4.7vw, 4.2rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
}

.doctors-hero__main-title span {
	display: inline-block;
	opacity: 0;
	will-change: transform, opacity, color;
}

.doctors-hero__main-title .word-up {
	color: #fff;
	transform: translateY(100px);
	animation: doctors-word-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.doctors-hero__main-title .word-down {
	color: #fff;
	transform: translateY(-100px);
	animation:
		doctors-word-down 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
		doctors-word-color 0.8s ease 1.2s forwards;
}

.doctors-hero__subtitle {
	margin: 0;
	color: #6a3c99;
	font-family: var(--font-body);
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 500;
	opacity: 0;
	transform: translateY(20px);
	animation: doctors-subtitle-up 1s ease 1s forwards;
}

@keyframes doctors-word-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes doctors-word-down {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes doctors-word-color {
	to {
		color: #6a3c99;
	}
}

@keyframes doctors-subtitle-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.doctors-section {
	padding: 92px 0 96px;
	background: #fff;
}

.doctors-intro {
	display: grid;
	gap: 58px;
}

.doctors-intro__header {
	display: grid;
	gap: 12px;
	text-align: center;
}

.doctors-intro__eyebrow {
	margin: 0;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: var(--font-en-18);
	font-weight: 800;
	letter-spacing: 0.04em;
}

.doctors-intro__header h2 {
	margin: 0;
	color: #111;
	font-family: var(--font-body);
	font-size: clamp(1.85rem, 3.36vw, 3.22rem);
	font-weight: 800;
	line-height: 1.15;
}

.doctors-intro__body {
	width: min(100%, 940px);
	margin: 0 auto;
	text-align: center;
}

.doctors-intro__copy p {
	margin: 0;
	color: #444;
	font-size: 1.08rem;
	line-height: 1.9;
	word-break: keep-all;
}

.doctors-intro__copy p + p {
	margin-top: 18px;
}

.doctors-intro__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	color: #111;
}

.doctors-intro__stat {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 10px;
	width: min(100%, 300px);
	aspect-ratio: 1;
	margin: 0 auto;
	border: 1px solid rgba(106, 60, 153, 0.32);
	border-radius: 999px;
	text-align: center;
	background-color: #d7c9df;
}

.doctors-intro__stat strong {
	color: #814ab9;
	font-family: var(--font-en);
	font-size: clamp(2rem, 3.2vw, 2.95rem);
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1;
	white-space: nowrap;
}

.doctors-intro__stat span {
	max-width: 180px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
	word-break: keep-all;
}

.doctors-members-section {
	padding: 92px 0 110px;
	background: #f4f4f4;
}

.doctors-board {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 84px;
	align-items: start;
}

.doctor-slot {
	display: grid;
	align-items: start;
	min-width: 0;
}

.doctor-slot.is-profile-target {
	justify-items: stretch;
}

.doctor-card {
	display: grid;
	justify-items: center;
	gap: 22px;
}

.doctor-card[hidden] {
	display: none;
}

.doctor-card__media {
	width: min(100%, 620px);
	overflow: visible;
	border-radius: 0;
	background: transparent;
}

.doctor-card__media img {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
}

.doctor-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: rgba(0, 0, 0, 0.22);
	font-family: var(--font-en);
	font-size: var(--font-en-24);
	font-weight: 800;
}

.doctor-card__caption {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.doctor-card__caption h2 {
	font-family: var(--font-body);
	font-size: 1.65rem;
	font-weight: 900;
	letter-spacing: 0;
}

.doctor-detail-button {
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid #999;
	border-radius: 9px;
	background: #f1f1ef;
	color: #555;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	cursor: pointer;
}

.doctor-profile-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	height: 797px;
	padding: 30px 40px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	box-shadow: 0 24px 50px rgba(20, 20, 20, 0.08);
}

.doctor-profile-panel.is-scrollable {
	overflow-x: hidden;
	overflow-y: auto;
}

.doctor-profile-panel[hidden] {
	display: none;
}

.doctor-panel-close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 999px;
	background: #fff;
	color: #222;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
}

.doctor-profile-panel__specialty {
	margin: 0 0 22px;
	color: #5b3583;
	font-size: 1.3rem;
	font-weight: 800;
}

.doctor-profile-panel__en {
	margin: 0 0 8px;
	font-family: var(--font-en);
	font-size: var(--font-en-28);
	font-weight: 600;
	line-height: 1.12;
}

.doctor-profile-panel h2 {
	margin: 0 0 44px;
	font-family: var(--font-body);
	font-size: 2.45rem;
	font-weight: 900;
	letter-spacing: 0;
}

.doctor-profile-panel h3 {
	margin: 0 0 14px;
	color: #737373;
	font-family: var(--font-body);
	font-size: 1.15rem;
	font-weight: 900;
	letter-spacing: 0;
}

.doctor-profile-panel ul {
	display: grid;
	padding: 0;
	margin: 0;
	list-style: none;
	color: #333;
	font-size: 0.98rem;
	line-height: 1.45;
}

.doctor-profile-panel li {
	position: relative;
	padding: 8px 0 8px 18px;
	/*border-bottom: 1px solid rgba(0, 0, 0, 0.07);*/
}

.doctor-profile-panel li:first-child {
	/*border-top: 1px solid rgba(0, 0, 0, 0.07);*/
}

.doctor-profile-panel li::before {
	position: absolute;
	top: 18px;
	left: 0;
	width: 6px;
	height: 6px;
	background: #a278c9;
	content: "";
}

.location-hero {
	display: grid;
	align-items: center;
	min-height: 520px;
	background:
		linear-gradient(rgba(38, 31, 27, 0.42), rgba(38, 31, 27, 0.42)),
		linear-gradient(135deg, #d4c8bd 0%, #efe7de 48%, #b6aaa0 100%);
	background-position: center;
	background-size: cover;
	color: #6a3c99;;
}

.location-hero--image {
	background-blend-mode: multiply, normal;
}

.location-hero__inner {
	width: var(--container);
	margin: 0 auto;
}

.location-hero__titlebar {
	display: grid;
	justify-items: start;
	gap: 14px;
	text-align: left;
}

.location-hero__main-title {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin: 0;
	font-family: var(--font-en);
	font-size: clamp(2.5rem, 4.7vw, 4.2rem);
	font-weight: 900;
	line-height: 1.05;
}

.location-hero__main-title span {
	display: inline-block;
	opacity: 0;
	will-change: transform, opacity, color;
}

.location-hero__main-title .word-up {
	color: #fff;
	transform: translateY(100px);
	animation: doctors-word-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.location-hero__main-title .word-down {
	color: #fff;
	transform: translateY(-100px);
	animation:
		doctors-word-down 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
		doctors-word-color 0.8s ease 1.2s forwards;
}

.location-hero__subtitle {
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 500;
	opacity: 0;
	transform: translateY(20px);
	animation: doctors-subtitle-up 1s ease 1s forwards;
}

.location-section-eyebrow {
	margin: 0 0 14px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: var(--font-en-18);
	font-weight: 800;
	letter-spacing: 0.04em;
}

.location-map-section {
	position: relative;
	min-height: 720px;
}

.location-map {
	position: absolute;
	inset: 0;
	background: #eee;
}

.location-google-map,
.location-kakao-map {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.location-map-fallback {
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	width: 100%;
	height: 100%;
	border: 0;
	background: #f4f1f7;
	color: #333;
	font-size: 17px;
	text-align: center;
}

.location-map.is-fallback .location-kakao-map {
	display: none;
}

.location-map.is-fallback .location-map-fallback {
	display: flex;
}

.location-map-fallback p {
	margin: 0;
}

.location-map-fallback a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 24px;
	border: 1px solid #6a3c99;
	border-radius: 999px;
	color: #6a3c99;
	font-weight: 800;
	text-decoration: none;
}

.location-map-label {
	min-width: 140px;
	padding: 8px 14px;
	color: #111;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 900;
	text-align: center;
}

.location-map__overlay {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 720px;
	pointer-events: none;
}

.location-hours-card {
	width: min(100%, 430px);
	padding: 46px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
	pointer-events: auto;
}

.location-hours-card__logo {
	width: 210px;
	margin-bottom: 34px;
}

.location-hours-card h2 {
	margin: 0 0 22px;
	font-size: 2rem;
	font-weight: 900;
}

.location-hours-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.location-hours-list li {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 16px;
	align-items: baseline;
}

.location-hours-list span {
	color: #6a3c99;
	font-weight: 900;
}

.location-hours-list strong {
	font-weight: 700;
	white-space: nowrap;
}

.location-hours-note {
	margin-top: 28px;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.55;
}

.location-hours-note p {
	margin: 0;
}

.location-hours-phone {
	display: inline-block;
	margin-top: 30px;
	color: #111;
	font-family: var(--font-en);
	font-size: 2.15rem;
	font-weight: 900;
	line-height: 1;
}

.location-info-section {
	padding: 110px 0;
	background: #fff;
}

.location-info-grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
	gap: 76px;
	align-items: start;
}

.location-info-copy h2,
.location-channel-header h2 {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 4rem);
	font-weight: 800;
	line-height: 1.2;
}

.location-info-copy h2 span {
	font-weight: 400;
}

.location-info-desc {
	margin: 24px 0 54px;
	color: #555;
	font-size: 1.08rem;
	line-height: 1.8;
	word-break: keep-all;
}

.location-info-list {
	display: grid;
	gap: 28px;
	margin: 0;
}

.location-info-list dt {
	margin-bottom: 8px;
	color: #6a3c99;
	font-weight: 900;
}

.location-info-list dd {
	margin: 0;
	color: #333;
	font-size: 1.08rem;
	line-height: 1.7;
}

.location-info-list a {
	color: #111;
	font-family: var(--font-en);
	font-size: 2rem;
	font-weight: 900;
}

.clinic-view-hero {
	display: grid;
	align-items: center;
	min-height: 520px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08)),
		#dedede;
	background-position: center;
	background-size: cover;
}

.clinic-view-hero--image {
	background-blend-mode: multiply, normal;
}

.clinic-view-hero__inner {
	width: var(--container);
	margin: 0 auto;
}

.clinic-view-hero__titlebar {
	display: grid;
	justify-items: start;
	gap: 18px;
	color: #6a3c99;
	text-align: left;
}

.clinic-view-hero__main-title {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin: 0;
	font-family: var(--font-en);
	font-size: clamp(2.5rem, 4.7vw, 4.2rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.clinic-view-hero__main-title span {
	display: inline-block;
	opacity: 0;
}

.clinic-view-hero__main-title .word-up {
	color: #fff;
	transform: translateY(100px);
	animation: doctors-word-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.clinic-view-hero__main-title .word-down {
	color: #fff;
	transform: translateY(-100px);
	animation:
		doctors-word-down 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
		doctors-word-color 0.8s ease 1.2s forwards;
}

.clinic-view-hero__subtitle {
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 700;
	opacity: 0;
	transform: translateY(20px);
	animation: doctors-subtitle-up 1s ease 1s forwards;
}

.clinic-view-section {
	overflow: hidden;
	padding: 110px 0 104px;
	background: #fff;
}

.clinic-view-section__header {
	display: grid;
	gap: 12px;
	margin-bottom: 48px;
	text-align: center;
}

.clinic-view-section__eyebrow {
	margin: 0;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: var(--font-en-18);
	font-weight: 800;
}

.clinic-view-section__header h2 {
	margin: 0;
	color: #111;
	font-family: var(--font-body);
	font-size: clamp(1.85rem, 3.36vw, 3.22rem);
	font-weight: 800;
	line-height: 1.22;
	word-break: keep-all;
}

.clinic-view-section__copy {
	display: grid;
	gap: 8px;
	width: min(100%, 820px);
	margin: 18px auto 0;
	color: #444;
	font-size: 1.08rem;
	line-height: 1.75;
	word-break: keep-all;
}

.clinic-view-section__copy p {
	margin: 0;
}

.clinic-view-slider {
	width: 100%;
	overflow: hidden;
}

.clinic-view-track {
	display: flex;
	gap: 30px;
	width: max-content;
	animation: clinic-view-slide 38s linear infinite;
	will-change: transform;
}

.clinic-view-slider:hover .clinic-view-track {
	animation-play-state: paused;
}

.clinic-view-card {
	flex: 0 0 clamp(320px, 30vw, 560px);
}

.clinic-view-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #eee;
}

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

.clinic-view-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54));
}

.clinic-view-card h3 {
	position: absolute;
	right: 26px;
	bottom: 24px;
	left: 26px;
	margin: 0;
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 2vw, 2rem);
	font-weight: 800;
	text-align: center;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.clinic-marquee-section {
	overflow: hidden;
	padding: 44px 0 54px;
	background: #fff;
	border-top: 1px solid rgba(106, 60, 153, 0.16);
	border-bottom: 1px solid rgba(106, 60, 153, 0.16);
}

.clinic-marquee-track {
	display: flex;
	width: max-content;
	color: #422f57;
	font-family: var(--font-en);
	font-size: clamp(3.4rem, 8vw, 8.8rem);
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	animation: clinic-marquee 42s linear infinite;
	will-change: transform;
}

.clinic-marquee-track span {
	display: block;
}

.reservation-hero {
	display: grid;
	align-items: center;
	min-height: 520px;
	background:
		linear-gradient(rgba(38, 31, 27, 0.42), rgba(38, 31, 27, 0.42)),
		linear-gradient(135deg, #d4c8bd 0%, #efe7de 48%, #b6aaa0 100%);
	background-position: center;
	background-size: cover;
}

.reservation-hero--image {
	background-blend-mode: multiply, normal;
}

.reservation-hero__inner {
	width: var(--container);
	margin: 0 auto;
}

.reservation-hero__titlebar {
	display: grid;
	justify-items: start;
	gap: 14px;
	text-align: left;
}

.reservation-hero__main-title {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin: 0;
	font-family: var(--font-en);
	font-size: clamp(2.5rem, 4.7vw, 4.2rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.reservation-hero__main-title span {
	display: inline-block;
	opacity: 0;
	will-change: transform, opacity, color;
}

.reservation-hero__main-title .word-up {
	color: #fff;
	transform: translateY(100px);
	animation: doctors-word-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reservation-hero__main-title .word-down {
	color: #fff;
	transform: translateY(-100px);
	animation:
		doctors-word-down 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
		doctors-word-color 0.8s ease 1.2s forwards;
}

.reservation-hero__subtitle {
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 500;
	opacity: 0;
	transform: translateY(20px);
	animation: doctors-subtitle-up 1s ease 1s forwards;
}

.reservation-board-section {
	padding: 96px 0 110px;
	background: #fff;
}

.reservation-board-shell {
	width: min(100%, 1120px);
	margin: 0 auto;
}

.reservation-channel-section {
	background: #f4f4f4;
}

.noncovered-cost-section {
	padding: 96px 0 110px;
	background: #fff;
}

.noncovered-cost-header {
	margin-bottom: 42px;
	text-align: center;
}

.noncovered-cost-header h2 {
	margin: 10px 0 0;
	color: #111;
	font-size: clamp(2.2rem, 3vw, 3.4rem);
	font-weight: 800;
	line-height: 1.2;
}

.noncovered-cost-subtitle {
	margin: 52px 0 18px;
	color: #6a3c99;
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 800;
	line-height: 1.3;
	word-break: keep-all;
}

.noncovered-cost-subtitle small {
	display: inline-block;
	margin-left: 10px;
	color: #666;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.4;
	vertical-align: middle;
}

.noncovered-table-wrap {
	overflow-x: auto;
	border-top: 3px solid #6a3c99;
	background: #fff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.noncovered-cost-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	color: #111;
	font-size: 1.04rem;
	line-height: 1.45;
}

.noncovered-cost-table th,
.noncovered-cost-table td {
	padding: 20px 24px;
	border-bottom: 1px solid #e8e8e8;
	text-align: left;
	vertical-align: middle;
	word-break: keep-all;
}

.noncovered-cost-table th {
	background: #f5eff9;
	color: #6a3c99;
	font-size: 1rem;
	font-weight: 800;
}

.noncovered-cost-table__section,
.noncovered-cost-table__category {
	width: 22%;
	background: #fafafa;
	font-weight: 800;
	text-align: center;
}

.noncovered-cost-table__category small {
	display: block;
	margin-top: 8px;
	color: #666;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.45;
}

.noncovered-cost-table__section {
	color: #6a3c99;
}

.noncovered-cost-table__price {
	width: 24%;
	font-weight: 800;
	white-space: nowrap;
}

.noncovered-cost-table--matrix {
	min-width: 900px;
}

.noncovered-cost-table--matrix th,
.noncovered-cost-table--matrix td {
	text-align: center;
}

.noncovered-cost-table--matrix .noncovered-cost-table__category {
	width: 22%;
	text-align: center;
}

.noncovered-cost-table--matrix .noncovered-cost-table__price {
	width: auto;
}

.noncovered-cost-table--simple {
	min-width: 0;
}

.noncovered-cost-notes {
	display: grid;
	gap: 8px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.noncovered-cost-notes li {
	position: relative;
	padding-left: 18px;
	color: #555;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.6;
	word-break: keep-all;
}

.noncovered-cost-notes li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 6px;
	height: 6px;
	background: #6a3c99;
	content: "";
}

.artline-event-hero {
	display: grid;
	align-items: center;
	min-height: 520px;
	background:
		linear-gradient(rgba(38, 31, 27, 0.42), rgba(38, 31, 27, 0.42)),
		linear-gradient(135deg, #d4c8bd 0%, #efe7de 48%, #b6aaa0 100%);
	background-position: center;
	background-size: cover;
}

.artline-event-hero--image {
	background-blend-mode: multiply, normal;
}

.artline-event-hero__inner {
	width: var(--container);
	margin: 0 auto;
}

.artline-event-hero__titlebar {
	display: grid;
	justify-items: start;
	gap: 14px;
	text-align: left;
}

.artline-event-hero__main-title {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin: 0;
	font-family: var(--font-en);
	font-size: clamp(2.5rem, 4.7vw, 4.2rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.artline-event-hero__main-title span {
	display: inline-block;
	opacity: 0;
	will-change: transform, opacity, color;
}

.artline-event-hero__main-title .word-up {
	color: #fff;
	transform: translateY(100px);
	animation: doctors-word-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.artline-event-hero__main-title .word-down {
	color: #fff;
	transform: translateY(-100px);
	animation:
		doctors-word-down 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
		doctors-word-color 0.8s ease 1.2s forwards;
}

.artline-event-hero__subtitle {
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 500;
	opacity: 0;
	transform: translateY(20px);
	animation: doctors-subtitle-up 1s ease 1s forwards;
}

.artline-event-list-section {
	padding: 100px 0 120px;
	background: #fff;
}

.artline-event-card:hover .artline-event-card__thumb img {
	transform: none;
}

.artline-event-eyebrow {
	margin-bottom: 16px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.artline-event-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #8b8490;
	font-size: 0.95rem;
	font-weight: 600;
}

.artline-event-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 30px;
	padding: 0 14px;
	border-radius: 999px;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 800;
}

.artline-event-badge.is-ongoing {
	background: #6a3c99;
}

.artline-event-badge.is-ended {
	background: #8f8b94;
	color: #fff;
}

.artline-event-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 520px));
	gap: 34px;
	justify-content: center;
}

.artline-event-card {
	width: 100%;
	background: #fff;
	border: 1px solid rgba(34, 31, 28, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.artline-event-card__inner {
	display: block;
	height: 100%;
}

.artline-event-card:hover {
	transform: translateY(-6px);
	border-color: rgba(106, 60, 153, 0.28);
	box-shadow: 0 20px 42px rgba(39, 27, 19, 0.1);
}

.artline-event-card__thumb {
	overflow: hidden;
	aspect-ratio: 1000 / 1131;
	background: #fff;
}

.artline-event-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.45s ease;
}

.artline-event-card__body {
	padding: 28px 30px 32px;
}

.artline-event-card__body h3 {
	margin: 0 0 18px;
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.35;
}

.artline-event-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 96px 0;
	color: #8b8490;
	text-align: center;
	font-size: 1.1rem;
}

.artline-event-pagination {
	margin-top: 70px;
}

.artline-event-pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.artline-event-pagination a,
.artline-event-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(34, 31, 28, 0.14);
	background: #fff;
	color: #4a4650;
	font-weight: 700;
}

.artline-event-pagination .current,
.artline-event-pagination a:hover {
	border-color: #6a3c99;
	background: #6a3c99;
	color: #fff;
}

.promotion-single-section {
	padding: 92px 0 120px;
	background: #fff;
}

.promotion-single-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 28px;
	margin-bottom: 44px;
}

.promotion-single-header h2 {
	margin: 0;
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 800;
	line-height: 1.25;
}

.promotion-detail-image {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.promotion-detail-image img {
	width: 100%;
	height: auto;
}

.promotion-single-content {
	width: min(100%, 980px);
	max-width: none;
	margin: 56px auto 0;
}

@keyframes clinic-view-slide {
	to {
		transform: translateX(calc(-50% - 15px));
	}
}

@keyframes clinic-marquee {
	to {
		transform: translateX(-50%);
	}
}

.location-transport-list {
	display: grid;
	gap: 26px;
}

.location-transport-card {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 28px;
	padding: 36px;
	background: #f7f5f9;
}

.location-transport-icon {
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	border-radius: 999px;
	background: #fff;
}

.location-transport-icon img {
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.location-transport-content h3 {
	margin: 0 0 14px;
	font-size: 1.35rem;
	font-weight: 900;
}

.location-transport-content p {
	margin: 0;
	color: #555;
	line-height: 1.7;
	word-break: keep-all;
}

.location-bus-list {
	display: grid;
	gap: 10px;
}

.location-bus-list div {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.location-bus-list p {
	margin: 0;
	color: #333;
	font-size: 0.98rem;
	line-height: 1.5;
}

.bus-badge {
	flex: 0 0 auto;
	min-width: 44px;
	padding: 2px 8px;
	border-radius: 4px;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 900;
	text-align: center;
}

.bus-badge--village {
	background: #50a84a;
}

.bus-badge--general {
	background: #17a6a8;
}

.bus-badge--direct {
	background: #eb6e60;
}

.bus-badge--airport {
	background: #9b7c67;
}

.location-channel-section {
	padding: 100px 0 120px;
	background: #f4f4f4;
}

.location-channel-header {
	margin-bottom: 44px;
	text-align: center;
}

.location-channel-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.location-channel-card {
	display: grid;
	justify-items: center;
	gap: 14px;
	padding: 42px 28px;
	background: #fff;
	text-align: center;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.location-channel-card img {
	width: 62px;
	height: 62px;
	object-fit: contain;
}

.location-channel-card strong {
	color: #111;
	font-size: 1.45rem;
	font-weight: 900;
}

.location-channel-card span {
	color: #555;
	line-height: 1.65;
	word-break: keep-all;
}

.treatment-detail-hero {
	position: relative;
	overflow: hidden;
	min-height: 660px;
	padding: 100px 0 80px;
	background: linear-gradient(90deg, #e4d6e5 0%, #eee7f1 58%, #fff 100%);
}

.treatment-detail-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.76fr);
	gap: 72px;
	align-items: center;
}

.treatment-detail-hero__copy {
	max-width: 720px;
}

.treatment-detail-hero__eyebrow {
	margin: 0 0 18px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.treatment-detail-hero h1 {
	margin: 0;
	color: #111;
	font-size: clamp(3rem, 4.8vw, 5.15rem);
	font-weight: 900;
	line-height: 1.08;
	word-break: keep-all;
}

.treatment-detail-hero__summary {
	margin-top: 20px;
	color: #211d1d;
	font-size: clamp(1.25rem, 1.7vw, 1.75rem);
	font-weight: 600;
	line-height: 1.65;
	word-break: keep-all;
}

.treatment-detail-hero__summary p {
	margin: 0;
}

.treatment-keyword-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.treatment-keyword-list span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 999px;
	background: #715da1;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
}

.treatment-detail-hero__media {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 600px;
}

.speedy-3d-scene {
	position: relative;
	width: min(42vw, 600px);
	height: min(42vw, 600px);
	max-width: 600px;
	max-height: 600px;
	margin-left: auto;
	perspective: 1200px;
}

.speedy-3d-scene .face {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

.speedy-3d-scene .face img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.speedy-3d-scene .face.is-default-logo img {
	width: auto;
	height: auto;
	max-width: 500px;
	max-height: 194px;
}

.speedy-3d-scene .face.is-default-mark img {
	width: auto;
	height: auto;
	max-width: 420px;
	max-height: 420px;
}

.speedy-3d-scene .face-1 {
	animation: artlineFlip1 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.speedy-3d-scene .face-2 {
	animation: artlineFlip2 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.speedy-3d-scene.is-static .face {
	opacity: 1;
	animation: none;
	transform: none;
}

@keyframes artlineFlip1 {
	0%,
	42% {
		opacity: 1;
		transform: rotateY(0deg) scale(1);
	}
	48%,
	94% {
		opacity: 0;
		transform: rotateY(90deg) scale(0.96);
	}
	100% {
		opacity: 1;
		transform: rotateY(0deg) scale(1);
	}
}

@keyframes artlineFlip2 {
	0%,
	42% {
		opacity: 0;
		transform: rotateY(-90deg) scale(0.96);
	}
	48%,
	94% {
		opacity: 1;
		transform: rotateY(0deg) scale(1);
	}
	100% {
		opacity: 0;
		transform: rotateY(-90deg) scale(0.96);
	}
}

.treatment-target-section {
	background: #f7f7f7;
}

.treatment-target-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.treatment-target-card {
	display: grid;
	place-items: center;
	gap: 20px;
	min-height: 190px;
	padding: 34px 28px;
	border-right: 1px solid rgba(0, 0, 0, 0.16);
	text-align: center;
}

.treatment-target-card:last-child {
	border-right: 0;
}

.treatment-target-card__check {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #082842;
}

.treatment-target-card__check::before {
	width: 14px;
	height: 8px;
	border-bottom: 4px solid #fff;
	border-left: 4px solid #fff;
	transform: rotate(-45deg) translate(1px, -1px);
	content: "";
}

.treatment-target-card p {
	margin: 0;
	color: #151515;
	font-size: clamp(1.08rem, 1.35vw, 1.5rem);
	font-weight: 800;
	line-height: 1.55;
	word-break: keep-all;
}

.treatment-info-strip {
	padding: 34px 0;
	background: #ddc4e7;
	box-shadow: 0 8px 34px rgba(0, 0, 0, 0.06);
}

.treatment-info-strip__inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 26px;
	align-items: center;
}

.treatment-info-item {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.treatment-info-item__icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	color: #082842;
}

.treatment-info-item__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.treatment-info-item__body {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.treatment-info-item strong {
	color: #000000;
	font-size: 1.40rem;
	font-weight: 800;
	line-height: 1.2;
}

.treatment-info-item em {
	color: #111;
	font-size: 1.15rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.45;
	word-break: keep-all;
}

.treatment-editor-section {
	padding: 30px 0 30px;
	background: #fff;
}

.treatment-editor-section .entry-content {
	max-width: none;
}

.treatment-editor-section .entry-content > * {
	max-width: 100%;
}

.treatment-editor-section .entry-content .wp-block-image,
.treatment-editor-section .entry-content figure,
.treatment-editor-section .entry-content img {
	width: auto;
	max-width: 100%;
}

.treatment-editor-section .entry-content .wp-block-image img {
	display: block;
}

.treatment-editor-section .entry-content .wp-block-image.aligncenter img {
	margin-right: auto;
	margin-left: auto;
}

.treatment-editor-section .entry-content .alignwide {
	width: 100%;
	max-width: 100%;
}

.treatment-editor-section .entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.treatment-editor-section .entry-content .alignfull img {
	width: 100%;
	max-width: none;
}

.treatment-editor-section .entry-content .wp-block-cover,
.treatment-editor-section .entry-content .wp-block-group,
.treatment-editor-section .entry-content .wp-block-columns {
	box-sizing: border-box;
}

.artline-botox-content {
	display: grid;
	gap: 86px;
	width: 100%;
}

.artline-botox-visual {
	width: min(100%, 1222px);
	margin: 0 auto;
}

.artline-botox-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-botox-section {
	width: min(100%, 1100px);
	margin: 0 auto;
}

.artline-botox-heading {
	margin-bottom: 38px;
}

.artline-botox-heading h2 {
	position: relative;
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 800;
	line-height: 1.2;
}

.artline-botox-heading h2::after {
	display: block;
	width: 48px;
	height: 4px;
	margin-top: 12px;
	background: #6a3c99;
	content: "";
}

.artline-botox-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.artline-botox-card {
	border: 1px solid #ddd;
	background: #fff;
	text-align: center;
}

.artline-botox-card__head {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 98px;
	padding: 20px;
	background: #e9e9e9;
}

.artline-botox-card__head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-right: 12px;
	background: #9369bf;
	clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
	color: #fff;
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1;
}

.artline-botox-card h3 {
	margin: 0;
	color: #222;
	font-size: clamp(1.25rem, 1.6vw, 1.55rem);
	font-weight: 800;
	line-height: 1.2;
}

.artline-botox-card h3 em {
	font-style: normal;
}

.artline-botox-card p {
	margin: 0;
	padding: 34px 30px 40px;
	color: #333;
	font-size: 1.02rem;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-botox-effect-list {
	display: grid;
	gap: 4px;
	background: #fff;
}

.artline-botox-effect-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
	gap: 52px;
	align-items: start;
	padding: 46px 32px;
	background: #eee;
}

.artline-botox-effect-card__copy {
	display: grid;
	gap: 16px;
}

.artline-botox-effect-card__title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.artline-botox-effect-card__title span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #9369bf;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1;
}

.artline-botox-effect-card__title h3 {
	margin: 0;
	color: #222;
	font-size: clamp(1.45rem, 2vw, 1.95rem);
	font-weight: 800;
	line-height: 1.2;
}

.artline-botox-effect-card__copy strong {
	color: #111;
	font-size: clamp(1.1rem, 1.45vw, 1.35rem);
	font-weight: 800;
	line-height: 1.45;
	word-break: keep-all;
}

.artline-botox-effect-card__copy p {
	margin: 0;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-botox-before-after {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-self: start;
	overflow: hidden;
	background: transparent;
}

.artline-botox-before-after figure {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.artline-botox-before-after figcaption {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	background: #777;
	color: #fff;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 700;
}

.artline-botox-before-after figure:nth-child(2) figcaption {
	background: #9369bf;
}

.artline-botox-before-after img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-botox-part-images {
	display: grid;
	gap: 30px;
}

.artline-botox-part-images figure {
	margin: 0;
	overflow: hidden;
	background: #fff;
}

.artline-botox-part-images img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-botox-duration-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.artline-botox-duration-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 96px;
	padding: 28px 34px;
	border: 1px solid #e8e8e8;
	background: #f8f8f8;
}

.artline-botox-duration-item strong {
	color: #111;
	font-size: clamp(1.08rem, 1.45vw, 1.3rem);
	font-weight: 800;
	line-height: 1.4;
	word-break: keep-all;
}

.artline-botox-duration-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 112px;
	height: 42px;
	border-radius: 999px;
	background: #715da1;
	color: #fff;
	font-size: 1.08rem;
	font-weight: 800;
}

.artline-botox-antibody {
	padding: 42px 48px;
	border-left: 5px solid #6a3c99;
	background: #f5eff9;
}

.artline-botox-antibody .artline-botox-heading {
	margin-bottom: 18px;
}

.artline-botox-antibody p {
	margin: 0;
	color: #111;
	font-size: clamp(1.08rem, 1.45vw, 1.28rem);
	font-weight: 700;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-botox-antibody strong {
	color: #6a3c99;
	font-weight: 900;
}

.artline-filler-content {
	display: grid;
	gap: 86px;
	width: 100%;
}

.artline-filler-section {
	width: min(100%, 1100px);
	margin: 0 auto;
}

.artline-filler-heading {
	margin-bottom: 34px;
}

.artline-filler-heading h2 {
	position: relative;
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 800;
	line-height: 1.2;
}

.artline-filler-heading h2::after {
	display: block;
	width: 48px;
	height: 4px;
	margin-top: 12px;
	background: #6a3c99;
	content: "";
}

.artline-filler-point-list {
	display: grid;
	gap: 28px;
}

.artline-filler-point {
	display: grid;
	gap: 12px;
}

.artline-filler-point__title {
	display: flex;
	align-items: center;
	gap: 14px;
}

.artline-filler-point__title span,
.artline-filler-area__info li::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	background: #9369bf;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 900;
	line-height: 1;
}

.artline-filler-point__title h3 {
	margin: 0;
	color: #111;
	font-size: clamp(1.15rem, 1.55vw, 1.45rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-filler-point p {
	margin: 0 0 0 52px;
	color: #333;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-filler-area__visual {
	width: min(100%, 1100px);
	margin: 0 auto 44px;
}

.artline-filler-area__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-filler-area__info {
	padding: 40px 48px;
	background: #eee;
}

.artline-filler-area__info h3 {
	margin: 0 0 24px;
	color: #222;
	font-size: clamp(1.4rem, 2vw, 1.9rem);
	font-weight: 800;
	line-height: 1.2;
}

.artline-filler-area__info ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 56px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: filler-area;
}

.artline-filler-area__info li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	color: #111;
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
	counter-increment: filler-area;
}

.artline-filler-area__info li::before {
	content: counter(filler-area);
}

.artline-filler-care-list {
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.artline-filler-care-list li {
	position: relative;
	padding-left: 48px;
	color: #333;
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-filler-care-list li::before {
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 13px;
	height: 13px;
	background: #6a3c99;
	content: "";
}

.artline-filler-care-notice {
	position: relative;
	margin: 42px 0 0;
	padding-left: 54px;
	color: #111;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.7;
	word-break: keep-all;
}

.artline-filler-care-notice::before {
	position: absolute;
	top: 0.35em;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #e1251b;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 900;
	content: "!";
}

.artline-vline-content {
	display: grid;
	gap: 86px;
	width: 100%;
}

.artline-vline-section {
	width: min(100%, 1100px);
	margin: 0 auto;
}

.artline-vline-intro {
	padding: 0;
	background: transparent;
}

.artline-vline-copy {
	max-width: none;
}

.artline-vline-heading {
	margin-bottom: 34px;
}

.artline-vline-heading--center {
	text-align: center;
}

.artline-vline-eyebrow {
	margin: 0 0 10px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.artline-vline-heading h2 {
	position: relative;
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 800;
	line-height: 1.2;
	word-break: keep-all;
}

.artline-vline-heading h2::after {
	display: block;
	width: 48px;
	height: 4px;
	margin-top: 12px;
	background: #6a3c99;
	content: "";
}

.artline-vline-heading--center h2::after {
	margin-right: auto;
	margin-left: auto;
}

.artline-vline-copy p {
	margin: 0;
	color: #222;
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.9;
	word-break: keep-all;
}

.artline-vline-copy p + p {
	margin-top: 22px;
}

.artline-vline-part__visual {
	margin: 0;
}

.artline-vline-part__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-vline-before-after-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: center;
}

.artline-vline-before-after-grid figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	margin: 0;
	padding: 36px;
	border: 1px solid #e4e4e4;
	background: #fafafa;
}

.artline-vline-before-after-grid img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 220px;
	height: auto;
	object-fit: contain;
}

.artline-vline-before-after-grid figcaption {
	margin-top: 18px;
	color: #111;
	font-family: var(--font-en);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.artline-vline-plus-intro {
	padding: 0;
	background: transparent;
}

.artline-vline-plus-mechanism {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 34px 0 28px;
	background: #2f4054;
}

.artline-vline-plus-mechanism__copy {
	display: grid;
	align-content: center;
	gap: 18px;
	padding: 46px 22px 46px 0;
	background: #fff;
}

.artline-vline-plus-mechanism__copy h3 {
	margin: 0;
	color: #111;
	font-family: var(--font-en);
	font-size: clamp(2.1rem, 3.2vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.artline-vline-plus-mechanism__copy strong {
	color: #dcae35;
	font-size: clamp(1.2rem, 1.7vw, 1.55rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-vline-plus-mechanism__copy p {
	margin: 0;
	color: #222;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.8;
}

.artline-vline-plus-mechanism__media {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	padding: 5px;
	background: #2f4054;
}

.artline-vline-plus-mechanism__media img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.artline-vline-plus-recommend {
	padding: 64px;
	background: #f5eff9;
}

.artline-vline-plus-recommend ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.artline-vline-plus-recommend li {
	display: grid;
	align-content: start;
	gap: 20px;
	min-height: 180px;
	padding: 30px;
	background: #fff;
}

.artline-vline-plus-recommend li span {
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
}

.artline-vline-plus-recommend li strong {
	color: #111;
	font-size: clamp(1.05rem, 1.4vw, 1.24rem);
	font-weight: 800;
	line-height: 1.55;
	word-break: keep-all;
}

.artline-allinone-content {
	display: grid;
	gap: 86px;
	width: 100%;
}

.artline-allinone-section {
	width: min(100%, 1100px);
	margin: 0 auto;
}

.artline-allinone-heading {
	margin-bottom: 34px;
}

.artline-allinone-heading--center {
	text-align: center;
}

.artline-allinone-eyebrow {
	margin: 0 0 10px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.artline-allinone-heading h2 {
	position: relative;
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.45rem, 2.3vw, 2rem);
	font-weight: 800;
	line-height: 1.25;
	word-break: keep-all;
}

.artline-allinone-heading h2::after {
	display: block;
	width: 48px;
	height: 4px;
	margin-top: 12px;
	background: #6a3c99;
	content: "";
}

.artline-allinone-subtitle {
	margin: 22px 0 0;
	color: #111;
	font-size: clamp(1.22rem, 1.8vw, 1.55rem);
	font-weight: 800;
	line-height: 1.45;
	word-break: keep-all;
}

.artline-allinone-heading--center h2::after {
	margin-right: auto;
	margin-left: auto;
}

.artline-allinone-heading--center > p:not(.artline-allinone-eyebrow) {
	max-width: 740px;
	margin: 22px auto 0;
	color: #333;
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-allinone-copy p {
	margin: 0;
	color: #222;
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.9;
	word-break: keep-all;
}

.artline-allinone-copy p + p {
	margin-top: 22px;
}

.artline-allinone-effect {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.artline-allinone-effect__card {
	padding: 36px 38px;
	border-left: 5px solid #6a3c99;
	background: #f5eff9;
}

.artline-allinone-effect__card strong {
	display: block;
	margin-bottom: 16px;
	color: #111;
	font-size: clamp(1.18rem, 1.7vw, 1.45rem);
	font-weight: 800;
	line-height: 1.4;
	word-break: keep-all;
}

.artline-allinone-effect__card p {
	margin: 0;
	color: #333;
	font-size: 1.02rem;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-allinone-package-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.artline-allinone-package {
	padding: 34px 30px;
	border: 1px solid #e5e5e5;
	background: #fff;
}

.artline-allinone-package span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 24px;
	background: #6a3c99;
	color: #fff;
	font-family: var(--font-en);
	font-size: 1.08rem;
	font-weight: 900;
}

.artline-allinone-package h3 {
	margin: 0;
	color: #111;
	font-size: clamp(1.12rem, 1.5vw, 1.35rem);
	font-weight: 800;
	line-height: 1.4;
	word-break: keep-all;
}

.artline-allinone-package p {
	margin: 16px 0 0;
	color: #444;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-juvelook-content {
	display: grid;
	gap: 0;
	width: 100%;
}

.artline-juvelook-section {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.entry-content .artline-juvelook-content figure {
	margin: 2rem 0 0;
}

.artline-juvelook-heading {
	margin-bottom: 28px;
}

.artline-juvelook-heading--center {
	text-align: center;
}

.artline-juvelook-eyebrow {
	margin: 0 0 10px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.artline-juvelook-heading h2,
.artline-juvelook-model__copy h2 {
	position: relative;
	margin: 0;
	color: #6a3c99;
	font-size: clamp(1.55rem, 2.5vw, 2.3rem);
	font-weight: 800;
	line-height: 1.25;
	word-break: keep-all;
}

.artline-juvelook-heading h2 strong {
	color: #0068b7;
	font-weight: inherit;
}

.artline-juvelook-heading p {
	margin: 24px 0 0;
	color: #333;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-juvelook-heading p strong {
	color: #0068b7;
	font-weight: 800;
}

.artline-juvelook-heading h2::after {
	display: block;
	width: 48px;
	height: 4px;
	margin-top: 12px;
	background: #6a3c99;
	content: "";
}

.artline-juvelook-heading--center h2::after {
	margin-right: auto;
	margin-left: auto;
}

.artline-juvelook-main__visual,
.artline-juvelook-finish__visual,
.artline-juvelook-duo__grid figure {
	margin: 0;
}

.artline-juvelook-main__visual img,
.artline-juvelook-finish__visual img,
.artline-juvelook-duo__grid img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-juvelook-model {
	position: relative;
	width: min(100%, 1180px);
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(360px, 0.82fr);
	gap: 56px;
	align-items: center;
	min-height: 560px;
	padding: 70px max(5vw, 72px) 0 max(5vw, 72px);
	overflow: hidden;
	background: #fbf2f2;
}

.artline-juvelook-model__copy {
	position: relative;
	z-index: 2;
}

.artline-juvelook-model__copy h2 {
	color: #111;
	font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.artline-juvelook-model__copy p:not(.artline-juvelook-eyebrow) {
	margin: 24px 0 0;
	color: #333;
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-juvelook-model__image {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 460px);
	margin-left: auto;
	margin-right: 0;
	align-self: end;
}

.artline-juvelook-duo {
	width: min(100%, 1180px);
	background: #f7f7f7;
}

.artline-juvelook-duo__inner {
	width: 100%;
	margin: 0 auto;
	padding: 72px 64px 82px;
}

.artline-juvelook-duo__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.artline-juvelook-duo__grid figure {
	display: grid;
	gap: 20px;
	align-content: start;
	padding: 0;
	background: transparent;
}

.artline-juvelook-duo__grid figcaption {
	order: 2;
}

.artline-juvelook-duo__grid h3 {
	margin: 0 0 12px;
	color: #0068b7;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.3;
	word-break: keep-all;
}

.artline-juvelook-duo__grid ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	word-break: keep-all;
}

.artline-juvelook-duo__grid li {
	position: relative;
	padding-left: 14px;
}

.artline-juvelook-duo__grid li::before {
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 5px;
	height: 5px;
	background: #6a3c99;
	content: "";
}

.artline-juvelook-quote {
	margin: 34px 0 0;
	color: #333;
	font-size: clamp(1.18rem, 2vw, 1.65rem);
	font-weight: 800;
	line-height: 1.75;
	text-align: center;
	word-break: keep-all;
}

.artline-juvelook-finish {
	width: min(100%, 1180px);
	margin-top: 72px;
}

.artline-juvelook-finish__visual {
	padding: 0;
	background: transparent;
}

.artline-lilied-content {
	display: grid;
	gap: 0;
	width: 100%;
}

.artline-lilied-section {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.entry-content .artline-lilied-content figure {
	margin: 2rem 0 0;
}

.artline-lilied-hero__visual,
.artline-lilied-product__visual {
	margin: 0;
}

.artline-lilied-hero__visual img,
.artline-lilied-product__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-lilied-heading {
	margin-bottom: 34px;
}

.artline-lilied-heading--center {
	text-align: center;
}

.artline-lilied-heading h2 {
	margin: 0;
	color: #111;
	font-size: clamp(1.8rem, 2.7vw, 2.65rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-lilied-intro {
	padding: 82px 64px 88px;
	background: #fff;
	text-align: center;
}

.artline-lilied-intro p {
	width: min(100%, 900px);
	margin: 0 auto;
	color: #222;
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-lilied-intro p + p {
	margin-top: 6px;
}

.artline-lilied-result {
	padding: 78px 0 96px;
	background: #fff;
}

.artline-lilied-result__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.artline-lilied-result-card {
	display: grid;
	align-content: start;
	gap: 24px;
	text-align: center;
}

.artline-lilied-result-card img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-lilied-result-card h3 {
	margin: 0;
	color: #111;
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-lilied-result-card p {
	margin: 0;
	color: #222;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-lilied-result-card__point {
	display: grid;
	gap: 8px;
	justify-items: center;
	margin-top: 8px;
	padding-top: 28px;
	border-top: 3px solid #823f43;
	color: #111;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.55;
	word-break: keep-all;
}

.artline-lilied-result-card__point strong {
	font-size: 1.14rem;
	font-weight: 800;
}

.artline-radiesse-content {
	display: grid;
	gap: 0;
	width: 100%;
}

.artline-radiesse-section {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.entry-content .artline-radiesse-content figure {
	margin: 0;
}

.artline-radiesse-visual,
.artline-radiesse-target__visual {
	margin: 0;
}

.artline-radiesse-visual img,
.artline-radiesse-target__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-radiesse-heading {
	margin-bottom: 28px;
}

.artline-radiesse-heading h2 {
	margin: 0;
	color: #111;
	font-size: clamp(1.8rem, 2.8vw, 2.8rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-radiesse-heading p {
	margin: 14px 0 0;
	color: #6a3c99;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.5;
	word-break: keep-all;
}

.artline-radiesse-intro {
	padding: 84px 64px 92px;
	background: #fff;
	text-align: center;
}

.artline-radiesse-intro p {
	width: min(100%, 820px);
	margin: 0 auto;
	color: #222;
	font-size: 1.12rem;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-radiesse-intro p + p {
	margin-top: 34px;
}

.artline-radiesse-intro strong,
.artline-radiesse-note strong,
.artline-radiesse-safety strong {
	color: #6a3c99;
	font-weight: 800;
}

.artline-radiesse-safety,
.artline-radiesse-note {
	padding: 68px 64px;
	background: #fff;
	text-align: center;
}

.artline-radiesse-safety p,
.artline-radiesse-note p {
	width: min(100%, 840px);
	margin: 0 auto;
	color: #222;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-radiesse-safety p + p,
.artline-radiesse-note p + p {
	margin-top: 12px;
}

.artline-radiesse-target {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	gap: 48px;
	align-items: center;
	padding: 76px 64px;
	background: #fbf2f2;
}

.artline-radiesse-target ul {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #222;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.65;
	word-break: keep-all;
}

.artline-radiesse-target li {
	position: relative;
	padding-left: 18px;
}

.artline-radiesse-target li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 6px;
	height: 6px;
	background: #6a3c99;
	content: "";
}

.artline-radiesse-target__visual img {
	max-height: 420px;
	object-fit: contain;
}

.artline-radiesse-icons {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	padding: 54px 44px;
	background: #e6edf3;
}

.artline-radiesse-icon-item {
	display: grid;
	justify-items: center;
	gap: 10px;
	text-align: center;
}

.artline-radiesse-icon-item img {
	display: block;
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.artline-radiesse-icon-item strong {
	color: #111;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.25;
}

.artline-radiesse-icon-item span {
	color: #333;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-radiesse-note--strong {
	background: #fff;
}

.artline-cube-content {
	display: grid;
	gap: 0;
	width: 100%;
}

.artline-cube-hero {
	width: min(100%, 1200px);
	margin: 0 auto;
	overflow: hidden;
	background: #111;
}

.artline-cube-hero img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-cube-section {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 86px 48px;
}

.artline-cube-eyebrow {
	margin: 0 0 12px;
	color: #6a3c99;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.artline-cube-heading {
	margin-bottom: 42px;
}

.artline-cube-heading h2,
.artline-cube-tech__copy h2,
.artline-cube-lifting__copy h2,
.artline-cube-intro h2,
.artline-cube-treatment-area__copy h2 {
	margin: 0;
	color: #111;
	font-size: clamp(2rem, 3vw, 3.1rem);
	font-weight: 800;
	line-height: 1.18;
	word-break: keep-all;
}

.artline-cube-intro {
	background: #fff;
	text-align: center;
}

.artline-cube-intro p:not(.artline-cube-eyebrow),
.artline-cube-principle p,
.artline-cube-difference p,
.artline-cube-effect p,
.artline-cube-treatment-area__copy p:not(.artline-cube-eyebrow) {
	margin: 24px 0 0;
	color: #222;
	font-size: 1.12rem;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-cube-intro p:not(.artline-cube-eyebrow) {
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
}

.artline-cube-principle,
.artline-cube-difference,
.artline-cube-effect {
	background: #fff;
}

.artline-cube-principle {
	border-top: 1px solid #eee;
}

.artline-cube-tech {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
	background: #f5f5f5;
}

.artline-cube-tech__visual img,
.artline-cube-lifting__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-cube-tech__copy > p:not(.artline-cube-eyebrow) {
	margin: 24px 0 0;
	color: #333;
	font-size: 1.12rem;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-cube-frequency {
	display: grid;
	gap: 12px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.artline-cube-frequency li {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 52px;
	padding: 12px 0;
	border-top: 1px solid #ddd;
	color: #222;
	font-size: 1.05rem;
	font-weight: 700;
}

.artline-cube-frequency span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 84px;
	height: 34px;
	border-radius: 999px;
	background: #6a3c99;
	color: #fff;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
}

.artline-cube-frequency li:nth-child(1) span {
	background: #275cac;
}

.artline-cube-frequency li:nth-child(2) span {
	background: #f04d62;
}

.artline-cube-frequency li:nth-child(3) span {
	background: #6460ac;
}

.artline-cube-feature-section {
	background: #fff;
}

.artline-cube-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.artline-cube-feature {
	display: flex;
	gap: 22px;
	min-height: 170px;
	padding: 30px;
	border: 1px solid #e4e4e4;
	background: #f8f8f8;
}

.artline-cube-feature img {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.artline-cube-feature h3 {
	margin: 0;
	color: #111;
	font-size: clamp(1.12rem, 1.5vw, 1.35rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-cube-feature p {
	margin: 12px 0 0;
	color: #444;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-cube-lifting {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	gap: 64px;
	align-items: center;
	background: #f3f3f3;
}

.artline-cube-lifting__copy ul {
	display: grid;
	gap: 14px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.artline-cube-lifting__copy li {
	position: relative;
	padding: 18px 24px 18px 50px;
	border: 1px solid #ececec;
	border-radius: 999px;
	background: #fff;
	color: #222;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.5;
	word-break: keep-all;
}

.artline-cube-lifting__copy li::before {
	position: absolute;
	top: 50%;
	left: 25px;
	width: 8px;
	height: 8px;
	background: #9369bf;
	transform: translateY(-50%);
	content: "";
}

.artline-cube-treatment-area {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(380px, 1fr);
	gap: 58px;
	align-items: center;
	background: #f5f5f5;
}

.artline-cube-treatment-area__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-cube-care {
	background: #fff;
}

.artline-cube-care ul,
.artline-cube-recommend ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.artline-cube-care li,
.artline-cube-recommend li {
	position: relative;
	padding-left: 28px;
	color: #222;
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.75;
	word-break: keep-all;
}

.artline-cube-care li::before,
.artline-cube-recommend li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 9px;
	height: 9px;
	background: #6a3c99;
	content: "";
}

.artline-cube-recommend {
	background: #f5eff9;
}

.artline-cube-recommend ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 28px;
	max-width: 900px;
	margin: 0 auto;
}

.artline-cube-recommend li {
	padding: 22px 24px 22px 54px;
	background: #fff;
	font-weight: 700;
}

.artline-cube-recommend li::before {
	top: 25px;
	left: 26px;
	width: 14px;
	height: 14px;
	background: transparent;
	color: #6a3c99;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	content: "✓";
}

.artline-cube-before-after-section {
	background: #fff;
	text-align: center;
}

.artline-cube-heading--center {
	text-align: center;
}

.artline-cube-before-after-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.artline-cube-before-after-grid figure {
	margin: 0;
	padding: 18px;
	background: #f4f4f4;
}

.artline-cube-before-after-grid img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-cube-notice {
	margin: 22px 0 0;
	color: #666;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.6;
}

.artline-re20-content {
	display: grid;
	gap: 0;
	width: 100%;
}

.artline-re20-hero {
	width: min(100%, 1200px);
	margin: 0 auto;
	overflow: hidden;
	background: #fff4f1;
}

.artline-re20-hero img {
	display: block;
	width: 100%;
	height: auto;
}

.artline-re20-section {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 86px 48px;
}

.artline-re20-eyebrow {
	margin: 0 0 12px;
	color: #ff615c;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.artline-re20-heading {
	margin-bottom: 42px;
}

.artline-re20-heading h2,
.artline-re20-intro__copy h2,
.artline-re20-volume__copy h2 {
	margin: 0;
	color: #111;
	font-size: clamp(2rem, 3vw, 3.1rem);
	font-weight: 800;
	line-height: 1.18;
	word-break: keep-all;
}

.artline-re20-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
	gap: 64px;
	align-items: center;
	background: #fff;
}

.artline-re20-intro__copy > p:not(.artline-re20-eyebrow),
.artline-re20-volume__copy > p {
	margin: 26px 0 0;
	color: #333;
	font-size: 1.12rem;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
}

.artline-re20-intro__visual img,
.artline-re20-volume__visual img,
.artline-re20-regeneration__visual {
	display: block;
	width: 100%;
	height: auto;
}

.artline-re20-ingredient {
	background: #f7f7f7;
}

.artline-re20-ingredient__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.artline-re20-ingredient__item {
	display: grid;
	align-content: center;
	min-height: 180px;
	padding: 28px;
	border: 1px solid #eadfdd;
	background: #fff;
}

.artline-re20-ingredient__item strong {
	display: block;
	color: #ff615c;
	font-family: var(--font-en);
	font-size: clamp(2.5rem, 4.5vw, 4.5rem);
	font-weight: 800;
	line-height: 1;
}

.artline-re20-ingredient__item span {
	display: block;
	margin-top: 18px;
	color: #222;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-re20-volume {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
	gap: 64px;
	align-items: center;
	background: #fff8f6;
}

.artline-re20-volume__copy ul {
	display: grid;
	gap: 14px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.artline-re20-volume__copy li {
	position: relative;
	padding: 18px 24px 18px 52px;
	border-radius: 18px;
	background: #fff;
	color: #222;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.55;
	word-break: keep-all;
	box-shadow: 0 16px 42px rgba(255, 97, 92, 0.08);
}

.artline-re20-volume__copy li::before {
	position: absolute;
	top: 22px;
	left: 24px;
	width: 12px;
	height: 12px;
	border: 3px solid #ff615c;
	border-radius: 50%;
	content: "";
}

.artline-re20-regeneration {
	background: #f5f5f5;
	text-align: center;
}

.artline-re20-heading--center {
	text-align: center;
}

.artline-re20-regeneration__visual {
	margin: 0 auto;
	border-radius: 18px;
	background: #fff;
}

.artline-re20-step-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.artline-re20-step {
	display: grid;
	gap: 10px;
	padding: 24px 18px;
	border: 1px solid #eadfdd;
	background: #fff;
	text-align: left;
}

.artline-re20-step span {
	color: #ff615c;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 800;
}

.artline-re20-step strong {
	color: #222;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.4;
	word-break: keep-all;
}

.artline-re20-qa {
	background: #fff;
}

.artline-re20-qa-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.artline-re20-qa-item {
	padding: 30px;
	border: 1px solid #f0dddd;
	background: #fff8f6;
}

.artline-re20-qa-item h3 {
	margin: 0;
	color: #111;
	font-size: clamp(1.08rem, 1.45vw, 1.28rem);
	font-weight: 800;
	line-height: 1.4;
	word-break: keep-all;
}

.artline-re20-qa-item h3::before {
	margin-right: 8px;
	color: #ff615c;
	font-family: var(--font-en);
	content: "Q.";
}

.artline-re20-qa-item p {
	margin: 18px 0 0;
	padding: 20px 22px;
	border-radius: 16px;
	background: #ff615c;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.7;
	word-break: keep-all;
}

.artline-text-info {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 76px 48px;
	background: #fff;
}

.artline-text-info__header {
	margin-bottom: 28px;
}

.artline-text-info__header h2 {
	position: relative;
	margin: 0;
	color: #0f8ab8;
	font-size: clamp(1.45rem, 2vw, 1.85rem);
	font-weight: 800;
	line-height: 1.25;
	word-break: keep-all;
}

.artline-text-info__header h2::after {
	display: block;
	width: 48px;
	height: 4px;
	margin-top: 12px;
	background: #0f8ab8;
	content: "";
}

.artline-text-info__body {
	display: grid;
	gap: 24px;
}

.artline-text-info__body p {
	margin: 0;
	color: #222;
	font-size: 1.06rem;
	font-weight: 500;
	line-height: 1.9;
	word-break: keep-all;
}

.artline-eyelid-info {
	display: grid;
	gap: 0;
	width: min(100%, 1200px);
	margin: 0 auto;
	background: #fff;
}

.artline-eyelid-info__section {
	padding: 76px 48px;
	background: #fff;
}

.artline-eyelid-info__body {
	display: grid;
	gap: 22px;
}

.artline-eyelid-info__body p {
	margin: 0;
	color: #222;
	font-size: 1.06rem;
	font-weight: 500;
	line-height: 1.9;
	word-break: keep-all;
}

.artline-eyelid-before-after {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.artline-eyelid-before-after__item {
	padding: 30px;
	border: 1px solid #e5e5e5;
	background: #fafafa;
}

.artline-eyelid-before-after__item h3 {
	margin: 0 0 22px;
	color: #111;
	font-size: clamp(1.2rem, 1.6vw, 1.5rem);
	font-weight: 800;
	line-height: 1.3;
	word-break: keep-all;
}

.artline-eyelid-before-after__images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
}

.artline-eyelid-before-after__images figure {
	margin: 0;
	background: #fff;
	text-align: center;
}

.artline-eyelid-before-after__images img {
	display: block;
	width: 100%;
	aspect-ratio: 187 / 124;
	object-fit: contain;
	background: #fff;
}

.artline-eyelid-before-after__images .is-placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 187 / 124;
	border: 1px dashed #ccc;
	background: #f1f1f1;
}

.artline-eyelid-before-after__images .is-placeholder span {
	color: #999;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 800;
}

.artline-eyelid-before-after__images figcaption {
	padding-top: 12px;
	color: #111;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 800;
}

.artline-eyelid-info__emphasis {
	margin: 34px 0 0;
	padding: 24px 30px;
	border-left: 5px solid #6a3c99;
	background: #f5eff9;
	color: #111;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.7;
	word-break: keep-all;
}

.artline-eye-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
	margin-top: 48px;
}

.artline-eye-process--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
}

.artline-eye-process__item {
	display: grid;
	justify-items: center;
	gap: 18px;
	margin: 0;
	text-align: center;
}

.artline-eye-process__item img,
.artline-eye-process__placeholder {
	display: block;
	width: min(100%, 174px);
	aspect-ratio: 1;
	border: 1px solid #e2e2e2;
	border-radius: 999px;
	background: #fff;
	object-fit: contain;
}

.artline-eye-process__placeholder {
	display: grid;
	place-items: center;
	padding: 18px;
	color: #999;
	font-size: 0.9rem;
	font-weight: 700;
}

.artline-eye-process__item figcaption {
	color: #111;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-eye-methods {
	display: grid;
	gap: 2px;
	margin-top: 34px;
	background: #fff;
}

.artline-eye-methods__item {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	padding: 26px 28px;
	background: #e9e9e9;
}

.artline-eye-methods__media {
	margin: 0;
	background: #fff;
}

.artline-eye-methods__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.artline-eye-methods__content {
	display: grid;
	gap: 12px;
	min-width: 0;
}

.artline-eye-methods__content h3 {
	margin: 0 0 8px;
	color: #111;
	font-size: clamp(1.22rem, 1.65vw, 1.55rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-eye-methods__content p {
	margin: 0;
	color: #222;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-nose-info {
	display: grid;
	gap: 0;
	width: min(100%, 1200px);
	margin: 0 auto;
	background: #fff;
}

.artline-nose-info__section {
	padding: 76px 48px 0;
	background: #fff;
}

.artline-nose-info__section:last-child {
	padding-bottom: 76px;
}

.artline-nose-info__lead {
	margin: 0 0 26px;
	color: #111;
	font-size: 1.06rem;
	font-weight: 600;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-nose-hero-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
	align-items: stretch;
	min-height: 332px;
	background: #e9e9e9;
}

.artline-nose-hero-card__copy {
	display: grid;
	align-content: center;
	gap: 34px;
	padding: 44px 56px;
}

.artline-nose-hero-card__block h3 {
	margin: 0 0 16px;
	color: #222;
	font-size: clamp(1.25rem, 1.7vw, 1.58rem);
	font-weight: 800;
	line-height: 1.3;
	word-break: keep-all;
}

.artline-nose-hero-card__block p {
	margin: 0;
	color: #222;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.artline-nose-hero-card__media {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin: 0 !important;
	min-width: 0;
}

.artline-nose-hero-card__media img {
	display: block;
	width: 100%;
	max-width: 420px;
	height: auto;
	object-fit: contain;
	object-position: right bottom;
	vertical-align: bottom;
}

.artline-nose-section-title {
	margin: 0 0 28px;
	color: #111;
	font-size: clamp(1.25rem, 1.7vw, 1.55rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-nose-section-title--compact {
	margin-top: 34px;
	margin-bottom: 22px;
}

.artline-nose-method-card {
	padding: 32px 28px;
	background: #e9e9e9;
}

.artline-nose-method-card--deep {
	background: #dcdcdc;
}

.artline-nose-before-after {
	margin: 0 !important;
}

.artline-nose-before-after img {
	display: block;
	width: min(100%, 500px);
	height: auto;
}

.artline-nose-hero-card--numbered .artline-nose-hero-card__copy {
	padding: 34px 28px;
}

.artline-nose-number-list {
	display: grid;
	gap: 18px;
}

.artline-nose-number-list__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.artline-nose-number-list__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #2fc4cc;
	color: #fff;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
}

.artline-nose-number-list__item h3 {
	margin: 0 0 6px;
	color: #111;
	font-size: clamp(1.08rem, 1.35vw, 1.28rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-nose-number-list__item h4 {
	margin: 0 0 6px;
	color: #111;
	font-size: clamp(1.08rem, 1.35vw, 1.28rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-nose-number-list__item p {
	margin: 0;
	color: #222;
	font-size: 0.97rem;
	font-weight: 500;
	line-height: 1.7;
	word-break: keep-all;
}

.artline-nose-split-methods {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-top: 42px;
}

.artline-nose-split-methods__column > h3 {
	margin: 0 0 14px;
	color: #111;
	font-size: clamp(1.25rem, 1.7vw, 1.5rem);
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.artline-nose-split-methods .artline-nose-method-card {
	min-height: 312px;
}

.treatment-common-section {
	background: #171717;
}

.treatment-common-banner {
	position: relative;
	overflow: hidden;
	min-height: 380px;
	background-position: center right;
	background-size: cover;
	color: #fff;
}

.treatment-common-banner + .treatment-common-banner {
	border-top: 5px solid #fff;
}

.treatment-common-banner::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(51, 35, 65, 0.98) 0%, rgba(25, 25, 25, 0.92) 32%, rgba(25, 25, 25, 0.5) 58%, rgba(25, 25, 25, 0.18) 100%);
	content: "";
}

.treatment-common-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 380px;
}

.treatment-common-banner__copy {
	width: min(100%, 640px);
}

.treatment-common-banner h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(2.25rem, 4.1vw, 3.0rem);
	font-weight: 800;
	line-height: 1.22;
	word-break: keep-all;
}

.treatment-common-banner p {
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1.05rem, 1.25vw, 1.2rem);
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

@media (max-width: 1024px) {
	.hero,
	.page-shell {
		padding: 56px 0;
	}

	.home-hero {
		min-height: 680px;
	}

	.home-hero__slide::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
	}

	.home-signature-section,
	.home-promotion-section,
	.home-philosophy-section,
	.home-specialty-section {
		padding: 82px 0;
	}

	.home-promotion-layout {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.home-philosophy-section {
		min-height: 520px;
		background-attachment: scroll;
	}

	.home-specialty-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.artline-event-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: stretch;
	}

	.hero__grid,
	.grid--3 {
		grid-template-columns: 1fr;
	}

	.site-header__inner,
	.site-footer__meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header__inner {
		position: relative;
		min-height: 72px;
		padding: 14px 0;
	}

	.site-brand {
		width: calc(100% - 64px);
	}

	.nav-toggle {
		position: absolute;
		top: 14px;
		right: 0;
		z-index: 120;
		display: block;
	}

	body.is-mobile-menu-open {
		overflow: hidden;
	}

	body.is-mobile-menu-open::before {
		position: fixed;
		inset: 0;
		z-index: 100;
		background: rgba(0, 0, 0, 0.28);
		content: "";
	}

	body.is-mobile-menu-open .site-shell {
		height: 100dvh;
		overflow: hidden;
	}

	body.is-mobile-menu-open .site-header {
		z-index: 220;
	}

	body.is-mobile-menu-open .nav-toggle {
		position: fixed;
		top: 22px;
		right: 22px;
		background: #fff;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-nav-panel {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 210;
		display: block;
		width: min(78vw, 360px);
		max-width: calc(100vw - 48px);
		height: 100dvh;
		padding: 82px 20px 36px;
		background: #fff;
		box-shadow: -20px 0 44px rgba(0, 0, 0, 0.16);
		overflow-y: auto;
		overscroll-behavior: contain;
		opacity: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition: opacity 0.22s ease, transform 0.22s ease;
	}

	.site-nav-panel.is-open {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.site-nav {
		width: 100%;
	}

	.menu--primary {
		width: 100%;
		flex-direction: column;
	}

	.menu--primary > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		align-items: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.menu--primary > li > a {
		grid-column: 1;
	}

	.menu a {
		width: 100%;
		min-height: 52px;
		padding: 0;
		font-size: 1.05rem;
	}

	.menu > li > a::after {
		display: none;
	}

	.submenu-toggle {
		display: inline-grid;
		place-items: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #888;
		cursor: pointer;
	}

	.submenu-toggle span {
		width: 8px;
		height: 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translate(-2px, -2px);
		transition: transform 0.18s ease;
	}

	.menu-item-has-children.is-submenu-open > .submenu-toggle span {
		transform: rotate(225deg) translate(-2px, -2px);
	}

	.menu .sub-menu {
		position: static;
		grid-column: 1 / -1;
		display: none;
		min-width: 0;
		padding: 0 0 12px 14px;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		transition: none;
	}

	.menu li:hover > .sub-menu,
	.menu li:focus-within > .sub-menu {
		display: none;
		transform: none;
	}

	.menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.menu .sub-menu a {
		justify-content: flex-start;
		min-height: 36px;
		padding: 0;
		text-align: left;
	}

	.site-footer__contact-area {
		padding: 54px 0 72px;
	}

	.pre-footer-banner {
		min-height: 460px;
		padding: 56px 0;
		background-position: center;
	}

	.pre-footer-banner__inner {
		min-height: 340px;
	}

	.footer-location {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.footer-map {
		min-height: 340px;
	}

	.footer-google-map,
	.footer-kakao-map,
	.footer-map-fallback {
		height: 340px;
	}

	.site-footer__bottom-inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.site-footer__legal {
		justify-items: start;
		text-align: left;
	}

	.site-footer__admin-link {
		justify-self: start;
	}

	.footer-menu {
		justify-content: flex-start;
	}

	.quick-actions {
		right: 12px;
		top: auto;
		bottom: 12px;
		transform: none;
	}

	.quick-action {
		width: 52px;
		height: 52px;
		font-size: 0.7rem;
	}

	.quick-action__icon {
		width: 20px;
		height: 20px;
	}

	.doctors-hero {
		min-height: 420px;
	}

	.doctors-hero__main-title {
		font-size: clamp(2.5rem, 7vw, 3.6rem);
	}

	.doctors-board {
		gap: 34px;
	}

	.doctors-intro__stats {
		gap: 18px;
	}

	.doctors-intro__stat {
		width: min(100%, 210px);
	}

	.doctor-profile-panel {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
		overflow: visible;
		padding: 32px;
	}

	.location-map-section,
	.location-map__overlay {
		min-height: 0;
	}

	.location-map-section {
		display: flex;
		flex-direction: column-reverse;
	}

	.location-map {
		position: relative;
		height: 420px;
	}

	.location-map__overlay {
		display: block;
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.location-hours-card {
		width: 100%;
		box-shadow: none;
	}

	.location-info-grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.treatment-detail-hero {
		min-height: 0;
		padding: 96px 0 86px;
	}

	.treatment-detail-hero__inner {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.treatment-detail-hero__copy {
		max-width: 100%;
	}

	.treatment-detail-hero__media {
		justify-content: center;
		max-width: 100%;
		min-height: 360px;
	}

	.speedy-3d-scene {
		width: min(72vw, 420px);
		height: min(72vw, 420px);
		margin-right: auto;
	}

	.treatment-target-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.treatment-target-card:nth-child(2n) {
		border-right: 0;
	}

	.treatment-target-card:nth-child(n + 3) {
		border-top: 1px solid rgba(0, 0, 0, 0.16);
	}

	.treatment-info-strip__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.treatment-common-banner,
	.treatment-common-banner__inner {
		min-height: 360px;
	}

	.treatment-common-banner::before {
		background: linear-gradient(90deg, rgba(25, 25, 25, 0.98) 0%, rgba(25, 25, 25, 0.88) 48%, rgba(25, 25, 25, 0.34) 100%);
	}

	.artline-cube-section {
		padding: 68px 28px;
	}

	.artline-cube-tech,
	.artline-cube-lifting,
	.artline-cube-treatment-area {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.artline-cube-feature-grid {
		grid-template-columns: 1fr;
	}

	.artline-cube-lifting__visual {
		order: -1;
	}

	.artline-cube-recommend ul {
		grid-template-columns: 1fr;
	}

	.artline-re20-section {
		padding: 68px 28px;
	}

	.artline-re20-intro,
	.artline-re20-volume {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.artline-re20-ingredient__grid,
	.artline-re20-step-grid,
	.artline-re20-qa-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 640px) {
	:root {
		--container: min(100vw - 24px, 100%);
	}

	.site-popup-overlay {
		padding: 40px 5px;
	}

	.site-popup {
		width: 100%;
	}

	.site-popup__inner {
		padding: 16px 0;
	}

	.site-popup__hide {
		font-size: 0.75rem;
	}

	.quick-actions {
		right: auto;
		top: auto;
		bottom: 12px;
		left: 50%;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		width: min(calc(100vw - 22px), 430px);
		gap: 6px;
		padding: 8px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.92);
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
		transform: translateX(-50%);
		backdrop-filter: blur(10px);
	}

	.quick-action {
		width: 100%;
		height: 58px;
		box-shadow: none;
		font-size: 0.68rem;
	}

	.quick-action--call {
		display: flex;
	}

	.hero-card,
	.info-card,
	.content-block,
	.cta-panel,
	.entry-card {
		padding: 22px;
		border-radius: var(--radius-md);
	}

	.home-hero {
		height: 130vw;
		min-height: 0;
		max-height: 780px;
	}

	.home-hero__slide {
		background-image: var(--home-mobile-bg) !important;
		background-size: contain;
		background-position: center top !important;
	}

	.home-hero__slide {
		align-items: flex-start;
	}

	.home-hero__inner {
		width: calc(100vw - 40px);
		padding-top: 32px;
	}

	.home-hero__copy {
		width: min(100%, 320px);
	}

	.home-hero__eyebrow {
		margin-bottom: 8px;
		font-size: 0.68rem;
		letter-spacing: 0.04em;
	}

	.home-hero__copy h1 {
		font-size: 2.6rem;
	}

	.home-hero__copy p:not(.home-hero__eyebrow) {
		font-size: 1.12rem;
	}

	.home-hero__controls {
		bottom: 28px;
	}

	.home-hero__dot {
		width: 30px;
	}

	.home-hero__dot.is-active {
		width: 52px;
	}

	.home-section-header h2,
	.home-promotion-copy h2 {
		font-size: 2.35rem;
	}

	.home-signature-section {
		padding: 72px 0 78px;
	}

	.home-signature-slider {
		margin-top: 36px;
		overflow: visible;
	}

	.home-signature-slider[data-reveal] {
		opacity: 1;
		transform: none;
	}

	.home-signature-track {
		gap: 16px;
	}

	.home-signature-card {
		flex: 0 0 calc(100vw - 48px);
		width: calc(100vw - 48px);
	}

	.home-promotion-card {
		flex: 0 0 100%;
	}

	.home-signature-card strong,
	.home-specialty-card strong {
		left: 20px;
		right: 20px;
		bottom: 18px;
		font-size: 2.05rem;
	}

	.treatment-detail-hero {
		padding: 72px 0 46px;
	}

	.treatment-detail-hero__inner {
		gap: 28px;
	}

	.treatment-detail-hero__copy {
		padding-right: 0;
		padding-left: 0;
		text-align: center;
	}

	.treatment-keyword-list {
		justify-content: center;
	}

	.treatment-detail-hero h1 {
		font-size: 2.55rem;
	}

	.treatment-detail-hero__summary {
		font-size: 1.12rem;
	}

	.treatment-detail-hero__media {
		min-height: 170px;
	}

	.speedy-3d-scene {
		width: min(50vw, 200px);
		height: min(50vw, 200px);
	}

	.speedy-3d-scene .face.is-default-logo img {
		max-width: 200px;
		max-height: 78px;
	}

	.speedy-3d-scene .face.is-default-mark img {
		max-width: 200px;
		max-height: 200px;
	}

	.treatment-keyword-list span {
		min-height: 34px;
		padding: 0 14px;
		font-size: 0.9rem;
	}

	.treatment-target-grid {
		grid-template-columns: 1fr;
	}

	.treatment-info-strip__inner {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px 10px;
	}

	.treatment-target-card,
	.treatment-target-card:nth-child(2n),
	.treatment-target-card:nth-child(n + 3) {
		min-height: 150px;
		border-right: 0;
		border-top: 1px solid rgba(0, 0, 0, 0.16);
	}

	.treatment-target-card:first-child {
		border-top: 0;
	}

	.treatment-info-strip {
		padding: 30px 0;
	}

	.treatment-info-item {
		flex-direction: column;
		justify-content: flex-start;
		gap: 10px;
		padding: 0;
		text-align: center;
	}

	.treatment-info-item__icon {
		width: 42px;
		height: 42px;
	}

	.treatment-info-item__body {
		gap: 4px;
	}

	.treatment-info-item strong {
		font-size: 1rem;
	}

	.treatment-info-item em {
		font-size: 0.9rem;
		line-height: 1.35;
	}

	.treatment-editor-section {
		padding: 64px 0 82px;
	}

	.artline-botox-content {
		gap: 58px;
	}

	.artline-botox-heading {
		margin-bottom: 26px;
	}

	.artline-botox-card-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artline-botox-card p {
		padding: 26px 22px 30px;
	}

	.artline-botox-part-images {
		gap: 20px;
	}

	.artline-botox-duration-list {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.artline-botox-duration-item {
		flex-direction: column;
		align-items: flex-start;
		min-height: 0;
		padding: 24px 22px;
	}

	.artline-botox-antibody {
		padding: 30px 22px;
	}

	.artline-botox-effect-card {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 34px 22px;
	}

	.artline-botox-before-after figcaption {
		min-height: 46px;
		font-size: 1rem;
	}

	.artline-filler-content {
		gap: 58px;
	}

	.artline-filler-heading {
		margin-bottom: 26px;
	}

	.artline-filler-point p {
		margin-left: 0;
	}

	.artline-filler-area__info {
		padding: 30px 22px;
	}

	.artline-filler-area__info ol {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.artline-filler-care-list li,
	.artline-filler-care-notice {
		padding-left: 38px;
	}

	.artline-vline-content {
		gap: 58px;
	}

	.artline-vline-intro {
		padding: 0;
	}

	.artline-vline-heading {
		margin-bottom: 26px;
	}

	.artline-vline-before-after-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artline-vline-before-after-grid figure {
		min-height: 0;
		padding: 24px;
	}

	.artline-vline-before-after-grid img {
		max-height: none;
	}

	.artline-vline-plus-intro {
		padding: 0;
	}

	.artline-vline-plus-mechanism {
		grid-template-columns: 1fr;
		margin: 28px 0 24px;
	}

	.artline-vline-plus-mechanism__copy {
		gap: 14px;
		padding: 34px 0;
	}

	.artline-vline-plus-mechanism__copy h3 {
		font-size: 2.25rem;
	}

	.artline-vline-plus-mechanism__copy strong {
		font-size: 1.18rem;
	}

	.artline-vline-plus-mechanism__copy p {
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.artline-vline-plus-mechanism__media {
		padding: 5px;
	}

	.artline-vline-plus-recommend {
		padding: 34px 22px;
	}

	.artline-vline-plus-recommend ol {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.artline-vline-plus-recommend li {
		min-height: 0;
		padding: 24px 22px;
	}

	.artline-allinone-content {
		gap: 58px;
	}

	.artline-allinone-heading {
		margin-bottom: 26px;
	}

	.artline-allinone-effect,
	.artline-allinone-package-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artline-allinone-effect__card,
	.artline-allinone-package {
		padding: 28px 22px;
	}

	.artline-juvelook-content {
		gap: 0;
	}

	.artline-juvelook-heading {
		margin-bottom: 26px;
	}

	.artline-juvelook-model {
		width: min(100%, 100%);
		grid-template-columns: 1fr;
		gap: 30px;
		min-height: 0;
		padding: 42px 24px 0;
	}

	.artline-juvelook-model__copy h2 {
		font-size: 2.2rem;
	}

	.artline-juvelook-model__image {
		width: min(100%, 320px);
		margin-right: 0;
	}

	.artline-juvelook-duo__inner {
		padding: 46px 18px 54px;
	}

	.artline-juvelook-duo__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artline-juvelook-duo__grid figure,
	.artline-juvelook-finish__visual {
		padding: 0;
	}

	.artline-lilied-heading {
		margin-bottom: 24px;
	}

	.artline-lilied-heading h2 {
		font-size: 2rem;
	}

	.artline-lilied-intro {
		padding: 52px 18px 58px;
	}

	.artline-lilied-intro p {
		font-size: 1rem;
		line-height: 1.75;
	}

	.artline-lilied-result {
		padding: 54px 18px 70px;
	}

	.artline-lilied-result__grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.artline-radiesse-heading {
		margin-bottom: 24px;
	}

	.artline-radiesse-heading h2 {
		font-size: 2rem;
	}

	.artline-radiesse-intro,
	.artline-radiesse-safety,
	.artline-radiesse-note {
		padding: 52px 18px;
	}

	.artline-radiesse-intro p,
	.artline-radiesse-safety p,
	.artline-radiesse-note p {
		font-size: 1rem;
		line-height: 1.75;
	}

	.artline-radiesse-target {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 46px 22px;
	}

	.artline-radiesse-icons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 14px;
		padding: 42px 18px;
	}

	.artline-cube-section {
		padding: 52px 18px;
	}

	.artline-cube-heading {
		margin-bottom: 28px;
	}

	.artline-cube-heading h2,
	.artline-cube-tech__copy h2,
	.artline-cube-lifting__copy h2 {
		font-size: 2rem;
	}

	.artline-cube-tech__copy > p:not(.artline-cube-eyebrow) {
		font-size: 1rem;
		line-height: 1.75;
	}

	.artline-cube-frequency li {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.artline-cube-feature {
		flex-direction: column;
		min-height: 0;
		padding: 24px 20px;
	}

	.artline-cube-lifting__copy li {
		border-radius: 16px;
		font-size: 1rem;
	}

	.artline-cube-before-after-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artline-re20-section {
		padding: 52px 18px;
	}

	.artline-re20-heading {
		margin-bottom: 28px;
	}

	.artline-re20-heading h2,
	.artline-re20-intro__copy h2,
	.artline-re20-volume__copy h2 {
		font-size: 2rem;
	}

	.artline-re20-intro__copy > p:not(.artline-re20-eyebrow),
	.artline-re20-volume__copy > p {
		font-size: 1rem;
		line-height: 1.75;
	}

	.artline-re20-ingredient__grid,
	.artline-re20-step-grid,
	.artline-re20-qa-list {
		grid-template-columns: 1fr;
	}

	.artline-re20-ingredient__item {
		min-height: 0;
		padding: 24px 22px;
	}

	.artline-re20-volume__copy li,
	.artline-re20-qa-item,
	.artline-re20-qa-item p {
		border-radius: 14px;
	}

	.artline-text-info {
		padding: 52px 18px;
	}

	.artline-text-info__header {
		margin-bottom: 22px;
	}

	.artline-text-info__body {
		gap: 18px;
	}

	.artline-text-info__body p {
		font-size: 1rem;
		line-height: 1.8;
	}

	.artline-eyelid-info__section {
		padding: 52px 18px;
	}

	.artline-eyelid-info__body {
		gap: 18px;
	}

	.artline-eyelid-info__body p {
		font-size: 1rem;
		line-height: 1.8;
	}

	.artline-eyelid-before-after {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artline-eyelid-before-after__item {
		padding: 22px 18px;
	}

	.artline-eyelid-before-after__images {
		gap: 10px;
	}

	.artline-eyelid-info__emphasis {
		margin-top: 24px;
		padding: 20px 18px;
		font-size: 1.02rem;
	}

	.artline-eye-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 18px;
		margin-top: 34px;
	}

	.artline-eye-process--five {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.artline-eye-process__item img,
	.artline-eye-process__placeholder {
		width: min(100%, 150px);
	}

	.artline-eye-process__item figcaption {
		font-size: 0.95rem;
	}

	.artline-eye-methods {
		margin-top: 28px;
	}

	.artline-eye-methods__item {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 20px 16px;
	}

	.artline-eye-methods__media {
		width: min(100%, 280px);
		margin: 0 auto;
	}

	.artline-eye-methods__content h3 {
		font-size: 1.18rem;
	}

	.artline-eye-methods__content p {
		font-size: 0.96rem;
		line-height: 1.75;
	}

	.artline-nose-info__section {
		padding: 52px 18px 0;
	}

	.artline-nose-info__section:last-child {
		padding-bottom: 52px;
	}

	.artline-nose-info__lead {
		margin-bottom: 20px;
		font-size: 0.98rem;
	}

	.artline-nose-hero-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.artline-nose-hero-card__copy {
		gap: 24px;
		padding: 28px 20px 10px;
	}

	.artline-nose-hero-card__block h3 {
		margin-bottom: 10px;
		font-size: 1.18rem;
	}

	.artline-nose-hero-card__block p {
		font-size: 0.95rem;
		line-height: 1.75;
	}

	.artline-nose-hero-card__media {
		justify-content: flex-end;
	}

	.artline-nose-hero-card__media img {
		width: min(100%, 360px);
	}

	.artline-nose-section-title {
		margin-bottom: 20px;
		font-size: 1.2rem;
	}

	.artline-nose-section-title--compact {
		margin-top: 26px;
		margin-bottom: 18px;
	}

	.artline-nose-method-card {
		padding: 24px 18px;
	}

	.artline-nose-split-methods {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 30px;
	}

	.artline-nose-split-methods__column > h3 {
		margin-bottom: 12px;
		font-size: 1.14rem;
	}

	.artline-nose-split-methods .artline-nose-method-card {
		min-height: 0;
	}

	.artline-nose-before-after img {
		width: min(100%, 500px);
	}

	.artline-nose-hero-card--numbered .artline-nose-hero-card__copy {
		padding: 26px 18px 8px;
	}

	.artline-nose-number-list {
		gap: 16px;
	}

	.artline-nose-number-list__item {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 12px;
	}

	.artline-nose-number-list__badge {
		width: 28px;
		height: 28px;
		font-size: 0.9rem;
	}

	.artline-nose-number-list__item h3 {
		font-size: 1.05rem;
	}

	.artline-nose-number-list__item h4 {
		font-size: 1.05rem;
	}

	.artline-nose-number-list__item p {
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.treatment-common-banner {
		min-height: 330px;
		background-position: center right;
	}

	.treatment-common-banner::before {
		background: linear-gradient(90deg, rgba(25, 25, 25, 0.98) 0%, rgba(25, 25, 25, 0.88) 70%, rgba(25, 25, 25, 0.58) 100%);
	}

	.treatment-common-banner__inner {
		min-height: 330px;
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.treatment-common-banner h2 {
		font-size: 2.15rem;
	}

	.treatment-common-banner p {
		margin-top: 20px;
		font-size: 1rem;
	}

	.site-brand__name {
		font-size: 1.08rem;
	}

	.footer-detail {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.pre-footer-banner {
		padding: 42px 0;
	}

	.pre-footer-banner__card {
		width: 100%;
		padding: 32px 24px;
	}

	.pre-footer-banner__actions {
		grid-template-columns: 1fr;
	}

	.footer-location__details {
		margin-top: 36px;
	}

	.footer-hours div {
		grid-template-columns: 70px minmax(0, 1fr);
	}

	.footer-note {
		white-space: normal;
	}

	.footer-menu {
		gap: 12px 18px;
	}

	.site-footer__company span {
		margin: 0 6px;
	}

	.footer-social {
		flex-wrap: wrap;
	}

	.site-footer__logo img {
		width: 170px;
	}

	.doctors-section {
		padding: 58px 0 72px;
	}

	.doctors-board {
		grid-template-columns: 1fr;
	}

	.doctors-intro {
		gap: 38px;
	}

	.doctors-intro__header h2 {
		font-size: 2rem;
	}

	.doctors-intro__stats {
		grid-template-columns: 1fr;
	}

	.doctors-intro__stat {
		width: min(100%, 230px);
	}

	.doctors-hero__main-title {
		flex-direction: column;
		gap: 4px;
		font-size: 3rem;
	}

	.doctors-hero__subtitle {
		font-size: 1.35rem;
	}

	.doctor-card__caption {
		flex-wrap: wrap;
	}

	.doctor-profile-panel {
		padding: 28px 22px;
	}

	.doctor-profile-panel__en {
		font-size: var(--font-en-24);
	}

	.location-hero {
		min-height: 420px;
	}

	.clinic-view-hero {
		min-height: 420px;
	}

	.reservation-hero {
		min-height: 420px;
	}

	.artline-event-hero {
		min-height: 420px;
	}

	.location-hero__main-title,
	.clinic-view-hero__main-title,
	.reservation-hero__main-title,
	.artline-event-hero__main-title {
		flex-direction: column;
		gap: 4px;
		font-size: 3rem;
	}

	.location-hero__subtitle {
		font-size: 1.35rem;
	}

	.clinic-view-hero__subtitle {
		font-size: 1.35rem;
	}

	.reservation-hero__subtitle {
		font-size: 1.35rem;
	}

	.artline-event-hero__subtitle {
		font-size: 1.35rem;
	}

	.reservation-board-section {
		padding: 64px 0 72px;
	}

	.noncovered-cost-section {
		padding: 64px 0 72px;
	}

	.noncovered-cost-header {
		margin-bottom: 30px;
	}

	.noncovered-cost-subtitle {
		margin: 38px 0 14px;
		font-size: 1.45rem;
	}

	.noncovered-cost-subtitle small {
		display: block;
		margin: 6px 0 0;
		font-size: 0.68rem;
	}

	.noncovered-cost-table th,
	.noncovered-cost-table td {
		padding: 16px 18px;
	}

	.noncovered-table-wrap {
		overflow-x: visible;
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
	}

	.noncovered-cost-table {
		min-width: 0;
		font-size: 0.86rem;
		line-height: 1.38;
		table-layout: fixed;
	}

	.noncovered-cost-table th,
	.noncovered-cost-table td {
		padding: 11px 8px;
		word-break: keep-all;
	}

	.noncovered-cost-table--simple th:last-child,
	.noncovered-cost-table--simple td:last-child {
		text-align: right;
	}

	.noncovered-cost-table--simple th:first-child,
	.noncovered-cost-table--simple td:first-child {
		width: 68%;
	}

	.noncovered-cost-table--simple th:last-child,
	.noncovered-cost-table--simple td:last-child {
		width: 32%;
	}

	.noncovered-cost-table th {
		font-size: 0.82rem;
	}

	.noncovered-cost-table__category {
		width: 24%;
		font-size: 0.84rem;
	}

	.noncovered-cost-table__category small {
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.noncovered-cost-table__price {
		width: 28%;
		font-size: 0.84rem;
		text-align: right;
		white-space: normal;
	}

	.noncovered-cost-table--matrix,
	.noncovered-cost-table--matrix thead,
	.noncovered-cost-table--matrix tbody,
	.noncovered-cost-table--matrix tr,
	.noncovered-cost-table--matrix th,
	.noncovered-cost-table--matrix td {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.noncovered-cost-table--matrix thead {
		display: none;
	}

	.noncovered-cost-table--matrix {
		border-collapse: separate;
		border-spacing: 0;
		background: #fff;
		font-size: 0.95rem;
	}

	.noncovered-cost-table--matrix tr {
		margin: 0 0 14px;
		border: 1px solid #e8e1ee;
		background: #fff;
	}

	.noncovered-cost-table--matrix tr:last-child {
		margin-bottom: 0;
	}

	.noncovered-cost-table--matrix .noncovered-cost-table__category {
		width: 100%;
		padding: 14px 16px;
		background: #f5eff9;
		color: #6a3c99;
		font-size: 1rem;
		text-align: left;
	}

	.noncovered-cost-table--matrix .noncovered-cost-table__price {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 14px;
		width: 100%;
		padding: 12px 16px;
		border-bottom: 1px solid #f0edf2;
		text-align: right;
		font-size: 0.92rem;
		white-space: normal;
	}

	.noncovered-cost-table--matrix .noncovered-cost-table__price::before {
		content: attr(data-label);
		color: #5f5864;
		font-weight: 700;
		text-align: left;
	}

	.artline-event-list-section {
		padding: 64px 0 82px;
	}

	.artline-event-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.artline-event-card {
		width: min(100%, 440px);
		margin: 0 auto;
	}

	.promotion-single-section {
		padding: 64px 0 82px;
	}

	.promotion-single-header {
		display: grid;
		align-items: start;
		margin-bottom: 30px;
	}

	.clinic-view-section {
		padding: 68px 0 72px;
	}

	.clinic-view-section__header {
		margin-bottom: 34px;
	}

	.clinic-view-card {
		flex-basis: min(78vw, 360px);
	}

	.clinic-view-track {
		gap: 18px;
		animation-duration: 30s;
	}

	.clinic-marquee-section {
		padding: 30px 0 36px;
	}

	.location-hours-card,
	.location-transport-card,
	.location-channel-card {
		padding: 28px 22px;
	}

	.location-hours-list li,
	.location-transport-card {
		grid-template-columns: 1fr;
	}

	.location-hours-list strong {
		white-space: normal;
	}

	.location-channel-grid {
		grid-template-columns: 1fr;
	}
}
