@charset "UTF-8";

:root {
	interpolate-size: allow-keywords;
	--bl: #000;
	--gray-02: #ccc;
	--grad-01: linear-gradient(90deg, var(--MAIN) 0%, var(--LMAIN) 100%);
	--grad-01-rev: linear-gradient(0deg, var(--MAIN) 0%, var(--LMAIN) 100%);
	--grad-02: linear-gradient(90deg, var(--ACC) 0%, var(--LACC) 100%);
	--grad-02-rev: linear-gradient(0deg, var(--ACC) 0%, var(--LACC) 100%);
	--grad-03: linear-gradient(90deg, var(--OTH) 0%, var(--LOTH) 100%);
	--grad-03-rev: linear-gradient(0deg, var(--OTH) 0%, var(--LOTH) 100%);
	--transition: all 0.3s ease-in-out;
	--oversize: calc((100% - 100vw) / 2);
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
:where(img) {
	vertical-align: bottom;
}
:where(.thumb),
:where([class*="__thumb"]) {
	vertical-align: bottom;
	background-color: unset;
}

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
	speak: none;
}

/*---------- BMパーツの調整 ----------*/
/* 疑似要素の削除 */
.no-before::before,
.no-after::after {
	content: unset !important;
}

/* ==================================
タイポ
===================================== */
/* ゴシックとか */
.ff-notosans {
	font-family: "Noto Sans JP", serif;
}
.ff-lato {
	font-family: "Lato", sans-serif;
	/* letter-spacing: 0.05rem; */
}
.ff-oswald {
	font-family: "Oswald", sans-serif;
}
.ff-poppins {
	font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
	font-family: "Staatliches", sans-serif;
}
.ff-montserrat {
	font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
	font-family: "Zen Maru Gothic", sans-serif;
}
.ff-m-plus-rounded-1c {
	font-family: "M PLUS Rounded 1c", sans-serif;
	transform: rotate(0.07deg);
}
.ff-inter {
	font-family: "Inter";
}
/* 明朝とか */
.ff-notoserif {
	font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
	font-family: "Yu Mincho", "YuMincho", serif;
}
.ff-shippori {
	font-family: "Shippori Mincho", serif;
}
.ff-shippori-b1 {
	font-family: "Shippori Mincho B1", serif;
}

/* font-weight */
.fw-600 {
	font-weight: 600 !important;
}
.fw-800 {
	font-weight: 800 !important;
}
.fw-900 {
	font-weight: 900 !important;
}

/* 縦書き */
.vertical-rl {
	writing-mode: vertical-rl;
}

.text-hukuro {
	/* -webkit-text-stroke: 2px var(--bl2);
	text-stroke: 2px var(--bl2); */
	text-shadow: 2px 2px 1px var(--bl2), -2px 2px 1px var(--bl2), 2px -2px 1px var(--bl2), -2px -2px 1px var(--bl2), 2px 0px 1px var(--bl2), 0px 2px 1px var(--bl2), -2px 0px 1px var(--bl2),
		0px -2px 1px var(--bl2);
}

/* box-decoration-break */
.decoration-break {
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

/* マーカーのあしらい */
mark {
	background: linear-gradient(transparent 60%, yellow 60%);
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect {
	/* 縦横比はstyleでCSS変数を書き換える
	ex) style="--aspect: 2.51 / 1;" */
	--aspect: auto;
	@media print, screen and (min-width: 576px) {
		--aspect-sm: var(--aspect);
	}
	@media print, screen and (min-width: 768px) {
		--aspect-md: var(--aspect-sm);
	}
	@media print, screen and (min-width: 992px) {
		--aspect-lg: var(--aspect-md);
	}
	@media print, screen and (min-width: 1200px) {
		--aspect-xl: var(--aspect-lg);
	}
	@media print, screen and (min-width: 1400px) {
		--aspect-xxl: var(--aspect-xl);
	}
}
.u-aspect img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: var(--aspect);
	@media print, screen and (min-width: 576px) {
		aspect-ratio: var(--aspect-sm);
	}
	@media print, screen and (min-width: 768px) {
		aspect-ratio: var(--aspect-md);
	}
	@media print, screen and (min-width: 992px) {
		aspect-ratio: var(--aspect-lg);
	}
	@media print, screen and (min-width: 1200px) {
		aspect-ratio: var(--aspect-xl);
	}
	@media print, screen and (min-width: 1400px) {
		aspect-ratio: var(--aspect-xxl);
	}
}

.u-aspect.--4x3 img {
	aspect-ratio: 4 / 3;
}
.u-aspect.--3x2 img {
	aspect-ratio: 3 / 2;
}
.u-aspect.--16x9 img {
	aspect-ratio: 16 / 9;
}
.u-aspect.--21x9 img {
	aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
	aspect-ratio: 1 / 1;
}
.u-aspect.--2x1 img {
	aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
	aspect-ratio: 3 / 1;
}
.u-aspect.--4x1 img {
	aspect-ratio: 4 / 1;
}
.u-aspect.--7x8 img {
	aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
	aspect-ratio: 9 / 16;
}
.u-aspect.--2x3 img {
	aspect-ratio: 2 / 3;
}
.u-aspect.--3x4 img {
	aspect-ratio: 3 / 4;
}

/* 画像全体を枠内に入れたいとき */
.u-aspect.--contain img,
.u-aspect .--contain img {
	object-fit: contain;
}

/*---------- 角丸 ----------*/
[class*="u-rounded"] {
	overflow: clip;
}
.u-rounded {
	--round: 0.625em;
	border-radius: var(--round);
	@media print, screen and (min-width: 576px) {
		--round-sm: var(--round);
		border-radius: var(--round-sm);
	}
	@media print, screen and (min-width: 768px) {
		--round-md: var(--round-sm);
		border-radius: var(--round-md);
	}
	@media print, screen and (min-width: 992px) {
		--round-lg: var(--round-md);
		border-radius: var(--round-lg);
	}
	@media print, screen and (min-width: 1200px) {
		--round-xl: var(--round-lg);
		border-radius: var(--round-xl);
	}
	@media print, screen and (min-width: 1400px) {
		--round-xxl: var(--round-xl);
		border-radius: var(--round-xxl);
	}
}

.u-rounded-_25 {
	border-radius: 0.25rem !important;
}
.u-rounded-_5 {
	border-radius: 0.5rem !important;
}
.u-rounded-_75 {
	border-radius: 0.75rem !important;
}
.u-rounded-1 {
	border-radius: 1rem !important;
}
.u-rounded-1_5 {
	border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
	border-radius: 1.25rem !important;
}
.u-rounded-2 {
	border-radius: 2rem !important;
}
.u-rounded-3 {
	border-radius: 3rem !important;
}

.--round-top {
	border-bottom-right-radius: unset !important;
	border-bottom-left-radius: unset !important;
}
.--round-bottom {
	border-top-right-radius: unset !important;
	border-top-left-radius: unset !important;
}
.--round-right {
	border-top-left-radius: unset !important;
	border-bottom-left-radius: unset !important;
}
.--round-left {
	border-top-right-radius: unset !important;
	border-bottom-right-radius: unset !important;
}
.--round-trans-up {
	border-top-left-radius: unset !important;
	border-bottom-right-radius: unset !important;
}
.--round-trans-down {
	border-top-right-radius: unset !important;
	border-bottom-left-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
	margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
	margin-right: var(--oversize);
}
@media print, screen and (min-width: 768px) {
	.u-r-md-over {
		margin-right: var(--oversize);
	}
}
@media print, screen and (min-width: 992px) {
	.u-r-lg-over {
		margin-right: var(--oversize);
	}
}
/* 左に */
.u-l-over {
	margin-left: var(--oversize);
}
@media print, screen and (min-width: 768px) {
	.u-l-md-over {
		margin-left: var(--oversize);
	}
}
@media print, screen and (min-width: 992px) {
	.u-l-lg-over {
		margin-left: var(--oversize);
	}
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
	aspect-ratio: 1 / 1;
	speak: none;
	display: inline-block;
	vertical-align: bottom;
	line-height: 1;

	--icon-size: 1.5em;
	width: var(--icon-size);
	height: var(--icon-size);
	@media print, screen and (min-width: 576px) {
		--icon-size-sm: var(--icon-size);
		width: var(--icon-size-sm);
		height: var(--icon-size-sm);
	}
	@media print, screen and (min-width: 768px) {
		--icon-size-md: var(--icon-size-sm);
		width: var(--icon-size-md);
		height: var(--icon-size-md);
	}
	@media print, screen and (min-width: 992px) {
		--icon-size-lg: var(--icon-size-md);
		width: var(--icon-size-lg);
		height: var(--icon-size-lg);
	}
	@media print, screen and (min-width: 1200px) {
		--icon-size-xl: var(--icon-size-lg);
		width: var(--icon-size-xl);
		height: var(--icon-size-xl);
	}
	@media print, screen and (min-width: 1400px) {
		--icon-size-xxl: var(--icon-size-xl);
		width: var(--icon-size-xxl);
		height: var(--icon-size-xxl);
	}
}
.c-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
	display: grid !important;
	grid-template-columns: repeat(2, auto);
	column-gap: 0.75em;
	justify-content: center;
	align-items: center;

	/* アイコンだけ右寄せ */
	&.--r {
		grid-template-columns: 1fr auto;
	}
	/* アイコンだけ左寄せ */
	&.--l {
		grid-template-columns: auto 1fr;
	}
}

/*---------- レイアウト ----------*/
/* display: grid;で重ねる */
.l-overlap {
	display: grid;
	> * {
		grid-area: 1 / -1;
	}
}
#tinymce,
.editor_block {
	.l-overlap {
		> * {
			grid-area: unset !important;
			z-index: 1 !important;
			opacity: 1 !important;
		}
	}
}

/* 子要素を中央配置 */
/* 縦 */
.l-v-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/* 縦横中央 */
.l-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
背景画像に各色のフィルターをかける場合
疑似要素を配置したいときのベース */
.p-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	/* opacity（濃さ）はstyleでCSS変数を書き換える
	ex) style="--bg-opacity: 0.5;" */
	--bg-opacity: 0.3;

	/* 疑似要素のファンデーション */
	&::before,
	&::after {
		content: "";
		display: block;
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		border-radius: inherit;
		pointer-events: none;
		speak: none;
		opacity: var(--bg-opacity);
	}
	/* 画像の時 */
	&.--img::before,
		&.--img::after {
			z-index: 1;
	}
	/* グレースケール透明フィルター */
	&.--bl::before {
		background-color: var(--bl);
	}
	&.--def::before {
		background-color: var(--DEF);
	}
	&.--dgry::before {
		background-color: var(--DGRY);
	}
	&.--gry::before {
		background-color: var(--GRY);
	}
	&.--lgry::before {
		background-color: var(--LGRY);
	}
	&.--wh::before {
		background-color: var(--WHT);
	}
	/* メインカラーフィルター */
	&.--main::before {
		background-color: var(--MAIN);
	}
	&.--lmain::before {
		background-color: var(--LMAIN);
	}
	/* アクセントカラーフィルター */
	&.--accent::before {
		background-color: var(--ACC);
	}
	&.--laccent::before {
		background-color: var(--LACC);
	}
	/* 補助色カラーフィルター */
	&.--other::before {
		background-color: var(--OTH);
	}
	&.--lother::before {
		background-color: var(--LOTH);
	}
	/* グラデーションカラーフィルター */
	&.--grad-01::before {
		background: var(--grad-01);
	}
	&.--grad-01-rev::before {
		background: var(--grad-01-rev);
	}
	&.--grad-02::before {
		background: var(--grad-02);
	}
	&.--grad-02-rev::before {
		background: var(--grad-02-rev);
	}
	&.--grad-03::before {
		background: var(--grad-03);
	}
	&.--grad-03-rev::before {
		background: var(--grad-03-rev);
	}

	/* ぼかしフィルター
	強さはstyleでCSS変数を書き換える
	ex) style="--blur: 1em;" */
	&.--blur {
		--blur: 0.5rem;
	}
	&.--blur::after {
		backdrop-filter: blur(var(--blur));
		opacity: 1;
	}
}

/*---------- ホバーアクション ----------*/
.c-hover {
	transition: var(--transition);
	text-decoration: none;
	&:hover {
		text-decoration: none;
	}
	/* 背景色 */
	&.--bg-bl:hover {
		background-color: var(--bl);
	}
	&.--bg-def:hover {
		background-color: var(--DEF);
	}
	&.--bg-dgry:hover {
		background-color: var(--DGRY);
	}
	&.--bg-gry:hover {
		background-color: var(--GRY);
	}
	&.--bg-lgry:hover {
		background-color: var(--LGRY);
	}
	&.--bg-wh:hover {
		background-color: var(--WHT);
	}
	&.--bg-main:hover {
		background-color: var(--MAIN);
	}
	&.--bg-lmain:hover {
		background-color: var(--LMAIN);
	}
	&.--bg-accent:hover {
		background-color: var(--ACC);
	}
	&.--bg-laccent:hover {
		background-color: var(--LACC);
	}
	&.--bg-other:hover {
		background-color: var(--OTH);
	}
	&.--bg-lother:hover {
		background-color: var(--LOTH);
	}
	/* 動き */
	&.--up,
	.--up {
		--translate-up: -0.125rem;
		transition: var(--transition);
	}
	&.--up:hover,
		&:hover .--up {
			transform: translateY(var(--translate-up));
	}
	&.--down,
	.--down {
		--translate-down: 0.125rem;
		transition: var(--transition);
	}
	&.--down:hover,
		&:hover .--down {
			transform: translateY(var(--translate-down));
	}
	&.--right,
	.--right {
		--translate-right: 0.125rem;
		transition: var(--transition);
	}
	&.--right:hover,
		&:hover .--right {
			transform: translateX(var(--translate-right));
	}
	&.--left,
	.--left {
		--translate-left: -0.125rem;
		transition: var(--transition);
	}
	&.--left:hover,
		&:hover .--left {
			transform: translateX(var(--translate-left));
	}
	&.--scale-up,
	.--scale-up {
		--scale: scale(1.1);
		img {
			transition: var(--transition);
		}
		&:hover img {
			transform: var(--scale);
		}
	}
	/* あしらい */
	&.--underline:hover {
		text-decoration: underline;
	}
	&.--opacity {
		--opacity: 0.8;
		&:hover {
			opacity: var(--opacity);
		}
	}
	/* l-overlapで重ねた要素のうち、ホバーしたら--afterが表示される */
	&.--overlap {
		.--after {
			opacity: 0;
			transition: var(--transition);
		}
		&:hover .--after {
			opacity: 1;
		}
	}
	/* 下線が伸びる */
	&.--bottom-line {
		position: relative;
		padding-bottom: min(0.5em, 5%);
		&::after {
			content: "";
			width: 0%;
			height: 2px;
			background-color: currentColor;
			position: absolute;
			bottom: -1px;
			left: 0;
			transition: 0.3s cubic-bezier(0.42, 0, 0.13, 0.99);
		}
		&:hover::after {
			@media (hover: hover) and (pointer: fine) {
				width: 100%;
			}
		}
	}
	/* 下線が伸びる（子要素の場合） */
	.--bottom-line {
		position: relative;
		padding-bottom: min(0.5em, 5%);
		&::after {
			content: "";
			width: 0%;
			height: 2px;
			background-color: currentColor;
			position: absolute;
			bottom: -1px;
			left: 0;
			transition: 0.3s cubic-bezier(0.42, 0, 0.13, 0.99);
		}
	}
	&:hover .--bottom-line::after {
		@media (hover: hover) and (pointer: fine) {
			width: 100%;
		}
	}
	/* shadowを入れる */
	&.--shadow:hover {
		@media (hover: hover) and (pointer: fine) {
			/* box-shadow: 0 .5em 1em currentColor; */
			box-shadow: 0 0.5em 1em rgb(0 0 0 / 30%);
		}
	}
}

/* ==================================
ヘッダー
===================================== */

/* ========================================
フッター
======================================== */
.lib-footer__guidance > li ~ li::before {
	background-color: currentColor;
}

/* ========================================
CTA
======================================== */

/* ========================================
TOP
======================================== */

/* ========================================
下層
======================================== */
/*---------- 下層MV ----------*/
/* .lib-hero__outer {
background-color: unset;

.lib-hero__title {
font-size: clamp(1.25rem, calc(0.975609756097561rem + 1.170731707317073vw), 2rem);
}
.lib-hero__title-en {
font-size: clamp(2rem, calc(1.2682926829268293rem + 3.1219512195121952vw), 4rem);
color: var(--MAIN);
font-weight: bold;
opacity: 0.2;
line-height: 1.2;
margin-bottom: -0.4em;
}
.lib-hero__title-en::first-letter {
text-transform: uppercase;
}
} */



/*---------- インタビュー詳細ページ ----------*/
.l-interview-block {
	display: flex;
	flex-direction: column;
	row-gap: 1.5em;
}
@media print, screen and (min-width: 768px) {
	.l-interview-block {
		display: grid;
		/* 	grid-template-columns: 30% 1fr; */
		/* 	grid-template-columns: 1fr 30%; */
		grid-template-columns: 1fr 1fr;
		column-gap: 5%;
		align-items: center;
	}
}
/* .l-interview-block .l-head {
order: 2;
} */
.l-interview-block .l-head > * {
	margin-top: .5em;
}
.l-interview-block .l-head > *:first-child {
	margin-top: 0;
}
/* .l-interview-block .l-img {
order: 1;
} */
.sec:has(.l-interview-block ) {
/* 	margin-bottom: min(10vw, 7rem); */
	margin-bottom: 1rem;
}

.p-interview-block {
	padding: min(5vw, 1rem) min(5vw, 4rem);
	border: 2px solid #fdb913;
}
.p-interview-block .c-title {
	font-size: clamp( 16px, calc( 13.073170731707318px + 0.7804878048780488vw ), 24px );
}
.p-interview-block .c-list li {
	position: relative;
	padding-left: .8em;
	line-height: 1.5;
	width: 100%;
	margin-top: .25em;
}
.p-interview-block .c-list li::before {
	display: block;
	content: "";
	position: absolute;
	width: .25em;
	height: .25em;
	border-radius: 50%;
	top: .7em;
	left: 0;
	background-color: currentcolor;
}

/* ユーティリティ */
.u-url {
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
	word-break: normal; /* 単語の分割はデフォルトに依存 */
	line-break: strict; /* 禁則処理を厳格に適用 */
}


/* 著者 */
.l-author-block {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	row-gap: 1.5em;
}
.l-author-block .c-img {
	width: 30%;
}
.l-author-block .c-img-caption {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-end;
}
@media print, screen and (min-width: 768px) {
	.l-author-block {
		display: grid;
		grid-template-columns: 1fr min(20vw, 160px);
		column-gap: 2.5%;
		align-items: stretch;
	}
	.l-author-block .c-img {
		width: auto;
	}
	.l-author-block .c-img-caption {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.l-author-block .l-head  > * {
	margin-top: .5em;
}
.l-author-block .l-head  > *:first-child {
	margin-top: 0;
}

/* .p-author-block .c-head .c-name {
text-align: right;
} */
.p-author-block .c-name {
	text-align: center;
	font-weight: bold;
}
.p-author-block .c-detail {
	margin-top: min(2.5vw, 1.5rem);
	padding: min(5vw, 3rem) min(5vw, 4rem);
	border: 2px solid #fdb913;
	/* 	background-color: white; */
	border-radius: 1em;
	position: relative;
	z-index: 0;
	overflow: visible;
}
.p-author-block .c-detail p {
	font-size: 15px;
	color: #333;
}
@media print, screen and (min-width: 768px) {
	.p-author-block .c-detail p {
		font-size: 16px;
	}
}
/* .p-author-block .c-detail::before {
display: block;
content: "";
position: absolute;
clip-path: polygon(0 0, 100% 0, 0 100%);
background-color: #fdb913;
width: min(5vw, 2rem);
height: min(5vw, 2rem);
top: 5%;
left: 100%;
}
.p-author-block .c-detail::after {
display: block;
content: "" !important;
position: absolute;
clip-path: polygon(0 0, 100% 0, 0 100%);
background-color: white;
width: min(calc(5vw - 2px), 1.8rem);
height: min(calc(5vw - 4px), 1.6rem);
top: calc(5% + 2px);
left: calc(100% - 2px);
} */
.p-author-block .c-detail .c-wquote {
	display: block;
	position: absolute;
	top: 0;
	left: min(5vw, 4rem);
	transform: translateY(-30%);
	font-size: clamp( 64px, calc( 52.29268292682927px + 3.1219512195121952vw ), 96px );
	line-height: 1;
	color: #ff7c2d;
	speak: none;
	pointer-events: none;
}
.p-author-block .c-detail .c-angle {
	display: block;
	position: absolute;
	bottom: 100%;
	right: min(10vw, 4rem);
	width: min(calc(5vw - 2px), 1.8rem);
	height: min(calc(5vw - 4px), 1.6rem);
	speak: none;
	pointer-events: none;
	line-height: 1;
	transform: rotate(-90deg);
}
@media print, screen and (min-width: 768px) {
	.p-author-block .c-detail .c-angle {
		top: 3.5em;
		right: unset;
		bottom: unset;
		left: calc(100% - 1px);
		transform: rotate(0deg);
	}
}
.p-author-block .c-img {
	border-radius: 50%;
	overflow: clip;
}
.post-password-form {
    max-width: 125rem;
    width: 98%;
    margin: 15rem auto 6rem;
}
.post-password-form p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.post-password-form input {
    padding: 1px 0px;
    border-width: 2px;
    border-color: rgb(145 145 145);
}
.post-password-form input[type="submit" i] {
    appearance: auto;
    user-select: none;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    color: buttontext;
    white-space: pre;
    padding-block: 1px;
    padding-inline: 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
}