@charset "UTF-8";

/*-------------------------------------------------------------*/
/* button */
.btn.btn--default,
.btn.btn--gentosha {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	box-shadow: 3px 3px 0 0 var(--site-c-yellow);
	box-shadow: none;
	border-radius: 6px;
	border: solid 1px var(--site-c-yellow);
	background-color: var(--site-c-yellow);
	color: var(--site-c-black);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.075ex;
	text-align: center;
	max-width: 640px;
	width: 100%;
	margin: 2rem 0 0;
	padding: 0 0.875rem;
	position: relative;
	opacity: 1;
}
.btn.btn--gentosha {
	border-color: var(--site-c-gray--light);
	background-color: var(--site-c-gray--light);
}
.btn.btn--default:focus,
.btn.btn--default:hover {
	border: solid 1px var(--site-c-yellow);
	background-color: var(--site-c-gray--light);
}
.btn.btn--gentosha:focus,
.btn.btn--gentosha:hover {
	background-color: var(--site-c-gray--dark);
}
@media (min-width:768px) {
	.btn.btn--default,
	.btn.btn--gentosha {
		font-size: 1rem;
		line-height: 1.5rem;
		height: 3rem;
	}
}
@media screen and (max-width: 767.98px) {
	.btn.btn--default,
	.btn.btn--gentosha {
		margin: 1.5rem 0 0;
		height: 3rem;
	}
	.btn.btn--default,
	.btn.btn--gentosha {
		font-size: 1rem;
		line-height: 1.5rem;
	}
}


.btn.btn--plain {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	box-shadow: 3px 3px 0 0 var(--site-c-gray--light);
	border-radius: 3em;
	border: solid 1px var(--site-c-gray--dark);
	background-image: linear-gradient( 135deg, #f1f1f1 0%, #fff 100%);
	background-color: #fff;
	color: var(--site-c-black);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.075ex;
	text-align: center;
	max-width: 640px;
	width: 100%;
	margin: 2rem 0 0;
	padding: 0 0.875rem;
	position: relative;
	opacity: 1;
}
.btn.btn--plain:focus,
.btn.btn--plain:hover {
	border: solid 1px var(--site-c-red);
	background-color: #fff;
	color: var(--site-c-black);
	opacity: 0.75;
}
@media (min-width:768px) {
	.btn.btn--plain {
		font-size: 1rem;
		line-height: 1.5rem;
		height: 3rem;
	}
}
@media screen and (max-width: 767.98px) {
	.btn.btn--plain {
		margin: 1.5rem 0 0;
		height: 3rem;
	}
	.btn.btn--plain {
		font-size: 1rem;
		line-height: 1.5rem;
	}
}



.btn.btn--link {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
.btn.btn--link > span {
	font-weight: 700;
	letter-spacing: 0.2ex;
}
.btn.btn--link::after {
	content: "\f10b";
	display: block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0,12.5%) scale(1.5) rotate(-45deg);
	margin-left: 1ex;
}



.button-group {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	margin: 0 -0.75rem;
}
* + .button-group {margin-top: 2rem;}
.button-group > .btn.btn--default {
	max-width: 15rem;
	width: 100%;
	margin: 0 0.75rem;
}
@media screen and (max-width: 767.98px) {
	.button-group {
		margin: 0 -0.5rem;
	}
	* + .button-group {margin-top: 1.5rem;}
	.button-group > .btn.btn--default {
		margin: 0 0.5rem;
	}
}



/*-------------------------------------------------------------*/
/* grid */

.l-container {
	width: 100%;
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: var(--l-container-padding-inline);
}


/*-------------------------------------------------------------*/
/* section style */

.section {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 6.5rem 0;
}
@media screen and (max-width: 1120.98px) {
	.section {
		padding: 6.5rem 0;
	}
}
@media screen and (max-width: 959.98px) {
	.section {
		padding: 6.5rem 0;
	}
}
@media screen and (max-width: 767.98px) {
	.section {
		padding: 4rem 0;
	}
}
@media screen and (max-width: 560.98px) {
	.section {
		padding: 4rem 0;
	}
}


/*-------------------------------------------------------------*/
/* page parts */


.page-head {
	/* NOTE: .page-headの font-sizeを変更すると背景画像の大きさも適度に調整されます */
	font-size: 1rem;
	line-height: 1;
	margin: 0 0 1.75rem;
	padding: 0;
	position: relative;
}
.page-head::before {
	content: '';
	display: block;
	background-image: url("../images/bg-page-head.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	width: 26em;
	height: 17.5em;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	margin-top: -1.25em;
	pointer-events: none;
}
@media screen and (max-width: 1120.98px) {
	.page-head {
		font-size: 1rem;
		margin: 0 0 1.5rem;
	}
}
@media screen and (max-width: 959.98px) {
	.page-head {
		font-size: 0.75rem;
		margin: 0 0 1.5rem;
	}
}
@media screen and (max-width: 767.98px) {
	.page-head {
		font-size: 0.625rem;
		margin: 0 0 1.5rem;
	}
}
@media screen and (max-width: 560.98px) {
	.page-head {
		font-size: 0.625rem;
		margin: 0 0 1.5rem;
	}
}
.page-head__text {
	display: block;
	font-size: inherit;
	font-weight: 700;
	font-feature-settings: 'palt';
	line-height: 1;
	text-align: center;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 5;
}
*+.page-head__text {
	margin-top: 0.66em;
}
.page-head__jp {
	display: block;
	font-size: 2.5em;
	font-weight: 900;
	font-family: var(--font-family-serif);
	letter-spacing: 0.4ex;
	text-shadow:
		0 0 0.16em #0f0f1a,
		0 0 0.16em #0f0f1a,
		0 0 0.4em #0f0f1a,
		0 0 0.4em #0f0f1a;
}
.page-head__en {
	display: block;
	color: #7e7efc;
	font-size: 1.5em;
	font-weight: 500;
	font-family: var(--font-family-alphabet);
	/*font-stretch: condensed;*/
	letter-spacing: 0.4ex;
	text-transform: lowercase;
}

/* lead */
.page-lead {
	font-size: 1rem;
	line-height: 2.25;
	text-align: left;
	margin: 0 0 2.5rem;
}
@media screen and (max-width: 767.98px) {
	.page-lead {
		font-size: 1rem;
		margin: 0 0 2rem;
	}
}



/* text */
.page-text {
	text-align: center;
	font-family: serif;
	font-size: 1rem;
	line-height: 3.5rem;
}
.page-text p { margin: 0 0 3rem; }
.page-text p:last-child { margin-bottom: 0; }
.page-text em { font-size: 1rem; }

@media screen and (max-width: 767.98px) {
	.page-text {
		font-size: 1rem;
		line-height: 2.75rem;
	}
	.page-text em { font-size: 1rem; }
}



/*-------------------------------------------------------------*/
/* mv */

.section-mv {
	--mv-silhouette-size: 16.66svh;
	background-image:
		url("../images/bg-mv-textbg.png"),
		url("../images/bg-book-silhouette-top.svg"),
		url("../images/bg-mv-ghost.jpg"),
		url("../images/bg-mv-book.png"),
		url("../images/bg-mv-sky-lake.png");
	background-repeat:
		repeat-x,
		no-repeat,
		no-repeat,
		no-repeat,
		repeat-x;
	background-position:
		left 50% bottom 0,
		left 50% top 0,
		left 50% top 50%,
		left 50% top 50%,
		left 50% top 0%;
	background-size:
		auto 37.5%,
		auto var(--mv-silhouette-size),
		auto 918px,
		auto 918px,
		auto 100%;
	background-blend-mode:
		normal,
		normal,
		screen,
		normal,
		normal;
	background-color: var(--site-c-bg);
	font-size: 1rem;
	padding: 5rem 0 3rem;
	position: relative;
	z-index: 10;
	overflow: hidden;
}
@media screen and (max-width: 1120.98px) {
	.section-mv {
		--mv-silhouette-size: 16.66svh;
		background-size:
			auto 37.5%,
			auto var(--mv-silhouette-size),
			100vw 52.3vw,
			100vw 52.3vw,
			auto 100%;
	}
}
@media screen and (max-width: 767.98px) {
	.section-mv {
		--mv-silhouette-size: 8.33svh;
		background-size:
			auto 37.5%,
			auto var(--mv-silhouette-size),
			100vw 52.3vw,
			100vw 52.3vw,
			auto 100%;

		font-size: 2.5vw;
		padding-top: 4em;
		padding-bottom: 3rem;
	}
}
@media screen and (max-width: 560.98px) {
	.section-mv {
		--mv-silhouette-size: 8.33svh;
		--mv-ghost-height: 52.3vw;/* NOTE: 横に対する比率（ゴースト画像が対象） */
		--mv-ghost-height-coef: 2;/* NOTE: 大きさ（何倍サイズか）（ゴースト画像が対象） */
		background-size:
			auto 37.5%,
			auto var(--mv-silhouette-size),
			calc(100vw*var(--mv-ghost-height-coef)) calc(var(--mv-ghost-height)*var(--mv-ghost-height-coef)),
			100vw var(--mv-ghost-height),
			auto 100%;

		font-size: 2.5vw;
		padding-top: 4em;
		padding-bottom: 3rem;
	}
}



.mv {
	font-size: 1em;
	position: relative;
}


/*
.mv-sub {}
@media screen and (max-width: 767.98px) {
	.mv-sub {}
}
@media screen and (max-width: 560.98px) {
	.mv-sub {}
}
*/


.mv-main {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	gap: 96px;
}
@media screen and (max-width: 1120.98px) {
	.mv-main {
		gap: 64px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 767.98px) {
	.mv-main {
		gap: 32px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 560.98px) {
	.mv-main {
		gap: var(--l-container-padding-inline);
		padding: 0;
	}
}

.mv-main__img {
	flex: 1 1;
	padding-inline: 0;
}
.mv-main__img img {
	box-shadow: 24px 24px 0 0 rgba(0,0,0,0.27);
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767.98px) {
	.mv-main__img img {
		box-shadow: 16px 16px 0 0 rgba(0,0,0,0.27);
	}
}
@media screen and (max-width: 560.98px) {
	.mv-main__img img {
		box-shadow: 8px 8px 0 0 rgba(0,0,0,0.27);
	}
}
@media screen and (max-width: 560.98px) {
	.mv-main__img {
		padding-inline: 0.5rem;
	}
	.mv-main__img img {
		box-shadow: 8px 8px 0 0 rgba(0,0,0,0.27);
	}
}
@media screen and (max-width: 374.98px) {
	.mv-main__img {
		padding-inline: 0;
	}
}


.mv-lead {
	font-size: 2rem;
	font-family: var(--font-family-serif);
	font-weight: 700;
	text-align: center;
	text-shadow: 0.125em 0.125em 0 #000; 
}
*+.mv-lead {
	margin-top: 3.5rem;
}
@media screen and (max-width: 767.98px) {
	.mv-lead {
		font-size: 1.25rem;
	}
	*+.mv-lead {
		margin-top: 2rem;
	}
}
@media screen and (max-width: 560.98px) {
	.mv-lead {
		font-size: 1.125rem;
	}
	*+.mv-lead {
		margin-top: 2rem;
	}
}
@media screen and (max-width: 400.98px) {
	.mv-lead {
		font-size: 1rem;
	}
	*+.mv-lead {
		margin-top: 2rem;
	}
}
@media screen and (max-width: 374.98px) {
	.mv-lead {
		font-size: calc( 4.5vw * 0.875 );
	}
}



.mv-desc {
	color: var(--site-c-yellow);
	font-size: 3.5rem;
	font-family: var(--font-family-gothic);
	font-weight: 900;
	line-height: 1.28;
	text-align: center;
}
*+.mv-desc {
	margin-top: 1.5rem;
}
@media screen and (max-width: 767.98px) {
	.mv-desc {
		font-size: 2rem;
	}
	*+.mv-desc {
		margin-top: 1.5rem;
	}
}
@media screen and (max-width: 560.98px) {
	.mv-desc {
		font-size: 1.75rem;
	}
	*+.mv-desc {
		margin-top: 1rem;
	}
}
@media screen and (max-width: 400.98px) {
	.mv-desc {
		font-size: 1.5rem;
	}
	*+.mv-desc {
		margin-top: 1rem;
	}
}
@media screen and (max-width: 374.98px) {
	.mv-desc {
		font-size: calc( 4.5vw * 1.5 );
	}
}
/* .mv-descの .fw--400は、やくものに使っています */
.mv-desc .fw--400 {
	display: inline-block;
	width: 0.5em;
}


/*-------------------------------------------------------------*/
/* mv after section */
.section-mv+.section {
	--mv-silhouette-size: 16.66svh;
	background-image: url("../images/bg-book-silhouette-bottom.svg");
	background-repeat: no-repeat;
	background-position: left 50% top 0;
	background-size: auto var(--mv-silhouette-size);
}
@media screen and (max-width: 767.98px) {
	.section-mv+.section {
		--mv-silhouette-size: 8.33svh;
		background-size: auto var(--mv-silhouette-size);
	}
}
@media screen and (max-width: 560.98px) {
	.section-mv+.section {
		--mv-silhouette-size: 8.33svh;
		background-size: auto var(--mv-silhouette-size);
	}
}

/*-------------------------------------------------------------*/
/* intro */

.section-intro {
	padding: 2.5rem 0 5rem;
	overflow: hidden;
}
@media screen and (max-width: 767.98px) {
	.section-intro {
		padding: 2.5rem 0 6.5rem;
	}
}


.intro-head {
	margin: 0 0 1rem;
}

/* book */
.intro__book {
	--intro-book-gap: 2rem;
	--intro-book-offset: 1.75rem;
	--intro-book-label-height: 3rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: stretch;
	align-items: stretch;
	max-width: 800px;
	gap: var(--intro-book-gap);
	margin: 0 auto;
	position: relative;
}
.intro__book:has(.intro__book-label) {
	padding-bottom: calc( var(--intro-book-label-height) + var(--intro-book-gap)*0.5 );
}
*+.intro__book {
	margin-top: 4rem;
}
@media screen and (max-width: 767.98px) {
	.intro__book {
		--intro-book-gap: 1.5rem;
		--intro-book-offset: 1.75rem;
		--intro-book-label-height: 2.5rem;
		gap: var(--intro-book-gap);
	}
	.intro__book:has(.intro__book-label) {
		padding-bottom: calc( var(--intro-book-label-height) + var(--intro-book-gap) );
	}
	*+.intro__book {
		margin-top: 4rem;
	}
}
@media screen and (max-width: 560.98px) {
	.intro__book {
		--intro-book-gap: 1rem;
		--intro-book-offset: 1.75rem;
		--intro-book-label-height: 2.5rem;
		gap: var(--intro-book-label-height) var(--intro-book-gap);
	}
	.intro__book:has(.intro__book-label) {
		padding-bottom: calc( var(--intro-book-label-height) + var(--intro-book-gap) );
	}
	*+.intro__book {
		margin-top: 4rem;
	}
}


.intro__book-item {
	max-width: 180px;
	padding: 0 0 0 var(--intro-book-offset);
	flex: 1 1;
	position: relative;
}
@media screen and (max-width: 560.98px) {
	.intro__book-item {
		max-width: none;
		width: calc((100% - var(--intro-book-gap)*1)/2);
		flex: initial;
	}
}


.intro__book-item>dt {
	color: var(--site-c-red);
	font-weight: 700;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.intro__book-item>dt i {
	font-weight: 500;
}
.intro__book-item>dd {}
.intro__book-item>dd img {
	box-shadow: 8px 8px 0 0 #000;
	width: 100%;
	height: auto;
}
.intro__book-item>dd [src*="book-hatena.svg"] {
	aspect-ratio: 148 / 220;
}

.intro__book-label {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--site-c-red);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	height: var(--intro-book-label-height);
	position: absolute;
	inset: auto 0 0 0;
}
@media screen and (max-width: 767.98px) {
	.intro__book-label {
		font-size: 1rem;
	}
}
@media screen and (max-width: 560.98px) {
	.intro__book-label {
		font-size: 1rem;
	}
}
.intro__book-label.start--01 {
	left: var(--intro-book-offset);
}
.intro__book-label.start--02 {
	left: calc( 25% - var(--intro-book-gap)*0.5 + var(--intro-book-offset) );
}
.intro__book-label.start--03 {
	left: calc( 50% - var(--intro-book-gap)*0.5 + var(--intro-book-offset) );
}
.intro__book-label.start--04 {
	left: calc( 75% - var(--intro-book-gap)*0.5 + var(--intro-book-offset) );
}
.intro__book-label.end--01 {
	right: calc( 75% - var(--intro-book-gap)*0.5 );
}
.intro__book-label.end--02 {
	right: calc( 50% - var(--intro-book-gap)*0.5 );
}
.intro__book-label.end--03 {
	right: calc( 25% - var(--intro-book-gap)*0.5 );
}
.intro__book-label.end--04 {
	right: 0;
}
@media screen and (max-width: 560.98px) {
	.intro__book-label.start--01 {
		left: var(--intro-book-offset);
	}
	.intro__book-label.start--02 {
		left: var(--intro-book-offset);
	}
	.intro__book-label.start--03 {
		left: var(--intro-book-offset);
	}
	.intro__book-label.start--04 {
		left: var(--intro-book-offset);
	}
	.intro__book-label.end--01 {
		right: 0;
	}
	.intro__book-label.end--02 {
		right: 0;
	}
	.intro__book-label.end--03 {
		right: 0;
	}
	.intro__book-label.end--04 {
		right: 0;
	}
}


/* title */
.intro__title {
	font-size: 1.5rem;
	font-feature-settings: 'palt';
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
@media screen and (max-width: 1120.98px) {
	.intro__title {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 959.98px) {
	.intro__title {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 767.98px) {
	.intro__title {
		font-size: 1.25rem;
	}
}
@media screen and (max-width: 560.98px) {
	.intro__title {
		font-size: 1.25rem;
		line-height: 1.75;
	}
}


/* lead */
.intro__lead {
	font-size: 1.125rem;
	font-feature-settings: 'palt';
	font-weight: 500;
	line-height: 2.66;
	text-align: center;
}
*+.intro__lead {
	margin-top: 1.75rem;
}
.intro__lead b {
	font-size: 1.5rem;
	font-weight: 700;
}
@media screen and (max-width: 1120.98px) {
	.intro__lead {
		font-size: 1.5rem;
	}
	.intro__lead b {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 959.98px) {
	.intro__lead {
		font-size: 1.5rem;
	}
	.intro__lead b {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 767.98px) {
	.intro__lead {
		font-size: 1rem;
	}
	.intro__lead b {
		font-size: 1.25rem;
	}
}
@media screen and (max-width: 560.98px) {
	.intro__lead {
		font-size: 1rem;
		line-height: 2.75;
	}
	.intro__lead b {
		display: inline-block;
		font-size: 1.25rem;
		line-height: 1.75;
		padding-top: 1em;
	}
}


/* bg image (for animation) */
.intro-animation-wrapper {}
.intro-animation-wrapper > * {}


/*-------------------------------------------------------------*/
/* news */

.section-news {
	padding-bottom: 14rem;
	overflow: hidden;
}
@media screen and (max-width: 767.98px) {
	.section-news {
		padding-bottom: 10rem;
	}
}
@media screen and (max-width: 560.98px) {
	.section-news {
		padding-bottom: 10rem;
	}
}

.list-news {
	max-width: none;
	margin: 0 auto;
}
*+.list-news {
	margin-top: 4.5rem;
}

.list-news > li {
	border-bottom: solid 1px #24233d;
	margin: 0;
	padding: 2.5rem 3rem;
}
@media screen and (max-width: 767.98px) {
	.list-news > li {
		padding: 2rem 2rem;
	}
}
@media screen and (max-width: 560.98px) {
	.list-news > li {
		padding: 1rem 1rem;
	}
}

.list-news__item {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	font-size: 1.125rem;
}
a.list-news__item {
	color: inherit;
	text-decoration: underline;
	transition:
		opacity 0.2s ease,
		color 0.2s ease;
}
a.list-news__item:focus,
a.list-news__item:hover {
	color: #0084cd;
	text-decoration: underline;
}
@media screen and (max-width: 767.98px) {
	.list-news__item {
		font-size: 1rem;
	}
}
@media screen and (max-width: 560.98px) {
	.list-news__item {
		font-size: 1rem;
	}
}


.list-news__item time {
	display: block;
	font-size: inherit;
	width: 120px;
}
.list-news__item p {
	display: block;
	font-size: inherit;
	width: calc( 100% - 120px );
}
.list-news__item a {
	color: inherit;
	text-decoration: underline;
}
@media screen and (max-width: 767.98px) {
	.list-news__item time {
		width: 96px;
	}
	.list-news__item p {
		width: calc( 100% - 96px );
	}
}




/*-------------------------------------------------------------*/
/* msg */

.section-msg {
	background: #000;
	overflow: hidden;
}
@media screen and (max-width: 767.98px) {
	.section-msg {
		padding-bottom: 2rem;
	}
}
@media screen and (max-width: 560.98px) {
	.section-msg {
		padding-bottom: 2rem;
	}
}

.msg__figure {}
* + .msg__figure {
	margin-top: 1.5rem;
}
.msg__figure img {
	width: 100%;
	height: auto;
	transform: scale(1);
}
@media screen and (max-width: 767.98px) {
	.msg__figure img {
		transform: scale(1.125);
	}
}
@media screen and (max-width: 560.98px) {
	.msg__figure img {
		transform: scale(1.125);
	}
}



.msg__movie {
	background: #fff2d7;
	padding: 2rem;
	margin-inline: -2rem;
}
* + .msg__movie {
	margin-top: 1.5rem;
}
@media screen and (max-width: 1120.98px) {
	.msg__movie {
		padding: 2rem;
		margin-inline: -2rem;
	}
}
@media screen and (max-width: 767.98px) {
	.msg__movie {
		padding: 1rem;
		margin-inline: -1rem;
	}
}
.msg__movie iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}


.msg__subtitle {
	font-size: 1rem;
	font-weight: 900;
	font-family: var(--font-family-gothic);
	text-align: center;
	margin: 0;
	padding: 1rem 0 0;
}
@media screen and (max-width: 767.98px) {
	.msg__subtitle {
		font-size: 1rem;
	}
}


.msg__list {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-content: stretch;
	align-items: stretch;
	gap: 1rem;
}
* + .msg__list {
	margin-top: 1.5rem;
}


.msg__item {
	background: var(--site-c-bg);
	padding: 1.5rem 1.5rem 1.25rem;
}
.msg__item-text {
	font-size: 1.125rem;/* 18px */
	font-family: var(--font-family-serif);
	line-height: 2;
}

.msg__item-name {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	gap: 0.75rem;
}
* + .msg__item-name {
	margin-top: 0.75rem;
}
.msg__item-name > span {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: var(--font-family-serif);
	font-feature-settings: 'palt';
	line-height: 1.6666;
}
.msg__item-name > img {
	border-radius: 12px;
	background: #fff;
	width: 2.5rem;
	height: 2.5rem;
	object-fit: cover;
}

.msg__list.msg__list--special {
	padding-block: 3rem;
}
.msg__list--special .msg__item {
	background: transparent;
	padding: 0;
}
.msg__list--special .msg__item-text {
	font-size: 1.5rem;/* 20px */
	font-weight: 700;
	line-height: 2.75;
	letter-spacing: 0.1ex;
}
.msg__list--special .msg__item-name {
	gap: 0.75rem;
}
.msg__list--special .msg__item-name > span {
	font-size: 1.375rem;/* 22px */
}
.msg__list--special .msg__item-name > img {
	width: 3rem;
	height: 3rem;
}


/*-------------------------------------------------------------*/
/* charas */
.section-charas {
	background-color: #000;
	padding-bottom: 0;
}
.section-charas::after {
	content: '';
	display: block;
	background-image: url("../images/bg-charas-book-top.png");
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: auto 100%;
	width: 100%;
	height: 10rem;
	position: sticky;
	bottom: 0;
	left: 0;
	z-index: 1;
	opacity: 0.33;
}

.charas-head {}
.charas-head::before {
	content: '';
	display: block;
	background-image: url("../images/bg-chara-head.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	width: 42em;
	height: 22.5em;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	margin-top: -6em;
	pointer-events: none;
}
@media screen and (max-width: 767.98px) {
	.charas-head::before {
		max-width: 42em;
		max-height: 22.5em;
		width: 100svw;
		height: 53.5svw;
		margin-top: -6em;
	}
}
@media screen and (max-width: 560.98px) {
	.charas-head::before {
		max-width: 42em;
		max-height: 22.5em;
		width: 100svw;
		height: 53.5svw;
		margin-top: -6em;
	}
}


.charas__list {
	--charas-item-gap: 4rem;
	--charas-img-width: 11rem;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 0;
	gap: 3.5rem;
}
*+.charas__list {
	margin-top: 7rem;
}
@media screen and (max-width: 767.98px) {
	.charas__list {
		--charas-item-gap: 2rem;
		--charas-img-width: 8rem;
		gap: 3rem;
	}
	*+.charas__list {
		margin-top: 3rem;
	}
}
@media screen and (max-width: 560.98px) {
	.charas__list {
		--charas-item-gap: 2rem;
		--charas-img-width: 8rem;
		gap: 2rem;
	}
	*+.charas__list {
		margin-top: 2rem;
	}
}

.charas__item {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: stretch;
	padding: 0 6rem 0 0;
	gap: var(--charas-item-gap);
}
@media screen and (max-width: 767.98px) {
	.charas__item {
		padding: 0;
	}
}
@media screen and (max-width: 560.98px) {
	.charas__item {
		padding: 0;
	}
}

.charas__item>dt {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: stretch;
	width: var(--charas-img-width);
}
.chara__img {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	align-items: flex-start;
	width: calc(100% - 4.5rem);
	position: relative;
}
.chara__img::before {
	content: '';
	display: block;
	background-image: url("../images/img-chara-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: var(--charas-img-width);
	height: var(--charas-img-width);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transform: translate(-25%,-25%);
}
.chara__img > img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 5;
}
@media screen and (max-width: 767.98px) {
	.chara__img {
		justify-content: flex-start;
		width: calc(100% - 3rem);
	}
}
@media screen and (max-width: 560.98px) {
	.chara__img {
		justify-content: flex-start;
		width: calc(100% - 3rem);
	}
}


.chara__name {
	display: block;
	color: #fff;
	font-size: 3rem;
	font-weight: 900;
	font-family: var(--font-family-serif);
	font-feature-settings: 'palt';
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	white-space: nowrap;
	width: 4.5rem;
	margin: -1rem 0 0;
}
@media screen and (max-width: 767.98px) {
	.chara__name {
		font-size: 2rem;
		width: 3rem;
	}
}
@media screen and (max-width: 560.98px) {
	.chara__name {
		font-size: 2rem;
		width: 3rem;
	}
}

.charas__item>dd {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.66;
	width: calc(100% - var(--charas-img-width) - var(--charas-item-gap));
}
@media screen and (max-width: 767.98px) {
	.charas__item>dd {
		font-size: 0.75rem;
	}
}
@media screen and (max-width: 560.98px) {
	.charas__item>dd {
		font-size: 1rem;
		line-height: 2;
	}
}




/*-------------------------------------------------------------*/
/* books */
.section-books {
	padding-top: 0;
}
.section-books::before {
	content: '';
	display: block;
	background-image: url("../images/bg-charas-book-bottom.png");
	background-repeat: repeat-x;
	background-position: center top;
	background-size: auto 100%;
	width: 100%;
	height: 10rem;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.33;
}

.books-head {}
@media screen and (max-width: 767.98px) {
	.books-head {}
}

.books__lead {
	font-size: 1.5em;
	font-weight: 600;
	letter-spacing: 0.2ex;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
	.books__lead {
		font-size: 1.5em;
	}
}

.books__list {
	--books-item-img-width: 12.5rem;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin: 0;
	gap: 3.5rem;
}
.books__item {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-content: stretch;
	align-items: stretch;
	border: solid 1px #232f39;
	background: #000;
	margin: 0;
	padding: 4rem;
}
@media screen and (max-width: 959.98px) {
	.books__list {
		--books-item-img-width: 8rem;
		gap: 3rem;
	}
	.books__item {
		padding: 2rem 1rem;
	}
}
@media screen and (max-width: 767.98px) {
	.books__list {
		--books-item-img-width: 6rem;
		gap: 2rem;
	}
	.books__item {
		padding: 2rem 1rem;
	}
}
@media screen and (max-width: 560.98px) {
	.books__list {
		margin-inline: calc(var(--l-container-padding-inline)*-1);
	}
}


.book__img {
	width: var(--books-item-img-width);
}
.book__img > img {
	width: 100%;
	height: auto;
}

.book__desc {
	width: calc( 100% - var(--books-item-img-width) );
	padding: 0 0 0 2.5rem;
}
@media screen and (max-width: 767.98px) {
	.book__desc {
		padding: 0 0 0 1rem;
	}
}
@media screen and (max-width: 560.98px) {
	.book__desc {
		padding: 0 0 0 1rem;
	}
}

.book__desc-title {
	font-size: 1.75rem;
	font-weight: 700;
	padding: 1rem 0;
}
.book__desc-text {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
}
@media screen and (max-width: 767.98px) {
	.book__desc-title {
		font-size: 1rem;
		padding: 1em 0;
	}
	.book__desc-text {
		font-size: 1rem;
	}
}
@media screen and (max-width: 560.98px) {
	.book__desc-title {
		font-size: 1.25rem;
		padding: 0 0 1em;
	}
	.book__desc-text {
		font-size: 1rem;
	}
}


.book__cta {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: stretch;
	align-items: stretch;
	width: 100%;
	gap: 1rem 0.25rem;
}
*+.book__cta {
	margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
	.book__cta {
		gap: 0.5rem 0.25rem;
	}
	*+.book__cta {
		margin-top: 2rem;
	}
}
@media screen and (max-width: 560.98px) {
	.book__cta {
		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
		align-content: stretch;
		align-items: stretch;
		gap: 0.5rem;
		padding: 0 1rem;
	}
	*+.book__cta {
		margin-top: 2rem;
	}
}

.book__cta>p {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	width: 100%;
}
.book__cta .btn {
	font-size: 1.25rem;
	font-weight: 700;
	width: auto;
	min-width: 10rem;
	height: 3rem;
	margin: 0;
}
@media screen and (max-width: 767.98px) {
	.book__cta>p {
		font-size: 1rem;
	}
	.book__cta .btn {
		max-width: calc( (100% - 0.25rem*2) / 3 );/* NOTE: 最大１行３個まで */
		width: 100%;
		min-width: 0;
		height: 3rem;
	}
}
@media screen and (max-width: 560.98px) {
	.book__cta>p {
		font-size: 1rem;
	}
	.book__cta .btn {
		/*max-width: calc( (100% - 0.25rem*2) / 3 );*//* NOTE: 最大１行３個まで */
		max-width: none;
		width: 100%;
		min-width: 0;
		height: 3rem;
	}
}




/*-------------------------------------------------------------*/
/* profile */

.section-profile {
	padding-bottom: 5.5rem;
}

.profile {
	max-width: none;
	margin: 0 auto;
}

.profile__image {
	text-align: center;
	margin: 0 0 2rem;
}
.profile__image img {
	width: 12rem;
	height: auto;
}
@media screen and (max-width: 767.98px) {
	.profile__image {}
	.profile__image img {
		width: 7.5rem;
		height: auto;
	}
}


.profile__name {
	font-size: 1.5rem;
	font-weight: 900;
	font-family: var(--font-family-serif);
	font-feature-settings: 'palt';
	text-align: center;
	margin: 0 0 1.75rem;
	padding: 0;
}
@media screen and (max-width: 767.98px) {
	.profile__name {
		font-size: 1rem;
	}
}


.profile__text {
	font-size: 1.125rem;
	font-feature-settings: 'palt';
	font-weight: 400;
	line-height: 2;
	max-width: 640px;
	margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
	.profile__text {
		font-size: 0.875rem;
	}
}


.profile__pr {
	font-size: 1.125rem;
	font-feature-settings: 'palt';
	font-weight: 700;
	line-height: 2;
	text-align: right;
	max-width: 640px;
	margin-inline: auto;
}
*+.profile__pr {
	margin-top: 1rem;
}
.profile__pr a {
	color: inherit;
	font-weight: 400;
	text-decoration: underline;
	text-decoration-thickness: 0.5px;
}
@media screen and (max-width: 767.98px) {
	.profile__pr {
		font-size: 0.8125rem;
		line-height: 1.875rem;
	}
	* + .profile__pr {margin-top: 0.5rem;}
}
