@charset "UTF-8";

/*-------------------------------------------------------------*/
/* button */
.btn.btn--default {
	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-top: solid 2px rgba(0,0,0,0.05);
	border-right: solid 2px rgba(0,0,0,0.2);
	border-bottom: solid 2px rgba(0,0,0,0.2);
	border-left: solid 2px rgba(0,0,0,0.05);
	background-image: linear-gradient( 135deg, var(--site-c-yellow) 0%, #ffd900 100%);
	background-color: var(--site-c-yellow);
	color: var(--site-c-black);
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: -0.05ex;
	text-align: center;
	max-width: 640px;
	width: 100%;
	margin: 2rem 0 0;
	padding: 0 0.5rem;
	position: relative;
	opacity: 1;
}
.btn.btn--default:focus,
.btn.btn--default:hover {
	background-color: #fff;
	color: var(--site-c-black);
	opacity: 0.75;
}
@media (min-width:768px) {
	.btn.btn--default {
		font-size: 1.25rem;
		height: 3rem;
	}
}
@media screen and (max-width: 767.98px) {
	.btn.btn--default {
		margin: 1.5rem 0 0;
		height: 3rem;
	}
	.btn.btn--default {
		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--gentosha {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	box-shadow: none;
	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;
	font-feature-settings: 'palt';
	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:focus,
.btn.btn--gentosha: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--gentosha {
		font-size: 1rem;
		line-height: 1.5rem;
		height: 3rem;
	}
}
@media screen and (max-width: 767.98px) {
	.btn.btn--gentosha {
		margin: 1.5rem 0 0;
		height: 3rem;
	}
	.btn.btn--gentosha {
		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;
}
@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: 2em;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.4ex;
}
.page-head__en {
	display: block;
	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 {
	background-color: var(--site-c-bg);
	font-size: 1rem;
	padding: 5rem 0 3rem;
	position: relative;
	z-index: 10;
}
.section-mv::before {
	content: '';
	display: block;
	background-image: url(../images/bg-mv-ika.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	max-width: 480px;
	width: 25vw;
	height: auto;
	aspect-ratio: 960 / 609;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	pointer-events: none;
}
.section-mv__inner {
	max-width: 1440px;
}
@media screen and (max-width: 1120.98px) {
	.section-mv {
		font-size: 2.5vw;
		padding-top: 4em;
		padding-bottom: 3rem;
	}
}
@media screen and (max-width: 767.98px) {
	.section-mv {
		font-size: 2.5vw;
		padding-top: 4em;
		padding-bottom: 0;
	}
}
@media screen and (max-width: 560.98px) {
	.section-mv {
		font-size: 2.5vw;
		padding-top: 4em;
		padding-bottom: 0;
	}
}


.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: grid;
	grid-template-columns: 2fr 7fr;
	align-items: end;
	gap: 64px;
	position: relative;
}
@media screen and (max-width: 1120.98px) {
	.mv-main {
		gap: 64px;
		padding: 0;
	}
}
@media screen and (max-width: 767.98px) {
	.mv-main {
		display: block;
		padding: 0;
	}
}

.mv-main__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--site-c-black);
	font-size: 28px;
	padding: 0 1em;
	position: relative;
	z-index: 5;
}
.mv-main__ttl .item--author {
	display: block;
	white-space: nowrap;
	writing-mode: vertical-rl;
	line-height: 1;
	width: 1em;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.mv-main__ttl img {
	max-width: 280px;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	transform: scale(1.6);
	transform-origin: left bottom;
}
@media screen and (max-width: 1120.98px) {
	.mv-main__ttl {
		font-size: 20px;
		padding: 0 1em;
	}
}
@media screen and (max-width: 959.98px) {
	.mv-main__ttl {
		font-size: 20px;
		padding: 0 1em;
	}
}
@media screen and (max-width: 767.98px) {
	.mv-main__ttl {
		justify-content: flex-start;
		align-items: flex-start;
		font-size: 3dvw;
		width: 18dvw;
		padding: 0;
		position: absolute;
		left: 2dvw;
		top: 2dvw;
		bottom: 4dvw;
	}
	.mv-main__ttl .item--author {
		
	}
	.mv-main__ttl img {
		transform: none;
	}
}

.mv-main__img {
	padding-inline: 0;
	position: relative;
	z-index: 1;
}
.mv-main__img img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 767.98px) {
	.mv-main__img {
	}
	.mv-main__img img {
	}
}
@media screen and (max-width: 560.98px) {
	.mv-main__img {
	}
	.mv-main__img img {
	}
}
@media screen and (max-width: 560.98px) {
	.mv-main__img {
	}
	.mv-main__img img {
	}
}
@media screen and (max-width: 374.98px) {
	.mv-main__img {
	}
	.mv-main__img img {
	}
}


.mv-thinking-balloon {
	/* border-radius: 32px;
	background: #fff; */
	max-width: 920px;
	margin: 0 auto;
	/* padding: 3rem 4rem; */
	position: relative;
}
/* 
.mv-thinking-balloon::before {
	--balloon-width: 104px;
	--balloon-height: 72px;
	content: '';
	display: block;
	background-image:
		radial-gradient(circle,rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%),
		radial-gradient(circle,rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%);
	background-position:
		right 0% top 0%,
		left 50% top 50%;
	background-repeat: no-repeat;
	background-size: 24px 24px, 40px 40px;
	width: var(--balloon-width);
	height: var(--balloon-height);
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	pointer-events: none;
} */

*+.mv-thinking-balloon {
	margin-top: 2.5rem;
}
@media screen and (max-width: 767.98px) {
	.mv-thinking-balloon {
		/* padding: 2rem; */
	}
	*+.mv-thinking-balloon {
		margin-top: 2rem;
	}
}
@media screen and (max-width: 560.98px) {
	.mv-thinking-balloon {
		/* padding: 1rem; */
	}
	*+.mv-thinking-balloon {
		margin-top: 2rem;
	}
}
@media screen and (max-width: 400.98px) {
	.mv-thinking-balloon {
		/* padding: 1rem; */
	}
	*+.mv-thinking-balloon {
		margin-top: 2rem;
	}
}

.mv-date {
	display: block;
	color: #fc5680; /* 文字の塗り */
	font-size: 2rem;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	font-feature-settings: 'palt';
	letter-spacing: 0.1ex;
	line-height: 1;
	text-align: center;
}
.mv-date>span {
	font-family: var(--font-family-alphabet);
}
@media screen and (max-width: 767.98px) {
	.mv-date {
		font-size: 1.75rem;
	}
}

.mv-lead {
	font-size: 1.25rem;
	font-family: var(--font-family-gothic);
	font-weight: 700;
	text-align: center;
}
*+.mv-lead {
	margin-top: 1em;
}
@media screen and (max-width: 767.98px) {
	.mv-lead {
		font-size: 1.25rem;
	}
}
@media screen and (max-width: 560.98px) {
	.mv-lead {
		font-size: 1.125rem;
	}
}
@media screen and (max-width: 400.98px) {
	.mv-lead {
		font-size: 1rem;
	}
}
@media screen and (max-width: 374.98px) {
	.mv-lead {
		font-size: calc( 4.5vw * 0.875 );
	}
}



.mv-desc {
	font-size: 2.5rem;
	font-family: var(--font-family-gothic);
	font-weight: 900;
	line-height: 1.28;
	text-align: center;
}
*+.mv-desc {
	margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
	.mv-desc {
		font-size: 2rem;
	}
	*+.mv-desc {
		margin-top: 1rem;
	}
}
@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-pr-text {
	font-size: 1rem;
	font-family: var(--font-family-gothic);
	font-weight: 400;
	line-height: 1.7;
	text-align: left;
}
*+.mv-pr-text {
	margin-top: 1rem;
}
@media screen and (max-width: 560.98px) {
	.mv-pr-text {
		font-size: 0.875rem;
	}
	*+.mv-pr-text {
		margin-top: 1rem;
	}
}
@media screen and (max-width: 400.98px) {
	.mv-pr-text {
		font-size: 0.875rem;
	}
	*+.mv-pr-text {
		margin-top: 1rem;
	}
}
@media screen and (max-width: 374.98px) {
	.mv-pr-text {
		font-size: 0.875rem;
	}
}


/* mukuro group */
.intro-ksy {
	margin: 0;
	padding: 0;
}
*+.intro-ksy {
	margin-top: 1rem;
}
/* mukuro group title */
.intro-ksy__catch {
	font-size: 2.5rem;
	font-feature-settings: 'palt';
	font-weight: 900;
	line-height: 1.333;
	text-align: center;
}
.intro-ksy__catch em {
	font-size: inherit;
}
@media screen and (max-width: 1120.98px) {
	.intro-ksy__catch {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 959.98px) {
	.intro-ksy__catch {
		font-size: 1.75rem;
	}
}
@media screen and (max-width: 767.98px) {
	.intro-ksy__catch {
		font-size: 1.75rem;
	}
}
@media screen and (max-width: 560.98px) {
	.intro-ksy__catch {
		font-size: 1.75rem;
		line-height: 1.75;
	}
}


/* mukuro group lead */
.intro-ksy__lead {
	font-size: 1.125rem;
	font-feature-settings: 'palt';
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
*+.intro-ksy__lead {
	margin-top: 1em;
}
.intro-ksy__lead em {
	color: #f0f;
	font-size: 1.75rem;
	font-weight: 700;
}
.intro-ksy__lead b {
	font-size: 1.75rem;
	font-weight: 700;
}
@media screen and (max-width: 1120.98px) {
	.intro-ksy__lead {
		font-size: 1.5rem;
	}
	.intro-ksy__lead em {
		font-size: 1.75rem;
	}
	.intro-ksy__lead b {
		font-size: 1.75rem;
	}
}
@media screen and (max-width: 959.98px) {
	.intro-ksy__lead {
		font-size: 1.5rem;
	}
	.intro-ksy__lead em {
		font-size: 1.75rem;
	}
	.intro-ksy__lead b {
		font-size: 1.75rem;
	}
}
@media screen and (max-width: 767.98px) {
	.intro-ksy__lead {
		font-size: 1rem;
	}
	.intro-ksy__lead b {
		font-size: 1.75rem;
	}
	.intro-ksy__lead em {
		font-size: 1.75rem;
	}
}
@media screen and (max-width: 560.98px) {
	.intro-ksy__lead {
		font-size: 1rem;
		line-height: 2.75;
	}
	.intro-ksy__lead em {
		display: inline-block;
		font-size: 1.75rem;
		line-height: 1.75;
		padding-top: 1em;
	}
	.intro-ksy__lead b {
		display: inline-block;
		font-size: 1.75rem;
		line-height: 1.75;
		padding-top: 1em;
	}
}

.intro-ksy .books__list {
	margin-top: 40px;
}



/*-------------------------------------------------------------*/
/* mv after section */
.section-mv+.section {}
@media screen and (max-width: 767.98px) {
	.section-mv+.section {}
}
@media screen and (max-width: 560.98px) {
	.section-mv+.section {}
}


/*-------------------------------------------------------------*/
/* intro */

.section-kairanban {
	padding: 2.5rem 0 5rem;
}
.section-kairanban .l-container {
	/* box-shadow: 0 8px 0 0 var(--site-c-gray--light); */
	/* border-radius: 40px; */
	/* background: #eee; */
	/* padding: 12px; */
}
@media screen and (max-width: 767.98px) {
	.section-kairanban {
		padding: 2.5rem 0 6.5rem;
	}
}

.kairanban__inner {
	border-radius: 32px;
	background: #fff;
	margin: 0;
	padding: 3.5rem 4rem;
}
@media screen and (max-width: 767.98px) {
	.kairanban__inner {
		padding: 2rem;
	}
}
/* 
.kairanban__head {
	border-radius: 6px;
	border: solid 6px var(--site-c-gray--light);
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	margin: -1.5rem 0 2rem;
}
.kairanban__head::before {
	content: attr(data-name);
	display: block;
	border-radius: 3em;
	border: solid 3px var(--site-c-gray--light);
	background: #fff;
	color: var(--site-c-gray--light);
	font-size: 1.5rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 900;
	line-height: 1;
	margin-top: -1em;
	padding: 0.25em 2em;
}
.kairanban__head::after {
	content: attr(data-subject);
	display: block;
	color: var(--site-c-gray--light);
	color: #fff;
	-webkit-text-stroke: 8px var(--site-c-gray--light);
	text-stroke: 8px var(--site-c-gray--light);
	paint-order: stroke fill;
	font-size: 2.5rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 900;
	letter-spacing: 0.5ex;
	padding: 0 0 0.5rem;
} */

@media screen and (max-width: 767.98px) {
	.kairanban__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: 9rem;
	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-radius: 32px;
	background: #fff;
	margin: 0;
	padding: 3rem 4rem;
}
.kairanban__inner .books__item {
	/* border-radius: 4px;
	border: solid 4px #c0df93;
	background-color: transparent;
	padding: 2rem; */
	padding: 0;
}
@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: 900;
	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;
}
.kairanban__inner .book__cta {
	border-top: dashed 1px #c0df93;
	padding-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 {
	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;
	}
}

.kairanban__ad {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	align-items: stretch;
	gap: 1rem;
}
*+.kairanban__ad {
	margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
	.kairanban__ad {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
}
.kairanban__ad>li {
	display: flex;
	justify-content: center;
	align-items: center;
}
.kairanban__ad>li a {
	display: block;
	width: 100%;
}
.kairanban__ad>li img {
	width: 100%;
	height: auto;
}

/*-------------------------------------------------------------*/
/* news */

.section-news {
	container-type: inline-size;
	padding: 0;
	position: relative;
	z-index: 10;
	overflow: hidden;
}
.section-news .l-container {
	background-image: url(../images/bg-news.svg);
	background-position: left 50% top 0%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-inline: 5rem;
	padding-bottom: 16rem;
	position: relative;
}
.section-news .l-container::before {
	content: '';
	display: block;
	background-image: url(../images/img-illust-02-ar5_7.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 14rem;
	height: auto;
	aspect-ratio: 5 / 7;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	transform: translate(33.33%,20%);
}
@media screen and (max-width: 1120.98px) {
	.section-news {
		padding: 0;
	}
	.section-news .l-container {
		padding-inline: 7cqw;
	}
	.section-news .l-container::before {
		width: 14cqw;
		height: auto;
		right: 0;
		bottom: 0;
		transform: translate(0%,0%);
	}
}
@media screen and (max-width: 767.98px) {
	.section-news {
		padding: 0;
	}
	.section-news .l-container {
		padding-bottom: 10rem;
	}
	.section-news .l-container::before {
		width: 22cqw;
		height: auto;
		right: auto;
		bottom: 0;
		left: 50%;
		transform: translate(-50%,0%);
	}
}
@media screen and (max-width: 560.98px) {
	.section-news {
		padding: 0;
	}
}


.section-news .page-head {
	margin: 0;
	padding: 7% 0 5%;
}
@media screen and (max-width: 1120.98px) {
	.section-news .page-head {
		margin: 0;
		padding: 7% 0 5%;
	}
}
@media screen and (max-width: 959.98px) {
	.section-news .page-head {
		margin: 0;
		padding: 7% 0 5%;
	}
}
@media screen and (max-width: 767.98px) {
	.section-news .page-head {
		margin: 0;
		padding: 7% 0 5%;
	}
}
@media screen and (max-width: 560.98px) {
	.section-news .page-head {
		margin: 0;
		padding: 7% 0 5%;
	}
}


.list-news {
	--news-line-height: 112px;
	max-width: none;
	height: calc( var(--news-line-height) * 3 );
	margin: 0 auto;
	overflow-x: hidden;
	overflow-y: auto;
}
*+.list-news {
	margin-top: 0;
}
@media screen and (max-width: 1120.98px) {
	.list-news {
		height: 33cqw;
	}
}
@media screen and (max-width: 767.98px) {
	.list-news {
		height: 30cqw;
	}
}

.list-news > li {
	display: flex;
	flex-flow: row wrap;
	align-content: center;
	align-items: center;
	border-bottom: solid 1px rgba(0,0,0,0.1);
	margin: 0;
	padding: 1rem 3rem;
	min-height: var(--news-line-height);
}
@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 );
	}
}


/*-------------------------------------------------------------*/
/* campaign */
.section-campaign {
	background-image: url(../images/bg-campaign.svg);
	background-repeat: no-repeat;
	background-position: left 50% top 0%;
	background-size: 150% auto;
	min-height: 56.25dvw;
	padding: 4rem 0;
}
.section-news+.section-campaign {
	margin-top: -8rem;
	padding-top: 12rem;
	position: relative;
	z-index: 1;
}

.campaign__item {
}
.campaign__ttl {
	display: block;
	background: #3ca7df;
	color: #fff;
	font-size: 2em;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.4ex;
	text-align: center;
	padding: 2rem 4rem;
	position: relative;
}
@media screen and (max-width: 767.98px) {
	.campaign__ttl {
		padding: 1rem 0;
	}
}
.campaign__ttl .item--ttl {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	letter-spacing: inherit;
	text-shadow: 0.1ex 0.1ex 0 rgba(0,0,0,0.1);
}
.campaign__ttl .item--en {
    display: block;
    font-size: 0.75em;
    font-weight: 500;
    font-family: var(--font-family-alphabet);
    /* font-stretch: condensed; */
    letter-spacing: 0.4ex;
    text-transform: lowercase;
	text-shadow: 0.1ex 0.1ex 0 rgba(0,0,0,0.1);
}
.campaign__ttl .item--date {
	display: block;
	border-radius: 2em;
	border: solid 2px #e58a73;
	background: #fed8e5;
	color: #403337;
	font-size: 1rem;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: -0.05ex;
	font-feature-settings: 'palt';
	line-height: 1;
	white-space: nowrap;
	padding: 0.5em 2em;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,50%);
}

.campaign__desc {
	border: solid 1rem #3ca7df;
	border-top: none;
	background: #fffbc3;
	padding: 2rem 4rem;
}
@media screen and (max-width: 767.98px) {
	.campaign__desc {
		padding: 2rem 1rem;
	}
}
.campaign__desc p {
	line-height: 1.75;
}
.campaign__desc *+p {
	margin-top: 0.5em;
}

.campaign__desc .item--ttl {
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.125em;
	line-height: 1.4;
	margin-bottom: 0.75em;
}
.campaign__desc *+.item--ttl {
	margin-top: 0.75em;
}
.campaign__desc .item--txt {
	font-weight: 400;
	line-height: 1.75;
	padding-left: 1em;
}
.campaign__desc *+.item--txt {
	margin-top: 0.5em;
}
.campaign__desc .item--date {
	font-weight: 700;
	line-height: 1.75;
	padding-left: 1em;
}
.campaign__desc *+.item--date {
	margin-top: 0.5em;
}

.campaign__arrow {
	display: block;
	background: #fc5680;
	color: #fff;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	text-shadow: 0.1ex 0.1ex 0 rgba(0,0,0,0.1);
	width: fit-content;
	margin: 1em 0 -1em auto;
	padding: 1rem 0 1rem 1rem;
	position: relative;
}
.campaign__arrow::before {
	content: '';
	display: block;
	border-style: solid;
	border-color: transparent transparent transparent #fc5680;
	border-width: 3em;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(100%,-50%);
	pointer-events: none;
}

/*-------------------------------------------------------------*/
/* msg */

.section-msg {
	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 {
	container-type: inline-size;
	border-radius: 32px;
	background: #fff;
	max-width: 800px;
	margin-inline: auto;
	padding: 10% 5% 2.5%;
	position: relative;
}
* + .msg__figure {
	margin-top: 1.5rem;
}
.msg__figure img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}
.msg__figure .item--author {
	display: block;
	width: 86.66cqw;
	position: absolute;
	right: -26.5cqw;
	bottom: 3.7cqw;
	z-index: 5;
}
@media screen and (max-width: 1120.98px) {
	.msg__figure .item--author {
		display: block;
		width: 86.66cqw;
		margin: -33cqw auto 0;
		position: static;
		z-index: 5;
	}
}

.msg__figure .item--author img {
	width: 100%;
	height: auto;
	position: static;
}

@media screen and (max-width: 767.98px) {
	.msg__figure img {
	}
}
@media screen and (max-width: 560.98px) {
	.msg__figure img {
	}
}



.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 {
	padding-bottom: 0;
}

.charas-head {
	position: relative;
	z-index: 1;
}
.charas-head::before {
	content: '';
	display: block;
	border-radius: 50%;
	background-image: url(../images/bg-footer.jpg);
	background-repeat: no-repeat;
	background-position: left 0% top 0%;
	background-size: auto 133.33%;
	width: 20em;
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	pointer-events: none;
}
.charas-head__text.page-head__jp {
	color: #fff; /* 文字の塗り */
	-webkit-text-stroke: 8px #22b1e5; /* 縁取りの太さと色 */
	text-stroke: 8px #22b1e5; /* 縁取りの太さと色 */
	paint-order: stroke fill;
	position: relative;
	z-index: 5;
}
.charas-head__text.page-head__en {
	color: #22b1e5;
	position: relative;
	z-index: 5;
}
@media screen and (max-width: 767.98px) {

}
@media screen and (max-width: 560.98px) {

}


.charas__list {
	--charas-list-gap: 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	margin: 0;
	gap: var(--charas-list-gap);
	position: relative;
	z-index: 5;
}
*+.charas__list {
	margin-top: 7rem;
}
@media screen and (max-width: 1120.98px) {
	.charas__list {
		--charas-list-gap: 1rem;
		font-size: 2.5dvw;
		gap: var(--charas-list-gap);
	}
}
@media screen and (max-width: 767.98px) {
	.charas__list {
		--charas-list-gap: 1rem;
		gap: var(--charas-list-gap);
	}
	*+.charas__list {
		margin-top: 3rem;
	}
}
@media screen and (max-width: 560.98px) {
	.charas__list {
		--charas-list-gap:  1rem;
		grid-template-columns: 1fr;
		gap: var(--charas-list-gap);
	}
	*+.charas__list {
		margin-top: 2rem;
	}
}

.charas__item {
	display: flex;
	flex-flow: column nowrap;
	justify-content: stretch;
	align-items: stretch;
	border-radius: 32px;
	background-image: url(../images/img-chara-bg.webp);
	background-color: #c0df93;
	background-repeat: no-repeat;
	background-position: left 50% top 0%;
	background-size: auto 5lh;
	padding: 1rem;
}
@media screen and (max-width: 767.98px) {
	.charas__item {
		
	}
}
@media screen and (max-width: 560.98px) {
	.charas__item {
		
	}
}

.charas__item>dt {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	text-align: center;
	width: auto;
	height: 3lh;
	position: relative;
	flex: initial;
}

@media screen and (max-width: 767.98px) {
	.charas__item>dt {

	}
}
@media screen and (max-width: 560.98px) {
	.charas__item>dt {

	}
}

.chara__small {
	display: block;
	color: #fff;
	-webkit-text-stroke: 6px #fc5680; /* 縁取りの太さと色 */
	text-stroke: 6px #fc5680; /* 縁取りの太さと色 */
	paint-order: stroke fill;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.5em;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-60%);
}
@media screen and (max-width: 1120.98px) {
	.chara__small {
		font-size: 2.5dvw;
	}
}
@media screen and (max-width: 767.98px) {
	.chara__small {

	}
}
@media screen and (max-width: 560.98px) {
	.chara__small {
		font-size: 1.25em;
	}
}

.chara__name {
	display: block;
	color: #fff; /* 文字の塗り */
	-webkit-text-stroke: 8px #fc5680; /* 縁取りの太さと色 */
	text-stroke: 8px #fc5680; /* 縁取りの太さと色 */
	paint-order: stroke fill;
	font-size: 2.5em;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	font-feature-settings: 'palt';
	line-height: 1;
	white-space: nowrap;
	width: auto;
	margin: 0;
}
@media screen and (max-width: 1120.98px) {
	.chara__name {
		font-size: 4.166dvw;
	}
}
@media screen and (max-width: 767.98px) {
	.chara__name {

	}
}
@media screen and (max-width: 560.98px) {
	.chara__name {
		font-size: 1.75em;
	}
}

.charas__item>dd {
	/* box-shadow: 0 4px 0 0 #63b063; */
	border-radius: 16px;
	background: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	width: auto;
	padding: 1rem;
	flex: auto;
}
.charas__item>dd>p {
	line-height: 2.333;
	position: relative;
	padding-left: 1.25em;
}
.charas__item>dd>p::before {
	content: '●';
	display: block;
	color: #22b1e5;
	transform: translate(0,-4.166%) scale(1.666);
	position: absolute;
	top: auto;
	left: 0;
}
.charas__item>dd>p:has(.fs--05)::before {
	transform: translate(0,8.333%) scale(1.666);
	top: 0;
	left: 0;
}
@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;
	}
}


.charas__area {
	min-height: calc( 144vw * 0.3333 );
	margin: -6rem 0 0;
	padding: 7rem 0 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.charas__area::before {
	content: '';
	display: block;
	border-radius: 50%;
	background: #fff;
	width: 144vw;
	height: 144vw;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-50%) scale(1,0.3333);
}
@media screen and (max-width: 1120.98px) {
	.charas__area::before {
		display: none;
	}
}
/* .charas__area::after {
	content: '';
	display: block;
	background-image: url(../images/img-illust-03-ar4_3.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 400px;
	height: auto;
	aspect-ratio: 4 / 3;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 5;
	transform: translate(-50%,0);
} */
.charas__map {
	text-align: center;
	position: relative;
	z-index: 5;
}
.charas__map img {
	max-width: 800px;
	width: 100%;
	height: auto;
}

.charas__area+.l-container {
	margin-top: 4rem;
}



/*-------------------------------------------------------------*/
/* voice */
.section-voice {
	position: relative;
	z-index: 20000;
}
.voice-bg {}
.voice-bg .l-container {
	container-type: inline-size;
	background-image: url(../images/bg-voice.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	position: relative;
	padding-block: 4rem;
}
.voice-bg .l-container::before {
	content: '';
	display: block;
	background-image: url(../images/img-illust-01-ar2_3.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 20cqw;
	height: auto;
	aspect-ratio: 2 / 3;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	transform: translate(-45%,0);
	pointer-events: none;
}
@media screen and (max-width: 1120.98px) {
	.voice-bg .l-container::before {
		width: 20cqw;
		height: auto;
		aspect-ratio: 2 / 3;
		position: absolute;
		top: 0;
		right: auto;
		bottom: auto;
		left: 0;
		z-index: 10;
		transform: translate(0,-25%);
		pointer-events: none;
	}
}
@media screen and (max-width: 767.98px) {
	.voice-bg .l-container {
		padding-block: 1rem;
	}
	.voice-bg .l-container::before {
		width: 30cqw;
	}
}


.voice__lead {
	font-size: 1.125rem;
	font-feature-settings: 'palt';
	font-weight: 700;
	line-height: 2;
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
}
.voice-list {
	margin: 0 0 5.5rem;
	padding: 0;
}
@media screen and (max-width: 767.98px) {
	.voice-list {
		margin: 0;
	}
}

[name="voice-list-item-pager-switch"] {
	position: fixed;
	opacity: 0;
}

.voice-list label {
	cursor: pointer;
}

.voice-list__group {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
}
.voice-list__group .modal-voice {
	/* opacity: 0;
	transform: translate(-20%,0);
	transition:
		opacity 0s ease 0s,
		transform 0s ease 0s; */
}
[name="voice-list-item-pager-switch"]:nth-of-type(1):checked~.voice-list__group:nth-of-type(1),
[name="voice-list-item-pager-switch"]:nth-of-type(2):checked~.voice-list__group:nth-of-type(2),
[name="voice-list-item-pager-switch"]:nth-of-type(3):checked~.voice-list__group:nth-of-type(3),
[name="voice-list-item-pager-switch"]:nth-of-type(4):checked~.voice-list__group:nth-of-type(4),
[name="voice-list-item-pager-switch"]:nth-of-type(5):checked~.voice-list__group:nth-of-type(5),
[name="voice-list-item-pager-switch"]:nth-of-type(6):checked~.voice-list__group:nth-of-type(6),
[name="voice-list-item-pager-switch"]:nth-of-type(7):checked~.voice-list__group:nth-of-type(7),
[name="voice-list-item-pager-switch"]:nth-of-type(8):checked~.voice-list__group:nth-of-type(8),
[name="voice-list-item-pager-switch"]:nth-of-type(9):checked~.voice-list__group:nth-of-type(9),
[name="voice-list-item-pager-switch"]:nth-of-type(10):checked~.voice-list__group:nth-of-type(10),
[name="voice-list-item-pager-switch"]:nth-of-type(11):checked~.voice-list__group:nth-of-type(11),
[name="voice-list-item-pager-switch"]:nth-of-type(12):checked~.voice-list__group:nth-of-type(12),
[name="voice-list-item-pager-switch"]:nth-of-type(13):checked~.voice-list__group:nth-of-type(13),
[name="voice-list-item-pager-switch"]:nth-of-type(14):checked~.voice-list__group:nth-of-type(14),
[name="voice-list-item-pager-switch"]:nth-of-type(15):checked~.voice-list__group:nth-of-type(15),
[name="voice-list-item-pager-switch"]:nth-of-type(16):checked~.voice-list__group:nth-of-type(16),
[name="voice-list-item-pager-switch"]:nth-of-type(17):checked~.voice-list__group:nth-of-type(17),
[name="voice-list-item-pager-switch"]:nth-of-type(18):checked~.voice-list__group:nth-of-type(18),
[name="voice-list-item-pager-switch"]:nth-of-type(19):checked~.voice-list__group:nth-of-type(19),
[name="voice-list-item-pager-switch"]:nth-of-type(20):checked~.voice-list__group:nth-of-type(20),
[name="voice-list-item-pager-switch"]:nth-of-type(21):checked~.voice-list__group:nth-of-type(21),
[name="voice-list-item-pager-switch"]:nth-of-type(22):checked~.voice-list__group:nth-of-type(22),
[name="voice-list-item-pager-switch"]:nth-of-type(23):checked~.voice-list__group:nth-of-type(23),
[name="voice-list-item-pager-switch"]:nth-of-type(24):checked~.voice-list__group:nth-of-type(24) {
	position: relative;
	inset: auto;
	z-index: 10;
	opacity: 1;
	pointer-events: auto;
}
[name="voice-list-item-pager-switch"]:nth-of-type(1):checked~.voice-list__group:nth-of-type(1) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(2):checked~.voice-list__group:nth-of-type(2) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(3):checked~.voice-list__group:nth-of-type(3) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(4):checked~.voice-list__group:nth-of-type(4) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(5):checked~.voice-list__group:nth-of-type(5) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(6):checked~.voice-list__group:nth-of-type(6) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(7):checked~.voice-list__group:nth-of-type(7) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(8):checked~.voice-list__group:nth-of-type(8) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(9):checked~.voice-list__group:nth-of-type(9) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(10):checked~.voice-list__group:nth-of-type(10) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(11):checked~.voice-list__group:nth-of-type(11) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(12):checked~.voice-list__group:nth-of-type(12) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(13):checked~.voice-list__group:nth-of-type(13) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(14):checked~.voice-list__group:nth-of-type(14) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(15):checked~.voice-list__group:nth-of-type(15) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(16):checked~.voice-list__group:nth-of-type(16) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(17):checked~.voice-list__group:nth-of-type(17) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(18):checked~.voice-list__group:nth-of-type(18) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(19):checked~.voice-list__group:nth-of-type(19) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(20):checked~.voice-list__group:nth-of-type(20) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(21):checked~.voice-list__group:nth-of-type(21) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(22):checked~.voice-list__group:nth-of-type(22) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(23):checked~.voice-list__group:nth-of-type(23) .modal-voice,
[name="voice-list-item-pager-switch"]:nth-of-type(24):checked~.voice-list__group:nth-of-type(24) .modal-voice {
	/* opacity: 1;
	transform: translate(0%,0);
	transition:
		opacity 0.2s ease 0.6s,
		transform 0.2s ease 0.6s; */
}


.voice-list__group-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: stretch;
	padding: 2rem;
	gap: 2rem;
}
@media screen and (max-width: 1120.98px) {
	.voice-list__group-inner {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}
@media screen and (max-width: 767.98px) {
	.voice-list__group-inner {
		grid-template-columns: 1fr;
		align-items: stretch;
	}
}

.voice-list__item {
	border-radius: 0;
	box-shadow: 0 0 1rem 0 rgba(0,0,0,0.1);
	background: #fff;
	padding: 1rem 1rem 0;
}
[data-modal-preview] .voice-list__item {
	border-radius: 8px;
	overflow: hidden;
}

.voice-list__item-voice {
	font-size: 1rem;
	line-height: 1.75;
}
[data-modal-preview] .voice-list__item-voice {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 表示したい行数を指定 */
	overflow: hidden;
}
[data-modal-preview] .voice-list__item-voice br {
	display: none;
}
.voice-list__item-info {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}
[data-modal-preview] .voice-list__item-info {
	display: block;
	background: #fc5680;
	color: #fff;
	text-align: right;
	margin: 0 -1rem 0;
	padding: 0.5rem 1rem;
	position: relative;
}
[data-modal-preview] *+.voice-list__item-info {
	margin-top: 1rem;
}
[data-modal-preview] *+.voice-list__item-info::before {
	content: "\f41c";
	display: block;
	display: none;
	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;
	color: #fff;
	font-size: 2em;
	position: absolute;
	top: 50%;
	left: 1rem;
	z-index: 1;
	transform: translate(0,-50%);
}


[data-modal-real] .voice-list__item {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
	height: 100%;
	padding: 0;
}
[data-modal-real] .voice-list__item-voice {
	height: calc( 100% - 96px );
	padding: 2rem;
	overflow-x: hidden;
	overflow-y: auto;
}

[data-modal-real] .voice-list__item-voice::-webkit-scrollbar {
	width: 12px;
	/* 垂直方向のスクロールバーの幅 */
	height: 12px;
	/* 水平方向のスクロールバーの幅 */
}
[data-modal-real] .voice-list__item-voice::-webkit-scrollbar-thumb {
	background-color: #fc5680;
	border-radius: 6px;
	box-shadow: none;
}
[data-modal-real] .voice-list__item-voice::-webkit-scrollbar-track {
	background-color: var(--site-c-gray--light);
	border-radius: 6px;
	box-shadow: none;
}
[data-modal-real] .voice-list__item-voice::-webkit-scrollbar-corner {
	display: none;
}

[data-modal-real] .voice-list__item-info {
	background: #fc5680;
	color: #fff;
	height: 96px;
	padding: 2rem;
}

.voice-list__item-info .item--shopname {
	display: block;
	font-weight: 700;
	font-size: 0.875rem;
}
.voice-list__item-info .item--name {
	display: block;
	font-weight: 900;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.25rem;
}

.voice-list .modal-close,
.voice-list [id="modal-close"] {
	background: rgb(253, 248, 212, 0.75);
}

.voice-list .modal-content,
.voice-list [id="modal-content"] {
	box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.2);
}

.voice-list__pager {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0 0;
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translate(0,100%);
}
.voice-list__pager-button {
	display: flex;
	justify-content: center;
	align-items : center;
	border-radius: 50%;
	border: solid 2px #fc5680;
	background: #fff;
	color: #fc5680;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
}
.voice-list__pager-button:focus,
.voice-list__pager-button:hover {
	border: solid 2px #fc5680;
	background: #fc5680;
	color: #fff;
	opacity: 0.6;
}
.voice-list__pager-button:active {
	border: solid 2px #fc5680;
	background: #fc5680;
	color: #fff;
	opacity: 1;
}

[name="voice-list-item-pager-switch"]:nth-of-type(1):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(1),
[name="voice-list-item-pager-switch"]:nth-of-type(2):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(2),
[name="voice-list-item-pager-switch"]:nth-of-type(3):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(3),
[name="voice-list-item-pager-switch"]:nth-of-type(4):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(4),
[name="voice-list-item-pager-switch"]:nth-of-type(5):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(5),
[name="voice-list-item-pager-switch"]:nth-of-type(6):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(6),
[name="voice-list-item-pager-switch"]:nth-of-type(7):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(7),
[name="voice-list-item-pager-switch"]:nth-of-type(8):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(8),
[name="voice-list-item-pager-switch"]:nth-of-type(9):checked~.voice-list__pager  .voice-list__pager-button:nth-of-type(9),
[name="voice-list-item-pager-switch"]:nth-of-type(10):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(10),
[name="voice-list-item-pager-switch"]:nth-of-type(11):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(11),
[name="voice-list-item-pager-switch"]:nth-of-type(12):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(12),
[name="voice-list-item-pager-switch"]:nth-of-type(13):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(13),
[name="voice-list-item-pager-switch"]:nth-of-type(14):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(14),
[name="voice-list-item-pager-switch"]:nth-of-type(15):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(15),
[name="voice-list-item-pager-switch"]:nth-of-type(16):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(16),
[name="voice-list-item-pager-switch"]:nth-of-type(17):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(17),
[name="voice-list-item-pager-switch"]:nth-of-type(18):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(18),
[name="voice-list-item-pager-switch"]:nth-of-type(19):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(19),
[name="voice-list-item-pager-switch"]:nth-of-type(20):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(20),
[name="voice-list-item-pager-switch"]:nth-of-type(21):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(21),
[name="voice-list-item-pager-switch"]:nth-of-type(22):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(22),
[name="voice-list-item-pager-switch"]:nth-of-type(23):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(23),
[name="voice-list-item-pager-switch"]:nth-of-type(24):checked~.voice-list__pager .voice-list__pager-button:nth-of-type(24) {
	border: solid 2px #fc5680;
	background: #fc5680;
	color: #fff;
	opacity: 1;
}


/*-------------------------------------------------------------*/
/* profile */

.section-profile {
	color: #000;
	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-family: "Zen Maru Gothic", sans-serif;
	font-weight: 900;
	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;}
}



/* profile book */
.profile__book {
	--profile-book-gap: 2rem;
	--profile-book-offset: 1.75rem;
	--profile-book-label-height: 3rem;
	container-type: inline-size;
	display: flex;
	flex-wrap: row wrap;
	justify-content: center;
	align-content: stretch;
	align-items: stretch;
	max-width: 800px;
	gap: var(--profile-book-gap);
	margin: 0 auto;
	position: relative;
}
*+.profile__book {
	margin-top: 4rem;
}
@media screen and (max-width: 767.98px) {
	.profile__book {
		--profile-book-gap: 0.5rem;
		--profile-book-offset: 1.75rem;
		--profile-book-label-height: 2.5rem;
		gap: var(--profile-book-gap);
	}
	*+.profile__book {
		margin-top: 4rem;
	}
}
@media screen and (max-width: 560.98px) {
	.profile__book {
		--profile-book-gap: 1rem;
		--profile-book-offset: 1.75rem;
		--profile-book-label-height: 3.125rem;
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		gap: var(--profile-book-gap);
	}
	*+.profile__book {
		margin-top: 4rem;
	}
}


.profile__book-item {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
	max-width: calc( (100cqw - var(--profile-book-gap) * 3) / 4 );
	padding: 0;
	flex: 1 1;
	position: relative;
}
@media screen and (max-width: 1120.98px) {
	.profile__book-item {
		max-width: calc( (100cqw - var(--profile-book-gap) * 3) / 4 );
	}
}
@media screen and (max-width: 767.98px) {
	.profile__book-item {
		max-width: calc((100% - var(--profile-book-gap) * 1) / 2);
	}
}
@media screen and (max-width: 560.98px) {
	.profile__book-item {
		max-width: none;
		width: calc((100% - var(--profile-book-gap) * 1) / 2);
		flex: initial;
	}
}

.profile__book-item>dt {
	font-weight: 900;
	padding: 1em 0 0;
	order: 1;
}
.profile__book-item>dt i {
	font-weight: 500;
}
.profile__book-item>dd {
	order: 0;
}
.profile__book-item>dd+dd {
	order: 3;
	margin-top: 1rem;
}
.profile__book-item>dd img {
	/* box-shadow: 8px 8px 0 0 #000; */
	width: 100%;
	height: auto;
}
.profile__book-item>dd [src*="book-hatena.svg"] {
	aspect-ratio: 148 / 220;
}

.profile__book-item>dd .btn {
	margin-top: 8px;
}
@media screen and (max-width: 767.98px) {
	.profile__book-item>dd .btn {
		font-feature-settings: 'palt';
		padding-inline: 0;
	}
}

.profile__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(--profile-book-label-height);
	position: absolute;
	inset: 28.4cqw 0 auto 0;
}
@media screen and (max-width: 767.98px) {
	.profile__book-label {
		font-size: 1rem;
	}
}
@media screen and (max-width: 560.98px) {
	.profile__book-label {
		font-size: 1rem;
	}
}


/**
 * modal
**/
.modal-drawer,
[id="modal-drawer"] {}

.modal-unshown {
	position: absolute;
	opacity: 0 !important;
}

.modal-input {
	position: fixed;
	opacity: 0 !important;
}

/*#modal-open*/
.modal-btn-open {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3em;
	border: solid 1px var(--site-c-main);
	background: #fff;
	color: var(--site-c-main);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	max-width: 256px;
	height: 40px;
	margin: 0 auto;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.modal-btn-open:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767.98px) {
	.modal-btn-open {
		font-size: 12px;
	}
}

.modal-close,
[id="modal-close"] {
	display: block;
	background: rgba(0, 0, 0, 0.5);
	width: auto;
	height: auto;
	position: fixed;
	inset: 0;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	pointer-events: none;
}
.modal-input:checked~.modal-close,
[id="modal-input"]:checked~[id="modal-close"] {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

.modal-content,
[id="modal-content"] {
	--modal-margin-block-offset: 160px;
	box-shadow: none;
	border-radius: 0;
	border: none;
	background: transparent;
	color: var(--font-c);
	/* NOTE: font-sizeは通常版のモーダルのfont-sizeの値を引き継ぐ */
	/* NOTE: font-weightは通常版のモーダルのfont-weightの値を引き継ぐ */
	max-width: 768px;
	max-height: calc(100dvh - var(--modal-margin-block-offset) * 2);
	width: 100%;
	height: 80dvh;
	padding: 0;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 20000;
	transform: translate(-50%, -100%);
	overflow: auto;
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.3s ease-in-out,
		opacity 0.3s ease-in-out;
}
.modal-input:checked~.modal-content,
[id="modal-input"]:checked~[id="modal-content"] {
	transform: translate(-50%, -50%);
	opacity: 1;
	pointer-events: auto;
}
.modal-content [data-modal-real] {
	height: 100%;
}

@media screen and (max-width: 959.98px) {
	.modal-content,
	[id="modal-content"] {
		font-size: 14px;
		padding: 32px 20px;
	}
}
@media screen and (max-width: 767.98px) {
	.modal-content,
	[id="modal-content"] {
		--modal-margin-block-offset: 80px;
	font-size: 14px;
		max-height: calc(100dvh - var(--modal-margin-block-offset) * 2);
		padding: 32px 16px;
	}
}


.modal-content::-webkit-scrollbar,
[id="modal-content"]::-webkit-scrollbar {
	width: 12px;
	/* 垂直方向のスクロールバーの幅 */
	height: 12px;
	/* 水平方向のスクロールバーの幅 */
}
.modal-content::-webkit-scrollbar-thumb,
[id="modal-content"]::-webkit-scrollbar-thumb {
	background-color: var(--site-c-main);
	border-radius: 6px;
	box-shadow: none;
}
.modal-content::-webkit-scrollbar-track,
[id="modal-content"]::-webkit-scrollbar-track {
	background-color: var(--site-bg-c-gray-ui);
	border-radius: 6px;
	box-shadow: none;
}
.modal-content::-webkit-scrollbar-corner,
[id="modal-content"]::-webkit-scrollbar-corner {
	display: none;
}

.modal-close-button {
	cursor: pointer;
}
.modal-close-button::before {
	content: '\f00d';
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Font Awesome 6 Free";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	font-weight: 700;
	line-height: 1;
	text-rendering: auto;

	border-radius: 50%;
	border: solid 1.6666px #fff;
	background: var(--site-c-main);
	color: #fff;
	font-size: 0.6666em;
	width: calc(1em / 0.6666);
	height: calc(1em / 0.6666);
	transform: scale(1.3333);
}

