@charset "UTF-8";

:root {
	/* ここケアセンター公式サイトのライトスカイブルー系 */
	--pink-50: #F4FAFD;
	--pink-75: #E7F3F9;
	--pink-100: #D2E9F2;
	--pink-200: #A9D6E6;
	--pink-300: #82C2DA;
	--pink-400: #5DAFCC;
	--pink-500: #4FA3C2;
	/* メインスカイブルー */
	--pink-600: #3989A8;
	/* ホバー */
	--ink: #1F2A33;
	--ink-2: #475160;
	--ink-3: #7A8493;
	--line: #CFE6EF;
	--line-2: #E4F1F7;
	--bg: #ffffff;
	--bg-soft: #F4FAFD;

	/* 差し色（ピンク） */
	--rose-50: #FFF5F8;
	--rose-100: #FFE3EC;
	--rose-200: #FFC4D5;
	--rose-300: #FFA6C0;
	--rose-400: #FF7FA3;
	--rose-500: #F26C8B;
	--rose-600: #E0567A;

	/* メインフォント */
	--main-font: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	/* 英字 */
	--en: "Zen Maru Gothic", sans-serif;
}

*,
*::before,
*::after {
	animation: none !important;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	margin: 0 !important;
	scroll-behavior: auto;
}

body {
	font-family: var(--main-font);
	color: var(--ink);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.95;
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	cursor: pointer;
	border: 0;
	background: none;
}

@media (min-width: 769px) {
	.sp {
		display: none;
	}
}

@media (max-width: 1100px) {
	body {
		padding-top: 73px;
	}
}

@media (max-width: 960px) {
	body {
		padding-top: 60px;
	}
}

@media (max-width: 768px) {
	.pc {
		display: none;
	}
}

/* ---------- コンテンツ幅 ---------- */
.container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 960px) {
	.container {
		padding: 0 20px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 18px;
		max-width: 100%;
	}	
}

/* コンテンツの重なりを設定 */
.content-z-index {
	position: relative;
	z-index: 1;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--line-2);
}

.site-header:has(.nav--sp.open) {
	height: 100vh;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

/* 会社ロゴ */
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--pink-75);
	display: grid;
	place-items: center;
	color: var(--pink-500);
}

.brand-text {
	line-height: 1.1;
}

.brand-text .jp {
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.08em;
}

.brand-text .en {
	font-family: var(--en);
	font-size: 10px;
	font-weight: 600;
	color: var(--ink-3);
	letter-spacing: 0.22em;
	margin-top: 2px;
}

/* ページナビ */
.nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nav a {
	font-size: 14px;
	color: var(--ink-2);
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: color .2s;
	white-space: nowrap;
}

.nav a:hover {
	color: var(--pink-500);
}

.nav .cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--pink-500);
	color: #fff;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: 0 6px 16px -8px rgba(45, 133, 179, 0.5);
	transition: transform .15s ease, box-shadow .2s;
}

.nav .cta:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -10px rgba(45, 133, 179, 0.65);
}

.nav--sp {
	overflow: scroll;
	width: 100%;
	height: calc(100% - 72px);
	display: flex;
	flex-direction: column;
	padding: 0 20px 30px;
	transform: translateX(-100vw);
	position: absolute;
	top: 72px;
	left: 0;
	opacity: 0;
}

.nav--sp.open {
	transform: translateX(0);
	opacity: 1;
}

/* ハンバーガーメニュー */
.header-hb {
	width: 50px;
	height: 50px;
	background: var(--pink-500);
	position: fixed;
	top: 5px;
	left: auto;
	right: 10px;
	z-index: 1;
	transition: 0.2s;
	cursor: pointer;
}

.header-hb::before {
	content: "MENU";
	display: inline-block;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .04em;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: auto;
	left: 50%;
	bottom: 8px;
	transform: translateX(-50%);
	transition: 0.2s;
}

.header-hb span {
	width: 26px;
	height: 2px;
	display: block;
	margin-inline: auto;
	background: #fff;
	position: absolute;
	top: 36%;
	left: 0;
	right: 0;
	bottom: 0;
	transition: 0.2s;
}

.header-hb span:first-child {
	transform: translateY(-8px);
}

.header-hb span:last-child {
	transform: translateY(8px);
}

.header-hb.active::before {
	content: "CLOSE";
}

.header-hb.active span:first-child {
	transform: translateY(0) rotate(45deg);
}

.header-hb.active span:nth-child(2) {
	transform: scaleX(0);
}

.header-hb.active span:last-child {
	transform: translateY(0) rotate(-45deg);
}

@media (min-width: 1101px) {
	.nav--sp {
		display: none;
	}

	.header-hb {
		display: none;
	}
}

@media (max-width: 1100px) {
	.site-header {
		width: 100%;
		position: fixed;
	}

	.nav--pc {
		display: none;
	}
}

@media ( max-width: 768px ) {
	.header-inner {
		height: 60px !important;
	}

	.brand-text .jp {
		font-size: 15px !important;
	}

	.brand-text .en {
		font-size: 9px !important;
	}
}

/* ---------- パンくず ---------- */
.breadcrumbs {
	font-size: 14px;
	color: var(--ink-3);
	letter-spacing: 0.08em;
	margin-bottom: 24px;
}

.breadcrumbs span + span::before {
	content: " / ";
	color: var(--line);
	margin: 0 8px;
}

.breadcrumbs .accent {
	color: var(--rose-500);
	font-weight: 700;
}

@media ( max-width: 768px ) {
	.breadcrumbs {
		font-size: 11px;
	}
}

/* ---------- Section heading ---------- */
section {
	position: relative;
	z-index: 1;
	padding: 96px 0;	
}

.section-title {
	display: flex;
	flex-direction: column; 
	align-items: center;
	gap: 6px 28px;
	margin: 0 0 64px;
	flex-wrap: wrap;
}

.section-title .en {
	font-family: var(--en);
	font-size: 68px;
	font-weight: 800;
	color: var(--pink-500);
	letter-spacing: 0.02em;
	line-height: 1;
}

.section-title .ja {
	font-size: 20px;
	color: var(--ink-2);
	font-weight: 700;
	letter-spacing: 0.14em;
}

.section-title .ja::before,
.section-title .ja::after {
	content: "-";
	color: var(--pink-300);
	margin: 0 8px;
}

@media (max-width: 960px) {
	section {
		padding: 64px 0;
	}

	.section-title {
		flex-direction: column;
		gap: 4px;
		align-items: flex-start;
	}

	.section-title .en {
		font-size: 44px;
	}

	.section-title .ja {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	section {
		padding: 56px 0 !important;
	}

	.section-title {
		gap: 8px;
		margin-bottom: 36px;
		flex-direction: column;
		align-items: center;
	}

	.section-title .en {
		font-size: 40px !important;
	}

	.section-title .ja {
		display: flex;
		align-items: center;
		font-size: 15px !important;
		text-align: center;
	}
}

/* ---------- Footer ---------- */
footer.site-footer {
	background: #fff;
	border-top: 1px solid var(--line-2);
	padding: 28px 0;
	position: relative;
	z-index: 1;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	max-width: 700px;
}

.footer-nav a {
	font-size: 14px;
	color: var(--ink-2);
}

.footer-nav a:hover {
	color: var(--pink-500);
}

.footer-copy {
	font-family: var(--en);
	font-size: 13px;
	color: var(--ink-3);
	letter-spacing: 0.06em;
}

@media (max-width: 768px) {
	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.footer-grid {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
	}
}