:root {
	--hgtr-ink: #12243b;
	--hgtr-ink-soft: #536276;
	--hgtr-navy: #0c3159;
	--hgtr-blue: #1686bd;
	--hgtr-blue-soft: #e8f6fc;
	--hgtr-pink: #e96691;
	--hgtr-pink-deep: #d94e7d;
	--hgtr-pink-soft: #fff0f5;
	--hgtr-line: #dce6ee;
	--hgtr-surface: #ffffff;
	--hgtr-mist: #f5f9fc;
	--hgtr-shadow: 0 18px 50px rgba(16, 49, 82, 0.11);
}

html {
	scroll-behavior: smooth;
}

body.hgtr-active {
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: clip;
	background: var(--hgtr-surface);
}

.hgtr-site,
.hgtr-site * {
	box-sizing: border-box;
}

.hgtr-site {
	width: 100%;
	overflow-x: clip;
	color: var(--hgtr-ink);
	background: var(--hgtr-surface);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0;
}

/* 下層ページでは現行テーマの common.css / main.css と同居するため、
   リセットは新デザインの部品（.hgtr-ui）にだけ当てる。
   ページ本文（.hgtr-entry より内側）には触れない。 */
.hgtr-ui img {
	display: block;
	max-width: 100%;
}

.hgtr-ui a {
	color: inherit;
	text-decoration: none;
}

.hgtr-site button,
.hgtr-ui a {
	-webkit-tap-highlight-color: transparent;
}

.hgtr-site :focus-visible {
	outline: 3px solid rgba(22, 134, 189, 0.4);
	outline-offset: 4px;
}

.hgtr-ui h1,
.hgtr-ui h2,
.hgtr-ui h3,
.hgtr-ui p {
	padding: 0;
	border: 0;
	color: inherit;
	font-family: inherit;
	text-align: left;
	text-transform: none;
	overflow-wrap: anywhere;
}

/* common.css の h2 は margin-bottom を !important で指定しているため、ここで打ち消す */
.hgtr-ui h2 {
	margin-bottom: 0 !important;
}

.hgtr-ui ul,
.hgtr-ui ol,
.hgtr-ui li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hgtr-ui li::before {
	content: none;
}

.hgtr-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.hgtr-skip-link {
	position: fixed;
	top: -80px;
	left: 16px;
	z-index: 10000;
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--hgtr-navy);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.hgtr-skip-link:focus {
	top: 12px;
}

.hgtr-utility {
	background: var(--hgtr-navy);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13.12px;
}

.hgtr-utility__inner {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.hgtr-utility p {
	margin: 0;
}

.hgtr-utility__links {
	display: flex;
	gap: 24px;
	align-items: center;
}

.hgtr-utility a:hover {
	color: #fff;
}

.hgtr-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(220, 230, 238, 0.9);
	background: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

body.admin-bar .hgtr-header {
	top: 32px;
}

.hgtr-header__inner {
	display: flex;
	gap: 28px;
	align-items: center;
	min-height: 84px;
}

.hgtr-logo {
	flex: 0 0 auto;
	width: 270px;
}

.hgtr-logo img {
	width: 100%;
	height: auto;
}

.hgtr-nav {
	margin-left: auto;
}

.hgtr-nav__list {
	display: flex;
	gap: 26px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hgtr-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hgtr-nav li::before {
	display: none;
}

.hgtr-nav__item {
	position: relative;
}

.hgtr-nav__item > a {
	display: inline-flex;
	align-items: center;
	padding: 8px 0;
	font-size: 14.72px;
	font-weight: 700;
	white-space: nowrap;
}

.hgtr-nav__item > a:hover {
	color: var(--hgtr-blue);
}

.hgtr-nav__item.is-current > a {
	color: var(--hgtr-blue);
	box-shadow: inset 0 -2px 0 var(--hgtr-pink);
}

.hgtr-nav__item.has-children > a::after {
	margin-left: 6px;
	color: var(--hgtr-blue);
	font-size: 9.92px;
	content: "▼";
}

/* サブメニュー開閉ボタンはスマートフォンでだけ使う */
.hgtr-nav__toggle {
	display: none;
}

.hgtr-subnav {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 20;
	display: grid;
	visibility: hidden;
	min-width: 250px;
	margin: 0;
	padding: 10px;
	border: 1px solid var(--hgtr-line);
	border-radius: 16px;
	opacity: 0;
	background: #fff;
	box-shadow: 0 18px 40px rgba(12, 49, 89, 0.14);
	list-style: none;
	transform: translate(-50%, 6px);
	transition: 0.16s ease;
}

.hgtr-nav__item:hover > .hgtr-subnav,
.hgtr-nav__item:focus-within > .hgtr-subnav {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}

.hgtr-subnav a {
	display: block;
	padding: 9px 12px;
	border-radius: 10px;
	color: var(--hgtr-navy);
	font-size: 13.76px;
	font-weight: 700;
	line-height: 1.5;
}

.hgtr-subnav a:hover {
	background: var(--hgtr-mist);
	color: var(--hgtr-blue);
}

/* 検索とお問い合わせ（スマートフォンのドロワー内） */
.hgtr-nav__foot {
	display: none;
}

.hgtr-search-button {
	display: grid;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--hgtr-line);
	border-radius: 50%;
	background: #fff;
	box-shadow: none;
	color: var(--hgtr-navy);
	cursor: pointer;
	place-items: center;
	transition: 0.2s ease;
}

.hgtr-search-button:hover {
	border-color: var(--hgtr-blue);
	color: var(--hgtr-blue);
}

.hgtr-search-button svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.hgtr-search-modal {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: grid;
	padding: 20px;
	place-items: center;
}

.hgtr-search-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 39, 69, 0.55);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.hgtr-search-modal__dialog {
	position: relative;
	width: min(560px, 100%);
	padding: 34px;
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--hgtr-shadow);
}

.hgtr-search-modal__dialog h2 {
	margin: 0 0 18px;
	color: var(--hgtr-navy);
	font-size: 24px;
	font-weight: 900;
}

.hgtr-search-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--hgtr-ink-soft);
	font-size: 25.6px;
	line-height: 1;
	cursor: pointer;
}

.hgtr-search-modal__close:hover {
	background: var(--hgtr-mist);
}

.hgtr-search-modal form,
.hgtr-nav__search,
.hgtr-empty__form {
	display: flex;
	gap: 10px;
}

.hgtr-search-modal input[type="search"],
.hgtr-nav__search input[type="search"],
.hgtr-empty__form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: 1px solid var(--hgtr-line);
	border-radius: 999px;
	background: var(--hgtr-mist);
	color: var(--hgtr-ink);
	font-family: inherit;
	font-size: 16px;
}

.hgtr-search-modal input[type="search"]:focus,
.hgtr-nav__search input[type="search"]:focus,
.hgtr-empty__form input[type="search"]:focus {
	border-color: var(--hgtr-blue);
	outline: none;
	background: #fff;
}

.hgtr-search-modal button[type="submit"],
.hgtr-nav__search button[type="submit"],
.hgtr-empty__form button[type="submit"] {
	flex: 0 0 auto;
	height: 50px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--hgtr-blue);
	color: #fff;
	font-family: inherit;
	font-size: 15.2px;
	font-weight: 800;
	cursor: pointer;
	transition: 0.2s ease;
}

.hgtr-search-modal button[type="submit"]:hover,
.hgtr-nav__search button[type="submit"]:hover,
.hgtr-empty__form button[type="submit"]:hover {
	background: var(--hgtr-navy);
}

html.hgtr-no-scroll {
	overflow: hidden;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.hgtr-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 21px;
	border-radius: 999px;
	background: var(--hgtr-pink);
	box-shadow: 0 8px 22px rgba(233, 102, 145, 0.25);
	color: #fff !important;
	font-weight: 800;
	white-space: nowrap;
	transition: 0.2s ease;
}

.hgtr-header-cta:hover {
	transform: translateY(-1px);
	background: var(--hgtr-pink-deep);
}

.hgtr-menu-button {
	display: none;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 12px;
	border: 1px solid var(--hgtr-line);
	border-radius: 50%;
	background: #fff;
	box-shadow: none;
	color: var(--hgtr-navy);
	font-size: 0;
}

.hgtr-menu-button span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	border-radius: 2px;
	background: currentColor;
	transition: 0.2s ease;
}

.hgtr-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	align-items: center;
	min-height: 610px;
	overflow: hidden;
	background: #d9f1ff;
}

.hgtr-hero::after {
	position: absolute;
	bottom: -210px;
	left: -190px;
	z-index: -1;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(22, 134, 189, 0.26);
	border-radius: 50%;
	box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.16);
	content: "";
}

.hgtr-hero__photo,
.hgtr-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
}

.hgtr-hero__photo {
	object-fit: cover;
	object-position: center 35%;
}

.hgtr-hero__veil {
	z-index: -2;
	background: linear-gradient(
		90deg,
		rgba(231, 247, 255, 0.99) 0%,
		rgba(231, 247, 255, 0.94) 40%,
		rgba(231, 247, 255, 0.25) 68%,
		rgba(231, 247, 255, 0.02) 100%
	);
}

.hgtr-hero__content {
	width: min(665px, 60%);
	padding: 82px 0 150px;
}

.hgtr-eyebrow {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	margin: 0 0 20px;
	color: var(--hgtr-blue) !important;
	font-size: 12.8px;
	font-weight: 900;
	letter-spacing: 0.18em;
	line-height: 1.4;
}

.hgtr-eyebrow::before {
	width: 34px;
	height: 2px;
	background: var(--hgtr-pink);
	content: "";
}

.hgtr-hero h1 {
	margin: 0;
	color: var(--hgtr-navy);
	font-size: clamp(39.2px, 5vw, 66.4px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.22;
}

.hgtr-hero h1 span {
	color: var(--hgtr-pink-deep);
}

.hgtr-hero__lead {
	max-width: 590px;
	margin: 24px 0 0 !important;
	color: #334b65 !important;
	font-size: 17.28px;
	font-weight: 600;
}

.hgtr-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hgtr-button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 25px;
	border: 0;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.4;
	transition: 0.2s ease;
}

.hgtr-button::after {
	font-size: 17.6px;
	content: "→";
}

.hgtr-button--primary {
	background: var(--hgtr-pink);
	box-shadow: 0 10px 26px rgba(233, 102, 145, 0.27);
	color: #fff !important;
}

.hgtr-button--primary:hover {
	transform: translateY(-2px);
	background: var(--hgtr-pink-deep);
}

.hgtr-button--secondary {
	border: 1px solid rgba(12, 49, 89, 0.15);
	background: rgba(255, 255, 255, 0.89);
	color: var(--hgtr-navy) !important;
}

.hgtr-button--secondary:hover {
	transform: translateY(-2px);
	background: #fff;
}

.hgtr-button--light {
	margin-top: 30px;
	background: #fff;
	color: var(--hgtr-navy) !important;
}

.hgtr-button--light:hover {
	transform: translateY(-2px);
}

.hgtr-hero__notes {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin-top: 26px;
	color: #40566f;
	font-size: 14.08px;
	font-weight: 700;
}

.hgtr-hero__notes span {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.hgtr-hero__notes span::before {
	color: var(--hgtr-pink-deep);
	font-weight: 900;
	content: "✓";
}

.hgtr-finder-wrap {
	position: relative;
	z-index: 5;
	margin-top: -96px;
}

.hgtr-finder {
	padding: 34px;
	border: 1px solid rgba(220, 230, 238, 0.9);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--hgtr-shadow);
}

.hgtr-finder__head {
	display: flex;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 22px;
}

.hgtr-kicker {
	margin: 0 0 4px !important;
	color: var(--hgtr-pink-deep) !important;
	font-size: 12.8px;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

.hgtr-finder h2 {
	margin: 0;
	color: var(--hgtr-navy);
	font-size: clamp(23.2px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.35;
}

.hgtr-finder__head > p {
	margin: 0 !important;
	color: var(--hgtr-ink-soft) !important;
}

.hgtr-purpose-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.hgtr-purpose {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 124px;
	padding: 18px;
	border: 1px solid var(--hgtr-line);
	border-radius: 18px;
	background: var(--hgtr-mist);
	transition: 0.2s ease;
}

.hgtr-purpose:hover {
	transform: translateY(-3px);
	border-color: var(--hgtr-blue);
	background: #fff;
	box-shadow: 0 10px 24px rgba(12, 49, 89, 0.09);
}

.hgtr-purpose small {
	color: var(--hgtr-blue);
	font-size: 11.52px;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.hgtr-purpose strong {
	padding-right: 14px;
	color: var(--hgtr-navy);
	font-size: 16px;
	line-height: 1.45;
}

.hgtr-purpose b {
	position: absolute;
	right: 16px;
	bottom: 13px;
	color: var(--hgtr-pink-deep);
	font-size: 18.4px;
}

.hgtr-section {
	padding: 105px 0;
}

.hgtr-section-heading {
	display: flex;
	gap: 36px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 42px;
}

.hgtr-section-heading .hgtr-eyebrow {
	margin-bottom: 6px;
}

.hgtr-section-heading h2 {
	margin: 0;
	color: var(--hgtr-navy);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.25;
}

.hgtr-section-heading > p {
	max-width: 510px;
	margin: 0 !important;
	color: var(--hgtr-ink-soft) !important;
}

.hgtr-services {
	background: linear-gradient(180deg, #fff 0%, #f5fafd 100%);
}

.hgtr-service-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.hgtr-service-card {
	position: relative;
	min-height: 275px;
	padding: 28px;
	overflow: hidden;
	grid-column: span 4;
	border: 1px solid var(--hgtr-line);
	border-radius: 24px;
	background: #fff;
	transition: 0.22s ease;
}

.hgtr-service-card:nth-child(1),
.hgtr-service-card:nth-child(2) {
	grid-column: span 6;
}

.hgtr-service-card:hover {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: var(--hgtr-shadow);
}

.hgtr-service-card::after {
	position: absolute;
	right: -75px;
	bottom: -85px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: var(--hgtr-blue-soft);
	content: "";
	transition: 0.2s ease;
}

.hgtr-service-card:nth-child(even)::after {
	background: var(--hgtr-pink-soft);
}

.hgtr-service-card__number {
	color: var(--hgtr-pink-deep);
	font-size: 12.48px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.hgtr-service-card h3 {
	margin: 30px 0 10px;
	color: var(--hgtr-navy);
	font-size: 21.44px;
	font-weight: 800;
	line-height: 1.42;
}

.hgtr-service-card p {
	max-width: 82%;
	margin: 0 !important;
	color: var(--hgtr-ink-soft) !important;
	font-size: 15.04px;
}

.hgtr-service-card__link {
	position: absolute;
	bottom: 25px;
	left: 28px;
	color: var(--hgtr-blue);
	font-size: 14.4px;
	font-weight: 900;
}

.hgtr-service-card__link::after {
	content: " →";
}

.hgtr-counseling {
	padding: 90px 0;
	background: var(--hgtr-navy);
	color: #fff;
}

.hgtr-counseling__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 70px;
	align-items: center;
}

.hgtr-counseling .hgtr-eyebrow {
	color: #7fd6f3 !important;
}

.hgtr-counseling h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(33.6px, 4vw, 52.8px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.32;
}

.hgtr-counseling__copy > p:not(.hgtr-eyebrow) {
	margin: 22px 0 0 !important;
	color: rgba(255, 255, 255, 0.74) !important;
}

.hgtr-counseling__card {
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.08);
}

.hgtr-step {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 17px;
	padding: 18px 0;
}

.hgtr-step + .hgtr-step {
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hgtr-step > span {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--hgtr-pink);
	color: #fff;
	font-weight: 900;
}

.hgtr-step h3 {
	margin: 0 0 4px;
	color: #fff;
	font-size: 17.28px;
	font-weight: 800;
}

.hgtr-step p {
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 14.56px;
}

.hgtr-reasons {
	background: #fff;
}

.hgtr-reason-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hgtr-reason {
	margin: 0;
	padding: 32px 28px;
	border-top: 4px solid var(--hgtr-blue);
	border-radius: 0 0 20px 20px;
	background: var(--hgtr-mist);
}

.hgtr-reason:nth-child(2) {
	border-color: var(--hgtr-pink);
}

.hgtr-reason:nth-child(3) {
	border-color: #34a89a;
}

.hgtr-reason small {
	color: var(--hgtr-ink-soft);
	font-weight: 800;
	letter-spacing: 0.1em;
}

.hgtr-reason h3 {
	margin: 13px 0 9px;
	color: var(--hgtr-navy);
	font-size: 19.68px;
	font-weight: 800;
	line-height: 1.5;
}

.hgtr-reason p {
	margin: 0 !important;
	color: var(--hgtr-ink-soft) !important;
	font-size: 15.04px;
}

.hgtr-journal {
	background: var(--hgtr-mist);
}

.hgtr-journal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hgtr-article-card {
	overflow: hidden;
	border: 1px solid var(--hgtr-line);
	border-radius: 22px;
	background: #fff;
	transition: 0.2s ease;
}

.hgtr-article-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hgtr-shadow);
}

.hgtr-article-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #ddecf4;
}

.hgtr-article-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.35s ease;
}

.hgtr-article-card:hover img {
	transform: scale(1.035);
}

.hgtr-article-card__thumb--fallback {
	display: grid;
	place-items: center;
	padding: 22px;
	background: linear-gradient(135deg, #daf1fb, #eef8fc 50%, #ffeaf1);
	color: var(--hgtr-navy);
	font-size: 23.2px;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
}

.hgtr-article-card__body {
	padding: 22px;
}

.hgtr-article-card time {
	color: var(--hgtr-pink-deep);
	font-size: 12.48px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.hgtr-article-card h3 {
	margin: 9px 0 0;
	color: var(--hgtr-navy);
	font-size: 16.8px;
	font-weight: 800;
	line-height: 1.58;
}

.hgtr-journal__empty {
	grid-column: 1 / -1;
	margin: 0 !important;
	padding: 32px;
	border-radius: 18px;
	background: #fff;
	color: var(--hgtr-ink-soft) !important;
	text-align: center;
}

.hgtr-final-cta {
	padding: 90px 0;
	background: #fff;
}

.hgtr-final-cta__panel {
	position: relative;
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
	padding: 52px 58px;
	overflow: hidden;
	border-radius: 30px;
	background: linear-gradient(120deg, #e7f7ff, #f8fcff 55%, #fff0f5);
}

.hgtr-final-cta__panel::after {
	position: absolute;
	top: -65px;
	right: 250px;
	color: rgba(233, 102, 145, 0.075);
	font-size: 208px;
	font-weight: 900;
	line-height: 1;
	content: "H";
}

.hgtr-final-cta__panel p {
	position: relative;
	z-index: 1;
	margin: 0 0 7px !important;
	color: var(--hgtr-blue) !important;
	font-size: 13.12px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.hgtr-final-cta__panel h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--hgtr-navy);
	font-size: clamp(27.2px, 3vw, 40.8px);
	font-weight: 900;
	line-height: 1.4;
}

.hgtr-final-cta__panel .hgtr-button {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
}

.hgtr-footer {
	padding: 58px 0 30px;
	background: #092745;
	color: rgba(255, 255, 255, 0.75);
}

.hgtr-footer__top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 70px;
	padding-bottom: 46px;
}

.hgtr-footer__brand img {
	width: 265px;
	height: auto;
	filter: brightness(0) invert(1);
	opacity: 0.96;
}

.hgtr-footer__brand p {
	max-width: 410px;
	margin: 19px 0 0 !important;
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 14.08px;
}

.hgtr-footer__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hgtr-footer__links h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 14.72px;
	font-weight: 800;
}

.hgtr-footer__links a {
	display: block;
	padding: 3px 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13.6px;
}

.hgtr-footer__links a:hover {
	color: #fff;
}

.hgtr-copyright {
	margin: 0 !important;
	padding-top: 23px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: rgba(255, 255, 255, 0.65) !important;
	font-size: 12px;
}

@media (max-width: 1050px) {
	.hgtr-logo {
		width: 225px;
	}

	.hgtr-nav ul {
		gap: 19px;
	}

	.hgtr-nav a {
		font-size: 13.44px;
	}

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

	.hgtr-purpose:last-child {
		grid-column: span 2;
	}
}

@media (max-width: 820px) {
	body.admin-bar .hgtr-header {
		top: 46px;
	}

	.hgtr-utility {
		display: none;
	}

	.hgtr-header__inner {
		min-height: 72px;
	}

	.hgtr-logo {
		width: 215px;
	}

	.hgtr-menu-button {
		display: block;
		margin-left: auto;
	}

	.hgtr-menu-button[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.hgtr-menu-button[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.hgtr-menu-button[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.hgtr-header-cta {
		display: none;
	}

	.hgtr-nav {
		position: absolute;
		top: 72px;
		right: 0;
		left: 0;
		display: none;
		margin: 0;
		padding: 15px 20px 24px;
		border-bottom: 1px solid var(--hgtr-line);
		background: #fff;
		box-shadow: 0 18px 34px rgba(12, 49, 89, 0.12);
	}

	.hgtr-nav {
		max-height: calc(100vh - 72px);
		overflow-y: auto;
	}

	.hgtr-nav.is-open {
		display: block;
	}

	.hgtr-nav__list {
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}

	.hgtr-nav__item {
		border-bottom: 1px solid var(--hgtr-line);
	}

	.hgtr-nav__item > a {
		display: block;
		padding: 13px 44px 13px 4px;
		font-size: 15.2px;
	}

	.hgtr-nav__item.is-current > a {
		box-shadow: none;
	}

	.hgtr-nav__item.has-children > a::after {
		content: none;
	}

	.hgtr-nav__toggle {
		position: absolute;
		top: 6px;
		right: 0;
		display: block;
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid var(--hgtr-line);
		border-radius: 50%;
		background: #fff;
		color: var(--hgtr-navy);
		cursor: pointer;
	}

	.hgtr-nav__toggle::before {
		display: block;
		font-size: 11.2px;
		line-height: 1;
		content: "▼";
		transition: transform 0.2s ease;
	}

	.hgtr-nav__item.is-open > .hgtr-nav__toggle::before {
		transform: rotate(180deg);
	}

	.hgtr-subnav {
		position: static;
		display: none;
		visibility: visible;
		min-width: 0;
		margin: 0 0 12px;
		padding: 6px;
		border-radius: 14px;
		opacity: 1;
		background: var(--hgtr-mist);
		box-shadow: none;
		transform: none;
	}

	.hgtr-nav__item.is-open > .hgtr-subnav {
		display: block;
	}

	.hgtr-nav__item:hover > .hgtr-subnav,
	.hgtr-nav__item:focus-within > .hgtr-subnav {
		transform: none;
	}

	.hgtr-nav__foot {
		display: grid;
		gap: 12px;
		margin-top: 18px;
	}

	.hgtr-nav__foot .hgtr-button {
		width: 100%;
	}

	.hgtr-search-button {
		display: none;
	}

	.hgtr-hero {
		align-items: start;
		min-height: auto;
		padding-bottom: 205px;
	}

	.hgtr-hero__photo {
		top: auto;
		height: 54%;
		object-position: 70% 100%;
	}

	.hgtr-hero__veil {
		background: linear-gradient(
			180deg,
			rgba(231, 247, 255, 0.99) 0%,
			rgba(231, 247, 255, 0.95) 56%,
			rgba(231, 247, 255, 0.18) 72%,
			rgba(231, 247, 255, 0.02) 100%
		);
	}

	.hgtr-hero__content {
		width: 100%;
		padding: 60px 0 40px;
	}

	/* この幅では写真が画面下半分に回り込み、特徴の3行がちょうど人物と重なる。
	   ベールだけでは背景が透けて読みにくいので、白のパネルを敷く。 */
	.hgtr-hero__notes {
		padding: 12px 14px;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.76);
	}

	.hgtr-finder-wrap {
		margin-top: -92px;
	}

	.hgtr-finder {
		padding: 25px;
	}

	.hgtr-finder__head,
	.hgtr-section-heading {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.hgtr-purpose-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hgtr-purpose:last-child {
		grid-column: span 2;
	}

	.hgtr-section {
		padding: 82px 0;
	}

	.hgtr-service-card,
	.hgtr-service-card:nth-child(1),
	.hgtr-service-card:nth-child(2) {
		grid-column: span 6;
	}

	.hgtr-counseling__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.hgtr-reason-grid,
	.hgtr-journal-grid {
		grid-template-columns: 1fr;
	}

	.hgtr-journal-grid {
		max-width: 620px;
	}

	.hgtr-final-cta__panel {
		flex-direction: column;
		align-items: flex-start;
		padding: 42px 34px;
	}

	.hgtr-footer__top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 560px) {
	.hgtr-container {
		width: min(calc(100% - 30px), 1180px);
	}

	.hgtr-logo {
		width: 195px;
	}

	.hgtr-hero {
		padding-bottom: 150px;
	}

	.hgtr-hero__content {
		padding-top: 48px;
	}

	.hgtr-hero h1 {
		font-size: 37.6px;
	}

	.hgtr-hero__lead {
		font-size: 16px;
	}

	.hgtr-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hgtr-button {
		width: 100%;
		padding-inline: 18px;
	}

	.hgtr-hero__notes {
		display: grid;
		gap: 7px;
	}

	.hgtr-finder-wrap {
		margin-top: -70px;
	}

	.hgtr-finder {
		padding: 22px 18px;
		border-radius: 23px;
	}

	.hgtr-purpose-grid {
		grid-template-columns: 1fr;
	}

	.hgtr-purpose:last-child {
		grid-column: auto;
	}

	.hgtr-purpose {
		min-height: 102px;
	}

	.hgtr-service-grid {
		display: block;
	}

	.hgtr-service-card,
	.hgtr-service-card:nth-child(1),
	.hgtr-service-card:nth-child(2) {
		display: block;
		min-height: 260px;
		margin-bottom: 16px;
	}

	.hgtr-service-card p {
		max-width: 92%;
	}

	.hgtr-counseling__card {
		padding: 22px;
	}

	.hgtr-step {
		grid-template-columns: 42px 1fr;
		gap: 13px;
	}

	.hgtr-step > span {
		width: 40px;
		height: 40px;
	}

	.hgtr-final-cta__panel {
		padding: 36px 23px;
	}

	.hgtr-footer__links {
		grid-template-columns: 1fr 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.hgtr-site *,
	.hgtr-site *::before,
	.hgtr-site *::after {
		transition-duration: 0.01ms !important;
	}
}

/* =========================================================
   ここから下層ページ（固定ページ・コラム・疾患・検索・404）
   現行テーマの common.css / main.css が同時に読み込まれるため、
   打ち消しが必要なところは明示的に指定している。
   ========================================================= */

/* common.css の header / footer は要素セレクタで書かれているため上書きする */
.hgtr-header {
	height: auto;
	border-bottom: 1px solid rgba(220, 230, 238, 0.9);
}

.hgtr-footer {
	position: relative;
}

/* common.css の section { padding-bottom: 40px } を打ち消す */
.hgtr-page-hero,
.hgtr-final-cta,
.hgtr-section,
.hgtr-counseling,
.hgtr-hero {
	width: 100%;
}

/* ---------------- ページ見出し ---------------- */

.hgtr-page-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 44px 0 52px;
	background: linear-gradient(160deg, #e7f7ff 0%, #f4fbff 58%, #fff4f8 100%);
}

.hgtr-page-hero::after {
	position: absolute;
	right: -120px;
	bottom: -190px;
	z-index: -1;
	width: 320px;
	height: 320px;
	border: 1px solid rgba(22, 134, 189, 0.22);
	border-radius: 50%;
	box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.2);
	content: "";
}

.hgtr-page-hero__photo,
.hgtr-page-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
}

.hgtr-page-hero__photo {
	object-fit: cover;
	object-position: center 35%;
}

.hgtr-page-hero__veil {
	z-index: -2;
	background: linear-gradient(
		90deg,
		rgba(231, 247, 255, 0.97) 0%,
		rgba(231, 247, 255, 0.9) 46%,
		rgba(231, 247, 255, 0.34) 74%,
		rgba(231, 247, 255, 0.08) 100%
	);
}

.hgtr-page-hero--photo {
	padding: 56px 0 62px;
}

.hgtr-page-hero h1 {
	max-width: 900px;
	margin: 0;
	color: var(--hgtr-navy);
	font-size: clamp(28px, 3.6vw, 46px);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.34;
}

.hgtr-page-hero .hgtr-eyebrow {
	margin-bottom: 10px;
}

.hgtr-page-hero__meta {
	margin: 14px 0 0 !important;
	color: var(--hgtr-pink-deep) !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.hgtr-page-hero__lead {
	max-width: 720px;
	margin: 16px 0 0 !important;
	color: #334b65 !important;
	font-size: 16px;
	font-weight: 600;
}

/* ---------------- パンくず ---------------- */

.hgtr-crumbs {
	margin-bottom: 18px;
}

.hgtr-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	align-items: center;
}

.hgtr-crumbs li {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	color: var(--hgtr-ink-soft);
	font-size: 13px;
	font-weight: 700;
}

.hgtr-crumbs li + li::before {
	color: rgba(83, 98, 118, 0.55);
	content: "/";
}

.hgtr-crumbs a {
	color: var(--hgtr-blue);
}

.hgtr-crumbs a:hover {
	text-decoration: underline;
}

.hgtr-crumbs span {
	margin-left: 0;
	margin-right: 0;
	font-size: 13px;
}

/* ---------------- 本文の器 ---------------- */

.hgtr-page-body {
	padding: 56px 0 76px;
	background: var(--hgtr-surface);
}

.hgtr-page-body--article {
	background: var(--hgtr-mist);
}

/* 記事とカードの器（テーマの .inner-content を新デザインへ寄せる） */
.hgtr-sub .inner-content {
	padding: 42px;
	border: 1px solid var(--hgtr-line);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(16, 49, 82, 0.07);
}

.hgtr-aside {
	max-width: 750px;
	margin: 48px auto 0;
}

/* ---------------- 本文タイポグラフィ ----------------
   要素セレクタで書き、ページ本文に直接書かれた <style> が
   これまでどおり上書きできるようにしている（common.css と同じ強さ）。 */

.hgtr-entry {
	font-size: 16px;
}

main h1,
main h2,
main h3,
main h4,
main h5 {
	color: var(--hgtr-navy);
	font-family: inherit;
}

main h2 {
	position: relative;
	margin-top: 52px;
	margin-bottom: 18px !important;
	padding: 0 0 12px;
	border-bottom: 1px solid var(--hgtr-line);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.45;
}

main h2::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 56px;
	height: 3px;
	border-radius: 3px;
	background: var(--hgtr-pink);
	content: "";
}

main h3 {
	margin-top: 34px;
	margin-bottom: 12px;
	padding: 2px 0 2px 14px;
	border-left: 4px solid var(--hgtr-blue);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.55;
}

main h4 {
	margin-top: 26px;
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.6;
}

main h5,
main h6 {
	margin-top: 22px;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 800;
}

main p {
	margin-bottom: 1.1em;
	color: #33445c;
	font-size: 16px;
	line-height: 1.95;
}

main a {
	color: var(--hgtr-blue);
	text-underline-offset: 3px;
}

main a:hover {
	color: var(--hgtr-pink-deep);
}

main ul li,
main ol li {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.85;
}

main ul li::before {
	top: 0.62em;
	width: 8px;
	height: 8px;
	background: var(--hgtr-pink);
}

main ol li::before {
	color: var(--hgtr-blue);
}

main table {
	width: 100%;
	margin: 8px 0 24px;
	border-collapse: collapse;
	overflow: hidden;
	font-size: 15px;
}

main table th,
main table td {
	padding: 11px 14px;
	border: 1px solid var(--hgtr-line);
	font-size: 15px;
	line-height: 1.7;
	vertical-align: middle;
}

main table th {
	background: var(--hgtr-mist);
	color: var(--hgtr-navy);
	font-weight: 800;
}

main .wp-block-table {
	overflow-x: auto;
}

main figure img,
main .wp-block-image img {
	border-radius: 14px;
}

main blockquote {
	margin: 0 0 24px;
	padding: 18px 22px;
	border-left: 4px solid var(--hgtr-blue);
	border-radius: 0 14px 14px 0;
	background: var(--hgtr-mist);
}

main hr {
	margin: 36px 0;
	border-top: 1px solid var(--hgtr-line) !important;
}

main details.wp-block-details {
	margin-bottom: 12px;
	padding: 4px 18px;
	border: 1px solid var(--hgtr-line);
	border-radius: 14px;
	background: #fff;
}

main details.wp-block-details summary {
	padding: 14px 0;
	color: var(--hgtr-navy);
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
}

/* テーマの汎用ボタン */
main .whiteco-btn,
main .mainco-btn {
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 800;
}

main .mainco-btn {
	background: var(--hgtr-pink);
	box-shadow: 0 10px 24px rgba(233, 102, 145, 0.25);
	color: #fff;
}

main .whiteco-btn {
	border: 1.5px solid var(--hgtr-blue);
	color: var(--hgtr-blue);
}

/* ---------------- コラム記事 ---------------- */

.hgtr-entry__thumb {
	margin: 0 0 30px;
}

.hgtr-entry__thumb img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.hgtr-sub .outline-wrap {
	margin-bottom: 30px;
	padding: 22px 24px;
	border: 0;
	border-radius: 18px;
	background: var(--hgtr-blue-soft);
}

.hgtr-sub .outline-title {
	margin-bottom: 8px !important;
	padding: 0;
	border: 0;
	color: var(--hgtr-navy) !important;
	font-size: 15px !important;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-align: left;
}

.hgtr-sub .outline-des {
	margin-bottom: 0;
	color: #33445c;
	font-size: 15px;
	line-height: 1.9;
}

.hgtr-sub .entry-content {
	width: 100%;
}

.hgtr-sub .entry-content > p,
.hgtr-sub .entry-content > ul,
.hgtr-sub .entry-content > ol {
	padding-left: 0;
	padding-right: 0;
}

.hgtr-sub .entry-content ol {
	padding-left: 1.6em;
}

.hgtr-sub .entry-content li {
	padding-left: 20px;
	text-indent: 0;
}

.hgtr-sub .entry-footer {
	margin-top: 44px;
}

.hgtr-sub .entry-footer .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding-top: 0;
	border-top: 0;
}

.hgtr-sub .entry-footer .nav-links > div {
	display: flex;
}

.hgtr-sub .entry-footer .nav-links a {
	display: block;
	width: 100%;
	padding: 16px 18px;
	border: 1px solid var(--hgtr-line);
	border-radius: 16px;
	background: var(--hgtr-mist);
	color: var(--hgtr-navy);
	font-size: 14px;
	text-align: left;
	text-decoration: none;
	transition: 0.2s ease;
}

.hgtr-sub .entry-footer .nav-links a:hover {
	border-color: var(--hgtr-blue);
	background: #fff;
}

.hgtr-sub .entry-footer .nav-subtitle {
	display: block;
	margin-left: 0;
	margin-right: 0;
	color: var(--hgtr-pink-deep);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.hgtr-sub .entry-footer .nav-title {
	display: block;
	margin-top: 4px;
	margin-left: 0;
	margin-right: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.hgtr-sub .nav-next {
	margin-left: auto;
	text-align: right;
}

/* ---------------- 一覧（コラム・検索・疾患） ---------------- */

.hgtr-journal-grid--archive {
	margin-bottom: 44px;
}

.hgtr-pagination {
	display: flex;
	justify-content: center;
}

.hgtr-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	max-width: none;
	margin: 0;
	text-align: center;
}

.hgtr-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	margin-left: 0;
	margin-right: 0;
	padding: 0 14px;
	border: 1px solid var(--hgtr-line);
	border-radius: 999px;
	background: #fff;
	color: var(--hgtr-navy);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	transition: 0.2s ease;
}

.hgtr-pagination a.page-numbers:hover {
	border-color: var(--hgtr-blue);
	color: var(--hgtr-blue);
}

.hgtr-pagination .page-numbers.current {
	border-color: transparent;
	background: var(--hgtr-navy);
	color: #fff;
}

.hgtr-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

.hgtr-pagination .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
}

/* 疾患などのタイル一覧 */
.hgtr-tile-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.hgtr-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 120px;
	padding: 20px 22px;
	border: 1px solid var(--hgtr-line);
	border-radius: 18px;
	background: var(--hgtr-mist);
	transition: 0.2s ease;
}

.hgtr-tile:hover {
	transform: translateY(-3px);
	border-color: var(--hgtr-blue);
	background: #fff;
	box-shadow: 0 10px 24px rgba(12, 49, 89, 0.09);
}

.hgtr-tile small {
	color: var(--hgtr-blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.hgtr-tile strong {
	padding-right: 22px;
	color: var(--hgtr-navy);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
}

.hgtr-tile b {
	position: absolute;
	right: 18px;
	bottom: 15px;
	color: var(--hgtr-pink-deep);
	font-size: 18px;
}

/* 検索結果 */
.hgtr-search-list {
	display: grid;
	gap: 14px;
	margin-bottom: 44px;
}

.hgtr-search-item a {
	display: block;
	padding: 24px 26px;
	border: 1px solid var(--hgtr-line);
	border-radius: 20px;
	background: #fff;
	transition: 0.2s ease;
}

.hgtr-search-item a:hover {
	transform: translateY(-2px);
	border-color: transparent;
	box-shadow: var(--hgtr-shadow);
}

.hgtr-search-item__type {
	display: inline-block;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 8px;
	padding: 3px 12px;
	border-radius: 999px;
	background: var(--hgtr-blue-soft);
	color: var(--hgtr-blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.hgtr-search-item h2 {
	margin: 0 0 8px !important;
	color: var(--hgtr-navy);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.55;
}

.hgtr-search-item p {
	margin: 0 !important;
	color: var(--hgtr-ink-soft) !important;
	font-size: 15px;
	line-height: 1.8;
}

/* 空・404 */
.hgtr-empty {
	max-width: 720px;
	margin: 0 auto;
	padding: 46px 34px;
	border: 1px solid var(--hgtr-line);
	border-radius: 24px;
	background: var(--hgtr-mist);
	text-align: center;
}

.hgtr-empty p {
	margin: 0 0 10px !important;
	color: var(--hgtr-ink-soft) !important;
	font-size: 16px;
}

.hgtr-empty__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin: 26px 0;
}

.hgtr-empty__form {
	max-width: 460px;
	margin: 0 auto;
}

/* ---------------- フッターの診療科リンク ---------------- */

.hgtr-footer__sites {
	padding: 26px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hgtr-footer__sites h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.hgtr-footer__sites ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px 20px;
}

.hgtr-footer__sites a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.7;
}

.hgtr-footer__sites a:hover {
	color: #fff;
}

/* ---------------- レスポンシブ ---------------- */

@media (max-width: 1050px) {
	.hgtr-tile-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hgtr-footer__sites ul {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 820px) {
	.hgtr-page-hero {
		padding: 30px 0 38px;
	}

	.hgtr-page-body {
		padding: 40px 0 56px;
	}

	.hgtr-sub .inner-content {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.hgtr-journal-grid--archive {
		max-width: none;
		grid-template-columns: repeat(2, 1fr);
	}

	.hgtr-footer__sites ul {
		grid-template-columns: repeat(2, 1fr);
	}

	main h2 {
		margin-top: 40px;
		font-size: 21px;
	}

	main h3 {
		font-size: 18px;
	}
}

@media (max-width: 560px) {
	.hgtr-page-hero h1 {
		font-size: 25px;
	}

	.hgtr-tile-grid,
	.hgtr-journal-grid--archive {
		grid-template-columns: 1fr;
	}

	.hgtr-sub .entry-footer .nav-links {
		grid-template-columns: 1fr;
	}

	.hgtr-empty {
		padding: 32px 20px;
	}

	.hgtr-empty__form,
	.hgtr-search-modal form {
		flex-direction: column;
	}

	.hgtr-search-modal__dialog {
		padding: 26px 20px;
	}
}

/* ---------------- 部品側の打ち消し（本文用の指定を持ち込まない） ---------------- */

.hgtr-search-modal[hidden] {
	display: none;
}

.hgtr-search-modal__dialog h2 {
	margin: 0 0 18px !important;
}

/* 本文用の見出し装飾は新デザインの部品には出さない */
.hgtr-ui h2::after,
.hgtr-ui h3::after {
	content: none;
}

/* ---------------- コラム記事の細部 ---------------- */

/* アイキャッチは記事幅いっぱいに出す（common.css の .inner-content figure を打ち消す） */
.hgtr-sub .hgtr-entry__thumb {
	width: 100%;
	max-width: none;
	margin: 0 0 30px;
}

/* 記事カードは本文幅に寄せる */
.hgtr-page-body--article .inner-content {
	max-width: 880px;
}

/* 番号付きリストはぶら下げに戻す（現行の見え方に合わせる） */
.hgtr-sub .entry-content ul > li {
	padding-left: 20px;
	text-indent: 0;
}

.hgtr-sub .entry-content ol > li {
	padding-left: 1.9em;
	text-indent: -1.9em;
}

/* 監修医師カードは独自デザインなので、テーマの丸マーカーを出さない */
main .hc-doctor li::before {
	content: none;
}

/* 本文の1つ目の見出しは上の余白を持たせない */
.hgtr-entry > :first-child {
	margin-top: 0;
}

/* 中身が空の見出し（レイアウト用のダミー）に線や飾りを出さない */
main h2:empty,
main h3:empty {
	margin: 0;
	padding: 0;
	border: 0;
}

main h2:empty::after {
	content: none;
}
