/* Minimal reset to reduce browser differences */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	font-size: 1rem;
	line-height: 1.4;
	overflow-x: hidden;
}


img, svg, video, canvas {
	display: block;
	max-width: 100%;
}

button, input, select, textarea {
	font: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	color: inherit;
}


:root {
	--bg: #050505;
	--fg: #f4f4f4;
	--muted: #b7b7b7;
	--border: rgba(255, 255, 255, .14);
	--panel: rgba(255, 255, 255, .06);
	--r: 14px;
	--max: 1120px;
	--brand: #ff3b30;
	--brand2: #ff7a18;
	--maroon: #2a0010;
	--maroon2: #3a0017;
	--orange: #ff5a1a;
	--navy: #0b0b2d;
}

body {
	background: var(--bg);
	color: var(--fg);
	font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	--fade-bg: var(--bg);
}

#wrapper {
	padding-top: 6.25rem;
}

main {
	min-height: 600px;
}

/* Common utilities */
.img-fluid {
	margin-left: auto;
	margin-right: auto;
}

.is-pc {
	display: block;
}

.is-sp {
	display: none;
}

/* Common layout */
.site-container {
	max-width: var(--max);
}

.panel {
	border: 1px solid var(--border);
	background: var(--panel);
	border-radius: var(--r);
}

.cardish {
	border: 1px solid var(--border);
	background: rgba(0, 0, 0, .25);
	border-radius: var(--r);
}

.section {
	padding: 3rem 0;
}

/* Offset anchor jumps for fixed header */
#features,
#pricing,
#facility,
#access {
	scroll-margin-top: 5rem;
}

/* Common typography */
.t-center {
	text-align: center;
}

.t-md-start {
	text-align: left;
}

.t-xs {
	font-size: 0.9rem;
}

.t-small {
	font-size: 1rem;
}

.t-lg {
	font-size: 1.4rem;
}

.t-xl {
	font-size: 1.8rem;
}


.t-muted {
	color: var(--muted);
}

.t-accent {
	color: #ffd7b0;
}

.t-strong {
	font-weight: 700;
}

.t-heavy {
	font-weight: 700;
}

.t-uppercase {
	text-transform: uppercase;
	letter-spacing: .18em;
}

.pre-line {
	white-space: pre-line;
}

/* Common headings */
.section__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-weight: 700;
	color: #fff;
	font-size: 1.5rem;
	font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	padding: 0.55rem 1.4rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(0, 0, 0, .55);
	box-shadow: 0 0 18px rgba(0, 0, 0, .45), 0 0 16px rgba(255, 120, 24, .25);
	text-shadow: 0 0 12px rgba(255, 122, 24, .35), 0 0 2px rgba(0, 0, 0, .85);
}

.section__head::before,
.section__head::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--brand2);
	display: inline-block;
}

/* Common imagery */
.feature__img {
	border-radius: 12px;
	aspect-ratio: 1/1;
	object-fit: cover;
	width: 100%;
}

.therapist__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
	display: block;
}

.therapist__link {
	display: block;
	aspect-ratio: 3/4;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .14);
	background: rgba(0, 0, 0, .2);
	position: relative;
}

.therapist-card {
	text-align: center;
}

.therapist__name {
	margin-top: 8px;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.2;
}

.therapist__meta {
	margin-top: 5.6px;
	color: var(--muted);
	line-height: 1.5;
	text-align: left;
	padding: 0 0.5rem;
}

/* Therapists slider (index only) */
.page-index .therapist-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
	position: relative;
	cursor: grab;
	user-select: none;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

.page-index .therapist-list > .therapist-card {
	flex: 0 0 260px;
	max-width: 260px;
	scroll-snap-align: start;
}

.page-index .therapist-list::-webkit-scrollbar {
	height: 0;
}


.page-index .therapist-list.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.page-index .therapist-list.is-dragging * {
	user-select: none;
	pointer-events: none;
}

.page-index .therapist-progress {
	height: 4px;
	background: rgba(255, 255, 255, .12);
	border-radius: 999px;
	overflow: hidden;
	margin-top: 12px;
}

.page-index .therapist-progress__bar {
	display: block;
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #ffcf9f, #e98c3d);
	transform-origin: left;
	transform: scaleX(0);
	transition: transform .12s ease;
}

.page-index .therapist-controls {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 12px;
}

.page-index .therapist-btn {
	width: 36px;
	height: 36px;
	color: #fff;
	padding: 0;
	border: 0;
	background: transparent;
	border-radius: 999px;
}

.page-index .therapist-btn__icon {
	width: 100%;
	height: 100%;
	display: block;
}

.facility__img {
	border: 1px solid rgba(255, 255, 255, .12);
}

.map__img {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, .12);
}

.model-shot {
	filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .55));
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
}

.model-shot-wrap {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.model-shot-wrap::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 90px;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--fade-bg) 0%, transparent) 0%, color-mix(in srgb, var(--fade-bg) 55%, transparent) 55%, var(--fade-bg) 100%);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 45%, rgba(0, 0, 0, 1) 100%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 45%, rgba(0, 0, 0, 1) 100%);
	pointer-events: none;
}

.model-shot--lg {
	max-width: 420px;
}

.model-shot--md {
	max-width: 360px;
}

.brand__logo {
	display: block;
	height: auto;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .45));
}

.brand__title {
	margin: 0;
}

.brand__sub {
	font-weight: 700;
	letter-spacing: .2em;
	color: #ffd7b0;
}

.brand__note {
	font-size: 0.9rem;
	color: var(--muted);
}

/* Common CTA */
.cta {
	row-gap: 8px;
	flex-wrap: wrap;
}

.cta > .col {
	flex: 0 0 auto;
	width: auto;
}

.cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0.75rem 1.05rem;
	border-radius: 14px;
	border: 3px solid var(--cta);
	background: rgba(0, 0, 0, .55);
	box-shadow: 0 0 16px rgba(0, 0, 0, .35), 0 0 12px color-mix(in srgb, var(--cta) 65%, transparent);
	text-decoration: none;
	color: var(--cta);
	font-weight: 700;
	letter-spacing: .02em;
	white-space: nowrap;
	transition: transform .12s ease, box-shadow .12s ease;
	text-transform: uppercase;
	text-shadow: 0 0 8px color-mix(in srgb, var(--cta) 70%, transparent);
	min-width: 160px;
}

.cta__btn:hover {
	box-shadow: 0 0 18px rgba(0, 0, 0, .45), 0 0 18px color-mix(in srgb, var(--cta) 75%, transparent);
}

.cta__btn:active {
	transform: translateY(2px);
	box-shadow: 0 0 10px rgba(0, 0, 0, .45), 0 0 12px color-mix(in srgb, var(--cta) 70%, transparent);
}

.cta__badge {
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, .6);
	border: 1px solid var(--cta);
	color: var(--cta);
}

.cta__btn--kakao {
	--cta: #ffb12a;
}

.cta__btn--line {
	--cta: #41d96a;
}

.cta__btn--call {
	--cta: #5db4ff;
}

.cta__btn--resv {
	--cta: #ff6a4b;
}

.cta__btn--x {
	--cta: #e6e6e6;
}

.cta__btn--tiktok {
	--cta: #ff4fd8;
}

.btn-outline-gold {
	display: inline-block;
	padding: 0.6rem 1.6rem;
	border-radius: 999px;
	border: 1px solid #ffb300;
	color: #ffcc7a;
	text-decoration: none;
	font-weight: 700;
}

.btn-outline-gold:hover {
	filter: brightness(1.08);
}

/* Common parts */
.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	--bar-h: 3px;
	--bar-gap: 18px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 8px;
	background: rgba(255, 255, 255, .04);
	padding: 0 0.75rem;
	position: relative;
}

.nav-toggle__bar {
	position: absolute;
	left: 50%;
	width: 55px;
	height: var(--bar-h);
	margin: 0;
	transform: translateX(-50%);
	background: #ffd7b0;
	border-radius: 999px;
	transition: transform .18s ease, opacity .18s ease;
	transform-origin: center;
}

.nav-toggle__bar:nth-child(1) {
	top: calc(50% - (var(--bar-h) / 2) - var(--bar-gap));
}

.nav-toggle__bar:nth-child(2) {
	top: calc(50% - (var(--bar-h) / 2));
}

.nav-toggle__bar:nth-child(3) {
	top: calc(50% - (var(--bar-h) / 2) + var(--bar-gap));
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translate(-50%, var(--bar-gap)) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translate(-50%, calc(var(--bar-gap) * -1)) rotate(-45deg);
}

.mobile-nav {
	background: #050505;
	border-bottom: 1px solid var(--border);
}

.mobile-nav .site-nav {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 12px 18px;
}

.mobile-nav .site-nav__link {
	display: block;
	padding: 0.65rem 0.6rem;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 10px;
	background: rgba(255, 255, 255, .03);
	text-align: left;
}


.ribbon {
	position: relative;
	display: inline-block;
	padding: 0.7rem 2.1rem;
	background: linear-gradient(180deg, #ffcf9f 0%, #f1a562 55%, #e98c3d 100%);
	color: #2a1200;
	font-weight: 700;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .45);
	letter-spacing: .04em;
	overflow: visible;
}

.ribbon:before,
.ribbon:after {
	content: "";
	position: absolute;
	top: 0;
	width: 28px;
	height: 100%;
	background: linear-gradient(180deg, #ffcf9f 0%, #f1a562 55%, #e98c3d 100%);
}

.ribbon:before {
	left: -21px;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.ribbon:after {
	right: -21px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #050505;
	will-change: transform;
	transform: translateZ(0);
}

#header .topbar {
	background: #0a0a0a;
	border-bottom: 1px solid var(--border);
	padding-top: 0.125rem;
	padding-bottom: 0.125rem;
	background: linear-gradient(180deg, rgba(15, 15, 15, .98), rgba(5, 5, 5, .98));
}

#header .ico {
	width: 28px;
	height: 28px;
}

#header .topbar__link {
	color: var(--fg);
	text-decoration: none;
}

#header .social__text {
	color: var(--muted);
}

#header .header-phone {
	color: #ffd7b0;
	text-decoration: none;
}

#header .topbar__inner {
	font-size: 0.88rem;
	letter-spacing: .04em;
}

#header .topbar__phone {
	white-space: nowrap;
	color: #fff2d9;
	text-shadow: 0 2px 6px rgba(0, 0, 0, .8);
}

#header .topbar__links {
	gap: 5.6px;
	padding-left: 0.75rem;
	border-left: 1px solid rgba(255, 255, 255, .18);
}

#header .social {
	display: inline-flex;
	align-items: center;
	gap: 7.2px;
	padding: 0.2rem 0.45rem;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	white-space: nowrap;
	color: #e6e6e6;
	text-decoration: none;
	background: rgba(255, 255, 255, .03);
}

#header .social:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, .35);
}

#header .social__icon {
	width: 14px;
	height: 14px;
	filter: brightness(0) invert(1);
}

#header .pill {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 0.9rem;
	color: var(--fg);
}

#header .site-nav__link {
	color: #fff6d6;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .02em;
	opacity: .95;
	text-shadow: 0 2px 6px rgba(0, 0, 0, .8), 0 0 8px rgba(255, 165, 90, .35);
}

#header .site-nav__link:hover {
	opacity: 1;
	text-decoration: none;
	color: #ffd7b0;
}

#header .brand__logo--header {
	width: 100px;
}

#header .brand__sub {
	font-weight: 700;
	letter-spacing: .3em;
	color: #ff9adf;
	text-transform: uppercase;
	margin-top: 3.2px;
	font-size: 0.78rem;
}

#header .brand__note {
	font-size: 0.66rem;
	letter-spacing: .15em;
	color: #ffb4e6;
	margin-top: 1.6px;
}

#header .header-nav {
	border-bottom: 1px solid var(--border);
}

#footer.footer-bar {
	border-top: 1px solid var(--border);
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	justify-content: center;
}

.footer-nav__link {
	color: #fff2d9;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .02em;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .03);
	box-shadow: 0 0 10px rgba(0, 0, 0, .35);
	transition: color .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.footer-nav__link:hover {
	color: #ffd7b0;
	border-color: rgba(255, 255, 255, .35);
	box-shadow: 0 0 14px rgba(0, 0, 0, .45);
}

/* Page-specific (index) */
.page-index .pickup {
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	background: radial-gradient(700px 350px at 70% 20%, rgba(255, 90, 26, .18), transparent 60%),
	radial-gradient(700px 350px at 30% 10%, rgba(255, 59, 48, .15), transparent 65%),
	linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .75));
}

.page-index .brand--pickup .brand__logo {
	max-width: 100%;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.page-index .brand__logo--about {
	width: 440px;
}

.page-index .pickup__kicker {
	letter-spacing: .08em;
}

.page-index .pickup__kicker--mint {
	color: #a0ffcf;
}

.page-index .pickup__kicker--orange {
	color: #ff7a18;
}

.page-index .pickup__desc {
	max-width: 760px;
}

.page-index .pickup__grid {
	display: grid;
	grid-template-columns:1.2fr .8fr;
	gap: 24px;
	align-items: center;
	padding: 2.125rem;
}

.page-index .about__text {
}

.page-index .notes__text {
}

.page-index .pickup__model {
	width: 100%;
	max-width: 360px;
	height: auto;
	filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .65));
}

.page-index .section--pickup {
	background: transparent;
}

.page-index .section--price {
	background: linear-gradient(180deg, var(--maroon), var(--maroon2));
}

.page-index .section--therapists {
	background: linear-gradient(180deg, var(--maroon), var(--maroon2));
}

.page-index .section--facility {
	background: linear-gradient(180deg, var(--maroon), var(--maroon2));
}

.page-index .section--notes {
	background: linear-gradient(180deg, #070721, var(--navy));
	--fade-bg: var(--navy);
}

.page-index .price__card {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	background: rgba(0, 0, 0, .25);
	padding: 1rem;
}

.page-index .price__table {
	font-size: 1.2rem;
}

.page-index .price__table td {
	padding: 0.15rem 0;
}

.page-index .price__table td:last-child {
	text-align: right;
	color: #ffd7b0;
	font-weight: 700;
}

/* Page-specific (therapists schedule) */
.page-therapists .date-filter,
.page-schedule .date-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 20px;
}

.page-therapists .date-link,
.page-schedule .date-link {
	--neon: #f0f0f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 1rem;
	border-radius: 999px;
	border: 3px solid color-mix(in srgb, var(--neon) 65%, transparent);
	color: var(--neon);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .02em;
	background: rgba(0, 0, 0, .35);
	box-shadow: 0 0 8px color-mix(in srgb, var(--neon) 55%, transparent), inset 0 0 8px rgba(255, 255, 255, .06);
	text-shadow: 0 0 6px color-mix(in srgb, var(--neon) 65%, transparent);
	transition: transform .12s ease, box-shadow .12s ease, color .12s ease;
}

.page-therapists .date-link:hover,
.page-schedule .date-link:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 12px color-mix(in srgb, var(--neon) 70%, transparent), inset 0 0 10px rgba(255, 255, 255, .1);
}

.page-therapists .date-link.is-active,
.page-schedule .date-link.is-active {
	--neon: #ff4c3b;
}

.page-therapists .therapist-list,
.page-schedule .therapist-list {
	overflow: visible;
}

/* Page-specific (therapist detail) */
.page-therapist .therapist-hero {
	margin-top: 0;
}

.page-therapist .therapist-gallery {
	border: 1px solid var(--border);
	border-radius: var(--r);
	background: rgba(0, 0, 0, .25);
	padding: 0.875rem;
}

.page-therapist .therapist-gallery__main {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
}

.page-therapist .therapist-gallery__main-img {
	display: block;
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}

.page-therapist .therapist-gallery__thumbs {
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(80px, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.page-therapist .therapist-gallery__thumb {
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	background: rgba(0, 0, 0, .2);
	overflow: hidden;
	cursor: pointer;
	transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.page-therapist .therapist-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.page-therapist .therapist-gallery__thumb.is-active {
	border-color: rgba(255, 122, 24, .75);
	box-shadow: 0 0 10px rgba(255, 120, 24, .35);
}

.page-therapist .therapist-gallery__thumb:hover {
	transform: translateY(-1px);
}

.page-therapist .therapist-pr {
	color: #ffe6d1;
}

.page-therapist .therapist-sns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.page-therapist .therapist-sns__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff5e3;
	text-decoration: none;
	background: rgba(255, 255, 255, .04);
}

.page-therapist .therapist-sns__link img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.page-therapist .therapist-schedule {
	display: grid;
	gap: 8px;
}

.page-therapist .therapist-schedule__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 0.625rem 0.75rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(0, 0, 0, .25);
}

.page-therapist .therapist-schedule__date {
	color: #ffd7b0;
	font-weight: 700;
}

.page-therapist .therapist-schedule__time {
	color: var(--fg);
	font-weight: 700;
}

@media (max-width: 767.98px) {
	#features,
	#pricing,
	#facility,
	#access {
		scroll-margin-top: 140px;
	}

	#zoom-content {
		padding-top: 110px;
	}

	.is-pc {
		display: none;
	}

	.is-sp {
		display: block;
	}

	.cta__btn {
		padding: 0.8rem 0.9rem;
	}

	#wrapper {
		padding-top: 110px;
	}

	.t-md-start {
		text-align: center;
	}

	html {
		font-size: 24px;
		line-height: 1.4;
	}

	body {
		font-size: 1rem;
		line-height: 1.4;
	}

	#header .topbar__links {
		flex: 1;
		justify-content: center;
		flex-wrap: nowrap;
		gap: 4px;

	}

	#header .topbar__inner {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	#header .topbar__brand {
		flex: 0 0 auto;
	}

	#header .social {
		padding: 0.7rem 0.7rem;
	}


	#header .social__icon {
		width: 35px;
		height: 35px;
	}

	.page-index .therapist-btn {
		width: 56px;
		height: 56px;
	}

	#header .topbar__links .social__text {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
		width: 80px;
		height: 80px;
	}

	#header .brand__logo--header {
		width: 200px;
	}

	#header .brand__sub {
		font-size: 0.7rem;
	}

	#header .brand__note {
		display: none;
	}

	.mobile-nav.collapse {
		display: none;
	}

	.mobile-nav.collapse.show {
		display: block;
	}

	.page-index .pickup__grid {
		grid-template-columns:1fr;
		gap: 16px;
		padding: 1.125rem;
	}

	.page-index .therapist-list > .therapist-card {
		flex: 0 0 330px;
		max-width: 330px;
	}
}
