:root {
	--color-ink: #1e2a26;
	--color-muted: #5f6d68;
	--color-deep: #17392f;
	--color-green: #24634f;
	--color-gold: #b79252;
	--color-soft: #f5f2ea;
	--color-white: #ffffff;
	--color-line: #ded8cb;
	--shadow: 0 18px 44px rgba(23, 57, 47, 0.12);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-ink);
	background: var(--color-soft);
	font-family: "Noto Sans JP", system-ui, sans-serif;
	line-height: 1.8;
	letter-spacing: 0;
}

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

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

p {
	margin: 0 0 1.1rem;
}

h1,
h2,
h3 {
	margin: 0 0 1rem;
	font-family: "Noto Serif JP", serif;
	line-height: 1.45;
	font-weight: 700;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

h1 {
	font-size: 3.45rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.25rem;
}

.container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
	z-index: 1000;
	width: auto;
	height: auto;
	clip: auto;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(222, 216, 203, 0.82);
	backdrop-filter: blur(16px);
}

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

.site-brand {
	display: grid;
	gap: 2px;
	min-width: 230px;
}

.site-brand__name {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 1.08rem;
	color: var(--color-deep);
}

.site-brand__tagline {
	font-size: 0.76rem;
	color: var(--color-muted);
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: 0.92rem;
}

.site-nav__list a {
	position: relative;
	padding: 28px 0;
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	height: 2px;
	background: var(--color-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list a:focus::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	padding: 10px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--color-deep);
}

.hero {
	background:
		linear-gradient(110deg, rgba(23, 57, 47, 0.97) 0%, rgba(23, 57, 47, 0.9) 43%, rgba(36, 99, 79, 0.45) 100%),
		url("../images/hero-investment-study.png") center right / cover no-repeat,
		var(--color-deep);
	color: var(--color-white);
	min-height: calc(100vh - 82px);
	display: flex;
	align-items: center;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	gap: 56px;
	align-items: center;
	padding: 82px 0;
}

.hero__copy,
.hero__copy h1 {
	max-width: 760px;
}

.hero__lead {
	max-width: 680px;
	font-size: 1.18rem;
	color: rgba(255, 255, 255, 0.88);
}

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

.hero__panel {
	padding: 34px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero__panel-label {
	color: #e4c98f;
	font-weight: 700;
	text-transform: uppercase;
}

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

.hero__panel li {
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--color-gold);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: var(--radius);
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(23, 57, 47, 0.18);
}

.button--primary {
	background: var(--color-gold);
	color: #1b160c;
}

.button--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.58);
	color: var(--color-white);
}

.section {
	padding: 92px 0;
}

.section--white {
	background: var(--color-white);
}

.section--tint {
	background: var(--color-soft);
}

.section__intro {
	max-width: 720px;
	margin-bottom: 34px;
}

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

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

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

.feature-card,
.post-card,
.person-card,
.contact-card,
.contact-form-shell,
.profile-box,
.service-detail__aside {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(23, 57, 47, 0.06);
}

.feature-card {
	display: block;
	padding: 30px;
}

.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 12px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(183, 146, 82, 0.14);
	color: var(--color-deep);
	font-size: 0.8rem;
	font-weight: 700;
}

.split,
.service-detail,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 46px;
	align-items: center;
}

.split--reverse {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.service-list {
	display: grid;
	gap: 16px;
}

.service-list > div {
	padding: 22px 0;
	border-top: 1px solid var(--color-line);
}

.text-link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--color-green);
	font-weight: 700;
	border-bottom: 1px solid currentColor;
}

.profile-box {
	padding: 36px;
	background: var(--color-deep);
	color: var(--color-white);
}

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

.post-card {
	overflow: hidden;
}

.post-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card__body {
	padding: 24px;
}

.post-card time {
	display: block;
	margin-bottom: 8px;
	color: var(--color-muted);
	font-size: 0.84rem;
}

.empty-news {
	grid-column: 1 / -1;
	padding: 34px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.cta-band {
	padding: 52px 0;
	background: var(--color-deep);
	color: var(--color-white);
}

.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.page-hero {
	padding: 88px 0 72px;
	background:
		linear-gradient(105deg, rgba(23, 57, 47, 0.96), rgba(36, 99, 79, 0.82)),
		var(--color-deep);
	color: var(--color-white);
}

.page-hero p:not(.eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.86);
}

.about-hero {
	padding: 78px 0 86px;
	background: var(--color-white);
}

.about-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
	gap: 46px;
	align-items: center;
}

.about-hero__copy {
	max-width: 620px;
}

.about-hero__copy h1 {
	color: var(--color-deep);
}

.about-hero__copy p:not(.eyebrow) {
	font-size: 1.05rem;
	color: var(--color-muted);
}

.about-hero__philosophy {
	margin-top: 28px;
	padding: 22px 0 0;
	border-top: 1px solid var(--color-line);
	color: var(--color-ink);
	font-weight: 700;
}

.about-hero__photo img,
.story-feature__photo img,
.profile-story__photo img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	object-fit: cover;
}

.about-hero__photo img {
	aspect-ratio: 4 / 3;
}

.about-lead {
	max-width: 880px;
	font-size: 1.06rem;
}

.about-lead p,
.profile-story__body p,
.story-feature__text p,
.health-blog p {
	margin-bottom: 1.35rem;
}

.story-feature,
.profile-story {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 46px;
	align-items: center;
}

.story-feature--reverse,
.profile-story--maki {
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.story-feature--reverse .story-feature__text,
.profile-story--maki .profile-story__photo {
	order: 2;
}

.story-feature--reverse .story-feature__photo,
.profile-story--maki .profile-story__body {
	order: 1;
}

.story-feature__text,
.profile-story__body {
	max-width: 700px;
}

.story-feature__photo img {
	aspect-ratio: 16 / 10;
}

.profile-story__photo img {
	aspect-ratio: 4 / 5;
}

.profile-story__photo--wide img {
	aspect-ratio: 16 / 10;
}

.profile-story__meta {
	color: var(--color-green);
	font-weight: 700;
}

.health-blog {
	max-width: 820px;
	padding: 38px;
	background: var(--color-soft);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.content-area {
	max-width: 820px;
}

.content-area a {
	color: var(--color-green);
	text-decoration: underline;
}

.content-area img,
.single-thumbnail img {
	border-radius: var(--radius);
}

.service-detail__main {
	align-self: stretch;
}

.service-detail__aside {
	padding: 30px;
}

.service-detail__aside ul,
.check-list {
	margin: 0;
	padding-left: 1.2rem;
}

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

.person-card,
.contact-card,
.contact-form-shell {
	padding: 34px;
}

.philosophy {
	max-width: 840px;
}

.placeholder-form {
	padding: 28px;
	background: var(--color-soft);
	border: 1px dashed var(--color-line);
	border-radius: var(--radius);
}

.site-footer {
	background: #111f1a;
	color: rgba(255, 255, 255, 0.78);
	padding: 58px 0 24px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr 0.8fr;
	gap: 42px;
}

.site-footer__title,
.site-footer__heading {
	margin: 0 0 14px;
	color: var(--color-white);
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--color-gold);
}

.site-footer__bottom {
	margin-top: 38px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pagination {
	grid-column: 1 / -1;
}

@media (max-width: 860px) {
	.site-header__inner {
		min-height: 72px;
	}

	.menu-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 72px;
		display: none;
		background: var(--color-white);
		border-bottom: 1px solid var(--color-line);
	}

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

	.site-nav__list {
		display: grid;
		gap: 0;
		width: min(1120px, calc(100% - 40px));
		margin: 0 auto;
		padding: 10px 0 18px;
	}

	.site-nav__list a {
		display: block;
		padding: 12px 0;
	}

	.site-nav__list a::after {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero__grid,
	.split,
	.split--reverse,
	.service-detail,
	.contact-grid,
	.about-hero__grid,
	.story-feature,
	.story-feature--reverse,
	.profile-story,
	.profile-story--maki,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.story-feature--reverse .story-feature__text,
	.story-feature--reverse .story-feature__photo,
	.profile-story--maki .profile-story__photo,
	.profile-story--maki .profile-story__body {
		order: initial;
	}

	.card-grid--three,
	.card-grid--two,
	.post-grid,
	.people-grid {
		grid-template-columns: 1fr;
	}

	.hero__grid {
		padding: 62px 0;
	}

	.section {
		padding: 68px 0;
	}

	.about-hero {
		padding: 58px 0 64px;
	}

	.cta-band__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 520px) {
	.container {
		width: min(100% - 28px, 1120px);
	}

	.site-brand {
		min-width: 0;
	}

	.site-brand__name {
		font-size: 0.96rem;
	}

	.site-brand__tagline {
		font-size: 0.7rem;
	}

	.hero__actions,
	.button {
		width: 100%;
	}

	.feature-card,
	.person-card,
	.contact-card,
	.contact-form-shell,
	.profile-box,
	.service-detail__aside {
		padding: 24px;
	}

	.health-blog {
		padding: 28px 22px;
	}
}

@media (max-width: 860px) {
	h1 {
		font-size: 2.45rem;
	}

	h2 {
		font-size: 1.82rem;
	}
}

@media (max-width: 520px) {
	h1 {
		font-size: 2.38rem;
	}

	h2 {
		font-size: 1.72rem;
	}
}

/* EBOOK landing page */
.ebook-hero {
	padding: 76px 0 70px;
	background:
		linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(245, 242, 234, 0.88)),
		radial-gradient(circle at 92% 18%, rgba(183, 146, 82, 0.22), transparent 30%),
		radial-gradient(circle at 8% 84%, rgba(36, 99, 79, 0.14), transparent 28%),
		var(--color-soft);
}

.ebook-hero__grid,
.ebook-preview,
.ebook-download__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
	gap: 46px;
	align-items: center;
}

.ebook-hero__copy h1 {
	color: var(--color-deep);
}

.ebook-hero__lead {
	max-width: 720px;
	font-size: 1.18rem;
	font-weight: 700;
	color: var(--color-ink);
}

.ebook-hero__text,
.ebook-note,
.ebook-section__intro p,
.ebook-soft-card p,
.ebook-preview__body p {
	color: var(--color-muted);
}

.ebook-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 14px;
}

.button--ghost-dark {
	background: var(--color-white);
	border-color: rgba(23, 57, 47, 0.18);
	color: var(--color-deep);
}

.ebook-cover-card,
.ebook-soft-card,
.ebook-preview__image,
.ebook-form-slot {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(23, 57, 47, 0.08);
}

.ebook-cover-card {
	overflow: hidden;
}

.ebook-cover-card img {
	width: 100%;
	background: #fffaf1;
}

.ebook-cover-card__body {
	padding: 24px;
}

.ebook-cover-card__label {
	margin-bottom: 8px;
	color: var(--color-green);
	font-weight: 700;
}

.ebook-cover-card__body h2 {
	font-size: 1.45rem;
}

.ebook-section__intro {
	max-width: 760px;
	margin-bottom: 34px;
}

.ebook-card-grid {
	display: grid;
	gap: 22px;
}

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

.ebook-card-grid--two,
.ebook-contents {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ebook-soft-card {
	padding: 28px;
}

.ebook-soft-card h3 {
	color: var(--color-deep);
	font-size: 1.18rem;
}

.ebook-contents {
	display: grid;
	gap: 22px;
}

.ebook-contents ol {
	margin: 0;
	padding: 28px 28px 28px 3.2rem;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(23, 57, 47, 0.06);
}

.ebook-contents li {
	padding: 10px 0;
	font-weight: 700;
}

.ebook-preview {
	grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.ebook-preview__image {
	overflow: hidden;
	background: #fffaf1;
}

.ebook-preview__image img {
	width: 100%;
}

.ebook-check-list {
	display: grid;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.ebook-check-list li {
	position: relative;
	padding: 13px 16px 13px 44px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font-weight: 700;
}

.ebook-check-list li::before {
	content: "✓";
	position: absolute;
	left: 14px;
	top: 13px;
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(183, 146, 82, 0.82);
	color: #1b160c;
	font-size: 0.78rem;
}

.ebook-download {
	padding: 70px 0;
	background: var(--color-deep);
	color: var(--color-white);
}

.ebook-download h2,
.ebook-download .eyebrow {
	color: var(--color-white);
}

.ebook-download p {
	color: rgba(255, 255, 255, 0.84);
}

.ebook-download__notice {
	font-size: 0.86rem;
}

.ebook-form-slot {
	padding: 30px;
	color: var(--color-ink);
}

.ebook-form-slot p {
	color: var(--color-muted);
}

@media (max-width: 860px) {
	.ebook-hero__grid,
	.ebook-preview,
	.ebook-download__grid,
	.ebook-card-grid--three,
	.ebook-card-grid--two,
	.ebook-contents {
		grid-template-columns: 1fr;
	}

	.ebook-hero {
		padding: 58px 0 62px;
	}
}

/* EBOOK reader page */
.ebook-reader-hero {
	padding: 76px 0 64px;
	background:
		linear-gradient(105deg, rgba(23, 57, 47, 0.96), rgba(36, 99, 79, 0.82)),
		var(--color-deep);
	color: var(--color-white);
}

.ebook-reader-hero h1 {
	max-width: 860px;
}

.ebook-reader-hero p:not(.eyebrow) {
	max-width: 820px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.06rem;
}

.ebook-reader-intro {
	padding: 58px 0;
	background: var(--color-white);
}

.ebook-reader-intro .container {
	max-width: 980px;
}

.ebook-reader-password {
	padding: 58px 0 82px;
	background: var(--color-soft);
}

.ebook-reader-password__box {
	max-width: 720px;
	margin: 0 auto;
	padding: 34px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(23, 57, 47, 0.06);
}

.ebook-reader-password__box h2 {
	color: var(--color-deep);
	font-size: 1.8rem;
}

.ebook-reader-password__box form {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.ebook-reader-password__box label {
	display: grid;
	gap: 8px;
	font-weight: 700;
}

.ebook-reader-password__box input[type="password"] {
	width: 100%;
	min-height: 50px;
	padding: 11px 13px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font: inherit;
}

.ebook-reader-password__box input[type="submit"] {
	width: fit-content;
	min-height: 48px;
	padding: 0 22px;
	background: var(--color-green);
	border: 0;
	border-radius: var(--radius);
	color: var(--color-white);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.ebook-reader-toc {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 30px;
}

.ebook-reader-toc a {
	padding: 12px 14px;
	background: var(--color-soft);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-deep);
	font-weight: 700;
	font-size: 0.92rem;
}

.ebook-reader-wrap {
	padding: 34px 0 82px;
	background: var(--color-soft);
}

.ebook-reader-chapter,
.ebook-reader-ending {
	margin: 28px 0;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(23, 57, 47, 0.06);
}

.ebook-reader-chapter__head,
.ebook-reader-ending {
	padding: 30px;
}

.ebook-reader-ending {
	max-width: 920px;
	margin-inline: auto;
}

.ebook-reader-comic {
	position: relative;
	overflow: hidden;
	background: #fffaf1;
	border-block: 1px solid var(--color-line);
}

.ebook-reader-comic img {
	width: 100%;
}

.ebook-reader-bubble {
	position: absolute;
	top: 4.8%;
	max-width: 21%;
	min-width: 158px;
	padding: 9px 11px;
	background: rgba(255, 255, 255, 0.94);
	border: 3px solid #252321;
	border-radius: 18px;
	box-shadow: 3px 4px 0 rgba(37, 35, 33, 0.12);
	font-weight: 700;
	font-size: clamp(0.72rem, 1.28vw, 0.98rem);
	line-height: 1.45;
}

.ebook-reader-bubble::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 28px;
	width: 18px;
	height: 18px;
	background: rgba(255, 255, 255, 0.94);
	border-right: 3px solid #252321;
	border-bottom: 3px solid #252321;
	transform: rotate(45deg);
}

.ebook-reader-bubble span {
	display: inline-block;
	margin-bottom: 4px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.78em;
	line-height: 1.4;
}

.ebook-reader-bubble.kabumi span {
	background: #f8cac8;
}

.ebook-reader-bubble.ryu span {
	background: #cfe7d0;
}

.ebook-reader-bubble.ichigeki span {
	background: #ffe8a8;
}

.ebook-reader-bubble.b1 {
	left: 3.4%;
}

.ebook-reader-bubble.b2 {
	left: 29.2%;
}

.ebook-reader-bubble.b3 {
	left: 53.5%;
}

.ebook-reader-bubble.b4 {
	right: 3.2%;
}

.ebook-reader-mobile-script {
	display: none;
	gap: 8px;
	padding: 14px;
	background: #fffaf1;
	border-bottom: 1px solid var(--color-line);
}

.ebook-reader-script-card {
	padding: 10px 12px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font-size: 0.92rem;
	font-weight: 700;
}

.ebook-reader-script-card strong {
	display: inline-block;
	margin-right: 6px;
	color: var(--color-green);
}

.ebook-reader-body {
	max-width: 860px;
	margin: 0 auto;
	padding: 32px 30px 38px;
}

.ebook-reader-body p {
	margin-bottom: 1.25rem;
}

.ebook-reader-points {
	margin-top: 28px;
	padding: 20px 22px;
	background: var(--color-soft);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.ebook-reader-points strong {
	display: block;
	margin-bottom: 8px;
	color: var(--color-deep);
	font-family: "Noto Serif JP", serif;
	font-size: 1.12rem;
}

.ebook-reader-points ul {
	margin: 0;
	padding-left: 1.2rem;
}

.ebook-reader-wrap--force-bubbles .ebook-reader-bubble {
	display: block !important;
}

.ebook-reader-wrap--force-bubbles .ebook-reader-mobile-script {
	display: none !important;
}

@media (max-width: 640px) {
	.ebook-reader-toc {
		grid-template-columns: 1fr 1fr;
	}

	.ebook-reader-bubble {
		display: none;
	}

	.ebook-reader-mobile-script {
		display: grid;
	}

	.ebook-reader-wrap--force-bubbles .ebook-reader-comic {
		overflow-x: auto;
	}

	.ebook-reader-wrap--force-bubbles .ebook-reader-comic img {
		min-width: 980px;
	}

	.ebook-reader-wrap--force-bubbles .ebook-reader-bubble {
		min-width: 170px;
		font-size: 0.82rem;
	}
}

@media (max-width: 520px) {
	.ebook-reader-toc {
		grid-template-columns: 1fr;
	}

	.ebook-reader-chapter__head,
	.ebook-reader-ending,
	.ebook-reader-body {
		padding-inline: 22px;
	}
}
